/* Mohonk-inspired luxury design with bright nude colors */

:root {
  /* Luxury palette: roasted cashew, frozen dew, dark night, temple grey, snowfall */
  --color-bg: #F8F9FA;                    /* snowfall - soft white */
  --color-surface: #F1F3F4;               /* frozen dew - light grey */
  --color-text: #2C2C2C;                  /* dark night - deep charcoal */
  --color-muted: #6B7280;                 /* temple grey - medium grey */
  --color-cashew: #D4A574;                /* roasted cashew - warm beige */
  --color-frozen-dew: #E8F0FE;            /* frozen dew - light blue-grey */
  --color-temple-grey: #9CA3AF;           /* temple grey - soft grey */
  --color-dark-night: #1F2937;            /* dark night - deep grey */
  --color-snowfall: #FFFFFF;              /* snowfall - pure white */
  --color-accent: var(--color-cashew);
  --color-accent-2: var(--color-dark-night);
  
  --font-primary: 'Inter', system-ui, sans-serif;
  --font-display: 'Playfair Display', serif;
  
  --container: 1200px;
  --radius: 8px;
  --shadow: 0 4px 20px rgba(133,111,98,0.15);
  --transition: 300ms ease;
}


/* Page Load Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Initial state - everything hidden */
body {
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

.site-header {
  opacity: 0;
  animation: slideInFromTop 1s ease-out 0.3s forwards;
}

.hero-section {
  opacity: 0;
  animation: fadeInUp 1.2s ease-out 0.6s forwards;
}

.nature-gallery {
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.9s forwards;
}

.about-section {
  opacity: 0;
  animation: fadeInUp 1s ease-out 1.2s forwards;
}

.discover-section {
  opacity: 0;
  animation: fadeInUp 1s ease-out 1.5s forwards;
}

.experience-section {
  opacity: 0;
  animation: fadeInUp 1s ease-out 1.8s forwards;
}

.offers-section {
  opacity: 0;
  animation: fadeInUp 1s ease-out 2.1s forwards;
}

.product-section {
  opacity: 0;
  animation: fadeInUp 1s ease-out 2.4s forwards;
}

.contact-section {
  opacity: 0;
  animation: fadeInUp 1s ease-out 2.7s forwards;
}

.site-footer {
  opacity: 0;
  animation: fadeInUp 1s ease-out 3s forwards;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #a6a195ff 0%, #a6a195ff 50%, #a6a195ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loading-content {
  text-align: center;
  color: white;
}

.loading-logo {
  margin-bottom: 20px;
}

.loading-logo .brand-mark {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: white;
  display: inline-block;
  background: rgba(255,255,255,0.1);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  line-height: 120px;
  border: 3px solid rgba(255,255,255,0.3);
  animation: pulse 2s infinite;
}

.loading-text {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  opacity: 0.9;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top: 3px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255,255,255,0.4);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(255,255,255,0);
  }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Wave animations between sections */
.wave-divider {
  position: relative;
  height: 60px;
  overflow: hidden;
  background: var(--color-bg);
}

.wave-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23F1F3F4'/%3E%3C/svg%3E") repeat-x;
  background-size: 1200px 120px;
  animation: wave 10s linear infinite;
}

.wave-divider.reverse::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M985.66,92.83C906.67,72,823.78,31,743.84,14.19c-82.26-17.34-168.06-16.33-250.45.39-57.84,11.73-114,31.07-172,41.86A600.21,600.21,0,0,1,0,27.35V120H1200V95.8C1132.19,118.92,1055.71,111.31,985.66,92.83Z' fill='%23F8F9FA'/%3E%3C/svg%3E") repeat-x;
  background-size: 1200px 120px;
  animation: wave 10s linear infinite reverse;
}

@keyframes wave {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1200px);
  }
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-primary);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.btn-booking {
  background: linear-gradient(135deg, #E8E9EA 0%, #a6a195ff 100%);
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: var(--transition);
}

.btn-booking:hover {
  background: linear-gradient(135deg, #F8F9FA 0%, #a6a195ff 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(166,161,149,0.4);
}

/* Header */
.site-header {
  background: rgba(241,243,244,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(156,163,175,0.3);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--color-text);
  margin-left: -40px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #F8F9FA 0%, #a6a195ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--font-display);
}

.brand-text {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-text);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: #a6a195ff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #a6a195ff;
  transition: width var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}


.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--color-text);
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 70vh; /* Reduced height so nature gallery is more visible */
  display: flex;
  align-items: center;
  background: 
    radial-gradient(circle at center, transparent 70%, rgba(247,222,227,0.4) 75%, rgba(247,222,227,0.7) 82%, rgba(247,222,227,0.9) 100%),
    url('wristband.png') center/90% no-repeat;
}

