/* ============================================
   LOYAL RAMP - LUXURY PREMIUM STYLE CSS
   Elegant kitchenware brand with gold accents
   ============================================ */

/* CSS RESET & NORMALIZE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Lato', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #1a1a1a;
  background-color: #FFFFFF;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style-position: inside;
}

table {
  width: 100%;
  border-collapse: collapse;
}

/* ============================================
   LUXURY PREMIUM COLOR PALETTE
   ============================================ */
:root {
  --primary-green: #2C5F4F;
  --primary-dark: #1a3d32;
  --primary-light: #3d7a65;
  --gold-accent: #D4A574;
  --gold-dark: #b8885c;
  --gold-light: #e8c9a0;
  --cream-bg: #F5F1E8;
  --cream-light: #FAF8F3;
  --cream-dark: #E8E3D8;
  --text-dark: #1a1a1a;
  --text-medium: #4a4a4a;
  --text-light: #7a7a7a;
  --white: #FFFFFF;
  --shadow-luxury: 0 8px 24px rgba(44, 95, 79, 0.12);
  --shadow-hover: 0 12px 32px rgba(44, 95, 79, 0.18);
  --shadow-gold: 0 4px 16px rgba(212, 165, 116, 0.25);
}

/* ============================================
   TYPOGRAPHY - LUXURY FONTS
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: 0.5px;
}

h2 {
  font-size: 36px;
  letter-spacing: 0.3px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
}

strong {
  font-weight: 700;
  color: var(--text-dark);
}

em {
  font-style: italic;
  color: var(--text-light);
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ============================================
   HEADER - LUXURY NAVIGATION
   ============================================ */
header {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-dark) 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-bottom: 2px solid var(--gold-accent);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: var(--gold-accent);
  border-bottom-color: var(--gold-accent);
  transform: translateY(-2px);
}

/* ============================================
   MOBILE MENU - HAMBURGER NAVIGATION
   ============================================ */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2000;
  background: var(--gold-accent);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 24px;
  color: var(--white);
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: var(--gold-dark);
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, var(--primary-green) 0%, var(--primary-dark) 100%);
  z-index: 1999;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold-accent);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: var(--gold-dark);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav a {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--gold-accent);
  padding-left: 12px;
}

/* ============================================
   BUTTONS - LUXURY PREMIUM STYLE
   ============================================ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--gold-accent);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(212, 165, 116, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-luxury);
}

.cta-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* ============================================
   HERO SECTION - LUXURY LANDING
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--cream-bg) 0%, var(--cream-light) 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(44, 95, 79, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 56px;
  color: var(--primary-green);
  margin-bottom: 24px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.hero p {
  font-size: 20px;
  color: var(--text-medium);
  margin-bottom: 32px;
  line-height: 1.8;
}

/* ============================================
   SECTIONS - CONSISTENT SPACING
   ============================================ */
section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 20px;
  margin-bottom: 60px;
  border-bottom: 3px solid var(--gold-accent);
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-header p {
  color: var(--cream-light);
  font-size: 18px;
}

/* ============================================
   BRAND PROMISE & VALUES
   ============================================ */
.brand-promise {
  background: var(--white);
  text-align: center;
}

.brand-promise h2 {
  margin-bottom: 24px;
}

.brand-promise > p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 48px;
  color: var(--text-medium);
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.value-item {
  flex: 1 1 280px;
  max-width: 350px;
  padding: 32px;
  background: var(--cream-bg);
  border-radius: 12px;
  border: 2px solid var(--gold-accent);
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-luxury);
  border-color: var(--gold-dark);
}

.value-item h3 {
  color: var(--primary-green);
  margin-bottom: 16px;
  font-size: 22px;
}

.value-item p {
  color: var(--text-medium);
  line-height: 1.7;
}

/* ============================================
   PRODUCTS & SERVICES GRID - FLEXBOX
   ============================================ */
.featured-services,
.products,
.collections {
  background: var(--cream-light);
}

