/* ============================================
   ARYA HANDMADE — Design System
   Palette: Warm Ivory · Dusty Rose · Warm Gold
   Typography: Cormorant Garamond + Jost
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500&display=swap');

/* --- CSS Variables --- */
:root {
  --ivory:        #FAF7F2;
  --ivory-dark:   #F2ECE3;
  --cream:        #EDE5D8;
  --rose:         #DDB8A8;
  --rose-light:   #F0DDD5;
  --rose-dark:    #C49082;
  --gold:         #C8A96E;
  --gold-light:   #E8D5A8;
  --gold-dark:    #A8864A;
  --charcoal:     #2C1F14;
  --brown:        #5C3D2E;
  --taupe:        #9B8B7A;
  --taupe-light:  #C8BAB0;
  --white:        #FFFFFF;

  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Jost', system-ui, sans-serif;

  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm:    0 2px 8px rgba(44,31,20,0.08);
  --shadow-md:    0 8px 32px rgba(44,31,20,0.12);
  --shadow-lg:    0 20px 60px rgba(44,31,20,0.16);
  --shadow-gold:  0 8px 32px rgba(200,169,110,0.25);

  --radius-sm:    4px;
  --radius-md:    12px;
  --radius-lg:    24px;
  --radius-full:  9999px;

  --max-width:    1280px;
  --nav-height:   72px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  background-color: var(--ivory);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }
ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { font-size: 1rem; color: var(--brown); max-width: 65ch; }

.serif { font-family: var(--font-serif); }
.serif-italic { font-family: var(--font-serif); font-style: italic; }
.text-gold { color: var(--gold); }
.text-taupe { color: var(--taupe); }
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}

.section {
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  margin: 0 auto;
  color: var(--taupe);
  font-size: 1.1rem;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem auto;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
}

.divider::before, .divider::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light));
}

.divider::after {
  background: linear-gradient(90deg, var(--gold-light), transparent);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(200,169,110,0.2), var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 2rem;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-logo svg {
  height: 40px;
  width: auto;
  transition: opacity var(--transition);
}

.nav-logo:hover svg { opacity: 0.75; }

.nav-logo-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.05em;
  transition: opacity var(--transition);
}

.nav-logo:hover .nav-logo-text { opacity: 0.7; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown);
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.nav-link:hover { color: var(--charcoal); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--charcoal); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-lang {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe);
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--taupe-light);
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.btn-lang:hover {
  color: var(--charcoal);
  border-color: var(--gold);
}