.hero-background {
  position: absolute;
  inset: 0;
  background: transparent;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-text);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  margin: 0 0 24px;
  line-height: 1.1;
  color: white;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: clamp(18px, 2.5vw, 24px);
  margin: 0 0 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: white;
  opacity: 0.9;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}


.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Single Image Break */
.single-image-break {
  position: relative;
  min-height: 60vh;
  overflow: hidden;
  background: var(--color-bg);
}

.image-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

/* Removed hover effect to prevent mobile glitches */


/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: #a6a195ff;
  color: white;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: #a6a195ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(166,161,149,0.3);
}

.btn-secondary {
  background: #a6a195ff;
  color: white;
  border: 2px solid #a6a195ff;
  box-shadow: var(--shadow);
}

.btn-secondary:hover {
  background: #a6a195ff;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(31,41,55,0.3);
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--color-text);
}

.section-subtitle {
  font-size: 18px;
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about-section {
  background: var(--color-surface);
  margin-top: 8px;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  line-height: 1.8;
}

.about-content p {
  margin-bottom: 24px;
  color: var(--color-text);
  font-size: 16px;
}

/* Discover Section */
.discover-section {
  background: var(--color-surface);
  margin-top: 8px;
}

.discover-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.discover-card {
  background: var(--color-snowfall);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.discover-card:hover {
  /* Hover effects removed for better performance */
}

.card-image {
  height: 280px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

/* Removed hover effect to prevent mobile glitches */

.placeholder-image {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-frozen-dew), var(--color-temple-grey));
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #a6a195ff;
  text-transform: uppercase;
}

.card-content {
  padding: 20px 24px;
}

.card-content h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--color-text);
}

.card-content p {
  color: var(--color-muted);
  margin: 0 0 16px;
}

.card-link {
  color: #a6a195ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.card-link:hover {
  color: #a6a195ff;
}

/* Experience Section */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.experience-card {
  background: var(--color-snowfall);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.experience-card:hover {
  /* Hover effects removed for better performance */
}

.experience-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--color-text);
}

.experience-card p {
  color: var(--color-muted);
  margin: 0 0 24px;
  line-height: 1.7;
}

/* Offers Section */
.offers-section {
  background: var(--color-surface);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.offer-card {
  background: var(--color-snowfall);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.offer-card:hover {
  /* Hover effects removed for better performance */
}

.offer-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--color-text);
}

.offer-card p {
  color: var(--color-muted);
  margin: 0 0 20px;
}

/* Product Section */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.activity-card {
  background: var(--color-snowfall);
  padding: 32px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.activity-card:hover {
  /* Hover effects removed for better performance */
}

.activity-icon {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #a6a195ff;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.activity-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--color-text);
}

.activity-card p {
  color: var(--color-muted);
  margin: 0 0 20px;
  font-size: 14px;
}

/* Contact Section */
.contact-section {
  background: var(--color-surface);
}

/* Order Form Styles */
.order-form-container {
  max-width: 800px;
  margin: 0 auto 60px;
  background: var(--color-snowfall);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group .quantity-selector {
  flex-direction: row !important;
}

.form-group label {
  font-weight: 600;
  color: var(--color-text);
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #E5E7EB;
  border-radius: var(--radius);
  font-size: 16px;
  font-family: var(--font-primary);
  transition: var(--transition);
  background: var(--color-snowfall);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #a6a195ff;
  box-shadow: 0 0 0 3px rgba(166, 161, 149, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* Color Selection Styles */
.color-selection {
  grid-column: 1 / -1;
}

.color-options {
  display: flex;
  gap: 20px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.color-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 12px;
  border: 2px solid #E5E7EB;
  border-radius: var(--radius);
  transition: var(--transition);
  background: var(--color-snowfall);
  min-width: 120px;
}

.color-option:hover {
  border-color: #a6a195ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(166, 161, 149, 0.2);
}

.color-option.selected {
  border-color: #a6a195ff;
  background: rgba(166, 161, 149, 0.1);
  box-shadow: 0 4px 15px rgba(166, 161, 149, 0.3);
}

.color-preview {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #E5E7EB;
  transition: var(--transition);
}

.color-option.selected .color-preview {
  border-color: #a6a195ff;
}

.color-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text);
  text-transform: capitalize;
  margin-top: 8px;
}

.inventory-status {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
  font-weight: 500;
}

.inventory-status.low {
  color: #dc2626;
  font-weight: bold;
}

.inventory-status.out {
  color: #dc2626;
  font-weight: bold;
  background: #fee2e2;
  padding: 2px 6px;
  border-radius: 4px;
}
}

/* Cart Container */
.cart-container {
  position: relative;
}

/* Cart Icon */
.cart-icon {
  position: relative;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-icon:hover {
  background: rgba(166, 161, 149, 0.1);
}

.cart-icon svg {
  color: var(--color-text);
  transition: color 0.3s ease;
}

.cart-icon:hover svg {
  color: #a6a195ff;
}

.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: #dc2626;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
}

.cart-count.hidden {
  display: none;
}

/* Cart Dropdown */
.cart-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 350px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  border: 1px solid #E5E7EB;
  z-index: 1000;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.cart-dropdown.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #E5E7EB;
}