.services-grid,
.products-grid,
.collections-grid,
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.service-card,
.product-card,
.collection-card,
.category-tile {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid var(--gold-accent);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
}

.service-card:hover,
.product-card:hover,
.collection-card:hover,
.category-tile:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--primary-green);
}

.service-card h3,
.product-card h3,
.collection-card h3,
.category-tile h3 {
  font-size: 22px;
  color: var(--primary-green);
  margin-bottom: 12px;
}

.service-card p,
.product-card p,
.collection-card p {
  color: var(--text-medium);
  line-height: 1.7;
  flex-grow: 1;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-accent);
  display: block;
  margin-top: 16px;
}

.category-tile span,
.collection-card span {
  display: inline-block;
  padding: 6px 16px;
  background: var(--cream-bg);
  color: var(--primary-green);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
}

/* ============================================
   TESTIMONIALS - LUXURY REVIEWS
   ============================================ */
.testimonials {
  background: var(--white);
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 48px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  max-width: 550px;
  background: var(--cream-bg);
  padding: 32px;
  border-radius: 12px;
  border-left: 4px solid var(--gold-accent);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  text-align: left;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-luxury);
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.8;
}

.testimonial-card .author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
}

.testimonial-card .author strong {
  color: var(--primary-green);
  font-size: 16px;
}

.testimonial-card .author span {
  color: var(--text-light);
  font-size: 14px;
}

/* ============================================
   TRUST INDICATORS - LUXURY BADGES
   ============================================ */
.trust-indicators {
  background: var(--primary-green);
  color: var(--white);
  padding: 48px 20px;
}

.trust-grid,
.benefits-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
}

.trust-item,
.benefit {
  flex: 1 1 220px;
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  border: 1px solid var(--gold-accent);
  transition: all 0.3s ease;
}

.trust-item:hover,
.benefit:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

/* ============================================
   FEATURES - FLEXBOX LAYOUT
   ============================================ */
.product-features,
.collection-benefits {
  background: var(--cream-light);
  text-align: center;
}

.features-grid,
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.feature,
.benefit {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  padding: 24px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  font-weight: 600;
  color: var(--primary-green);
  transition: all 0.3s ease;
}

.feature:hover,
.benefit:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* ============================================
   CTA SECTIONS - CALL TO ACTION
   ============================================ */
.cta-section,
.cta-banner,
.contact-hero,
.collections-hero {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-dark) 100%);
  text-align: center;
  padding: 80px 20px;
  border-radius: 12px;
  margin: 60px 20px;
}

.cta-section h2,
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p,
.cta-banner p {
  color: var(--cream-light);
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-section .btn-primary,
.cta-banner .btn-primary {
  margin-top: 24px;
}

.hours,
.additional-info {
  font-size: 16px;
  color: var(--gold-light);
  margin-top: 16px;
  font-style: italic;
}

/* ============================================
   CONTACT METHODS & FORMS
   ============================================ */
.contact-methods,
.contact-hero,
.salon-information {
  background: var(--white);
}

.methods-grid,
.options-grid,
.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.method-card,
.option,
.action-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  max-width: 500px;
  padding: 32px;
  background: var(--cream-bg);
  border-radius: 12px;
  border: 2px solid var(--gold-accent);
  text-align: center;
  transition: all 0.3s ease;
}

.method-card:hover,
.option:hover,
.action-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-luxury);
}

.method-card h3,
.option h3,
.action-card h3 {
  color: var(--primary-green);
  margin-bottom: 16px;
}

.method-card p,
.option p,
.action-card p {
  color: var(--text-medium);
  margin-bottom: 8px;
}

/* ============================================
   FORM PLACEHOLDER
   ============================================ */
.contact-form-section {
  background: var(--cream-light);
  text-align: center;
}

.form-placeholder {
  max-width: 600px;
  margin: 40px auto;
  padding: 40px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-luxury);
  text-align: left;
}

.form-placeholder p {
  margin-bottom: 24px;
  color: var(--text-dark);
}