.btn-cta-nav {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  background: var(--charcoal);
  color: var(--ivory);
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.btn-cta-nav:hover {
  background: var(--gold);
  color: var(--charcoal);
}

/* Mobile Menu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all var(--transition);
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--ivory);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
}

.nav-mobile.open { transform: translateX(0); }

.nav-mobile .nav-link {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: none;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--ivory);
  border: 1.5px solid var(--charcoal);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--ivory);
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  border: 1.5px solid var(--gold);
}

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid transparent;
  padding-left: 0;
  padding-right: 0;
}

.btn-ghost::after {
  content: '→';
  transition: transform var(--transition);
}

.btn-ghost:hover { color: var(--gold-dark); }
.btn-ghost:hover::after { transform: translateX(4px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--ivory-dark);
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 30%, rgba(221,184,168,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(200,169,110,0.15) 0%, transparent 50%),
    linear-gradient(160deg, var(--ivory) 0%, var(--ivory-dark) 50%, var(--cream) 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  width: 100%;
}

.hero-text { animation: fadeInLeft 1s ease both; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--taupe);
  margin-bottom: 2.5rem;
  max-width: 42ch;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  animation: fadeInRight 1s ease both 0.2s;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-badge {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: floatBadge 3s ease-in-out infinite;
}

.hero-image-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--rose-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.hero-image-badge p {
  font-size: 0.8rem;
  color: var(--brown);
  margin: 0;
}

.hero-image-badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--charcoal);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  animation: scrollBob 2s ease-in-out infinite;
  z-index: 1;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--taupe-light), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ============================================
   CARDS — PRODUCTS
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: pointer;
}

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

.product-card-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--ivory-dark);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.badge-available {
  background: rgba(200, 169, 110, 0.15);
  color: var(--gold-dark);
  border: 1px solid rgba(200, 169, 110, 0.4);
}

.badge-order {
  background: rgba(250, 247, 242, 0.9);
  color: var(--taupe);
  border: 1px solid var(--taupe-light);
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 31, 20, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.product-card:hover .product-card-overlay { opacity: 1; }

.product-card-body {
  padding: 1.25rem;
}

.product-card-category {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.product-card-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.product-card-price {
  font-size: 0.9rem;
  color: var(--taupe);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card-price strong {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--charcoal);
}

/* ============================================
   FILTER TAGS
   ============================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-tag {
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--taupe-light);
  color: var(--taupe);
  background: transparent;
  transition: all var(--transition);
  cursor: pointer;
}

.filter-tag:hover, .filter-tag.active {
  background: var(--charcoal);
  color: var(--ivory);
  border-color: var(--charcoal);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream);
  position: relative;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold-light);
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  pointer-events: none;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--brown);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  max-width: none;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  flex-shrink: 0;
}

.testimonial-author-info p {
  font-size: 0.75rem;
  color: var(--taupe);
  margin: 0;
}

.testimonial-author-info strong {
  font-size: 0.9rem;
  color: var(--charcoal);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.75rem;
}

.star { color: var(--gold); font-size: 0.85rem; }

.testimonial-platform {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe-light);
}

/* ============================================
   INSTAGRAM FEED
   ============================================ */
.instagram-feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.instagram-feed-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: var(--cream);
}

.instagram-feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.instagram-feed-item:hover img { transform: scale(1.08); }

.instagram-feed-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 31, 20, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.instagram-feed-item:hover .instagram-feed-overlay { opacity: 1; }

.instagram-feed-overlay svg { color: white; width: 24px; height: 24px; }

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-section {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--brown) 100%);
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(200,169,110,0.15) 0%, transparent 70%);
}

.newsletter-content { position: relative; z-index: 1; }

.newsletter-section h2 {
  color: var(--ivory);
}

.newsletter-section p {
  color: var(--taupe-light);
  margin: 0 auto 2rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(200,169,110,0.3);
  background: rgba(255,255,255,0.08);
  color: var(--ivory);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
}

.newsletter-form input::placeholder { color: rgba(250,247,242,0.4); }
.newsletter-form input:focus { border-color: var(--gold); }

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), var(--gold-light), transparent);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold);
  box-shadow: 0 0 0 6px var(--ivory);
}

.process-step h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--taupe);
  max-width: 20ch;
  margin: 0 auto;
}

/* ============================================
   CUSTOM ORDER FORM (MODAL)
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 31, 20, 0.7);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  transform: translateY(20px);
  transition: transform var(--transition);
  position: relative;
}

.modal-overlay.open .modal { transform: translateY(0); }

.modal-product {
  max-width: 800px;
  width: 100%;
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  cursor: pointer;
  transition: background var(--transition);
}

.modal-close:hover { background: var(--rose-light); }

/* ============================================
   FORMS
   ============================================ */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--cream);
  background: var(--white);
  color: var(--charcoal);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,110,0.12);
}

.form-textarea { min-height: 120px; resize: vertical; }

.form-select-wrapper { position: relative; }

.form-select-wrapper::after {
  content: '↓';
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--taupe);
  pointer-events: none;
  font-size: 0.9rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 2px;
  accent-color: var(--gold-dark);
  cursor: pointer;
}

.form-checkbox label {
  font-size: 0.82rem;
  color: var(--taupe);
  line-height: 1.5;
  cursor: pointer;
}