.cart-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2C2C2C;
  margin: 0;
}

.close-cart {
  background: none;
  border: none;
  font-size: 24px;
  color: #6B7280;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close-cart:hover {
  background: #F3F4F6;
  color: #2C2C2C;
}

.cart-items {
  max-height: 300px;
  overflow-y: auto;
  padding: 0 20px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid #F3F4F6;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
}

.cart-item-info {
  flex: 1;
}

.cart-item-info h4 {
  font-size: 14px;
  color: #2C2C2C;
  margin: 0 0 4px 0;
  font-weight: 500;
}

.cart-item-info p {
  font-size: 12px;
  color: #6B7280;
  margin: 0;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-item-controls button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #D1D5DB;
  background: white;
  color: #6B7280;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cart-item-controls button:hover {
  border-color: #a6a195ff;
  color: #a6a195ff;
}

.cart-item-controls input {
  width: 40px;
  text-align: center;
  border: 1px solid #D1D5DB;
  border-radius: 4px;
  padding: 6px 4px;
  font-size: 14px;
  font-weight: 600;
  background: white;
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid #E5E7EB;
}

.cart-total {
  text-align: center;
  margin-bottom: 15px;
  font-size: 16px;
  color: #2C2C2C;
}

.cart-total strong {
  color: #a6a195ff;
}

.btn-checkout {
  width: 100%;
  background: #a6a195ff;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-checkout:hover {
  background: #8B7D6B;
  transform: translateY(-1px);
}

.btn-checkout:disabled {
  background: #D1D5DB;
  cursor: not-allowed;
  transform: none;
}

/* Empty cart state */
.cart-empty {
  text-align: center;
  padding: 40px 20px;
  color: #6B7280;
}

.cart-empty p {
  margin: 0;
  font-size: 14px;
}

/* Inventory Status */
.inventory-status {
  margin: 8px 0;
}

.inventory-badge {
  display: inline-block;
  background: #10B981;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-selection {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

.product-selection h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #2C2C2C;
  margin-bottom: 30px;
  text-align: center;
}

.product-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border: 2px solid #E5E7EB;
  border-radius: 8px;
  margin-bottom: 20px;
  transition: border-color 0.3s ease;
}

.product-item:hover {
  border-color: #a6a195ff;
}

.product-image {
  flex-shrink: 0;
}

.product-image img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.product-info {
  flex: 1;
}

.product-info h4 {
  font-size: 18px;
  color: #2C2C2C;
  margin-bottom: 8px;
}

.product-price {
  font-size: 16px;
  color: #a6a195ff;
  font-weight: 600;
  margin-bottom: 15px;
}

.product-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.add-to-cart-btn {
  background: #a6a195ff;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.add-to-cart-btn:hover {
  background: #8B7D6B;
  transform: translateY(-1px);
}

.add-to-cart-btn:active {
  transform: translateY(0);
}

.cart-summary {
  background: #F8F9FA;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  margin-top: 20px;
}

.cart-summary p {
  font-size: 16px;
  color: #2C2C2C;
  margin: 5px 0;
}

.cart-summary span {
  font-weight: 600;
  color: #a6a195ff;
}

