@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500&family=Jost:wght@300;400;500&display=swap");

:root {
    --primary: #4a4a4a;
    --secondary: #f0f0f0;
    --accent: #d4a373;
    --text-primary: #333333;
    --text-secondary: #ffffff;
    --background: #ffffff;
    --navbar-bg: #fafafa;
    --announcement-bg: #e9edc9;
    --border-color: #eeeeee;
    --hover-color: #faedcd;
    --search-bg: #f5f5f5;
    --hero-overlay: rgba(0, 0, 0, 0.1);
    --transition-speed: 0.3s;
    --mobile-menu-bg: var(--navbar-bg);
  }

  [data-theme="dark"] {
    --primary: #2d2d2d;
    --secondary: #1a1a1a;
    --accent: #cda24d;
    --text-primary: #f0f0f0;
    --text-secondary: #1a1a1a;
    --background: #121212;
    --navbar-bg: #1a1a1a;
    --announcement-bg: #352f44;
    --border-color: #333333;
    --hover-color: #5c5470;
    --search-bg: #2a2a2a;
    --hero-overlay: rgba(0, 0, 0, 0.7);
    --mobile-menu-bg: #2a2a2a;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background-color var(--transition-speed),
      color var(--transition-speed);
  }

  body {
    /* font-family: "Inter", sans-serif; */
    font-family: "Jost", sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    padding-top: 94px; /* Adjusted for new thinner navbar */
  }

  html{
    scroll-behavior: smooth;
  }

