/* ==================== */
/* BASE & RESET */
/* ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--white);
  overflow-x: hidden;
}

/* ==================== */
/* COLOR PALETTE */
/* ==================== */
:root {
  --gold: #D4AF37;
  --orange: #ae7a2b;
  --white: #FFFFFF;
  --champagne: #EEDCB3;
  --deep-gold: #C5A059;
  --marble: #F2EDE4;
  --dark-text: #2C1810;
}

/* ==================== */
/* TYPOGRAPHY */
/* ==================== */
.font-serif {
  font-family: 'Playfair Display', serif;
}

/* ==================== */
/* CONTAINER */
/* ==================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* ==================== */
/* HEADER SECTION */
/* ==================== */
.section-header {
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .section-header { margin-bottom: 4rem; }
}

.badge-1 {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .badge-1 { font-size: 0.75rem; }
}

.main-title {
  font-size: 2rem;
  color: var(--dark-text);
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (min-width: 640px) { .main-title { font-size: 2.5rem; } }
@media (min-width: 768px) { .main-title { font-size: 3.5rem; } }
@media (min-width: 1024px) { .main-title { font-size: 4rem; } }

.subtitle {
  color: rgba(44, 24, 16, 0.6);
  font-size: 0.875rem;
  max-width: 672px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .subtitle { font-size: 1rem; margin-bottom: 2rem; }
}

/* ==================== */
/* BUTTONS */
/* ==================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--orange);
  color: var(--white);
  padding: 0.775rem 2rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media (min-width: 640px) {
  .btn-primary { font-size: 1rem; padding: 1rem 2.5rem; }
}
.btn-primary:hover {
  background-color: var(--deep-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.btn-primary:hover svg { transform: translateX(4px); }
.btn-primary svg { transition: transform 0.3s ease; }

.btn-add-to-cart {
  width: 100%;
  background-color: var(--orange);
  color: var(--white);
  padding: 0.575rem;
  border-radius: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .btn-add-to-cart { padding: 1rem; font-size: 1rem; }
}
.btn-add-to-cart:hover {
  background-color: var(--deep-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ==================== */
/* GRID SYSTEM */
/* ==================== */
.main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .main-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

.featured-inner {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .featured-inner { grid-template-columns: 1fr 1fr; }
}

/* ==================== */
/* CARDS */
/* ==================== */
.featured-card {
  background-color: var(--marble);
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.1);
  transition: all 0.3s ease;
  height: auto;
  display: flex;
  flex-direction: column;
}
.featured-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}
.featured-inner { flex: 1; display: grid; }

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .product-grid { gap: 1.5rem; }
}

.product-card {
  background-color: var(--marble);
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(197, 160, 89, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}
@media (min-width: 768px) {
  .product-card { padding: 1.25rem; gap: 1.25rem; }
}
.product-card:hover {
  border-color: var(--gold);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* ==================== */
/* VIDEO WRAPPER */
/* ==================== */
.video-wrapper {
  position: relative;
  width: 100%;
  background-color: var(--dark-text);
  overflow: hidden;
  aspect-ratio: 9 / 16;
}
.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
}
.video-wrapper blockquote {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: auto;
}
.video-wrapper > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .video-wrapper { height: 500px; overflow: hidden; }
}

/* ==================== */
/* PRODUCT IMAGE */
/* ==================== */
.product-img-wrapper {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  border-radius: 0.75rem;
  background-color: var(--white);
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .product-img-wrapper { width: 90px; height: 90px; }
}
.product-card:hover .product-img-wrapper {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ==================== */
/* TYPOGRAPHY UTILITIES */
/* ==================== */
.product-title {
  color: var(--dark-text);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .product-title { font-size: 1rem; }
}

.featured-title-1 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  color: var(--dark-text);
}
@media (min-width: 768px) { .featured-title-1 { font-size: 1.5rem; } }
@media (min-width: 1024px) { .featured-title-1 { font-size: 1.75rem; } }

.price-current {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--orange);
}
.price-old {
  color: rgba(44, 24, 16, 0.4);
  text-decoration: line-through;
  font-size: 0.875rem;
}
.price-large {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--orange);
}
@media (min-width: 768px) { .price-large { font-size: 2rem; } }