.cart-count.hidden {
  display: none;
}
.quantity-selector {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.quantity-btn {
  background: #a6a195ff;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quantity-btn:hover {
  background: #8B7D6B;
}

.quantity-btn:active {
  opacity: 0.8;
}

.quantity-selector input {
  width: 60px;
  text-align: center;
  font-weight: 600;
  border: 2px solid #E5E7EB;
  border-radius: 6px;
  padding: 8px;
  background: var(--color-snowfall);
  flex-shrink: 0;
}

.quantity-selector input:focus {
  outline: none;
  border-color: #a6a195ff;
}

.quantity-price {
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 500;
  margin-left: 10px;
  flex-shrink: 0;
}

.payment-info {
  background: var(--color-frozen-dew);
  padding: 24px;
  border-radius: var(--radius);
  border: 2px solid rgba(166, 161, 149, 0.2);
}

.payment-info h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--color-text);
}

.payment-info p {
  color: var(--color-muted);
  margin: 0 0 16px;
}

.payment-methods {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.payment-method {
  background: var(--color-snowfall);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  border: 1px solid rgba(166, 161, 149, 0.3);
}

.order-btn {
  background: linear-gradient(135deg, #a6a195ff 0%, #8B7D6B 100%);
  color: white;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  margin-top: 16px;
}

.order-btn:hover {
  background: linear-gradient(135deg, #8B7D6B 0%, #a6a195ff 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(166, 161, 149, 0.3);
}

.order-btn:active {
  transform: translateY(0);
}

/* Success Message */
.order-success {
  background: #D1FAE5;
  border: 2px solid #10B981;
  color: #065F46;
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
  margin-top: 20px;
  display: none;
}

.order-success.show {
  display: block;
  animation: fadeInUp 0.5s ease-out;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-dark-night);
  color: var(--color-snowfall);
  padding: 20px;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
  border-top: 3px solid #a6a195ff;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-text h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--color-snowfall);
}

.cookie-text p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  min-width: 120px;
}

.cookie-accept {
  background: #a6a195ff;
  color: white;
}

.cookie-accept:hover {
  background: #8B7D6B;
  transform: translateY(-1px);
}

.cookie-reject {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

/* Payment Instructions Modal */
.payment-instructions {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.payment-modal {
  background: var(--color-snowfall);
  border-radius: var(--radius);
  padding: 30px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.3s ease-out;
}

.payment-modal h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 20px;
  color: var(--color-text);
  text-align: center;
}

.payment-details {
  background: var(--color-frozen-dew);
  padding: 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  border: 2px solid rgba(166, 161, 149, 0.2);
}

.payment-details p {
  margin: 8px 0;
  font-size: 16px;
  color: var(--color-text);
}

.payment-details strong {
  color: #a6a195ff;
  font-weight: 600;
}

.payment-steps {
  margin-bottom: 20px;
}

.payment-steps h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--color-text);
}

.payment-steps ol {
  margin: 0;
  padding-left: 20px;
}

.payment-steps li {
  margin: 8px 0;
  color: var(--color-text);
  line-height: 1.5;
}

.payment-steps strong {
  color: #a6a195ff;
  font-weight: 600;
}

.payment-note {
  background: #FEF3C7;
  border: 2px solid #F59E0B;
  border-radius: var(--radius);
  padding: 15px;
  margin-bottom: 20px;
}

.payment-note p {
  margin: 0;
  color: #92400E;
  font-size: 14px;
  line-height: 1.4;
}

.contact-section .offers-section {
  margin-top: 4rem;
  text-align: center;
}

.contact-section .offers-section h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-dark-night);
  margin-bottom: 2rem;
}

.contact-section .offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-section .offer-card {
  background: var(--color-snowfall);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.contact-section .offer-card h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: #a6a195ff;
  margin-bottom: 1rem;
}

.contact-section .offer-card p {
  color: var(--color-dark-night);
  line-height: 1.6;
}

.contact-grid {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}


.contact-item h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--color-text);
}

.contact-item p {
  color: var(--color-muted);
  margin: 0;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  color: #a6a195ff;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.social-links a:hover {
  color: #a6a195ff;
}

.social-links-large {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 20px;
}

.social-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #a6a195ff;
  text-decoration: none;
  transition: var(--transition);
}

.social-icon:hover {
  color: #6B7280;
  transform: translateY(-4px);
}

.social-icon span {
  font-weight: 600;
  font-size: 16px;
}


/* Footer */
.site-footer {
  background: var(--color-dark-night);
  color: var(--color-snowfall);
  padding: 60px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand .brand-mark {
  background: linear-gradient(135deg, #F8F9FA 0%, #a6a195ff 100%);
}

.footer-brand .brand-text {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-snowfall);
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-column h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--color-snowfall);
}

