/* ============== GLOBAL ============== */
*,
*::before,
*::after { box-sizing: border-box; }
body { 
    margin:0; 
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif; 
    color:#1f2937; 
    line-height:1.6;
    background: linear-gradient(135deg, #fef3e2 0%, #fce4ec 50%, #e8eaf6 100%);
    background-attachment: fixed;
}
h2, h3 { color:#1e293b; text-align:center; padding:0; font-weight: 700; }
a { text-decoration:none; color:inherit; }

/* ============== HERO SLIDER ============== */
.hero-slider { position:relative; width:100%; height:500px; overflow:hidden; }
.slider-slide { position:absolute; top:0; left:100%; width:100%; height:100%; opacity:0; visibility:hidden; transition: all .6s ease-in-out; }
.slider-slide img { width:100%; height:100%; object-fit:cover; }
.slider-slide.active { left:0; opacity:1; visibility:visible; }

/* Navigation */
.slider-nav { position:absolute; top:50%; transform:translateY(-50%); z-index:10; background:rgba(0,0,0,.5); color:#fff; border:0; font-size:18px; cursor:pointer; padding:12px 18px; border-radius:50%; }
.slider-nav.prev{ left:20px; }
.slider-nav.next{ right:20px; }
.slider-nav:focus { outline:3px solid #fff; }

/* Dots */
.slider-dots { position:absolute; left:50%; transform:translateX(-50%); bottom:18px; display:flex; gap:8px; z-index:11; }
.slider-dot { width:10px; height:10px; border-radius:50%; background:rgba(255,255,255,.55); border:0; cursor:pointer; transition: transform .2s, background .2s; }
.slider-dot[aria-selected="true"] { background:#c19a6b; transform:scale(1.15); }

/* CTA overlay button on slides */
.slide-overlay { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; }
.cta-btn { 
    background: linear-gradient(135deg, #d946ef 0%, #8b5cf6 50%, #6366f1 100%); 
    color:#fff; 
    padding:14px 32px; 
    border-radius:30px; 
    font-weight:700; 
    letter-spacing:.5px; 
    border:0; 
    box-shadow:0 8px 25px rgba(217, 70, 239, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}
.cta-btn:hover{ 
    background: linear-gradient(135deg, #c026d3 0%, #7c3aed 50%, #4f46e5 100%);
    transform: translateY(-3px);
    box-shadow:0 12px 35px rgba(217, 70, 239, 0.5);
}

/* Slide subtitle styling */
.slide-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ============== FEATURE SCROLLER ============== */
.feature-slider{ width:100%; overflow:hidden; position:relative; padding-bottom:33px; }
.feature-track{ display:flex; animation:scroll-left 15s linear infinite; }
.feature-item{ display:flex; align-items:center; justify-content:center; padding:10px 30px; font-weight:bold; background:#f8f8f8; white-space:nowrap; }
.feature-item p{ margin:0; }
@keyframes scroll-left{ 0%{transform:translateX(100%);} 100%{transform:translateX(-100%);} }

/* ============== CURATED HEADING + GALLERY ============== */
.heading-container{ 
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 50%, #6366f1 100%); 
    padding:30px 0; 
    text-align:center; 
    width:100%;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}
.curated-heading{ 
    font-size:2.5rem; 
    font-weight:bold; 
    color:#fff; 
    margin:0; 
    text-transform:uppercase;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.image-gallery-container{ display:flex; flex-wrap:wrap; gap:20px; justify-content:center; margin:20px; }
.image-card{ 
    position:relative; 
    width:250px; 
    height:350px; 
    border-radius:15px; 
    overflow:hidden; 
    box-shadow:0 8px 20px rgba(139, 92, 246, 0.2); 
    transition: transform .3s ease, box-shadow .3s ease; 
    background:#fff;
    border: 2px solid rgba(139, 92, 246, 0.1);
}
.image-card:hover{ 
    transform:scale(1.05) translateY(-5px); 
    box-shadow:0 15px 35px rgba(139, 92, 246, 0.4);
    border-color: rgba(139, 92, 246, 0.3);
}
.collection-title{ position:absolute; top:15px; left:50%; transform:translateX(-50%); font-size:1.5rem; font-weight:bold; color:#fff; background:rgba(0,0,0,.5); padding:10px; border-radius:5px; text-align:center; width:100%; z-index:1; }
.image-wrapper{ width:100%; height:100%; overflow:hidden; border-radius:10px; }
.gallery-image{ width:100%; height:100%; object-fit:cover; transition: transform .3s ease; }
.image-card:hover .gallery-image{ transform:scale(1.1); }

/* ============== BANNER IMAGE ============== */
.banner img{ display:block; width:100%; height:auto; }

/* ============== SHOP BY CATEGORY SLIDER ============== */
.unick{ padding:40px 20px; text-align:center; background: linear-gradient(135deg, #fef3e2 0%, #fce4ec 100%); }
.unick .header h2{ 
    font-family:'Playfair Display', serif; 
    font-size:42px; 
    font-weight: 800;
    letter-spacing:2px; 
    margin-bottom:15px;
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 50%, #b8860b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.unick .header p{ font-size:18px; color:#64748b; max-width:800px; margin:0 auto 50px; line-height: 1.6; }
.slider-container{ position:relative; display:flex; align-items:center; overflow:hidden; padding:20px 0; }
.card-slider{ display:flex; gap:30px; overflow-x:auto; scroll-behavior:smooth; padding:20px 10px; scroll-snap-type:x mandatory; }
.card-slider::-webkit-scrollbar{ display:none; }
.card{ 
    background: white;
    border-radius:20px; 
    flex:0 0 auto; 
    text-align:center; 
    padding:0; 
    scroll-snap-align:start; 
    box-shadow:0 4px 20px rgba(212, 175, 55, 0.15); 
    min-width:280px; 
    max-width:320px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
    cursor: pointer;
}
.card:hover {
    transform: translateY(-10px);
    box-shadow:0 8px 30px rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.3);
}
.card img{ 
    width:100%; 
    height:280px; 
    object-fit:cover; 
    margin-bottom:0; 
    border-radius: 0;
    transition: transform 0.3s ease;
}
.card:hover img {
    transform: scale(1.05);
}
.card a {
    display: block;
    text-decoration: none;
}
.card button{ 
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%); 
    color:#fff; 
    border:0; 
    padding:15px 30px; 
    border-radius:0;
    cursor:pointer; 
    letter-spacing:1.2px; 
    font-size:14px; 
    font-weight: 700;
    transition:all .3s;
    box-shadow: none;
    width: 100%;
    margin-top: 15px;
    text-transform: uppercase;
}
.card button:hover{ 
    background: linear-gradient(135deg, #c9a961 0%, #b8860b 100%);
    transform: none;
    box-shadow: none;
}
.slide-btn{ 
    background:white; 
    border:2px solid #d4af37; 
    color:#d4af37; 
    font-size:24px; 
    padding:12px 18px; 
    cursor:pointer; 
    border-radius:50%; 
    position:absolute; 
    top:50%; 
    transform:translateY(-50%); 
    z-index:2;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}
.slide-btn:hover {
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}
.slide-btn.prev{ left:10px; }
/* ============== CURATED COLLECTIONS SLIDER ============== */
.heading-container {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, #fef3e2 0%, #fce4ec 50%, #e8eaf6 100%);
}

.curated-heading {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 50px;
  background: linear-gradient(135deg, #d4af37 0%, #c9a961 50%, #b8860b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.curated-slider-container {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 20px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.curated-card-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 10px;
  scroll-snap-type: x mandatory;
  width: 100%;
}

.curated-card-slider::-webkit-scrollbar {
  display: none;
}

.curated-card {
  background: white;
  border-radius: 20px;
  flex: 0 0 auto;
  text-align: center;
  padding: 0;
  scroll-snap-align: start;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
  min-width: 300px;
  max-width: 350px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.curated-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
  border-color: rgba(212, 175, 55, 0.4);
}

.curated-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 0;
  border-radius: 0;
  transition: transform 0.3s ease;
}

.curated-card:hover img {
  transform: scale(1.08);
}

.curated-card-content {
  padding: 20px;
  background: linear-gradient(135deg, #fff 0%, #fef3e2 100%);
}

.curated-collection-title {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: 1px;
  margin: 0;
  text-transform: uppercase;
  background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.curated-slide-btn {
  background: white;
  border: 2px solid #d4af37;
  color: #d4af37;
  font-size: 24px;
  padding: 12px 18px;
  cursor: pointer;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.curated-slide-btn:hover {
  background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.curated-prev {
  left: 10px;
}

/* ============== FEATURED PRODUCTS SLIDER ============== */
.featured-products-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fef3e2 0%, #fce4ec 50%, #e8eaf6 100%);
}

.featured-products-heading {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-align: center;
  background: linear-gradient(135deg, #d4af37 0%, #c9a961 50%, #b8860b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.featured-products-subtitle {
  font-size: 18px;
  color: #64748b;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.products-slider-container {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;
}

.products-card-slider {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 10px;
  scroll-snap-type: x mandatory;
  width: 100%;
}

.products-card-slider::-webkit-scrollbar {
  display: none;
}

.product-card {
  background: white;
  border-radius: 20px;
  flex: 0 0 auto;
  text-align: center;
  padding: 0;
  scroll-snap-align: start;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
  min-width: 280px;
  max-width: 320px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  overflow: hidden;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
  border-color: rgba(212, 175, 55, 0.4);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 0;
  border-radius: 0;
  transition: transform 0.3s ease;
}

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

.product-card-content {
  padding: 20px;
  background: linear-gradient(135deg, #fff 0%, #fef3e2 100%);
}

.product-title {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: 0.5px;
  margin: 0 0 8px 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
}

.product-category {
  font-size: 14px;
  color: #64748b;
  margin: 0 0 12px 0;
  font-weight: 500;
}

.product-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-top: 10px;
}

.currency {
  font-size: 14px;
  font-weight: 600;
  color: #d4af37;
}

.amount {
  font-size: 18px;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: 0.5px;
}

.product-slide-btn {
  background: white;
  border: 2px solid #d4af37;
  color: #d4af37;
  font-size: 22px;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-slide-btn:hover {
  background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.product-prev {
  left: 10px;
}

.product-next {
  right: 10px;
}

/* ============== CONNECT OPTIONS ============== */
.connect-options{ 
    background: linear-gradient(135deg, #fef3e2 0%, #fce4ec 100%); 
    padding:60px 20px; 
    display:flex; 
    justify-content:center; 
    gap:30px; 
    flex-wrap:wrap; 
}
.connect-options .option{ 
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%); 
    color:#fff; 
    border-radius:20px; 
    width:240px; 
    height:140px; 
    display:flex; 
    flex-direction:column; 
    align-items:center; 
    justify-content:center; 
    text-align:center; 
    transition:all .3s ease; 
    cursor:pointer;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}
.connect-options .option:hover{ 
    transform:translateY(-8px); 
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
}
.connect-options p{ font-size:14px; font-weight:600; letter-spacing:1.2px; margin:0; }

/* ============== WHAT'S SPECIAL ============== */
.special-section{ 
    padding:60px 20px; 
    background: linear-gradient(135deg, #ffffff 0%, #faf5ff 100%); 
    text-align:center; 
}
.special-section h2{ 
    font-size:36px; 
    font-weight:bold; 
    letter-spacing:2px; 
    color:#1e293b; 
    margin-bottom:50px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.special-cards{ display:flex; flex-wrap:wrap; justify-content:center; gap:40px; }
.special-card{ 
    border:2px solid rgba(139, 92, 246, 0.2); 
    border-radius:15px; 
    background:#fff; 
    padding:30px 20px; 
    max-width:280px; 
    width:100%; 
    text-align:center; 
    transition:all .3s ease; 
    box-sizing:border-box;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.1);
}
.special-card:hover{ 
    transform:translateY(-8px); 
    box-shadow:0 8px 25px rgba(139, 92, 246, 0.25);
    border-color: rgba(139, 92, 246, 0.4);
}
.special-card img{ width:40px; height:35px; margin-bottom:20px; object-fit:contain; }
.special-card h3{ 
    font-size:14px; 
    font-weight:bold; 
    color:#8b5cf6; 
    letter-spacing:1px; 
    margin-bottom:15px; 
    text-transform:uppercase; 
}
.special-card p{ font-size:14px; color:#374151; line-height:1.6; }

/* ============== TESTIMONIAL ============== */
.testimonial-section{ 
    background: linear-gradient(135deg, #fef3e2 0%, #fce4ec 100%); 
    text-align:center; 
    padding:60px 20px; 
}
.testimonial-section h2{ 
    font-size:42px; 
    letter-spacing:2px; 
    margin-bottom:30px;
    font-weight: 800;
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 50%, #b8860b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.testimonial-slider{ max-width:800px; margin:0 auto 40px; position:relative; min-height: 200px; }
.testimonial{ display:none; font-size:18px; color:#64748b; line-height:1.8; padding: 30px; }
.testimonial.active{ display:block; }
.testimonial p { font-style: italic; margin-bottom: 20px; }
.testimonial strong{ display:block; margin-top:15px; font-weight:700; color:#1e293b; font-size: 16px; }
.rating-stars { margin-bottom: 20px; }
.rating-stars i { color: #d4af37; font-size: 20px; margin: 0 3px; }
.rating-stars i.filled { color: #d4af37; }
.testimonial-thumbnails{ display:flex; justify-content:center; gap:20px; flex-wrap:wrap; margin-bottom: 30px; }
.testimonial-thumbnails img.thumb{ 
    width:80px; 
    height:80px; 
    object-fit:cover; 
    border-radius:50%; 
    cursor:pointer; 
    opacity:.5; 
    transition:all .3s ease; 
    border:3px solid transparent; 
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}
.testimonial-thumbnails img.thumb.active{ 
    opacity:1; 
    border:3px solid #d4af37; 
    transform:scale(1.1); 
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}
.submit-review-btn {
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}
.submit-review-btn:hover {
    background: linear-gradient(135deg, #c9a961 0%, #b8860b 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Review Modal */
.review-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    overflow-y: auto;
}
.review-modal-content {
    background: white;
    margin: 50px auto;
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: bold;
    color: #64748b;
    cursor: pointer;
    transition: color 0.3s;
}
.close-modal:hover {
    color: #d4af37;
}
.review-modal-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.review-modal-content > p {
    color: #64748b;
    margin-bottom: 30px;
}
.review-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}
.review-form label {
    display: block;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
    font-size: 14px;
}
.review-form input[type="text"],
.review-form input[type="file"],
.review-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s;
}
.review-form input:focus,
.review-form textarea:focus {
    outline: none;
    border-color: #d4af37;
}
.review-form textarea {
    resize: vertical;
}
.review-form small {
    display: block;
    color: #64748b;
    font-size: 12px;
    margin-top: 5px;
}
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}
.star-rating input {
    display: none;
}
.star-rating label {
    cursor: pointer;
    font-size: 30px;
    color: #cbd5e1;
    transition: color 0.2s;
}
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #d4af37;
}
.submit-btn-modal {
    width: 100%;
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}
.submit-btn-modal:hover {
    background: linear-gradient(135deg, #c9a961 0%, #b8860b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}
.success-alert {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-left: 4px solid #10b981;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    color: #065f46;
    font-weight: 600;
}

/* ============== VIDEO SLIDER ============== */
#video-slider{ display:flex; overflow-x:scroll; gap:20px; scroll-snap-type:x mandatory; }
.video-card{ width:100%; max-width:400px; flex-shrink:0; scroll-snap-align:center; }
.video-card video{ width:100%; height:auto; border-radius:8px; box-shadow:0 4px 6px rgba(0,0,0,.1); }

/* ============== ASSOCIATIONS ============== */
.association-logos{ padding:30px; background:#fff; box-shadow:0 0 10px rgba(0,0,0,.1); margin:64px auto; width:100%; }
.logos-container{ display:flex; justify-content:space-around; align-items:center; flex-wrap:wrap; gap:30px; max-width:1200px; margin:0 auto; }
.logos-container img{ max-height:60px; max-width:140px; object-fit:contain; transition:transform .3s ease; }
.logos-container img:hover{ transform:scale(1.05); }

/* ============== SCROLL TO TOP ============== */
#scrollToTopBtn{ 
    position:fixed; 
    bottom:30px; 
    right:30px; 
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%); 
    border:0; 
    padding:12px 16px; 
    border-radius:50%; 
    font-size:1.5rem; 
    color:#fff; 
    cursor:pointer; 
    display:none; 
    z-index:1600;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
    transition: all 0.3s ease;
}
#scrollToTopBtn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
}

/* ============== RESPONSIVE ============== */
/* Tablet/Laptop adjustments */
@media(max-width: 1200px){
  .product-card{ min-width: 260px; max-width: 300px; }
  .featured-products-heading{ font-size: 38px; }
}

@media(max-width: 1024px){
  .product-card{ min-width: 240px; max-width: 280px; }
  .featured-products-heading{ font-size: 36px; }
}

/* Tablet / Phablet */
@media(max-width: 768px){
  .featured-products-heading{ font-size: 32px; }
  .featured-products-subtitle{ font-size: 16px; }
  .product-card{ min-width: 220px; max-width: 260px; }
  .product-slide-btn{ display: none; } /* hide arrow buttons */
  .products-slider-container{ padding: 10px 0; }
}

/* Phones */
@media(max-width: 600px){
  .featured-products-heading{ font-size: 28px; margin-bottom: 10px; }
  .featured-products-subtitle{ font-size: 14px; margin-bottom: 30px; }
  .product-card{ min-width: 85%; max-width: 280px; margin: 0 auto; }
  .products-card-slider{ gap: 20px; padding: 15px 5px; }
  .product-title{ font-size: 14px; }
  .product-category{ font-size: 12px; }
  .amount{ font-size: 16px; }
  .product-card img{ height: 200px; }
}

@media(max-width: 1024px){
  .curated-card{ min-width: 220px; max-width: 260px; }
  .curated-heading{ font-size: 36px; }
}

/* Tablet / Phablet */
@media(max-width: 768px){
  .curated-heading{ font-size: 32px; }
  .curated-card{ min-width: 200px; max-width: 240px; }
  .curated-slide-btn{ display: none; } /* hide arrow buttons */
  .curated-slider-container{ padding: 10px 0; }
}

/* Phones */
@media(max-width: 600px){
  .curated-heading{ font-size: 28px; margin-bottom: 30px; }
  .curated-card{ min-width: 85%; max-width: 280px; margin: 0 auto; }
  .curated-card-slider{ gap: 15px; padding: 15px 5px; }
  .curated-collection-title{ font-size: 16px; }
  .curated-card img{ height: 180px; }
}
@media(max-width: 1024px){
  .hero-slider{ height:380px; }
  .image-card{ width:220px; height:300px; }
   
}
/* Tablet / Phablet */
@media(max-width: 768px){
  .hero-slider{ height:300px; }
  .cta-btn{ padding:10px 20px; font-size:14px; }
  .slide-subtitle{ font-size: 1.8rem; margin-bottom: 20px; }
  .image-gallery-container{ gap:16px; }
  .image-card{ width:200px; height:280px; }
  .slide-btn{ display:none; } /* hide arrow buttons */
  .testimonial-section h2{ font-size:24px; }
  .testimonial{ font-size:16px; }
  .testimonial-thumbnails img.thumb{ width:80px; height:80px; }
}
/* Phones */
@media(max-width: 600px){
  .image-gallery-container{ flex-direction:column; align-items:center; gap:15px; }
  .image-card{ width:95%; max-width:320px; height:auto; }
  .collection-title{ font-size:1.1rem; padding:8px; }
  .slide-subtitle{ font-size: 1.5rem; margin-bottom: 15px; }
  .logos-container{ justify-content:center; gap:20px; }
  .logos-container img{ max-height:50px; max-width:120px; }
}
/* Video container styling */
.video-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.video-container video {
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  width: 100%;
  height: auto;
}

.video-container button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.video-container button:hover {
  background: rgba(0, 0, 0, 0.1);
}
