/* ===================================
   RESET & BASE STYLES
   =================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #4a0000;
  --secondary-color: #ffd700;
  --accent-color: #b8860b;
  --text-dark: #333;
  --text-light: #666;
  --bg-light: #fefefe;
  --bg-cream: #fff9f0;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 15px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.15);
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */

  .header, .productpage-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    z-index: 1000;
    transition: all 0.4s ease;
    border-bottom: 2px solid transparent;
  }

  .header.scrolled,  .productpage-header{
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
  }



  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
  }


  .productpage-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
  }

  .logo img {
    height: 70px;
    transition: var(--transition);
  }

  .logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
  }

  /* Navigation Menu */
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
  }

  .nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .header.scrolled .nav-link {
    color: var(--primary-color);
  }
  .productpage-header .nav-link {
    color: var(--primary-color);
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transition: var(--transition);
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--secondary-color);
  }

  .header.scrolled .nav-link:hover,
  .header.scrolled .nav-link.active {
    color: var(--secondary-color);
  }

  .nav-link:hover::after,
  .nav-link.active::after {
    width: 100%;
  }

  /* Dropdown Menu */
  .dropdown {
    position: relative;
  }

  .dropdown-toggle .fa-chevron-down {
    font-size: 10px;
    transition: var(--transition);
  }

  .dropdown:hover .fa-chevron-down {
    transform: rotate(180deg);
  }

  .mega-menu {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    width: 90vw;
    max-width: 1100px;
    padding: 40px;
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    box-shadow: var(--shadow-lg);
    border-radius: 15px;
    margin-top: 15px;
    animation: fadeDown 0.4s ease;
  }

  .dropdown:hover .mega-menu {
    display: grid;
  }

  .mega-column h4 {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .mega-column a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    padding: 8px 0;
    transition: var(--transition);
    text-transform: capitalize;
  }

  .mega-column a:hover {
    color: var(--primary-color);
    padding-left: 8px;
    font-weight: 600;
  }

  @keyframes fadeDown {
    from {
      opacity: 0;
      transform: translateX(-50%) translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }
  }

  /* Mobile Toggle */
  .mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .mobile-toggle span {
    width: 28px;
    height: 3px;
    background: #fff;
    transition: var(--transition);
    border-radius: 3px;
  }

  .header.scrolled .mobile-toggle span {
    background: var(--secondary-color);
  }

  .productpage-header .mobile-toggle span {
    background: var(--secondary-color);
  }

  @media (max-width: 992px) {

    .mobile-toggle {
      display: flex;
    }

    .nav-menu {
      position: fixed;
      top: 80px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 80px);
      background: rgba(255, 255, 255, 0.98);
      flex-direction: column;
      align-items: flex-start;
      padding: 40px;
      gap: 30px;
      transition: var(--transition);
      overflow-y: auto;
    }

    .nav-menu.active {
      left: 0;
    }

    .nav-menu .nav-link {
      color: var(--primary-color);
    }

    .mega-menu {
      position: static;
      transform: none;
      width: 100%;
      background: rgba(255,255,255,0.1);
      box-shadow: none;
      margin: 10px 0;
    }

    .mega-column h4 {
      color: var(--secondary-color);
    }

    .mega-column a {
      color: rgba(255,255,255,0.8);
    }
  }






/* ===================================
   HERO SECTION
   =================================== */

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* margin-top: 90px; */
}

#hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(74,0,0,0.6), rgba(0,0,0,0.4));
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  animation: fadeInUp 1.5s ease;
  padding: 0 20px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-title .line {
  display: block;
  background: linear-gradient(135deg, #fff, var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 40px;
  color: var(--secondary-color);
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--secondary-color);
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(255,215,0,0.3);
}

.btn-primary:hover {
  background: #ffdf32;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255,215,0,0.5);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid var(--secondary-color);
}

.btn-outline:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--secondary-color);
  border-radius: 20px;
  position: relative;
}

.mouse::before {
  content: '';
  width: 4px;
  height: 8px;
  background: var(--secondary-color);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(15px); opacity: 0; }
}

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

@media (max-width: 768px) {
  .hero-title {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .btn {
    padding: 14px 30px;
    font-size: 14px;
  }
}

/* ===================================
   SECTION STYLES
   =================================== */

section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: 'poppins';
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
  border-radius: 5px;
}

.section-subtitle {
  font-size: 20px;
  color: var(--text-light);
  margin-top: 20px;
  font-weight: 300;
}