.form-checkbox label a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-checkbox label a:hover { color: var(--charcoal); }

/* ============================================
   ABOUT — Values Grid
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--cream);
  transition: box-shadow var(--transition);
}

.value-card:hover { box-shadow: var(--shadow-md); }

.value-icon {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.value-card h4 { margin-bottom: 0.5rem; }
.value-card p { font-size: 0.9rem; color: var(--taupe); max-width: none; }

/* ============================================
   BLOG
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-image img { transform: scale(1.05); }

.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.blog-card-category {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.blog-card-date {
  font-size: 0.75rem;
  color: var(--taupe-light);
}

.blog-card-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--taupe);
  margin-bottom: 1.5rem;
  flex: 1;
  max-width: none;
}

.blog-post-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--brown);
  max-width: 65ch;
  margin: 0 auto;
}

.blog-post-content h3 {
  margin: 2rem 0 0.75rem;
  font-size: 1.6rem;
}

.blog-post-content p { margin-bottom: 1.25rem; }
.blog-post-content ol, .blog-post-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.blog-post-content li { margin-bottom: 0.5rem; }
.blog-post-content em { color: var(--gold-dark); font-style: italic; }
.blog-post-content strong { color: var(--charcoal); }

/* ============================================
   HERO — INNER PAGES
   ============================================ */
.page-hero {
  padding-top: calc(var(--nav-height) + 5rem);
  padding-bottom: 4rem;
  background: linear-gradient(160deg, var(--ivory) 0%, var(--ivory-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(221,184,168,0.2) 0%, transparent 60%);
}

.page-hero h1 { font-style: italic; position: relative; }

.page-hero p {
  margin: 1rem auto 0;
  color: var(--taupe);
  font-size: 1.1rem;
  position: relative;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact-info h3 { margin-bottom: 1rem; }
.contact-info p { max-width: none; }

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--cream);
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}

.contact-channel:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.contact-channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-whatsapp { background: rgba(37,211,102,0.1); color: #25D366; }
.icon-instagram { background: rgba(225,48,108,0.1); color: #E1306C; }
.icon-email { background: rgba(200,169,110,0.15); color: var(--gold-dark); }

.contact-channel p {
  font-size: 0.8rem;
  color: var(--taupe);
  margin: 0;
  max-width: none;
}

.contact-channel strong {
  display: block;
  font-size: 0.95rem;
  color: var(--charcoal);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  color: var(--taupe-light);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ivory-dark);
  margin: 1rem 0;
  max-width: none;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(200,169,110,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--taupe-light);
  transition: all var(--transition);
}

.footer-social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200,169,110,0.1);
}

.footer h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.9rem;
  color: var(--taupe-light);
  transition: color var(--transition);
}

.footer-link:hover { color: var(--ivory); }

.footer-newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.footer-newsletter-form input {
  flex: 1;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(200,169,110,0.3);
  background: rgba(255,255,255,0.06);
  color: var(--ivory);
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--transition);
}

.footer-newsletter-form input::placeholder { color: rgba(250,247,242,0.3); }
.footer-newsletter-form input:focus { border-color: var(--gold); }

.footer-newsletter-form button {
  padding: 0.6rem 1.2rem;
  background: var(--gold);
  color: var(--charcoal);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--transition);
  cursor: pointer;
  border: none;
}

.footer-newsletter-form button:hover { background: var(--gold-dark); color: white; }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(200,169,110,0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(250,247,242,0.3);
  margin: 0;
  max-width: none;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--rose-light) 0%, var(--ivory-dark) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(3rem, 6vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(200,169,110,0.15) 0%, transparent 70%);
}

