    /* ===== RESET & BASE ===== */
    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --wine: #550505;
      --wine-light: #7a1a1a;
      --wine-dark: #3a0303;
      --rose: #fff0f0;
      --rose-medium: #f5d5d5;
      --beige: #faf5f0;
      --beige-dark: #f0e6dc;
      --gold: #c9a84c;
      --white: #ffffff;
      --text-dark: #2a0a0a;
      --text-light: #6b4040;
    }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    body {
      font-family: 'Raleway', sans-serif;
      background-color: var(--beige);
      color: var(--text-dark);
      overflow-x: hidden;
      line-height: 1.6;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Playfair Display', serif;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      width: 100px; /* largura fixa */
      height: auto; /* mantém proporção */
      max-width: 100%;
      display: block;
    }

    /* ===== PRELOADER ===== */
    .preloader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--wine);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 99999;
      transition: opacity 0.8s ease, visibility 0.8s ease;
    }

    .preloader.hidden {
      opacity: 0;
      visibility: hidden;
    }

    .preloader-content {
      text-align: center;
      color: var(--rose);
    }

    .preloader-content h1 {
      font-size: 2.5rem;
      letter-spacing: 6px;
      animation: preloaderPulse 1.5s ease-in-out infinite;
    }

    .preloader-bar {
      width: 200px;
      height: 2px;
      background: rgba(255, 240, 240, 0.2);
      margin: 20px auto 0;
      border-radius: 2px;
      overflow: hidden;
    }

    .preloader-bar::after {
      content: '';
      display: block;
      width: 40%;
      height: 100%;
      background: var(--rose);
      border-radius: 2px;
      animation: preloaderSlide 1.2s ease-in-out infinite;
    }

    @keyframes preloaderPulse {
      0%, 100% { opacity: 0.6; }
      50% { opacity: 1; }
    }

    @keyframes preloaderSlide {
      0% { transform: translateX(-100%); }
      100% { transform: translateX(350%); }
    }

    /* ===== NAVBAR ===== */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      padding: 20px 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      z-index: 1000;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .navbar.scrolled {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      padding: 12px 60px;
      box-shadow: 0 4px 30px rgba(85, 5, 5, 0.08);
    }

    .navbar-brand {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      right: -110px;
    }

    .navbar-brand h1 {
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--wine);
      letter-spacing: 3px;
      transition: color 0.3s ease;
      right: -150px;
    }

    .navbar-brand span {
      font-family: 'Raleway', sans-serif;
      font-size: 0.65rem;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--wine-light);
      margin-top: -2px;
    }

    .nav-links {
      display: flex;
      gap: 35px;
      list-style: none;
    }

    .nav-links a {
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--wine);
      position: relative;
      transition: color 0.3s ease;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1.5px;
      background: var(--gold);
      transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-links a:hover {
      color: var(--wine-dark);
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 6px;
      cursor: pointer;
      z-index: 1001;
      padding: 5px;
    }

    .hamburger span {
      width: 28px;
      height: 2px;
      background: var(--wine);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      transform-origin: center;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
      transform: translateX(-20px);
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -6px);
    }

    /* Mobile Menu */
    .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      height: 100vh;
      background: var(--wine);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 40px;
      z-index: 999;
      transition: right 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-menu.open {
      right: 0;
    }

    .mobile-menu a {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      color: var(--rose);
      letter-spacing: 3px;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.5s ease;
    }

    .mobile-menu.open a {
      opacity: 1;
      transform: translateY(0);
    }

    .mobile-menu.open a:nth-child(1) { transition-delay: 0.2s; }
    .mobile-menu.open a:nth-child(2) { transition-delay: 0.3s; }
    .mobile-menu.open a:nth-child(3) { transition-delay: 0.4s; }
    .mobile-menu.open a:nth-child(4) { transition-delay: 0.5s; }
    .mobile-menu.open a:nth-child(5) { transition-delay: 0.6s; }
    .mobile-menu.open a:nth-child(6) { transition-delay: 0.7s; }

    .mobile-menu a:hover {
      color: var(--gold);
    }

    /* ===== HERO ===== */
    .hero {
      height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--beige);
    }

    .hero-bg {
      position: absolute;
      top: 0;
      right:6px;
      width: 50%;
      height: 100%;
      overflow: hidden;
    }

    .hero-bg img {
      margin-top:100px;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.1);
      animation: heroZoom 7s ease-in-out infinite alternate;
    }

    .hero-bg::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to right, var(--beige) 0%, transparent 40%);
      z-index: 1;
    }

    @keyframes heroZoom {
      0% { transform: scale(1.1); }
      100% { transform: scale(1.0); }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding-left: 180px;
      max-width: 750px;
    }

    .hero-tag {
      display: inline-block;
      font-size: 0.75rem;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      opacity: 0;
      transform: translateY(30px);
      animation: heroFadeUp 1s ease 0.5s forwards;
    }

    .hero-title {
      font-size: 4.5rem;
      font-weight: 700;
      color: var(--wine);
      line-height: 1.1;
      margin-bottom: 20px;
      opacity: 0;
      transform: translateY(40px);
      animation: heroFadeUp 1s ease 0.7s forwards;
    }

    .hero-title em {
      font-style: italic;
      color: var(--wine-light);
    }

    .hero-subtitle {
      font-size: 1.05rem;
      color: var(--text-light);
      line-height: 1.7;
      margin-bottom: 40px;
      opacity: 0;
      transform: translateY(40px);
      animation: heroFadeUp 1s ease 0.9s forwards;
    }

    .hero-buttons {
      display: flex;
      gap: 20px;
      opacity: 0;
      transform: translateY(40px);
      animation: heroFadeUp 1s ease 1.1s forwards;
    }

    @keyframes heroFadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Buttons */
    .btn-primary {
      display: inline-block;
      padding: 16px 40px;
      background: var(--wine);
      color: var(--rose);
      font-family: 'Raleway', sans-serif;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: all 0.4s ease;
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: var(--wine-dark);
      transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 0;
    }

    .btn-primary:hover::before {
      left: 0;
    }

    .btn-primary span {
      position: relative;
      z-index: 1;
    }

    .btn-outline {
      display: inline-block;
      padding: 16px 40px;
      background: transparent;
      color: var(--wine);
      font-family: 'Raleway', sans-serif;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      border: 1.5px solid var(--wine);
      cursor: pointer;
      transition: all 0.4s ease;
    }

    .btn-outline:hover {
      background: var(--wine);
      color: var(--rose);
    }

    /* Hero scroll indicator */
    .scroll-indicator {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 5;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      animation: scrollBounce 2s ease-in-out infinite;
    }

    .scroll-indicator span {
      font-size: 0.65rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--wine-light);
    }

    .scroll-indicator .scroll-line {
      width: 1px;
      height: 40px;
      background: var(--wine-light);
      position: relative;
      overflow: hidden;
    }

    .scroll-indicator .scroll-line::after {
      content: '';
      position: absolute;
      top: -100%;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--gold);
      animation: scrollLineMove 2s ease-in-out infinite;
    }

    @keyframes scrollBounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(10px); }
    }

    @keyframes scrollLineMove {
      0% { top: -100%; }
      50% { top: 100%; }
      100% { top: 100%; }
    }

    /* ===== HERO PORTRAIT ===== */
    .hero-portrait {
      position: absolute;
      bottom: 60px;
      right: 8%;
      z-index: 3;
      opacity: 0;
      display: none;
      transform: translateY(40px) scale(0.8);
      animation: heroPortraitIn 1.2s ease 1.3s forwards;
    }

    .hero-portrait-inner {
      width: 200px;
      height: 200px;
      border-radius: 50%;
      overflow: hidden;
      border: 4px solid var(--gold);
      box-shadow: 0 15px 50px rgba(85, 5, 5, 0.25), 0 0 0 8px rgba(85, 5, 5, 0.1);
      transition: transform 0.5s ease, box-shadow 0.5s ease;
    }

    .hero-portrait-inner:hover {
      transform: scale(1.05);
      box-shadow: 0 20px 60px rgba(85, 5, 5, 0.35), 0 0 0 12px rgba(85, 5, 5, 0.15);
    }

    .hero-portrait-inner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-portrait-label {
      text-align: center;
      margin-top: 12px;
      font-family: 'Playfair Display', serif;
      font-size: 0.85rem;
      font-style: italic;
      color: var(--wine);
      letter-spacing: 1px; 
    }

    @keyframes heroPortraitIn {
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    @media (max-width: 992px) {
      .hero-portrait {
        position: relative;
        bottom: auto;
        right: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 40px auto 0;
        animation: heroPortraitIn 1s ease 1.3s forwards;
      }
      .hero-portrait-inner {
        width: 150px;
        height: 150px;
      }
      .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
      }
    }

    @media (max-width: 480px) {
      .hero-portrait-inner {
        width: 120px;
        height: 120px;
      }
    }