/* ===================================
   ABOUT SECTION - Modern & Elegant
   =================================== */

  
  .about-section {
    position: relative;
    padding: 80px 0;
    background: var(--bg-gradient);
    overflow: hidden;
  }
  
  /* Overlay effect */
  .about-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 216, 155, 0.4), rgba(255, 255, 255, 0.1));
    z-index: 1;
  }
  
  /* Floating decorative shapes */
  .floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.25;
    animation: float 10s ease-in-out infinite;
    z-index: 0;
  }
  
  .shape1 {
    width: 180px;
    height: 180px;
    background: var(--primary-color);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
  }
  
  .shape2 {
    width: 250px;
    height: 250px;
    background: var(--secondary-color);
    bottom: 10%;
    right: 10%;
    animation-delay: 3s;
  }
  
  .shape3 {
    width: 100px;
    height: 100px;
    background: #ffb6b9;
    top: 60%;
    left: 50%;
    animation-delay: 6s;
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
  }
  
  .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .section-title {
    font-size: 38px;
    color: var(--primary-color);
    font-weight: 700;
  }
  
  .section-subtitle {
    color: var(--text-light);
    font-size: 18px;
  }
  
  .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;

  }
  
  .about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
  }
  
  .about-image img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
  }
  
  .about-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 40px;
  }
  

  
  @media (max-width: 968px) {
    .about-content {
      grid-template-columns: 1fr;
    }
  
    .about-image {
      order: -1;
    }
  
    .section-title {
      font-size: 30px;
    }
  }

  
/* ===================================
   QUALITY SECTION
   =================================== */

.image-slide-body {
  margin-top: 30px;
  display: flex;
  /* min-height: 100vh; */
  align-items: center;
  justify-content: center;
  font-family: sans-serif;
}

.col-box {
  padding: 10px;
  max-width: 1220px;
  border-radius: 12px;
}

.col-gallery {
  gap: 20px;
  height: 500px;
  display: flex;
  overflow: hidden;
  border-radius: 8px;
}

.col-image {
  flex: 1;
  gap: 20px;
  display: flex;
  flex-direction: column;

}

.image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Smooth infinite scroll effect */
.col-image:nth-child(odd) {
  animation: scroll-up 14s linear infinite;
}
.col-image:nth-child(even) {
  animation: scroll-down 14s linear infinite;
}

.col-image:hover {
  animation-play-state: paused;
}

/* Continuous scroll keyframes */
@keyframes scroll-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes scroll-down {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}




/* ===================================
   PRODUCTS SECTION
   =================================== */

.products-section {
  background: var(--bg-cream);
}

.product-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 12px 28px;
  background: #fff;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  text-transform: capitalize;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

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

.product-image {
  position: relative;
  overflow: hidden;
  height: 280px;
  background: var(--bg-cream);
}

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

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

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(74,0,0,0.8), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

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

.btn-view {
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-view:hover {
  transform: scale(1.1);
}

.product-info {
  padding: 25px;
}

.product-info h3 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-family: 'poppins';
}

.product-info p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 15px;
}

.product-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.badge {
  padding: 6px 15px;
  background: var(--bg-cream);
  color: var(--primary-color);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-new {
  background: var(--secondary-color);
  color: var(--primary-color);
}

/* ===================================
   QUALITY SECTION
   =================================== */

.quality-section {
  background: var(--bg-light);
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.quality-card {
  text-align: center;
  padding: 40px 30px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.quality-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.quality-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
}

.quality-card h3 {
  color: var(--primary-color);
  font-size: 20px;
  margin-bottom: 10px;
  font-family: 'poppins';
}

.quality-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials-section {
  background: linear-gradient(135deg, var(--primary-color), #6a0000);
  color: #fff;
}

.testimonials-section .section-title,
.testimonials-section .section-subtitle {
  color: #fff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255,215,0,0.2);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.15);
  border-color: var(--secondary-color);
}

.stars {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-size: 18px;
}

.testimonial-content p {
  font-style: italic;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
  color: rgba(255,255,255,0.95);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,215,0,0.2);
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.author-info h4 {
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.author-info p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin: 0;
  font-style: normal;
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact-section {
  background: var(--bg-cream);
}

/* Map Container */
.map-container {
  margin-bottom: 60px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-overlay-info {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 25px 30px;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  max-width: 400px;
}

.map-overlay-info h4 {
  color: var(--primary-color);
  font-size: 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.map-overlay-info h4 i {
  color: var(--secondary-color);
}

.map-overlay-info p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: #fff;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  min-width: 50px;
}

.contact-item h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 18px;
}

.contact-item p {
  color: var(--text-light);
  margin: 0;
  font-size: 14px;
}

.contact-form-container {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 20px;
}

.form-input {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  font-family: 'poppins';
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(255,215,0,0.1);
}

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

@media (max-width: 968px) {
  .contact-content {
    grid-template-columns: 1fr;
  }

  .map-wrapper {
    height: 350px;
  }

  .map-overlay-info {
    position: relative;
    bottom: auto;
    left: auto;
    margin: 20px 0 0 0;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .map-wrapper {
    height: 300px;
  }

  .map-overlay-info {
    padding: 20px;
  }

  .map-overlay-info h4 {
    font-size: 18px;
  }

  .map-overlay-info p {
    font-size: 13px;
  }
}

/* ===================================
   FOOTER
   =================================== */

.footer {
  background: var(--primary-color);
  color: #fff;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 20px;
  font-family: 'poppins';
}

.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: var(--transition);
  font-size: 14px;
}

.footer-col ul li a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-5px);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.footer-bottom .fa-heart {
  color: var(--secondary-color);
}



/* ===================================
   FLOATING BUTTONS
   =================================== */

.float-btn {
  position: fixed;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-color);
  color: var(--primary-color);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: var(--transition);
  z-index: 999;
  border: none;
  font-size: 24px;
}

.float-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 20px rgba(255,215,0,0.5);
}

.whatsapp-btn {
  bottom: 100px;
  right: 30px;
  background: #25D366;
  color: #fff;
}

.scroll-top {
  bottom: 30px;
  right: 30px;
}

@media (max-width: 768px) {
  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .whatsapp-btn {
    bottom: 80px;
    right: 20px;
  }

  .scroll-top {
    bottom: 20px;
    right: 20px;
  }
}


/* 🪷 Filter + Sort Bar */
.filter-sort-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-cream);
  padding: 15px 20px;
  border-radius: 12px;
  margin: 30px 0;
  box-shadow: var(--shadow-sm);
  gap: 15px;
  transition: var(--transition);
}