/* ==================== */
/* STAR RATINGS */
/* ==================== */
.stars {
  display: flex;
  gap: 0.125rem;
  color: var(--gold);
}
.stars svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.stars-small svg {
  width: 10px;
  height: 10px;
}
.review-count {
  color: rgba(44, 24, 16, 0.5);
  font-size: 0.7rem;
}
@media (min-width: 768px) { .review-count { font-size: 0.75rem; } }

/* ==================== */
/* TESTIMONIAL */
/* ==================== */
.testimonial {
  background-color: var(--white);
  border-radius: 0.75rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.3s ease;
}
.testimonial:hover {
  border-color: var(--gold);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.1);
}
.testimonial-text {
  color: var(--dark-text);
  font-size: 0.875rem;
  font-style: italic;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.testimonial-author {
  color: var(--deep-gold);
  font-size: 0.75rem;
  font-weight: 600;
}

/* ==================== */
/* FLEX & SPACING */
/* ==================== */
.flex { display: flex; }
.items-center { align-items: center; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.flex-1 { flex: 1; }
.flex-col { flex-direction: column; }
.justify-between { justify-content: space-between; }
.shrink-0 { flex-shrink: 0; }
.min-w-0 { min-width: 0; }
.w-full { width: 100%; }
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ==================== */
/* PADDING */
/* ==================== */
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
@media (min-width: 768px) { .p-6 { padding: 2rem; } }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.pt-12 { padding-top: 3rem; }
.pb-16 { padding-bottom: 4rem; }
@media (min-width: 768px) { .py-24 { padding-top: 6rem; padding-bottom: 6rem; } }

/* ==================== */
/* TEXT & BACKGROUND COLORS */
/* ==================== */
.text-white { color: var(--white); }
.text-gold { color: var(--gold); }
.text-orange { color: var(--orange); }
.text-dark { color: var(--dark-text); }
.bg-white { background-color: var(--white); }
.bg-marble { background-color: var(--marble); }
.bg-champagne { background-color: var(--champagne); }

/* ==================== */
/* BORDERS & UTILITIES */
/* ==================== */
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.overflow-hidden { overflow: hidden; }
.truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.text-center { text-align: center; }
.cursor-pointer { cursor: pointer; }
.transition-all { transition: all 0.3s ease; }
.inline-flex { display: inline-flex; }
.block { display: block; }
.relative { position: relative; }

/* ==================== */
/* DISCOUNT BADGE */
/* ==================== */
.discount-badge {
  background-color: rgba(212, 175, 55, 0.15);
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 2rem;
}
@media (min-width: 768px) { .discount-badge { font-size: 0.75rem; } }

/* ==================== */
/* FOOTNOTE */
/* ==================== */
.footer-note {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.7rem;
  color: var(--deep-gold);
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media (min-width: 768px) { .footer-note { margin-top: 4rem; font-size: 0.75rem; } }

/* ============================================ */
    /* CSS SECTION - Modern Infinite Video Carousel  */
    /* ============================================ */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .reels-carousel-wrapper {
      --gold: #D4AF37;
      --orange: #ae7a2b;
      --white: #FFFFFF;
      --champagne: #EEDCB3;
      --deep-gold: #C5A059;
      --marble: #fdf8f3;
      --dark-text: #2C1810;
      font-family: 'Inter', sans-serif;
      padding: 4rem 0;
      background: linear-gradient(135deg, #FEFAF5 0%, #FDF5E6 100%);
      overflow-x: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
    }

    .reels-header {
      text-align: center;
      margin-bottom: 3rem;
      padding: 0 1.5rem;
      width: 100%;
    }

    .reels-title {
      font-size: 1.75rem;
      font-family: 'Playfair Display', serif;
      color: var(--dark-text);
      line-height: 1.3;
      max-width: 900px;
      margin: 0 auto;
      font-weight: 600;
      letter-spacing: -0.01em;
    }

    @media (min-width: 768px) {
      .reels-title { font-size: 2.5rem; }
    }

    .reels-carousel {
      position: relative;
      width: 100%;
      overflow: hidden;
      user-select: none;
    }

    .reels-track {
      width: 100%;
      overflow: visible;
      cursor: grab;
      touch-action: pan-y pinch-zoom; /* FIX 2: Allows vertical scroll while keeping horizontal drag */
    }

    .reels-track.dragging {
      cursor: grabbing;
      touch-action: none; /* Disables scroll while actively dragging horizontally */
    }

    .reels-items {
      display: flex;
      gap: 1rem;
      align-items: center;
      width: max-content;
      will-change: transform;
      transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      padding: 1rem;
    }

    @media (min-width: 768px) {
      .reels-items { gap: 1.5rem; padding: 1rem 0; }
    }

    /* Reel Cards */
    .reel-card {
      flex-shrink: 0;
      width: 280px;
      aspect-ratio: 9 / 16;
      border-radius: 24px;
      overflow: hidden;
      background-color: var(--dark-text);
      box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.25);
      transition: all 0.3s ease;
      position: relative;
      opacity: 0.65;
      transform: scale(0.88);
      transition: transform 0.3s ease, opacity 0.3s ease;
      cursor: pointer;
    }

    @media (min-width: 480px) { .reel-card { width: 300px; } }
    @media (min-width: 768px) { .reel-card { width: 280px; border-radius: 28px; } }
    @media (min-width: 1024px) { .reel-card { width: 300px; } }
    @media (min-width: 1200px) { .reel-card { width: 320px; } }

    .reel-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      pointer-events: none;
    }

    /* Active card styling - center focus */
    .reel-card.active {
      transform: scale(1);
      opacity: 1;
      box-shadow: 0 28px 45px -12px rgba(0, 0, 0, 0.35);
      z-index: 10;
    }

    /* Sound Button - FULLY VISIBLE & FIXED */
    .sound-btn {
      position: absolute;
      bottom: 16px;
      right: 16px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background-color: rgba(0, 0, 0, 0.75);
      backdrop-filter: blur(6px);
      border: 1.5px solid rgba(255, 215, 120, 0.7);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      transition: all 0.2s ease;
      padding: 0;
      box-shadow: 0 2px 8px rgba(0,0,0,0.3);
      -webkit-tap-highlight-color: transparent; /* Better touch feedback */
    }

    .sound-btn:hover {
      background-color: var(--orange);
      transform: scale(1.08);
      border-color: white;
    }

    .sound-icon {
      font-size: 20px;
      display: block;
      line-height: 1;
      color: white;
      text-shadow: 0 0 2px black;
      pointer-events: none; /* FIX 1: Ensures the icon doesn't interfere with button clicks */
    }

    /* Drag instruction (mobile hint) */
    .drag-instruction {
      text-align: center;
      margin-top: 1.2rem;
      font-size: 0.75rem;
      font-weight: 500;
      color: var(--deep-gold);
      display: block;
      letter-spacing: 0.5px;
    }

    @media (min-width: 768px) { 
      .drag-instruction { display: none; }
    }

    /* Desktop Controls (prev/next + dots) */
    .carousel-controls {
      display: none;
      justify-content: center;
      align-items: center;
      gap: 1.5rem;
      margin-top: 2.5rem;
    }

    @media (min-width: 768px) { 
      .carousel-controls { display: flex; }
    }

    .nav-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background-color: rgba(174, 122, 43, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      border: none;
      cursor: pointer;
      transition: all 0.25s ease;
      color: var(--orange);
    }

    .nav-btn:hover {
      background-color: var(--orange);
      color: var(--white);
      transform: scale(1.05);
    }

    .nav-btn svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 2; fill: none; }

    /* Dot Indicators (mobile & optional) */
    .dot-indicators {
      display: none !important;
      gap: 0.6rem;
      justify-content: center;
      margin-top: 1.8rem;
    }

    .dot {
      width: 8px;
      height: 8px;
      border-radius: 100%;
      background-color: rgba(174, 122, 43, 0.35);
      transition: all 0.25s ease;
      border: none;
      cursor: pointer;
      padding: 0;
    }

    .dot.active {
      background-color: var(--orange);
      transform: scale(1.3);
      width: 10px;
      height: 10px;
    }

    @media (min-width: 768px) { 
      .dot-indicators { display: none; }
    }

    /* subtle loading / smooth */
    .reel-video {
      background: #1a110a;
    }
/* REVIEWS SECTION */
/* ==================== */
.arina-reviews-section {
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(135deg, #FEFAF5 0%, #FDF5E6 100%);
  overflow: hidden;
}
.arina-reviews-decoration {
  position: absolute;
  opacity: 0.08;
  z-index: 0;
}
.arina-reviews-dec-1 {
  top: 20px;
  left: 20px;
  width: 80px;
  animation: float 4s ease-in-out infinite;
}
.arina-reviews-dec-2 {
  bottom: 20px;
  right: 20px;
  width: 100px;
  animation: float 5s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}
.arina-reviews-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
.arina-reviews-subtitle {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #B8860B;
  font-weight: 700;
  background: rgba(184, 134, 11, 0.1);
  padding: 5px 15px;
  border-radius: 40px;
  margin-bottom: 15px;
}
.arina-reviews-title {
  font-size: 42px;
  font-weight: 700;
  color: #2C1810;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
  position: relative;
  display: inline-block;
}
.arina-reviews-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #B8860B, #D4AF37);
  border-radius: 3px;
}
.arina-reviews-description {
  font-size: 16px;
  color: #7A6C5D;
  margin-top: 25px;
}
.arina-reviews-slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  padding: 20px 30px;
}
.reviews-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: #FFFFFF;
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.reviews-prev { left: -10px; }
.reviews-next { right: -10px; }
.reviews-nav-btn:hover {
  background: #B8860B;
  border-color: #B8860B;
}
.reviews-nav-btn:hover i { color: #FFFFFF; }
.reviews-nav-btn i {
  font-size: 18px;
  color: #B8860B;
  transition: all 0.3s ease;
}
.arina-reviews-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 30px;
}
.arina-review-card {
  flex: 0 0 calc(33.333% - 20px);
  min-width: calc(33.333% - 20px);
  background: #FFFFFF;
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(197, 160, 89, 0.15);
  position: relative;
}
.arina-review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(184, 134, 11, 0.12);
}
.review-quote-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #B8860B, #D4AF37);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.review-quote-icon i { color: #FFFFFF; font-size: 20px; }
.review-text {
  font-size: 15px;
  line-height: 1.7;
  color: #5C4B3A;
  margin-bottom: 20px;
  font-style: italic;
}
.review-stars { margin-bottom: 20px; }
.review-stars i {
  color: #FFD700;
  font-size: 14px;
  margin-right: 3px;
}
.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  padding-top: 15px;
  border-top: 1px solid rgba(197, 160, 89, 0.2);
}
.reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #D4AF37;
}
.reviewer-details h4 {
  font-size: 16px;
  font-weight: 600;
  color: #2C1810;
  margin-bottom: 3px;
}
.reviewer-details p {
  font-size: 12px;
  color: #B8860B;
}
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.reviews-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(184, 134, 11, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
.reviews-dot.active {
  width: 30px;
  border-radius: 10px;
  background: #B8860B;
}
.reviews-dot:hover { background: #B8860B; }

/* ==================== */
/* RESPONSIVE */
/* ==================== */
@media (max-width: 1024px) and (min-width: 769px) {
  .arina-reviews-slider { padding: 20px 35px; }
  .reviews-prev { left: -5px; }
  .reviews-next { right: -5px; }
  .reviews-nav-btn { width: 40px; height: 40px; }
  .arina-review-card { flex: 0 0 calc(50% - 15px); min-width: calc(50% - 15px); }
}
@media (max-width: 768px) and (min-width: 577px) {
  .arina-reviews-section { padding: 60px 15px; }
  .arina-reviews-slider { padding: 20px 30px; }
  .reviews-prev { left: -5px; }
  .reviews-next { right: -5px; }
  .reviews-nav-btn { width: 38px; height: 38px; }
  .reviews-nav-btn i { font-size: 16px; }
  .arina-reviews-title { font-size: 32px; }
  .arina-review-card { flex: 0 0 100%; min-width: 100%; padding: 30px; }
}
@media (max-width: 576px) {
  .arina-reviews-section { padding: 50px 12px; }
  .arina-reviews-slider { padding: 15px 25px; }
  .reviews-prev { left: 0px; }
  .reviews-next { right: 0px; }
  .reviews-nav-btn { width: 32px; height: 32px; background: rgba(255, 255, 255, 0.95); }
  .reviews-nav-btn i { font-size: 14px; }
  .arina-reviews-title { font-size: 28px; }
  .arina-reviews-description { font-size: 14px; }
  .arina-review-card { padding: 25px; }
  .review-text { font-size: 14px; }
  .review-quote-icon { width: 38px; height: 38px; }
  .review-quote-icon i { font-size: 16px; }
  .reviewer-avatar { width: 42px; height: 42px; }
  .reviewer-details h4 { font-size: 14px; }
}
@media (max-width: 375px) {
  .arina-reviews-slider { padding: 15px 20px; }
  .reviews-nav-btn { width: 28px; height: 28px; }
  .reviews-nav-btn i { font-size: 12px; }
  .arina-review-card { padding: 20px; }
  .review-text { font-size: 13px; }
}

/* ==================== */
/* ABOUT SECTION */
/* ==================== */
.about-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-image img { width: 100%; border-radius: 20px; }
.about-content h2 {
  font-size: 38px;
  margin-bottom: 20px;
  color: var(--dark-text);
}
.about-content h2 span { color: var(--gold); }
.about-feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 30px 0;
}
.about-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
}
.about-feature-list i { color: var(--orange); }