@media (max-width: 992px) {
  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content:center;
  }

  .hero-portrait {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 30px;
  }
}

    /* ===== MARQUEE ===== */
    .marquee-section {
      background: var(--wine);
      padding: 18px 0;
      overflow: hidden;
    }

    .marquee-track {
      display: flex;
      animation: marqueeScroll 25s linear infinite;
      width: max-content;
    }

    .marquee-item {
      display: flex;
      align-items: center;
      gap: 30px;
      padding: 0 30px;
      white-space: nowrap;
    }

    .marquee-item span {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      color: var(--rose);
      letter-spacing: 3px;
      text-transform: uppercase;
    }

    .marquee-item .dot {
      width: 6px;
      height: 6px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0;
    }

    @keyframes marqueeScroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ===== SECTIONS COMMON ===== */
    .section {
      padding: 100px 80px;
    }

    .section-header {
      text-align: center;
      margin-bottom: 70px;
    }

    .section-tag {
      display: inline-block;
      font-size: 0.7rem;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 15px;
    }

    .section-title {
      font-size: 3rem;
      color: var(--wine);
      margin-bottom: 15px;
    }

    .section-line {
      width: 60px;
      height: 2px;
      background: var(--wine);
      margin: 0 auto 20px;
      position: relative;
    }

    .section-line::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 10px;
      height: 10px;
      background: var(--beige);
      border: 2px solid var(--wine);
      border-radius: 50%;
    }

    .section-desc {
      font-size: 1rem;
      color: var(--text-light);
      max-width: 550px;
      margin: 0 auto;
    }

    /* ===== PRODUCT GRID ===== */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 35px;
    }

    .product-card {
      position: relative;
      overflow: hidden;
      background: var(--white);
      border-radius: 4px;
      box-shadow: 0 10px 40px rgba(85, 5, 5, 0.06);
      opacity: 0;
      transform: none !important;
      animation: none !important;
      transition: opacity 1.3s ease;
      max-width: 400px;
      margin:auto;
    }

    .product-card.visible {
      opacity: 1;

    }

    .product-card:hover {
      transform: none;
      box-shadow: 0 25px 60px rgba(85, 5, 5, 0.12);
    }

    .product-image {
      position: relative;
      overflow: hidden;
      width: 400px;
      height: 400px;
    }

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* mostra a imagem inteira */
  background: #fff; /* evita fundo feio */
}

    .product-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 20px;
      background: linear-gradient(to top, rgba(85, 5, 5, 0.85), transparent);
    }


    .product-overlay .btn-outline {
      border-color: var(--rose);
      color: var(--rose);
      padding: 10px 25px;
      font-size: 0.7rem;
      width: 100%;
      text-align: center;
    }
    @media (max-width: 768px) {
  .product-card {
    max-width: 90%;
  }

  .product-image {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 480px) {
  .product-image {
    height: 220px;
  }
}

    .product-overlay .btn-outline:hover {
      background: var(--rose);
      color: var(--wine);
    }

    .product-badge {
      position: absolute;
      top: 15px;
      left: 15px;
      background: var(--wine);
      color: var(--rose);
      font-size: 0.65rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 6px 14px;
      z-index: 2;
    }

    .product-info {
      padding: 25px;
    }

    .product-info h3 {
      font-size: 1.15rem;
      color: var(--wine);
      margin-bottom: 8px;

    }

    .product-card:hover .product-info h3 {
      color: var(--wine-dark);
    }

    .product-info .price {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      color: var(--wine);
      font-weight: 600;
    }

    .product-info .price .old-price {
      font-size: 0.85rem;
      color: var(--text-light);
      text-decoration: line-through;
      margin-left: 10px;
      font-weight: 400;
    }

    .product-info .category {
      font-size: 0.7rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 5px;
    }

    /* ===== COLOR SWATCHES ===== */
    .color-swatches {
      display: flex;
      border-color: black;
      gap: 8px;
      margin-top: 12px;
      padding-top: 12px;
      border-top: 1px solid var(--rose-medium);
    }

    .color-swatch {
      width: 24px;
      height: 24px;
      border-radius: 4px;
      cursor: pointer;
      border: 1px solid black;
      transition: all 0.3s ease;
      position: relative;
    }

    .color-swatch:hover {
      transform: scale(1.15);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .color-swatch.active {
      border-color: var(--wine);
      box-shadow: 0 0 0 2px var(--beige), 0 0 0 4px var(--wine);
    }

    .product-image img {
      transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    }

    .product-image img.switching {
      opacity: 0;
      transform: scale(1.02);
    }

    /* ===== FEATURED BANNER ===== */
    .featured-banner {
      position: relative;
      height: 500px;
      background: var(--wine);
      overflow: hidden;
      display: flex;
      align-items: center;
    }

    .featured-banner .parallax-bg {
      position: absolute;
      top: -50px;
      left: 0;
      width: 100%;
      height: calc(100% + 100px);
      background: url('images/hero.jpg') center/cover no-repeat;
      opacity: 0.2;
    }

    .featured-content {
      position: relative;
      z-index: 2;
      text-align: center;
      width: 100%;
      padding: 0 40px;
    }

    .featured-content .section-tag {
      color: var(--gold);
    }

    .featured-content h2 {
      font-size: 3.5rem;
      color: var(--rose);
      margin-bottom: 15px;
    }

    .featured-content p {
      color: var(--rose-medium);
      font-size: 1.1rem;
      margin-bottom: 35px;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }

    .featured-content .btn-outline {
      border-color: var(--rose);
      color: var(--rose);
    }

    .featured-content .btn-outline:hover {
      background: var(--rose);
      color: var(--wine);
    }

    

    @keyframes float {
      0%, 100% { transform: translateY(0) ; }
      33% { transform: translateY(-30px) ; }
      66% { transform: translateY(20px) ; }
    }

    /* ===== VESTIDOS SECTION ===== */
    .vestidos-section {
      background: var(--rose);
    }

    /* ===== BOLSAS SECTION ===== */
    .bolsas-section {
      background: var(--beige);
    }

    /* ===== BLUSAS SECTION ===== */
    .blusas-section {
      background: var(--rose);
    }

    /* ===== INSTAGRAM / GALLERY ===== */

.gallery-section {
  padding: 80px 0;
  background: var(--rose);
  overflow: hidden;
}

.gallery-section .section-header {
  padding: 0 80px;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
}

/* ITEM */
.gallery-item {
  position: relative;
  overflow: hidden;
  height: 450px;
}

/* IMAGEM */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

/* HOVER */
.gallery-item:hover img {
  transform: scale(1.08);
}

/* OVERLAY */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(85, 5, 5, 0);
  transition: background .4s ease;
}

.gallery-item:hover::after {
  background: rgba(85, 5, 5, 0.35);
}

/* ICON */
.gallery-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.8);
  opacity: 0;
  z-index: 2;

  width: 50px;
  height: 50px;
  border: 2px solid var(--rose);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all .4s ease;
}