.form-placeholder em {
  font-size: 14px;
  color: var(--text-light);
}

.form-placeholder .btn {
  width: 100%;
  margin-top: 24px;
}

/* ============================================
   FAQ & LEGAL CONTENT
   ============================================ */
.faq-quick,
.legal-content,
.brand-story,
.values,
.philosophy {
  background: var(--white);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.faq-item {
  padding: 24px;
  background: var(--cream-bg);
  border-radius: 8px;
  border-left: 4px solid var(--gold-accent);
}

.faq-item h3 {
  color: var(--primary-green);
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-item p {
  color: var(--text-medium);
  margin-bottom: 0;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 28px;
}

.legal-content p {
  margin-bottom: 24px;
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 12px;
  color: var(--text-medium);
}

/* ============================================
   MILESTONES & STORY
   ============================================ */
.milestones,
.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.milestone,
.step {
  padding: 20px 24px;
  background: var(--cream-bg);
  border-radius: 8px;
  border-left: 4px solid var(--gold-accent);
  font-weight: 600;
  color: var(--primary-green);
  transition: all 0.3s ease;
}

.milestone:hover,
.step:hover {
  transform: translateX(8px);
  border-left-color: var(--primary-green);
}

/* ============================================
   RIGHTS & BENEFITS OVERVIEW
   ============================================ */
.rights-overview,
.key-points,
.quick-summary {
  background: var(--cream-light);
}

.rights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.right-item {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  padding: 24px;
  background: var(--white);
  border-radius: 8px;
  border-top: 3px solid var(--gold-accent);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.right-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.right-item h3 {
  color: var(--primary-green);
  margin-bottom: 12px;
  font-size: 18px;
}

.right-item p {
  color: var(--text-medium);
  font-size: 14px;
}

/* ============================================
   COOKIES TABLE
   ============================================ */
.cookies-table {
  background: var(--white);
}

.cookies-table table {
  margin-top: 32px;
  background: var(--cream-light);
  border-radius: 8px;
  overflow: hidden;
}

.cookies-table th,
.cookies-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--cream-dark);
}

.cookies-table th {
  background: var(--primary-green);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookies-table td {
  color: var(--text-medium);
  font-size: 14px;
}

.cookies-table tr:last-child td {
  border-bottom: none;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thank-you-hero {
  background: linear-gradient(135deg, var(--cream-bg) 0%, var(--cream-light) 100%);
  text-align: center;
  padding: 80px 20px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--gold-accent);
  color: var(--white);
  font-size: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-gold);
}

.confirmation-details,
.next-steps,
.trust-reassurance,
.return-navigation {
  background: var(--white);
}

.confirmation-details ol {
  max-width: 600px;
  margin: 32px auto;
  padding-left: 24px;
}

.confirmation-details li {
  margin-bottom: 16px;
  color: var(--text-medium);
  font-size: 16px;
}

.trust-reassurance {
  background: var(--cream-light);
}

.trust-badge {
  flex: 1 1 220px;
  padding: 20px;
  background: var(--white);
  border-radius: 8px;
  border: 2px solid var(--gold-accent);
  font-weight: 600;
  color: var(--primary-green);
  text-align: center;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.nav-links a {
  padding: 12px 24px;
  background: var(--primary-green);
  color: var(--white);
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* ============================================
   SHOP BENEFITS & CATEGORIES
   ============================================ */
.shop-benefits {
  background: var(--cream-bg);
  padding: 32px 20px;
}

.shopping-guide,
.payment-shipping,
.customer-service,
.browser-instructions,
.returns-exchange,
.complaints-procedure {
  background: var(--white);
}

/* ============================================
   FOOTER - LUXURY DESIGN
   ============================================ */
footer {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 60px 20px 24px;
  border-top: 3px solid var(--gold-accent);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}

.footer-column h4 {
  color: var(--gold-accent);
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-column p,
.footer-column a {
  color: var(--cream-light);
  font-size: 14px;
  line-height: 1.8;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: var(--gold-accent);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  color: var(--cream-light);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  color: var(--cream-light);
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold-accent);
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-green) 100%);
  color: var(--white);
  padding: 24px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid var(--gold-accent);
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-banner .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-banner p {
  flex: 1 1 400px;
  margin: 0;
  color: var(--cream-light);
  font-size: 14px;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: var(--gold-accent);
  color: var(--white);
}

.cookie-accept:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.cookie-reject,
.cookie-settings {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cookie-reject:hover,
.cookie-settings:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   COOKIE MODAL
   ============================================ */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal h2 {
  color: var(--primary-green);
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: var(--cream-bg);
  border-radius: 8px;
  border-left: 3px solid var(--gold-accent);
}

.cookie-category h3 {
  color: var(--primary-green);
  margin-bottom: 12px;
  font-size: 18px;
}

.cookie-category p {
  color: var(--text-medium);
  font-size: 14px;
  margin-bottom: 12px;
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-dark);
}

.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cookie-modal-buttons button {
  flex: 1 1 auto;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-save {
  background: var(--gold-accent);
  color: var(--white);
}

.cookie-save:hover {
  background: var(--gold-dark);
}

.cookie-close {
  background: var(--primary-green);
  color: var(--white);
}

.cookie-close:hover {
  background: var(--primary-dark);
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }

  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }

  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

  /* Section padding */
  section {
    padding: 40px 16px;
  }

  .page-header {
    padding: 60px 16px;
  }

  /* Grid adjustments - flexbox column on mobile */
  .values-grid,
  .services-grid,
  .products-grid,
  .collections-grid,
  .categories-grid,
  .features-grid,
  .benefits-grid,
  .testimonials-grid,
  .trust-grid,
  .methods-grid,
  .options-grid,
  .actions-grid,
  .rights-grid {
    flex-direction: column;
  }

  .service-card,
  .product-card,
  .collection-card,
  .category-tile,
  .testimonial-card,
  .method-card,
  .option,
  .action-card,
  .right-item,
  .value-item,
  .feature,
  .benefit {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* Button adjustments */
  .cta-buttons,
  .cookie-buttons,
  .cookie-modal-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  /* Footer adjustments */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer-links {
    justify-content: center;
  }

  /* Cookie banner mobile */
  .cookie-banner .container {
    flex-direction: column;
  }

  /* Table responsive */
  .cookies-table table {
    font-size: 12px;
  }

  .cookies-table th,
  .cookies-table td {
    padding: 10px;
  }

  /* Mobile menu width adjustment */
  .mobile-menu {
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .container {
    padding: 0 32px;
  }

  .service-card,
  .product-card,
  .collection-card,
  .category-tile {
    flex: 1 1 calc(50% - 12px);
  }

  .right-item,
  .value-item {
    flex: 1 1 calc(50% - 16px);
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer,
  .cta-section,
  .cta-banner {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}

/* ============================================
   ACCESSIBILITY IMPROVEMENTS
   ============================================ */
*:focus {
  outline: 3px solid var(--gold-accent);
  outline-offset: 2px;
}

button:focus,
a:focus,
input:focus {
  outline: 3px solid var(--gold-accent);
  outline-offset: 2px;
}

/* Skip to main content link */
.skip-to-main {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--gold-accent);
  color: var(--white);
  padding: 12px 24px;
  z-index: 9999;
  transition: top 0.3s ease;
}

.skip-to-main:focus {
  top: 0;
}

/* ============================================
   SMOOTH ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card,
.product-card,
.collection-card,
.testimonial-card {
  animation: fadeIn 0.6s ease forwards;
}

/* Stagger animation delays */
.service-card:nth-child(1),
.product-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2),
.product-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3),
.product-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4),
.product-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5),
.product-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6),
.product-card:nth-child(6) { animation-delay: 0.6s; }

/* ============================================
   END OF LUXURY PREMIUM CSS
   ============================================ */