/* Announcement Bar */
.announcement-bar {
    background-color: var(--announcement-bg);
    padding: 8px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-size: 13px;
  }

  .announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    letter-spacing: 0.5px;
    white-space: nowrap;
    animation: slide 20s linear infinite;
  }

  .announcement-item {
    margin: 0 40px;
    display: flex;
    align-items: center;
  }

  .announcement-item i {
    margin-right: 8px;
  }

  /* Navbar */
  .navbar-container {
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--navbar-bg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }



  .navbar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 40px;
    background-color: var(--navbar-bg);
    
  }

  .navbar-section {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  /* Left section */
  .logo {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    color: var(--text-primary);
  }

  .logo span {
    color: var(--accent);
  }

  /* Center section - Search */
  .search-container {
    flex-grow: 1;
    max-width: 500px;
    margin: 0 20px;
    position: relative;
  }

  .search-box {
    width: 100%;
    padding: 10px 16px;
    padding-right: 42px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    background-color: var(--search-bg);
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.3s ease;
  }

  .search-box:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--accent);
    border-color: transparent;
  }

  .search-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 14px;
    opacity: 0.8;
  }

  .search-btn:hover {
    opacity: 1;
  }

  /* Right section */
  .theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: var(--text-primary);
    padding: 6px;
    border-radius: 50%;
    transition: background-color 0.2s;
  }

  .theme-toggle:hover {
    background-color: var(--hover-color);
  }

  .icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: var(--text-primary);
    position: relative;
    padding: 6px;
    border-radius: 50%;
    transition: background-color 0.2s;
  }

  .icon-btn:hover {
    background-color: var(--hover-color);
  }

  .badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: var(--accent);
    color: var(--text-secondary);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
  }

  .navbar-bottom {
    display: flex;
    justify-content: center;
    background-color: var(--navbar-bg);
    padding-bottom: 5px;
    
  }

  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
  }

  .nav-item {
    position: relative;
  }

  .nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .nav-link i {
    font-size: 12px;
    transition: transform 0.2s;
  }

  .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
  }

  .nav-link:hover::after {
    width: 100%;
  }

  .mobile-menu-btn {
    display: none;
    font-size: 20px;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
  }

  .mobile-menu-btn:hover {
    background-color: var(--hover-color);
  }

  

  /* Mobile Menu */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 280px;
    background-color: var(--mobile-menu-bg);
    z-index: 1100;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding: 20px;
    overflow-y: auto;
  }

  .mobile-menu.active {
    transform: translateX(0);
  }

  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
  }

  .close-mobile-menu {
    background: none;
    border: none;
    font-size: 22px;
    color: var(--text-primary);
    cursor: pointer;
  }

  .mobile-nav-links {
    list-style: none;
  }

  .mobile-nav-item {
    margin-bottom: 12px;
  }

  .mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
  }

  .mobile-dropdown-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 14px;
    cursor: pointer;
  }

  .mobile-dropdown-menu {
    padding-left: 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .mobile-dropdown-menu.active {
    max-height: 500px;
  }

  .mobile-dropdown-menu a {
    display: block;
    padding: 8px 0;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1099;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .overlay.active {
    opacity: 1;
    visibility: visible;
  }

  @keyframes slide {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  /* Responsive Design */
  @media (max-width: 1200px) {
    .nav-links {
      gap: 24px;
    }
  }

  @media (max-width: 992px) {
    .navbar-top {
      padding: 12px 24px;
    }

    .search-container {
      max-width: 300px;
    }

    .nav-links {
      gap: 18px;
    }
  }

  @media (max-width: 768px) {
    body {
      padding-top: 116px;
    }

    .navbar-top {
      padding: 12px 16px;
      flex-wrap: wrap;
      /* gap: 12px; */
    }

    .mobile-menu-btn {
      display: block;
      order: 1;
    }

    .logo {
      order: 2;
      font-size: 18px;
      flex-grow: 1;
      text-align: center;
    }

    .navbar-section.right {
      order: 3;
      gap: 12px;
    }

    .search-container {
      order: 4;
      max-width: 100%;
      width: 100%;
      margin: 6px 0 0;
    }

    .navbar-bottom {
      display: none;
    }

    .icon-btn,
    .theme-toggle {
      font-size: 16px;
      padding: 4px;
    }
  }

  @media (max-width: 480px) {
    .announcement-item {
      margin: 0 20px;
    }

    .announcement-item i {
      display: none;
    }
  }

  /* Hero Section */
  .hero-section {
    position: relative;
    overflow: hidden;
    height: calc(100vh - 94px); /* Subtract navbar height */
    min-height: 600px;
    display: flex;
    align-items: center;
  }

  .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
  }

  .bg-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 100%;
    background-color: var(--secondary);
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
    transition: background-color var(--transition-speed);
  }

  .bg-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    overflow: hidden;
  }

  .hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
    display: flex;
    position: relative;
    z-index: 2;
  }

  .hero-content {
    width: 50%;
    padding-right: 40px;
  }

  .hero-tag {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--accent);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }

  /* .hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
  } */

  .hero-title span {
    color: var(--accent);
  }

  .hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 520px;
    color: white;
    opacity: 0.9;
  }

  .hero-cta {
    display: flex;
    gap: 16px;
  }

  .btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .shop-btn-primary {
    background-color: var(--accent);
    color: var(--text-secondary);
    border:none;
  }

  .shop-btn-primary:hover {
    background-color: var(--hover-color);
  }

  .btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent);
    color: var(--text-primary);
  }

  .btn-outline:hover {
    background-color: var(--accent);
    color: var(--text-secondary);
  }

  .hero-image {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .model-image {
    width: 80%;
    height: auto;
    object-fit: cover;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
  }

  .floating-product {
    position: absolute;
    background: var(--background);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .floating-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  }

  .floating-product.top {
    top: 15%;
    right: 5%;
  }

  .floating-product.bottom {
    bottom: 15%;
    left: 5%;
  }

  .product-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background-color: var(--secondary);
  }

  .product-info {
    flex: 1;
  }

  .product-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
  }

  .product-price {
    font-size: 14px;
    color: var(--accent);
    font-weight: 700;
  }

  .decorative-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
  }

  .circle-1 {
    top: 10%;
    left: 10%;
    width: 200px;
    height: 200px;
    background-color: var(--accent);
  }

  .circle-2 {
    bottom: 15%;
    right: 20%;
    width: 150px;
    height: 150px;
    background-color: var(--accent);
  }

  /* Scroll indicator */
  .scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }

  .scroll-indicator:hover {
    opacity: 1;
  }

  .scroll-text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }

  .scroll-icon {
    width: 24px;
    height: 24px;
    animation: bounce 2s infinite;
  }

  @keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-10px);
    }
    60% {
      transform: translateY(-5px);
    }
  }

  /* Responsive Design */
  @media (max-width: 1100px) {
    .hero-title {
      font-size: 48px;
    }

    .hero-description {
      font-size: 16px;
    }

    .floating-product.top {
      top: 10%;
      right: 0;
    }

    .floating-product.bottom {
      bottom: 10%;
      left: 0;
    }
  }

  @media (max-width: 900px) {
    .hero-section {
      height: auto;
      padding: 60px 0;
    }

    .hero-container {
      flex-direction: column;
      padding: 0 20px;
    }

    .hero-content,
    .hero-image {
      width: 100%;
      padding-right: 0;
    }

    .hero-content {
      margin-bottom: 60px;
      text-align: center;
    }

    .hero-description {
      margin-left: auto;
      margin-right: auto;
    }

    .hero-cta {
      justify-content: center;
    }

    .bg-left {
      width: 100%;
      clip-path: none;
    }

    .bg-right {
      display: none;
    }

    .hero-image {
      height: 400px;
    }

    .model-image {
      width: 60%;
    }

    .floating-product.top {
      top: 0;
      right: 20%;
    }

    .floating-product.bottom {
      bottom: 0;
      left: 20%;
    }

    .scroll-indicator {
      display: none;
    }
  }

  @media (max-width: 600px) {
    .hero-title {
      font-size: 36px;
    }

    .hero-tag {
      font-size: 12px;
      padding: 6px 12px;
    }

    .hero-cta {
      flex-direction: column;
      gap: 12px;
    }

    .btn {
      width: 100%;
      padding: 12px 24px;
    }

    .floating-product {
      display: none;
    }
  }

  /* Hero Section */
  .hero-section {
    position: relative;
    height: 90vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }

  .hero-background video,
  .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* opacity: 0.2; */
  }

  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--hero-overlay);
    z-index: -1;
  }

  .hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    color: #ffffff;
    z-index: 1;
    transform: translateY(-20px);
    animation: fadeIn 1s ease-out forwards;
  }

  .hero-tagline {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--accent);
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
    animation-delay: 0.2s;
  }

  .hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
    animation-delay: 0.4s;
  }

  .hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
    animation-delay: 0.6s;
    color: rgba(255, 255, 255, 0.587);
  }

  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
    animation-delay: 0.8s;
  }
  .hero-buttons a{
    text-decoration: none;
  }

  .btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    transition: all 0.4s ease;
    z-index: -1;
  }

  .btn:hover::before {
    left: 0;
  }

  .btn-primary {
    background-color: var(--btn-primary);
    color: var(--btn-text);
    border: none;
  }

  .btn-primary:hover {
    background-color: var(--btn-hover);
  }

  .btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
  }

  .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  /* Collection Highlights */
  .collection-highlights {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 1s;
    opacity: 0;
  }

  .highlight-item {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .highlight-item:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
  }

  .highlight-title {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 5px;
  }

  .highlight-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
  }

  /* Scroll Indicator */
  .scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
    color: #ffffff;
    font-size: 1.5rem;
    opacity: 0.7;
  }

  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateX(-50%) translateY(0);
    }
    40% {
      transform: translateX(-50%) translateY(-10px);
    }
    60% {
      transform: translateX(-50%) translateY(-5px);
    }
  }

  /* Media Queries */
  @media (max-width: 992px) {
    .hero-title {
      font-size: 3.5rem;
    }
  }

  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.8rem;
    }

    .hero-buttons {
      flex-direction: column;
      width: 100%;
      max-width: 300px;
      margin: 0 auto;
    }

    .collection-highlights {
      flex-wrap: wrap;
      gap: 15px;
      padding: 0 20px;
    }

    .highlight-item {
      flex: 1 1 calc(50% - 15px);
      min-width: 120px;
    }
  }

  @media (max-width: 576px) {
    .hero-section {
      height: 80vh;
    }

    .hero-title {
      font-size: 2.2rem;
    }

    .hero-subtitle {
      font-size: 1rem;
    }
  }

  .featured-collection {
    padding: 5rem 2rem;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
  }
  
  .collection-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
  }
  
  .decorative-line {
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--accent);
    margin: 0 auto 1.5rem;
  }
  
  .section-title {
    font-size: 2.75rem;
    font-weight: 400;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
  }
  
  .featured-section-subtitle {
    font-size: 1.1rem;
    color: var(--text-primary);
    opacity: 0.8;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
  }
  
  .product-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    max-width: 1300px;
    margin: 0 auto;
  }
  
  @media (min-width: 992px) {
    .product-showcase {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  .product-card {
    background: var(--background);
    border: 1px solid var(--border-color);
    transition: all var(--transition-speed) ease-out;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  }
  
  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(58, 110, 165, 0.2);
  }
  
  .product-media {
    position: relative;
    padding-top: 125%;
    overflow: hidden;
    background-color: var(--background-alt);
  }
  
  .product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.75s ease;
  }
  
  .product-card:hover .product-image {
    transform: scale(1.05);
  }
  
  .product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: var(--text-secondary);
    padding: 0.35rem 0.85rem;
    font-size: 0.75rem;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    font-weight: 500;
  }
  
  .quick-actions {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 0.75rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all var(--transition-speed) ease;
  }
  
  .product-card:hover .quick-actions {
    transform: translateY(0);
    opacity: 1;
  }
  
  .quick-view, .wishlist {
    background: var(--accent);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    color: var(--text-primary);
  }
  
  .quick-view:hover, .wishlist:hover {
    background: var(--hover-color);
    color: var(--text-primary);
    transform: scale(1.1);
  }
  
  .product-info {
    padding: 1.75rem;
  }
  
  .product-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.2px;
  }
  
  .product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  
  .price-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .price {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 600;
  }
  
  .price-old {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    text-decoration: line-through;
  }
  
  .rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
  
  .stars {
    color: #ffc107;
    letter-spacing: -1px;
    font-size: 0.95rem;
  }
  
  .count {
    font-size: 0.8rem;
    color: var(--text-tertiary);
  }
  
  .product-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .color-options {
    display: flex;
    gap: 0.75rem;
  }
  
  .color-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  }
  
  .color-dot:hover, .color-dot.active {
    transform: scale(1.2);
  }
  
  .color-dot.active {
    box-shadow: 0 0 0 2px var(--accent);
  }
  
  .size-options {
    display: flex;
    gap: 0.5rem;
  }
  
  .size-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    background: transparent;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    color: var(--accent);
  }
  
  .size-btn:hover {
    border-color: var(--accent);
  }
  
  .size-btn.active {
    background: var(--text-primary);
    color: var(--text-secondary);
    border-color: var(--text-primary);
  }
  
  .add-to-cart {
    width: 100%;
    padding: 0.85rem;
    background: var(--text-primary);
    border: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
  }
  
  .add-to-cart:hover {
    background: var(--accent);
  }
  
  .cart-icon {
    width: 18px;
    height: 18px;
  }
  
  .collection-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-content: start;
  }
  
  @media (min-width: 768px) {
    .collection-details {
      padding: 1rem 0;
    }
  }
  
  .detail-card {
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all var(--transition-speed) ease;
    background: var(--background-alt);
  }
  
  .detail-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  }
  
  .detail-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--accent);
    background: rgba(58, 110, 165, 0.08);
    border-radius: 50%;
  }
  
  .detail-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .detail-card h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
  }
  
  .detail-card p {
    font-size: 0.95rem;
    color: var(--text-tertiary);
    line-height: 1.7;
    margin-bottom: 1rem;
  }
  
  .learn-more {
    font-size: 0.85rem;
    color: var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    position: relative;
  }
  
  .learn-more::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
  }
  
  .learn-more:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  
  .view-collection {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    margin-top: 1rem;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-speed) ease;
  }
  
  .view-collection:hover {
    background: var(--text-primary);
    color: var(--text-secondary);
    border-color: var(--text-primary);
  }
  
  .product-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    gap: 1.5rem;
  }
  
  .carousel-prev, .carousel-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    color: var(--text-primary);
  }
  
  .carousel-prev:hover, .carousel-next:hover {
    background: var(--text-primary);
    color: var(--text-secondary);
    border-color: var(--text-primary);
  }
  
  .carousel-dots {
    display: flex;
    gap: 0.5rem;
  }
  
  .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    transition: all var(--transition-speed) ease;
  }
  
  .dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--accent);
  }
  
  @media (max-width: 767px) {
    .featured-collection {
      padding: 3rem 1.5rem;
    }
    
    .section-title {
      font-size: 2rem;
    }
    
    .detail-card {
      padding: 1.5rem;
    }
    
    .product-info {
      padding: 1.25rem;
    }
  }

  
  /* ===============Editorial============== */
  .editorial-section {
    background-color: var(--background);
    position: relative;
    overflow: hidden;
  }
  
  .editorial-container {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
  }
  
  @media (min-width: 992px) {
    .editorial-container {
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
    }
  }
  
  .editorial-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 0;
  }
  
  .content-wrapper {
    max-width: 540px;
  }
  
  .section-label {
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.25rem;
    display: inline-block;
    font-weight: 500;
    position: relative;
  }
  
  .section-label::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
  }
  
  .editorial-title {
    font-size: 3.25rem;
    font-weight: 400;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
  }
  
  .title-accent {
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    margin-bottom: 1.75rem;
  }
  
  .editorial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    max-width: 95%;
  }
  
  .editorial-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
  }
  
  .stat-item {
    display: flex;
    flex-direction: column;
  }
  
  .stat-number {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    letter-spacing: 0.5px;
  }
  
  .editorial-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
  }
  
  .editorial-cta {
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    font-weight: 500;
    letter-spacing: 0.2px;
    font-size: 0.95rem;
  }
  
  .primary-cta {
    display: inline-flex;
    align-items: center;
    background-color: var(--text-primary);
    color: var(--background);
    padding: 0.85rem 1.75rem;
    position: relative;
    overflow: hidden;
  }
  
  .primary-cta::after {
    content: "→";
    margin-left: 0.5rem;
    transition: transform var(--transition-speed) ease;
  }
  
  .primary-cta:hover::after {
    transform: translateX(5px);
  }
  
  .primary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--accent);
    transition: transform var(--transition-slow) ease;
    z-index: -1;
  }
  
  .primary-cta:hover::before {
    transform: translateX(100%);
  }
  
  .secondary-cta {
    display: inline-flex;
    align-items: center;
    color: var(--text-primary);
    padding: 0.85rem 0;
    position: relative;
  }
  
  .secondary-cta::after {
    content: '';
    position: absolute;
    bottom: 0.65rem;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--text-primary);
    transform: scaleX(0.3);
    transform-origin: left;
    transition: transform var(--transition-speed) ease;
  }
  
  .secondary-cta:hover {
    color: var(--accent);
  }
  
  .secondary-cta:hover::after {
    transform: scaleX(1);
    background-color: var(--accent);
  }
  
  .editorial-testimonial {
    background-color: var(--background-alt);
    padding: 2rem;
    position: relative;
    border-left: 3px solid var(--accent);
  }
  
  .quote-icon {
    color: var(--accent);
    opacity: 0.2;
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
  }
  
  .testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    font-style: italic;
    position: relative;
    z-index: 1;
  }
  
  .testimonial-author {
    display: flex;
    flex-direction: column;
  }
  
  .author-name {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.95rem;
  }
  
  .author-title {
    font-size: 0.85rem;
    color: var(--text-tertiary);
  }
  
  .editorial-visuals {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  @media (min-width: 768px) {
    .editorial-visuals {
      padding-top: 3rem;
    }
  }
  
  .editorial-image {
    position: relative;
    overflow: hidden;
    background-color: var(--background-alt);
  }
  
  .main-image {
    aspect-ratio: 3/4;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }
  
  .editorial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow) ease;
  }
  
  .editorial-image:hover .editorial-img {
    transform: scale(1.05);
  }
  
  .image-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--background);
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
  .image-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: -20%;
    margin-left: 20%;
    position: relative;
    z-index: 2;
  }
  
  .secondary-image {
    width: 80%;
    aspect-ratio: 4/3;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }
  
  .detail-callout {
    background-color: var(--accent);
    color: var(--background);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    width: 60%;
    margin-left: auto;
    box-shadow: 0 10px 30px rgba(58, 110, 165, 0.3);
  }
  
  .detail-number {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
  }
  
  .detail-text {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.05) 100%);
    pointer-events: none;
    z-index: 1;
  }
  
  .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
  }
  
  .floating-element {
    position: absolute;
    border-radius: 50%;
  }
  
  .element-1 {
    width: 300px;
    height: 300px;
    background-color: var(--accent-light);
    top: -150px;
    left: -100px;
    opacity: 0.4;
  }
  
  .element-2 {
    width: 500px;
    height: 500px;
    background-color: var(--accent-light);
    bottom: -250px;
    right: -200px;
    opacity: 0.3;
  }
  
  @media (max-width: 991px) {
    .editorial-title {
      font-size: 2.5rem;
    }
    
    .editorial-text {
      font-size: 1rem;
    }
    
    .image-stack {
      margin-top: 0;
      margin-left: 0;
    }
    
    .secondary-image {
      width: 100%;
    }
    
    .detail-callout {
      width: 80%;
    }
    
    .editorial-visuals {
      padding-top: 0;
      margin-bottom: 2rem;
    }
  }
  
  @media (max-width: 767px) {
    .editorial-section {
      padding: 4rem 0;
    }
    
    .editorial-stats {
      gap: 1.5rem;
    }
    
    .stat-number {
      font-size: 2rem;
    }
    
    .editorial-actions {
      flex-direction: column;
      gap: 1rem;
    }
    
    .primary-cta, .secondary-cta {
      width: 100%;
      justify-content: center;
    }
  }