.shop-now-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: #B8860B;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.shop-now-btn:hover {
  background: #8B6508;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(184, 134, 11, 0.3);
}
.shop-now-btn:active { transform: translateY(0); }
.shop-now-btn i { transition: transform 0.3s ease; font-size: 14px; }
.shop-now-btn:hover i { transform: translateX(5px); }
.shop-now-btn.large { padding: 18px 42px; font-size: 18px; gap: 12px; }

/* ==================== */
/* GENERAL RESPONSIVE */
/* ==================== */
@media (max-width: 992px) {
  .about-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .about-feature-list { grid-template-columns: 1fr; }
}

/* Desktop: Shows original products */
.product-grid-desktop {
  display: block;
}

.product-grid-mobile {
  display: none;
}

/* Mobile: Shows mobile-specific products */
@media (max-width: 768px) {
  .product-grid-desktop {
    display: none;
  }
  
  .product-grid-mobile {
    display: block;
  }
}

	/* How to Use Section - Modern Design */
.howtouse-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #FDF8F3 0%, #FFF8F0 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.howtouse-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(184,134,11,0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.howtouse-section::after {
    content: '✨';
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 60px;
    opacity: 0.05;
    pointer-events: none;
}

.howtouse-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2C1810;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
}

.section-title h2 span {
    color: #B8860B;
    position: relative;
}