.cta-banner > * { position: relative; }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Loading skeleton */
.skeleton {
  background: linear-gradient(90deg, var(--cream) 25%, var(--ivory-dark) 50%, var(--cream) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

/* ============================================
   PRODUCT DETAIL MODAL
   ============================================ */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.product-detail-images {
  position: sticky;
  top: 1rem;
}

.product-detail-main-image {
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.product-detail-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-thumbnails {
  display: flex;
  gap: 0.5rem;
}

.product-detail-thumb {
  width: 64px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}

.product-detail-thumb.active { border-color: var(--gold); }
.product-detail-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-detail-info h2 { margin-bottom: 0.5rem; }

.product-detail-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--charcoal);
  margin: 1rem 0;
}

.product-detail-description {
  font-size: 0.95rem;
  color: var(--taupe);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: none;
}

/* ============================================
   UTILITY
   ============================================ */
.pt-nav { padding-top: var(--nav-height); }

.bg-ivory { background: var(--ivory); }
.bg-ivory-dark { background: var(--ivory-dark); }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }

.border-gold { border: 1px solid var(--gold-light); }

.gap-gold { gap: 1px; background: var(--gold-light); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero { padding-top: var(--nav-height); }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-text { order: 2; }
  .hero-image { order: 1; max-width: 380px; margin: 0 auto; }
  .hero-image-badge { left: -1rem; }
  .hero-subtitle { margin: 0 auto 2.5rem; }
  .hero-actions { justify-content: center; }
  .hero-scroll { display: none; }

  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .btn-cta-nav { display: none; }
  .nav-hamburger { display: flex; }

  /* Nav always has background on mobile so logo + hamburger are visible */
  .nav {
    background: rgba(250, 247, 242, 0.97);
    box-shadow: 0 1px 0 rgba(200,169,110,0.15);
  }

  .instagram-feed-grid { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  .values-grid { grid-template-columns: 1fr; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }

  .product-detail { grid-template-columns: 1fr; width: 100%; }
  .product-detail-images {
    position: static;
    margin: -1.5rem -1.5rem 1.5rem -1.5rem;
    width: calc(100% + 3rem);
  }
  .product-detail-main-image {
    aspect-ratio: unset;
    border-radius: 0;
    width: 100%;
  }
  .product-detail-main-image img {
    width: 100%;
    height: auto;
    max-height: 65vw;
    object-fit: cover;
  }
  .product-detail-thumbnails {
    padding: 0.75rem 1.5rem 0;
  }
  .product-detail-info {
    width: 100%;
    overflow: hidden;
  }
  .product-detail-info a,
  .product-detail-info button {
    width: 100%;
    box-sizing: border-box;
  }
  .product-detail-description { max-width: 100%; }

  .blog-grid { grid-template-columns: 1fr; }

  /* Modal produs — nu depăși ecranul */
  .modal-overlay { padding: 0.75rem; align-items: flex-end; }
  .modal, .modal-product {
    max-width: 100%;
    width: calc(100vw - 1.5rem);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    max-height: 92vh;
    padding: 1.5rem;
  }

  /* Inner page hero — mai compact pe mobile */
  .page-hero {
    padding-top: calc(var(--nav-height) + 2.5rem);
    padding-bottom: 2.5rem;
  }

  /* Secțiuni — spațiere mai mică pe mobile */
  .section { padding: clamp(2.5rem, 6vw, 4rem) 0; }

  /* CTA banner — padding mai mic */
  .cta-banner { padding: 2.5rem 1.5rem; }

  /* Contact channels — text mai mic */
  .contact-channel { padding: 0.85rem 1rem; }
  .contact-channel strong { font-size: 0.9rem; }
  .contact-channel p { font-size: 0.75rem; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .instagram-feed-grid { grid-template-columns: repeat(3, 1fr); gap: 0.4rem; }
  .process-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { min-width: 0; }

  /* Titluri mai mici pe telefoane mici */
  h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
  h2 { font-size: clamp(1.7rem, 6vw, 2.4rem); }

  /* Footer newsletter — stivuit vertical */
  .footer-newsletter-form { flex-direction: column; }
  .footer-newsletter-form button { width: 100%; }

  /* Modal — ocupă tot ecranul pe telefoane mici */
  .modal, .modal-product {
    width: calc(100vw - 1rem);
    max-width: 100%;
    max-height: 95vh;
    padding: 1.25rem;
  }
  .product-detail-images {
    margin: -1.25rem -1.25rem 1.25rem -1.25rem;
    width: calc(100% + 2.5rem);
  }
  .product-detail-thumbnails { padding: 0.75rem 1.25rem 0; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   COOKIE CONSENT
   ============================================ */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--charcoal);
  border-top: 1px solid rgba(200,169,110,0.2);
  padding: 1.25rem clamp(1rem, 4vw, 3rem);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -8px 32px rgba(44,31,20,0.2);
}

#cookie-banner.cookie-show  { transform: translateY(0); }
#cookie-banner.cookie-hide  { transform: translateY(110%); transition-duration: 0.3s; }

.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-banner-text { flex: 1; min-width: 260px; }

.cookie-banner-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--ivory);
  margin: 0 0 .3rem;
  max-width: none;
}