.gallery-item:hover .gallery-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.gallery-icon svg {
  fill: var(--rose);
  width: 20px;
  height: 20px;
}

    /* ===== ABOUT SECTION ===== */
    .about-section {
      background: var(--white);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about-image {
      position: relative;
      overflow: hidden;
      height: 600px;
      border-radius: 4px;
    }

    .about-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 10s ease;
    }

    .about-image:hover img {
      transform: scale(1.05);
    }

    .about-image::before {
      content: '';
      position: absolute;
      top: -15px;
      left: -15px;
      width: 100px;
      height: 100px;
      border-top: 3px solid var(--wine);
      border-left: 3px solid var(--wine);
      z-index: 2;
      transition: all 0.5s ease;
    }

    .about-image::after {
      content: '';
      position: absolute;
      bottom: -15px;
      right: -15px;
      width: 100px;
      height: 100px;
      border-bottom: 3px solid var(--wine);
      border-right: 3px solid var(--wine);
      z-index: 2;
      transition: all 0.5s ease;
    }

    .about-text .section-tag {
      text-align: left;
    }

    .about-text h2 {
      font-size: 2.8rem;
      color: var(--wine);
      margin-bottom: 25px;
      line-height: 1.2;
    }

    .about-text p {
      color: var(--text-light);
      margin-bottom: 20px;
      line-height: 1.8;
    }

    .about-stats {
      display: flex;
      gap: 50px;
      margin-top: 40px;
      padding-top: 40px;
      border-top: 1px solid var(--rose-medium);
    }

    .stat-item h3 {
      font-size: 2.5rem;
      color: var(--wine);
    }

    .stat-item p {
      font-size: 0.8rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-light);
      margin-bottom: 0;
    }

    /* ===== TESTIMONIALS ===== */
    .testimonials-section {
      background: var(--rose);
      position: relative;
      overflow: hidden;
    }

    .testimonials-slider {
      position: relative;
      max-width: 700px;
      margin: 0 auto;
      text-align: center;
    }

    .testimonial {
      display: none;
      animation: testimonialFade 0.8s ease;
    }

    .testimonial.active {
      display: block;
    }

    @keyframes testimonialFade {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .testimonial-quote {
      font-size: 2.5rem;
      color: var(--wine);
      opacity: 0.15;
      margin-bottom: -10px;
      font-family: 'Playfair Display', serif;
    }

    .testimonial p {
      font-size: 1.15rem;
      color: var(--text-dark);
      line-height: 1.9;
      font-style: italic;
      margin-bottom: 25px;
    }

    .testimonial-author {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--wine);
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .testimonial-author span {
      display: block;
      font-weight: 400;
      color: var(--text-light);
      font-size: 0.75rem;
      margin-top: 5px;
      letter-spacing: 1px;
    }

    .testimonial-dots {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 40px;
    }

    .testimonial-dots button {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: 1.5px solid var(--wine);
      background: transparent;
      cursor: pointer;
      transition: all 0.3s ease;
      padding: 0;
    }

    .testimonial-dots button.active {
      background: var(--wine);
      transform: scale(1.2);
    }

    /* ===== CONTACT SECTION ===== */
    .contact-section {
      background: var(--rose);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
    }

    .contact-info h3 {
      font-size: 1.8rem;
      color: var(--wine);
      margin-bottom: 20px;
    }

    .contact-info p {
      color: var(--text-light);
      line-height: 1.8;
      margin-bottom: 35px;
    }

    .contact-detail {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      margin-bottom: 25px;
    }

    .contact-detail .icon {
      width: 45px;
      height: 45px;
      background: var(--wine);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-detail .icon svg {
      width: 18px;
      height: 18px;
      fill: var(--rose);
    }

    .contact-detail div h4 {
      font-family: 'Raleway', sans-serif;
      font-size: 0.75rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--wine);
      margin-bottom: 4px;
      font-weight: 600;
    }

    .contact-detail div p {
      margin-bottom: 0;
      font-size: 0.95rem;
    }

    .contact-form {
      background: var(--white);
      padding: 45px;
      border-radius: 4px;
      box-shadow: 0 15px 50px rgba(85, 5, 5, 0.06);
    }

    .form-group {
      margin-bottom: 25px;
    }

    .form-group label {
      display: block;
      font-size: 0.75rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--wine);
      margin-bottom: 8px;
      font-weight: 600;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 14px 18px;
      border: 1.5px solid var(--rose-medium);
      background: var(--beige);
      font-family: 'Raleway', sans-serif;
      font-size: 0.9rem;
      color: var(--text-dark);
      transition: all 0.3s ease;
      border-radius: 2px;
      outline: none;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--wine);
      background: var(--white);
      box-shadow: 0 0 0 3px rgba(85, 5, 5, 0.08);
    }

    .form-group textarea {
      height: 130px;
      resize: vertical;
    }

    .contact-form .btn-primary {
      width: 100%;
      padding: 16px;
      font-size: 0.8rem;
    }

    /* ===== NEWSLETTER ===== */
    .newsletter-section {
      background: var(--wine);
      padding: 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .newsletter-section h2 {
      font-size: 2.5rem;
      color: var(--rose);
      margin-bottom: 10px;
    }

    .newsletter-section p {
      color: var(--rose-medium);
      margin-bottom: 35px;
      font-size: 1rem;
    }

    .newsletter-form {
      display: flex;
      max-width: 500px;
      margin: 0 auto;
      gap: 0;
    }

    .newsletter-form input {
      flex: 1;
      padding: 16px 20px;
      border: 1.5px solid rgba(255, 240, 240, 0.3);
      background: rgba(255, 240, 240, 0.1);
      color: var(--rose);
      font-family: 'Raleway', sans-serif;
      font-size: 0.85rem;
      outline: none;
      transition: all 0.3s ease;
    }

    .newsletter-form input::placeholder {
      color: rgba(255, 240, 240, 0.5);
    }

    .newsletter-form input:focus {
      border-color: var(--gold);
      background: rgba(255, 240, 240, 0.15);
    }

    .newsletter-form button {
      padding: 16px 30px;
      background: var(--gold);
      color: var(--wine-dark);
      border: none;
      font-family: 'Raleway', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .newsletter-form button:hover {
      background: var(--rose);
    }

    /* ===== FOOTER ===== */
    .footer {
      background: var(--wine-dark);
      padding: 50px 40px 25px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 60px;
    }

    .footer-brand h2 {
      font-size: 1.5rem;
      color: var(--rose);
      letter-spacing: 3px;
      margin-bottom: 5px;

    }

    .footer-brand .tagline {
      font-size: 0.6rem;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;

    }

    .footer-brand p {
      color: rgba(255, 240, 240, 0.6);
      font-size: 0.9rem;
      line-height: 1.8;
    }

    .footer h4 {
      font-family: 'Raleway', sans-serif;
      font-size: 0.75rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--rose);
      margin-bottom: 25px;
      font-weight: 600;
    }

.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
}
.footer-links li {
  margin: 0;
}