.section-title h2 span::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #B8860B, #D4AF37);
    border-radius: 3px;
}

.section-title p {
    font-size: 18px;
    color: #7A6C5D;
    max-width: 500px;
    margin: 25px auto 0;
}

/* Steps Grid */
.steps-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
}

/* Step Card */
.step-card {
    flex: 1;
    min-width: 220px;
    background: #FFFFFF;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(184, 134, 11, 0.1);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(184, 134, 11, 0.15);
    border-color: rgba(184, 134, 11, 0.3);
}

/* Step Icon Container */
.step-icon {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #B8860B, #D4AF37);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.step-card:hover .step-icon {
    border-radius: 50%;
    transform: rotate(360deg) scale(1.05);
}

.step-icon i {
    font-size: 40px;
    color: #FFFFFF;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 32px;
    height: 32px;
    background: #2C1810;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    border: 2px solid #FFFFFF;
}

/* Step Card Text */
.step-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #2C1810;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.step-card p {
    font-size: 14px;
    color: #7A6C5D;
    line-height: 1.6;
    margin: 0;
}

/* Connector lines between cards */
.step-connector {
    position: absolute;
    top: 45%;
    right: -30px;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #B8860B, transparent);
    display: none;
}

/* Show connectors only on desktop */
@media (min-width: 992px) {
    .step-card:not(:last-child) .step-connector {
        display: block;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .howtouse-section {
        padding: 60px 20px;
    }
    
    .section-title h2 {
        font-size: 36px;
    }
    
    .steps-grid {
        gap: 25px;
    }
    
    .step-card {
        min-width: 200px;
        padding: 30px 20px;
    }
    
    .step-icon {
        width: 80px;
        height: 80px;
    }
    
    .step-icon i {
        font-size: 35px;
    }
}

@media (max-width: 768px) {
    .howtouse-section {
        padding: 50px 15px;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
    
    .section-title p {
        font-size: 16px;
    }
    
    .steps-grid {
        flex-direction: column;
        max-width: 350px;
        margin: 0 auto;
        gap: 20px;
    }
    
    .step-card {
        padding: 25px 20px;
        display: flex;
        align-items: center;
        text-align: left;
        gap: 20px;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        margin: 0;
        flex-shrink: 0;
    }
    
    .step-icon i {
        font-size: 30px;
    }
    
    .step-card h4 {
        font-size: 18px;
        margin-bottom: 5px;
    }
    
    .step-card p {
        font-size: 13px;
    }
    
    .step-connector {
        display: none;
    }
}

@media (max-width: 480px) {
    .step-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px 15px;
    }
    
    .step-icon {
        width: 65px;
        height: 65px;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}

/* Animation on scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.2s; }
.step-card:nth-child(3) { animation-delay: 0.3s; }
.step-card:nth-child(4) { animation-delay: 0.4s; }


/* Arina Beauty - Scrolling Announcement Bar - Golden Background */
.arina-running-line {
    background: linear-gradient(135deg, #ae7a2b 0%, #D4AF37 50%, #ae7a2b 100%);
    padding: 2px 0;
    overflow-x: hidden;
	padding-top:8px !important;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	z-index:0 !important;
}

.arina-running-line__wrapper {
	
    display: flex;
    white-space: nowrap;
    animation: scrollMarquee 25s linear infinite;
}

.arina-running-line__content {
	
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 50px;
}

.arina-running-line__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: black;
}

.arina-running-line__item svg {
    flex-shrink: 0;
}

.arina-running-line__item svg path {
    fill: #1a1a1a;
}

.arina-running-line__text {
    font-family: 'Poppins', 'Inter', sans-serif;
}

/* Marquee Animation */
@keyframes scrollMarquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.arina-running-line:hover .arina-running-line__wrapper {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
    .arina-running-line {
        padding: 5px 0;
    }
    .arina-running-line__item {
        font-size: 11px;
        gap: 8px;
    }
    .arina-running-line__content {
        gap: 35px;
    }
    .arina-running-line__item svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 576px) {
    .arina-running-line {
        padding: 4px 0;
    }
    .arina-running-line__item {
        font-size: 10px;
        gap: 6px;
    }
    .arina-running-line__content {
        gap: 25px;
    }
    .arina-running-line__item svg {
        width: 12px;
        height: 12px;
    }
}
			

.arina-running-line {
  position: sticky !important;
  top: 0 !important;
  z-index: 9999;
  background: linear-gradient(90deg, #ae7a2b 0%, #D4AF37 50%, #ae7a2b 100%);
  
  overflow: hidden;
} 

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px;
    background: #000000;
    border-top: 1px solid rgba(212,175,55,0.3);
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.copyright p {
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #D4AF37;
}

.separator {
    color: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

    .arina-cta-row-fixed {
      display: flex;
      gap: 12px;
      margin-bottom: 1.2rem;
      align-items: center;
    }
    
    .arina-btn-primary-fixed {
      flex: 1;
      font-family: 'Outfit', sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--arina-white);
      background: var(--arina-orange);
      border: none;
      padding: 17px 16px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      border-radius: 40px;
    }
    


.mobile-shop-now-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #B8860B;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 50px;
    font-family: 'Poppins', 'Inter', sans-serif;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all 0.3s ease;
    overflow: visible;
    z-index: 1;
}

/* ========================================
   PREMIUM GOLDEN GLOW VERSION
   ======================================== */

.mobile-fixed-shop-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #000000;
    padding: 6px 20px;
    text-align: center;
    border-top: 2px solid #B8860B;
    display: none;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.mobile-shop-now-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #B8860B;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: 60px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 215, 0, 0.5);
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Golden Glow Effect */
.mobile-shop-now-btn {
    animation: goldenGlow 2s ease-in-out infinite;
}

@keyframes goldenGlow {
    0%, 100% {
        background: #B8860B;
        box-shadow: 0 0 5px rgba(184, 134, 11, 0.5);
    }
    50% {
        background: #D4AF37;
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    }
}

/* Ripple Effect on Click */
.mobile-shop-now-btn:active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    animation: ripple 0.5s ease-out;
}

@keyframes ripple {
    0% {
        width: 0;
        height: 0;
        opacity: 0.5;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

.mobile-shop-now-btn:hover {
    background: #D4AF37;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.mobile-shop-now-btn:active {
    transform: translateY(1px);
}

/* Mobile Visibility */
@media (max-width: 768px) {
    .mobile-fixed-shop-btn {
        display: block;
        animation: slideUp 0.3s ease-out;
    }
    
    @keyframes slideUp {
        from { transform: translateY(100%); }
        to { transform: translateY(0); }
    }
    
    body {
        padding-bottom: 80px !important;
    }
}

@media (max-width: 480px) {
    .mobile-fixed-shop-btn {
        padding: 8px 15px;
    }
    
    .mobile-shop-now-btn {
        padding: 10px 16px;
        font-size: 12px;
        gap: 8px;
    }
    
    body {
        padding-bottom: 65px !important;
    }
}