.cookie-banner-body {
  font-size: .85rem;
  color: var(--taupe-light);
  margin: 0;
  max-width: none;
  line-height: 1.5;
}

.cookie-privacy-link {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-size: inherit;
  transition: color var(--transition);
}
.cookie-privacy-link:hover { color: var(--gold); }

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* Cookie buttons */
.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .6rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.cookie-btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}
.cookie-btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: white; }

.cookie-btn-outline {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(250,247,242,.3);
}
.cookie-btn-outline:hover { background: rgba(250,247,242,.08); border-color: var(--ivory); }

.cookie-btn-ghost {
  background: transparent;
  color: var(--taupe-light);
  border-color: transparent;
  padding-left: .4rem;
  padding-right: .4rem;
}
.cookie-btn-ghost:hover { color: var(--ivory); }

/* Cookie Settings Panel */
#cookie-panel {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-panel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,31,20,.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.cookie-panel-box {
  position: relative;
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: 100%;
  max-width: 520px;
  z-index: 1;
  transform: translateY(20px);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
}

#cookie-panel.cookie-show .cookie-panel-box { transform: translateY(0); opacity: 1; }
#cookie-panel.cookie-hide .cookie-panel-box { transform: translateY(20px); opacity: 0; }

.cookie-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}

.cookie-panel-header h3 {
  font-size: 1.3rem;
  color: var(--charcoal);
}

.cookie-panel-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  cursor: pointer;
  border: none;
  transition: background var(--transition);
  flex-shrink: 0;
}
.cookie-panel-close:hover { background: var(--rose-light); }

.cookie-panel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--cream);
}

.cookie-panel-row-title {
  font-weight: 500;
  font-size: .95rem;
  color: var(--charcoal);
  margin: 0 0 .3rem;
  max-width: none;
}

.cookie-panel-row-desc {
  font-size: .82rem;
  color: var(--taupe);
  margin: 0;
  max-width: none;
  line-height: 1.5;
}

/* Toggle switch */
.cookie-toggle {
  flex-shrink: 0;
  width: 46px;
  height: 26px;
  border-radius: 13px;
  background: var(--cream);
  border: none;
  cursor: pointer;
  position: relative;
  transition: background var(--transition);
}

.cookie-toggle-locked {
  background: var(--gold-light);
  cursor: not-allowed;
  opacity: .8;
}

.cookie-toggle-on { background: var(--gold); }

.cookie-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 1px 4px rgba(44,31,20,.2);
  transition: transform var(--transition);
}

.cookie-toggle-on .cookie-toggle-thumb,
.cookie-toggle-locked .cookie-toggle-thumb { transform: translateX(20px); }

.cookie-panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.75rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Mobile */
@media (max-width: 640px) {
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .cookie-banner-actions { width: 100%; justify-content: flex-end; }
}