.footer-links a {
  font-size: 0.85rem;
}
    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      color: rgba(255, 240, 240, 0.6);
      font-size: 0.85rem;
      transition: all 0.3s ease;
      position: relative;
    }

    .footer-links a:hover {
      color: var(--gold);
      padding-left: 8px;
    }

    .social-links {
      display: flex;
      gap: 12px;
    }

    .social-link {
      width: 40px;
      height: 40px;
      border: 1px solid rgba(255, 240, 240, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .social-link:hover {
      background: var(--wine);
      border-color: var(--wine);
      transform: translateY(-3px);
    }

    .social-link svg {
      width: 16px;
      height: 16px;
      fill: var(--rose);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 240, 240, 0.1);
      padding-top: 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-bottom p {
      color: rgba(255, 240, 240, 0.4);
      font-size: 0.8rem;
    }

    /* ===== BACK TO TOP ===== */
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: var(--wine);
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 900;
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px);
      transition: all 0.4s ease;
      box-shadow: 0 5px 20px rgba(85, 5, 5, 0.3);
    }

    .back-to-top.visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .back-to-top:hover {
      background: var(--wine-dark);
      transform: translateY(-3px);
    }

    .back-to-top svg {
      width: 18px;
      height: 18px;
      fill: var(--rose);
    }

    /* ===== REVEAL ANIMATIONS ===== */
    .reveal {
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-left {
      opacity: 0;
      transform: translateX(-60px);
      transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .reveal-left.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .reveal-right {
      opacity: 0;
      transform: translateX(60px);
      transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .reveal-right.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .reveal-scale {
      opacity: 0;
      transform: scale(0.85);
      transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .reveal-scale.visible {
      opacity: 1;
      transform: scale(1);
    }

    /* Staggerays */
    .delay-1 { transition-delay: 0.1s; }
    .delay-2 { transition-delay: 0.2s; }
    .delay-3 { transition-delay: 0.3s; }
    .delay-4 { transition-delay: 0.4s; }
    .delay-5 { transition-delay: 0.5s; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1200px) {
      .section { padding: 80px 50px; }
      .hero-title { font-size: 3.5rem; }
      .hero-content { padding-left: 50px; }
      .navbar { padding: 20px 40px; }
      .navbar.scrolled { padding: 12px 40px; }
    }

    @media (max-width: 992px) {
      .hamburger { display: flex; }
      .nav-links { display: none; }

      .hero-bg { width: 100%; opacity: 0.35; }
      .hero-bg::before {
        background: linear-gradient(to right, var(--beige) 0%, rgba(250, 245, 240, 0.7) 100%);
      }
      .hero-content {
        padding: 0 50px;
        max-width: 100%;
        text-align: center;
      }
      .hero-title { font-size: 3rem; }
      .hero-buttons { justify-content: center; }

      .products-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
      .about-grid { grid-template-columns: 1fr; gap: 50px; }
      .about-image { height: 400px; }
      .contact-grid { grid-template-columns: 1fr; gap: 50px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
      .featured-content h2 { font-size: 2.5rem; }
    }

    @media (max-width: 768px) {
      .section { padding: 70px 25px; }
      .navbar { padding: 15px 25px; }
      .navbar.scrolled { padding: 10px 25px; }

      .hero-title { font-size: 2.4rem; }
      .hero-subtitle { font-size: 0.95rem; }
      .hero-buttons { flex-direction: column; align-items: center; gap: 12px; }
      .btn-primary, .btn-outline { width: 100%; text-align: center; max-width: 280px; }

      .section-title { font-size: 2.2rem; }
      .products-grid { grid-template-columns: 1fr; gap: 30px; }
      .product-image { height: 350px; }


.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.gallery-item {
  height: 400px;
} 
      .about-stats { gap: 30px; }
      .stat-item h3 { font-size: 2rem; }

      .featured-content h2 { font-size: 2rem; }
      .featured-banner { height: 400px; }

      .newsletter-section { padding: 60px 25px; }
      .newsletter-form { flex-direction: column; }
      .newsletter-form input, .newsletter-form button { width: 100%; }
      .newsletter-section h2 { font-size: 2rem; }

      .footer { padding: 60px 25px 25px; }
      .footer h2 { 
        display:flex;
        justify-content: center;
      }
      .footer .tagline{
        display:flex;
        justify-content: center;
      }
      .footer-grid { grid-template-columns: 1fr; gap: 35px; }
      .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }

      .contact-form { padding: 30px; }
    }

    @media (max-width: 480px) {
      .hero-title { font-size: 2rem; }
      .section-title { font-size: 1.8rem; }
      .about-text h2 { font-size: 2rem; }
      .about-stats { flex-direction: column; gap: 20px; }
      .product-image { height: 300px; }
      .gallery-item { flex: 1 1 100%; height: 300px; }
      .hero-content { padding: 0 20px; }
    }
    @media (max-width: 768px) {
  .gallery-grid .gallery-item:last-child {
    display: none;
  }
}