/* --------------------------------------- */
.asymmetrical-grid {
    padding: 4rem 2rem;
    background-color: var(--background);
  }

  .grid-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .grid-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
  }

  .grid-subtitle {
    font-size: 1rem;
    color: var(--text-primary);
    opacity: 0.7;
    max-width: 500px;
    margin: 0 auto;
  }

  .grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  @media (min-width: 768px) {
    .grid-container {
      grid-template-columns: repeat(3, 1fr);
      grid-auto-rows: minmax(300px, auto);
    }

    .featured {
      grid-column: span 2;
      grid-row: span 2;
    }

    .vertical {
      grid-row: span 2;
    }
  }

  .grid-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform var(--transition-speed) ease;
  }

  .grid-item:hover {
    transform: translateY(-5px);
  }

  .product-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed) ease;
  }

  .grid-item:hover .product-image {
    transform: scale(1.03);
  }

  .product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    color: var(--text-secondary);
    transform: translateY(20%);
    opacity: 0;
    transition: all var(--transition-speed) ease;
  }

  .grid-item:hover .product-overlay {
    transform: translateY(0);
    opacity: 1;
  }

  .product-overlay h3 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
  }

  .product-description {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.75rem;
    display: none;
  }

  .featured .product-description {
    display: block;
  }

  .price {
    font-size: 1rem;
    font-weight: 500;
  }

  .secondary-button {
    background: transparent;
    border: 1px solid var(--text-secondary);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    display: none;
  }

  .featured .secondary-button {
    display: block;
  }

  .secondary-button:hover {
    background: var(--text-secondary);
    color: var(--text-primary);
  }

  .grid-footer {
    text-align: center;
    margin-top: 3rem;
  }

  .text-link {
    font-size: 0.95rem;
    color: var(--text-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color var(--transition-speed) ease;
  }

  .text-link:hover {
    color: var(--accent);
  }

  .text-link::after {
    content: "→";
    transition: transform var(--transition-speed) ease;
  }

  .text-link:hover::after {
    transform: translateX(5px);
  }

/* ===================================== */
.container {
  max-width: 100%;
  /* margin: 2rem auto; */
  padding: 0 20px;
  margin-top: 6rem;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.carousel-section-title {
  font-size: 1.9rem;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}
 
.carousel-section-title::after {
  content: "";
  position: absolute;
  height: 4px;
  width: 60%;
  background-color: var(--accent);
  bottom: -10px;
  left: 0;
  border-radius: 2px;
} 

.main-cta-btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: var(--accent);
  color: var(--text-secondary);
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.main-cta-btn:hover {
  transform: translateY(-3px);
  background-color: var(--hover-color);
  color: var(--text-primary);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.carousel-container {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

.carousel-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.5, 0, 0.5, 1);
  will-change: transform;
  user-select: none;
  touch-action: pan-y;
}

.carousel-card {
  flex: 0 0 300px;
  height: 450px;
  margin-right: 30px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.carousel-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.carousel-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 1;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.carousel-card:hover .card-image {
  transform: scale(1.1);
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  z-index: 2;
  transform: translateY(20px);
  opacity: 0.9;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.carousel-card:hover .card-content {
  transform: translateY(0);
  opacity: 1;
}

.card-title {
  font-family: "Jost", sans-serif;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.cta-btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: var(--accent);
  color: var(--text-secondary);
  border: none;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 1rem;
  transform: translateY(10px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease,
    background-color 0.3s ease;
}

.carousel-card:hover .cta-btn {
  transform: translateY(0);
  opacity: 1;
}

.cta-btn:hover {
  background-color: var(--hover-color);
  color: var(--text-primary);
}

.carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-bottom: 1rem;
}

.control-btn {
  background-color: var(--secondary);
  color: var(--text-primary);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.control-btn:hover {
  background-color: var(--accent);
  color: var(--text-secondary);
  transform: scale(1.1);
}

.card-indicator {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--accent);
  color: var(--text-secondary);
  border-radius: 20px;
  padding: 0.3rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 3;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.carousel-card:hover .card-indicator {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .carousel-card {
    flex: 0 0 250px;
    height: 400px;
    margin-right: 20px;
  }

  .card-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .carousel-card {
    flex: 0 0 220px;
    height: 350px;
    margin-right: 15px;
  }

  .section-title {
    font-size: 1.5rem;
  }
}

.progress-bar {
  height: 4px;
  background-color: var(--border-color);
  margin-top: 1.5rem;
  border-radius: 2px;
  overflow: hidden;
}

.progress-indicator {
  height: 100%;
  background-color: var(--accent);
  width: 0;
  transition: width 0.3s ease;
}


/* ======================================= */
.product-grid-section {
    padding: 6rem 2rem;
    background-color: var(--background);
    max-width: 1400px;
    margin: 0 auto;
  }

  .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
  }

  .section-header::after {
    content: "";
    display: block;
    height: 2px;
    width: 60px;
    background-color: var(--accent);
    margin: 1.5rem auto 0;
  }

  .section-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
  }

  .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
  }

  @media (min-width: 576px) {
    .product-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 992px) {
    .product-grid {
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
    }
  }

  .product-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    background-color: var(--background);
  }

  .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

  .product-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    border-radius: 8px;
  }

  .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
  }

  .product-card:hover .product-image {
    transform: scale(1.07);
  }

  .product-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .new-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    border-radius: 4px;
    background-color: var(--badge-new);
    color: white;
  }

  .badge.bestseller {
    background-color: var(--badge-bestseller);
  }

  .badge.sale {
    background-color: var(--badge-sale);
  }

  .product-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    transform: translateY(100%);
    opacity: 0;
    transition: transform var(--transition-speed) ease, opacity var(--transition-speed) ease;
  }

  .product-card:hover .product-actions {
    transform: translateY(0);
    opacity: 1;
  }

  .product-actions button {
    width: 100%;
    padding: 0.85rem 1rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    font-weight: 500;
  }

  .add-to-cart {
    background-color: var(--accent) !important;
    color: white;
  }

  .quick-view-button {
    background-color: var(--text-secondary) !important;
    color: var(--text-primary);
  }

  .quick-view-button:hover {
    background-color: white !important;
    color: rgba(0, 0, 0, 0.879);
  }

  .add-to-cart:hover {
    background-color: #c89b66 !important;
  }

  .product-info {
    padding: 1.5rem 0.5rem;
    text-align: center;
  }

  .product-name {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
    transition: color var(--transition-speed) ease;
  }
  
  .product-card:hover .product-name {
    color: var(--accent);
  }

  .product-price {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 1rem;
  }

  .original-price {
    text-decoration: line-through;
    color: var(--text-secondary);
    margin-right: 0.5rem;
  }

  .color-options {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
  }

  .color-swatch {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    border: 1px solid var(--border-color);
    transition: transform var(--transition-speed) ease;
  }
  
  .color-swatch.active::after {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1px solid var(--accent);
    border-radius: 50%;
  }

  .color-swatch:hover {
    transform: scale(1.3);
  }

  .color-swatch.beige {
    background-color: #e8dccf;
  }

  .color-swatch.black {
    background-color: #333333;
  }

  .color-swatch.white {
    background-color: #ffffff;
  }

  .color-swatch.navy {
    background-color: #2b3a67;
  }

  .color-swatch.olive {
    background-color: #606c38;
  }

  .color-swatch.tan {
    background-color: #d4b996;
  }

  .color-swatch.gray {
    background-color: #9a9a9a;
  }

  .section-footer {
    text-align: center;
    margin-top: 5rem;
  }

  .view-all-link {
    font-size: 1rem;
    color: var(--text-primary);
    text-decoration: none;
    padding: 1rem 3rem;
    border: 1px solid var(--text-primary);
    transition: all var(--transition-speed) ease;
    display: inline-block;
    letter-spacing: 0.5px;
    position: relative;
    border-radius: 4px;
  }

  .view-all-link:hover {
    background-color: var(--accent);
    color: white;
    border-color: var(--accent);
  }

  .view-all-link::after {
    content: "→";
    margin-left: 0.5rem;
    transition: transform var(--transition-speed) ease;
    display: inline-block;
  }

  .view-all-link:hover::after {
    transform: translateX(8px);
  }
  
  /* Wishlist button */
  .wishlist-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-speed) ease;
  }
  
  .wishlist-button:hover {
    background: white;
    transform: scale(1.1);
  }
  
  .wishlist-button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: rgba(0, 0, 0, 0.637);
    stroke-width: 2px;
    transition: all var(--transition-speed) ease;
  }
  
  .wishlist-button:hover svg {
    stroke: var(--accent);
  }
  
  .wishlist-button.active svg {
    fill: var(--accent);
    stroke: var(--accent);
  }

  .category-section {
    padding: 5rem 2rem;
    background-color: var(--background);
    max-width: 1400px;
    margin: 0 auto;
  }

  .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
  }

  .section-header::after {
    content: "";
    display: block;
    height: 1px;
    width: 60px;
    background-color: var(--accent);
    margin: 1.5rem auto 0;
  }

  .section-title {
    font-size: 2.25rem;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
  }

  .product-section-subtitle {
    font-size: 1.1rem;
    color: var(--text-primary);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
  }

  @media (min-width: 768px) {
    .category-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  .category-card {
    text-decoration: none;
    color: var(--text-primary);
    transition: transform var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .category-card:hover {
    transform: translateY(-8px);
  }

  .category-image {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    margin-bottom: 1.25rem;
    border-radius: 4px;
    box-shadow: var(--box-shadow);
  }

  .category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .category-card:hover .category-img {
    transform: scale(1.08);
  }

  .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.05) 50%, transparent 100%);
    transition: background 0.3s ease;
  }

  .category-card:hover .image-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  }

  .featured-label, .new-label {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    border-radius: 2px;
    z-index: 2;
  }

  .featured-label {
    background-color: var(--featured-label-bg);
  }

  .new-label {
    background-color: var(--new-label-bg);
  }

  .category-info {
    text-align: center;
    padding: 0.5rem;
  }

  .category-info h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.35rem;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
  }

  .category-card:hover .category-info h3 {
    color: var(--accent);
  }

  .item-count {
    font-size: 0.9rem;
    color: var(--text-primary);
    display: block;
    margin-bottom: 1rem;
  }

  .category-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
  }

  .category-card:hover .category-meta {
    opacity: 1;
    transform: translateY(0);
  }

  .explore-text {
    font-size: 0.85rem;
    color: var(--accent);
    position: relative;
  }

  .explore-text::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: var(--accent);
    bottom: -2px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
  }

  .category-card:hover .explore-text::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .arrow-icon {
    display: inline-block;
    transition: transform 0.3s ease;
    color: var(--accent);
    font-size: 0.9rem;
  }

  .category-card:hover .arrow-icon {
    transform: translateX(5px);
  }

  /* Featured banner section */
  .category-featured {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 5rem;
    background-color: #f9f9f9;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
  }

  @media (min-width: 768px) {
    .category-featured {
      grid-template-columns: 1fr 1fr;
    }
  }

  .featured-content {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .featured-eyebrow {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
  }

  .lookbook-featured-title {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    color: #121212;
  }

  .featured-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 2rem;
    max-width: 450px;
  }

  .featured-button {
    display: inline-block;
    background-color: #cda24d;
    color: white;
    padding: 0.85rem 2rem;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-radius: 2px;
    transition: all 0.3s ease;
    align-self: flex-start;
  }

  .featured-button:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .featured-image {
    position: relative;
    min-height: 300px;
  }

  .featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  @media (max-width: 767px) {
    .featured-content {
      order: 2;
      text-align: center;
    }
    
    .featured-button {
      align-self: center;
    }
  }

  .testimonial-section {
    padding: 5rem 2rem;
    background-color: var(--background);
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
  }

  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }

  .section-title {
    font-size: 2.25rem;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
  }

  .section-subtitle {
    font-size: 1.125rem;
    color: var(--text-primary);
    opacity: 0.7;
    max-width: 500px;
    margin: 0 auto;
    font-weight: 300;
  }

  .testimonial-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }

  @media (min-width: 768px) {
    .testimonial-container {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .carousel-controls {
      display: none;
    }
  }

  .testimonial-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
    background-color: var(--background);
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: var(--accent);
  }

  .testimonial-card.featured {
    border-width: 2px;
    border-color: var(--accent);
  }

  .testimonial-card.featured::before {
    content: "Featured";
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--accent);
    color: var(--text-secondary);
    font-size: 0.7rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
  }

  .testimonial-rating {
    display: flex;
    margin-bottom: 1rem;
  }

  .star {
    color: var(--accent);
    font-size: 1rem;
    margin-right: 2px;
  }

  .quote-icon {
    width: 24px;
    height: 24px;
    color: var(--accent);
    margin-bottom: 1.5rem;
    opacity: 0.7;
  }

  .testimonial-content {
    flex-grow: 1;
  }

  .testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 300;
    position: relative;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent);
  }

  .avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .author-name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
  }

  .author-location {
    font-size: 0.85rem;
    color: var(--text-primary);
    opacity: 0.6;
    display: flex;
    align-items: center;
  }

  .author-location::before {
    content: "📍";
    font-size: 0.8rem;
    margin-right: 4px;
    opacity: 0.7;
  }

  .product-thumbnail {
    display: flex;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
  }

  .product-img {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    object-fit: cover;
    margin-right: 12px;
  }

  .product-name {
    font-size: 0.85rem;
    color: var(--text-primary);
    opacity: 0.8;
  }

  .carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
  }

  .carousel-button {
    background: none;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    color: var(--text-primary);
  }

  .carousel-button:hover {
    background-color: var(--accent);
    color: var(--text-secondary);
    border-color: var(--accent);
  }

  .carousel-dots {
    display: flex;
    gap: 0.5rem;
  }

  .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--border-color);
    transition: all var(--transition-speed) ease;
  }

  .dot.active {
    background-color: var(--accent);
    width: 24px;
    border-radius: 4px;
  }

  .section-footer {
    text-align: center;
    margin-top: 3rem;
  }

  .text-button {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.75rem 1.5rem;
    transition: all var(--transition-speed) ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    border: 1px solid var(--border-color);
    border-radius: 4px;
  }

  .text-button:hover {
    color: var(--accent);
    background-color: var(--hover-color);
    border-color: var(--accent);
  }

  .text-button::after {
    content: "→";
    transition: transform var(--transition-speed) ease;
  }

  .text-button:hover::after {
    transform: translateX(5px);
  }

  /* Add simple animation for cards */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .testimonial-card {
    animation: fadeIn 0.6s ease-out forwards;
  }

  .testimonial-card:nth-child(1) {
    animation-delay: 0.1s;
  }

  .testimonial-card:nth-child(2) {
    animation-delay: 0.3s;
  }

  .testimonial-card:nth-child(3) {
    animation-delay: 0.5s;
  }

  /* Basic carousel functionality for mobile */
  @media (max-width: 767px) {
    .testimonial-container {
      overflow: hidden;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      display: flex;
      gap: 0;
    }

    .testimonial-card {
      flex: 0 0 100%;
      scroll-snap-align: center;
      display: none;
    }

    .testimonial-card:first-child {
      display: block;
    }
  }

  /* Dark mode enhancements */
  [data-theme="dark"] .testimonial-card {
    background-color: var(--primary);
  }

  [data-theme="dark"] .testimonial-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }

  .faq-section {
    padding: 5rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-primary);
  }

  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .section-title {
    font-size: 2.25rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
  }

  .section-subtitle {
    font-size: 1.125rem;
    opacity: 0.7;
    max-width: 500px;
    margin: 0 auto 2rem;
    font-weight: 300;
  }

  .faq-search-container {
    max-width: 600px;
    margin: 0 auto;
  }

  .search-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
  }

  .search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-primary);
    opacity: 0.5;
  }

  .faq-search {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2.5rem;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    background-color: var(--search-bg);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
  }

  .faq-search:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.15);
  }

  .faq-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
  }

  .category-pill {
    background: none;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
  }

  .category-pill:hover {
    border-color: var(--accent);
    color: var(--accent);
  }

  .category-pill.active {
    background-color: var(--accent);
    color: white;
    border-color: var(--accent);
  }

  .faq-container {
    margin-top: 3rem;
  }

  .faq-item {
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
  }

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.5rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    transition: all var(--transition-speed) ease;
  }

  .faq-question:hover {
    color: var(--accent);
  }

  .question-text {
    font-size: 1.125rem;
    font-weight: 400;
  }

  .question-indicator {
    position: relative;
    width: 16px;
    height: 16px;
    margin-left: 1rem;
  }

  .question-line {
    position: absolute;
    background-color: currentColor;
    transition: transform var(--transition-speed) ease;
  }

  .question-line.horizontal {
    width: 16px;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .question-line.vertical {
    width: 2px;
    height: 16px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }

  .faq-item.active .question-line.vertical {
    transform: translateX(-50%) scaleY(0);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed) ease, padding var(--transition-speed) ease;
  }

  .faq-item.active .faq-answer {
    max-height: 500px;
  }

  .answer-content {
    padding: 0 0 1.5rem 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    opacity: 0.85;
  }

  .answer-content p {
    margin-bottom: 1rem;
  }

  .answer-content ul {
    margin: 0 0 1rem 1.25rem;
    padding: 0;
  }

  .answer-content li {
    margin-bottom: 0.5rem;
  }

  .answer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    font-size: 0.875rem;
  }

  .answer-helpful {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    opacity: 0.7;
  }

  .helpful-btn {
    background: none;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    color: var(--text-primary);
  }

  .helpful-btn:hover, .helpful-btn.active {
    background-color: var(--accent);
    color: white;
    border-color: var(--accent);
  }

  .answer-more {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: opacity var(--transition-speed) ease;
  }

  .answer-more:hover {
    opacity: 0.8;
  }

  .faq-footer {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .contact-info p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }

  .contact-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  .contact-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
  }

  .contact-option:hover {
    background-color: var(--accent);
    color: white;
    border-color: var(--accent);
  }

  .expand-all-btn {
    background: none;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.75rem 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    font-size: 0.95rem;
  }

  .expand-all-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
  }

  /* Animations for elements */
  @keyframes fadeSlideUp {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .faq-item {
    animation: fadeSlideUp 0.5s ease forwards;
    opacity: 0;
  }

  .faq-item:nth-child(1) { animation-delay: 0.1s; }
  .faq-item:nth-child(2) { animation-delay: 0.2s; }
  .faq-item:nth-child(3) { animation-delay: 0.3s; }
  .faq-item:nth-child(4) { animation-delay: 0.4s; }
  .faq-item:nth-child(5) { animation-delay: 0.5s; }

  /* Device-specific adjustments */
  @media (max-width: 768px) {
    .faq-section {
      padding: 3rem 1.5rem;
    }
    
    .section-title {
      font-size: 1.75rem;
    }
    
    .question-text {
      font-size: 1rem;
    }
    
    .faq-footer {
      flex-direction: column;
      gap: 2rem;
    }
    
    .contact-options {
      flex-direction: column;
      width: 100%;
    }
    
    .contact-option {
      width: 100%;
      justify-content: center;
    }
  }

  /* Dark mode specific */
  [data-theme="dark"] .faq-search {
    background-color: var(--search-bg);
  }

  [data-theme="dark"] .contact-option:hover,
  [data-theme="dark"] .category-pill.active,
  [data-theme="dark"] .helpful-btn:hover,
  [data-theme="dark"] .helpful-btn.active {
    background-color: var(--accent);
    color: var(--text-secondary);
  }

  .site-footer {
    background-color: var(--background);
    color: var(--text-primary);
    border-top: 1px solid var(--border-color);
    padding-top: 4rem;
    margin-top: 5rem;
  }

  .footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  /* Footer top section */
  .footer-top {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 4rem;
  }

  .footer-brand {
    max-width: 300px;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
    margin-bottom: 1rem;
  }

  .footer-logo span {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
  }

  .footer-tagline {
    font-size: 0.95rem;
    opacity: 0.8;
    font-weight: 300;
  }

  .footer-newsletter {
    max-width: 400px;
  }

  .footer-newsletter h3 {
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
  }

  .footer-newsletter p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  .newsletter-form .input-group {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
  }

  .newsletter-form input {
    flex-grow: 1;
    padding: 0.875rem 1rem;
    border: none;
    background: transparent;
    color: var(--text-primary);
    font-size: 0.95rem;
  }

  .newsletter-form input:focus {
    outline: none;
  }

  .newsletter-form button {
    background: var(--accent);
    border: none;
    padding: 0 1.25rem;
    color: white;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease;
  }

  .newsletter-form button:hover {
    background: var(--accent);
    filter: brightness(110%);
  }

  .consent-check {
    display: flex;
    align-items: flex-start;
    gap: 0.1rem;
    font-size: 0.8rem;
    opacity: 0.7;
    margin-right: 25%;
  }

  .consent-check input {
    margin-top: 0.2rem;
  }

  /* Footer navigation */
  .footer-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
  }

  .footer-nav-column h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    position: relative;
  }

  .footer-nav-column h4::after {
    content: "";
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: var(--accent);
  }

  .footer-nav-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-nav-column li {
    margin-bottom: 0.75rem;
  }

  .footer-nav-column a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity var(--transition-speed) ease;
  }

  .footer-nav-column a:hover {
    opacity: 1;
    color: var(--accent);
  }

  /* Social and localization */
  .footer-social {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
  }

  .social-links {
    display: flex;
    gap: 1.25rem;
  }

  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    transition: all var(--transition-speed) ease;
  }

  .social-link:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: translateY(-2px);
  }

  .localization {
    display: flex;
    gap: 1.5rem;
    align-items: center;
  }

  .language-selector,
  .currency-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
  }

  .language-selector select,
  .currency-selector select {
    appearance: none;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.5rem 2rem 0.5rem 2rem;
    font-size: 0.85rem;
    color: var(--text-primary);
    cursor: pointer;
  }

  .language-selector svg,
  .currency-selector svg {
    position: absolute;
    left: 0.5rem;
    pointer-events: none;
    color: var(--text-primary);
    opacity: 0.7;
  }

  .language-selector::after,
  .currency-selector::after {
    content: "▼";
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.6rem;
    pointer-events: none;
    opacity: 0.7;
  }

  /* Footer bottom */
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
  }

  .payment-methods {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .payment-label {
    opacity: 0.7;
  }

  .payment-icons {
    display: flex;
    gap: 0.5rem;
  }

  .payment-icon {
    opacity: 0.7;
    transition: opacity var(--transition-speed) ease;
  }

  .payment-icon:hover {
    opacity: 1;
  }

  .copyright {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    opacity: 0.7;
  }

  .theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity var(--transition-speed) ease;
  }

  .theme-toggle:hover {
    opacity: 1;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .footer-top {
      flex-direction: column;
      gap: 3rem;
    }

    .footer-brand, 
    .footer-newsletter {
      max-width: 100%;
    }
  }

  @media (max-width: 768px) {
    .footer-nav {
      grid-template-columns: repeat(2, 1fr);
    }

    .footer-social {
      flex-direction: column;
      gap: 2rem;
      align-items: flex-start;
    }

    .footer-bottom {
      flex-direction: column;
      gap: 1.5rem;
      align-items: flex-start;
    }

    .localization {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
  }

  @media (max-width: 480px) {
    .footer-nav {
      grid-template-columns: 1fr;
    }
    
    .payment-methods {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
  }

  /* Animations */
  @keyframes subtleFade {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .footer-brand, 
  .footer-newsletter,
  .footer-nav-column,
  .footer-social,
  .payment-methods,
  .copyright {
    animation: subtleFade 0.6s ease-out forwards;
  }

  .footer-brand { animation-delay: 0.1s; }
  .footer-newsletter { animation-delay: 0.2s; }
  .footer-nav-column:nth-child(1) { animation-delay: 0.3s; }
  .footer-nav-column:nth-child(2) { animation-delay: 0.4s; }
  .footer-nav-column:nth-child(3) { animation-delay: 0.5s; }
  .footer-nav-column:nth-child(4) { animation-delay: 0.6s; }
  .footer-social { animation-delay: 0.7s; }
  .payment-methods, .copyright { animation-delay: 0.8s; }