.footer-column a {
  display: block;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  margin-bottom: 8px;
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--color-snowfall);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav {
    display: none;
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-snowfall);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow);
    gap: 16px;
  }
  
  .nav.open {
    display: flex;
  }
  
  .nav-toggle {
    display: block;
  }
  
  /* Hero CTA removed */
  
  .brand {
    margin-left: 0;
  }
  
  .discover-grid,
  .experience-grid,
  .offers-grid,
  .activities-grid {
    grid-template-columns: 1fr;
  }
  
  .nature-gallery {
    grid-template-columns: 1fr;
  }
  
  .single-image-break {
    min-height: 40vh;
  }
  
  .hero {
    min-height: 80vh;
    background: url('wristband.png') center/cover no-repeat;
  }
  
  .contact-grid {
    flex-direction: column;
    align-items: center;
  }

  .contact-section .offers-section h3 {
    font-size: 1.5rem;
  }

  .contact-section .offers-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-section .offer-card {
    padding: 1.5rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    font-weight: 600;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .header-content {
    padding: 12px 0;
  }
  
  .social-links-large {
    flex-direction: column;
    gap: 30px;
  }
  
  
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 32px;
  }

  /* Order form mobile styles */
  .order-form-container {
    padding: 24px;
    margin: 0 16px 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .payment-methods {
    justify-content: center;
  }

  .payment-method {
    font-size: 12px;
    padding: 6px 12px;
  }

  /* Color selection mobile styles */
  .color-options {
    justify-content: center;
    gap: 16px;
  }

  .color-option {
    min-width: 100px;
    padding: 8px;
  }

  .color-preview {
    width: 60px;
    height: 60px;
  }

  /* Cookie banner mobile styles */
  .cookie-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .cookie-btn {
    min-width: 100px;
    padding: 8px 16px;
  }

  /* Payment modal mobile styles */
  .payment-modal {
    padding: 15px;
    margin: 5px;
  }

  .payment-modal h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .payment-details {
    padding: 15px;
    margin-bottom: 15px;
  }

  .payment-details p {
    font-size: 12px;
    margin: 4px 0;
  }

  .payment-steps h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .payment-steps p {
    font-size: 14px;
    margin: 8px 0;
    line-height: 1.4;
  }

  /* Fix button layout on mobile */
  .payment-modal button {
    display: block;
    width: 100%;
    margin: 6px 0 !important;
    margin-left: 0 !important;
    padding: 10px 16px;
    font-size: 14px;
  }
  
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .hero {
    min-height: 80vh;
    background: url('wristband.png') center/cover no-repeat;
  }
  
  .hero-title {
    font-size: clamp(32px, 8vw, 48px);
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 16px;
  }
  
  .section-title {
    font-size: clamp(28px, 6vw, 36px);
  }
  
  .social-icon svg {
    width: 60px;
    height: 60px;
  }
  
  .contact-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  /* Touch-friendly improvements */
  .btn {
    min-height: 44px; /* Apple's recommended touch target size */
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Cart dropdown mobile improvements */
  .cart-dropdown {
    right: -10px;
    left: -10px;
    width: calc(100vw - 20px);
    max-width: none;
  }

  .cart-item {
    padding: 12px 0;
  }

  .cart-item img {
    width: 60px;
    height: 60px;
  }

  .cart-item-controls button {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .cart-item-controls input {
    width: 50px;
    height: 36px;
    font-size: 16px;
  }

  /* Product selection mobile improvements */
  .product-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px;
  }

  .product-image {
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }

  .add-to-cart-btn {
    width: 100%;
    min-height: 44px;
    font-size: 16px;
    padding: 12px 20px;
  }
  
  .nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  
  .social-icon {
    min-height: 44px;
    min-width: 44px;
  }
  
  .nav-toggle {
    min-height: 44px;
    min-width: 44px;
  }

  /* Header mobile improvements */
  .header-content {
    padding: 10px 0;
  }

  .brand {
    font-size: 18px;
  }

  .cart-icon {
    padding: 12px;
  }

  .cart-icon svg {
    width: 28px;
    height: 28px;
  }

  /* Ensure cart dropdown doesn't get cut off */
  .cart-container {
    z-index: 1000;
  }
  
  /* Optimize wave animations for mobile */
  .wave-divider {
    height: 40px; /* Smaller on mobile */
  }
  
  .wave-divider::before {
    background-size: 800px 80px; /* Smaller wave for mobile */
  }
}