.filter-sort-bar:hover {
  box-shadow: var(--shadow-md);
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-group label {
  font-weight: 500;
  color: var(--primary-color);
  font-size: 15px;
}

/* 💎 Elegant dropdowns */
.filter-group select {
  padding: 10px 14px;
  border: 1px solid #e0d5b9;
  border-radius: 8px;
  background-color: var(--bg-cream);
  color: var(--primary-color);
  font-family: 'poppins', serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--accent-color) 50%),
                    linear-gradient(135deg, var(--accent-color) 50%, transparent 50%);
  background-position: calc(100% - 15px) calc(1em + 2px),
                       calc(100% - 10px) calc(1em + 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.filter-group select:hover {
  background-color: #fffaf2;
  border-color: var(--secondary-color);
  color: var(--accent-color);
  box-shadow: var(--shadow-md);
}

.filter-group select:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
  background-color: #fffdf7;
}

.filter-group select option {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: white;
}

/* 🔸 Responsive layout for tablets */
@media (max-width: 992px) {
  .filter-sort-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }

  .filter-group {
    justify-content: space-between;
  }

  .filter-group label {
    flex: 1;
  }

  .filter-group select {
    flex: 2;
  }
}

@media (max-width: 600px) {
  .filter-sort-bar {
    padding: 12px 15px;
    border-radius: 10px;
  }

  .filter-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .filter-group label {
    font-size: 14px;
  }

  .filter-group select {
    width: 100%;
    font-size: 13px;
    padding: 7px 10px;
  }

  .product-image {
    height: 200px;
  }
}

/* 🔹 Mobile layout (phones) */
@media (max-width: 600px) {
  .filter-sort-bar {
    padding: 12px 15px;
    border-radius: 10px;
  }

  .filter-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .filter-group label {
    font-size: 14px;
  }

  .filter-group select {
    width: 100%;
    font-size: 13px;
    padding: 7px 10px;
  }
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 1s ease forwards;
}

/* Smooth scrolling */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

.author-photo-medium {
  width: 90px;      /* medium size */
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
  margin-right: 14px;
}

.about-video {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  overflow: hidden;
}

.about-video-element {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: contain;   /* important: no zoom */
  background-color: #000; /* keep letterbox clean */
}





/* Slider Wrapper */
.slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: auto;
  overflow: hidden;
}

/* Slides row */
.slider-container {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

/* Each slide */
.slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
}

/* Shared styling for images & videos */
.slide img,
.slide video {
  width: 100%;
  height: auto;
  max-height: 450px;
  border-radius: 10px;
  object-fit: cover;
}

/* Navigation buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 12px 15px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 30px;
  z-index: 10;
}

#prevBtn { left: 10px; }
#nextBtn { right: 10px; }

/* Responsive */
@media (max-width: 768px) {
  .slider-btn {
    padding: 10px;
    font-size: 18px;
  }

  .slide img,
  .slide video {
    max-height: 300px;
  }
}

@media (max-width: 480px) {
  .slider-btn {
    padding: 8px;
    font-size: 16px;
  }

  .slide img,
  .slide video {
    max-height: 220px;
  }
}





