
    /* Custom colors for luxury feel */
    :root {
      --gold: #bfa06a;
      --black: #1a1a1a;
      --white: #fefefe;
    }
    body {
      font-family: 'Playfair Display', serif, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: var(--white);
      color: var(--black);
      margin: 0;
      padding: 0;
      scroll-behavior: smooth;
    }
    a {
      text-decoration: none;
      color: inherit;
    }
    /* Navigation - Louis Vuitton Style */
    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: var(--white);
      border-bottom: 1px solid #e5e5e5;
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: 400;
      letter-spacing: 0.1em;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    
    .nav-container {
      width: 100%;
      max-width: 1400px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
    }
    
    @media (max-width: 768px) {
      .nav-container {
        padding: 0.75rem 1rem;
      }
    }
    
    @media (max-width: 480px) {
      .nav-container {
        padding: 0.5rem 0.75rem;
      }
    }
    
    .nav-left {
      display: flex;
      align-items: center;
      gap: 2rem;
    }
    
    .nav-right {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }
    
    header .logo {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      color: var(--black);
      cursor: pointer;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }
    
    @media (max-width: 768px) {
      header .logo {
        font-size: 1.75rem;
      }
    }
    
    @media (max-width: 480px) {
      header .logo {
        font-size: 1.5rem;
      }
    }
    
    nav.desktop-menu {
      display: flex;
      gap: 3rem;
      font-size: 0.875rem;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }
    
    @media (max-width: 1024px) {
      nav.desktop-menu {
        display: none;
      }
    }
    
    nav.desktop-menu a {
      position: relative;
      padding: 1rem 0;
      transition: all 0.3s ease;
      color: var(--black);
      border-bottom: 2px solid transparent;
    }
    
    nav.desktop-menu a:hover {
      color: var(--gold);
      border-bottom-color: var(--gold);
    }
    
    /* Navigation Icons */
    .nav-icons {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    
    .nav-icon {
      width: 24px;
      height: 24px;
      cursor: pointer;
      transition: all 0.3s ease;
      color: var(--black);
    }
    
    .nav-icon:hover {
      color: var(--gold);
      transform: scale(1.1);
    }
    
    /* Mobile menu */
    .mobile-menu-button {
      display: none;
      cursor: pointer;
      background: none;
      border: none;
      padding: 0.5rem;
      color: var(--black);
      transition: color 0.3s ease;
    }
    
    .mobile-menu-button:hover {
      color: var(--gold);
    }
    
    @media (max-width: 1024px) {
      .mobile-menu-button {
        display: block;
      }
    }
    
    .hamburger {
      width: 24px;
      height: 18px;
      position: relative;
      transform: rotate(0deg);
      transition: .5s ease-in-out;
    }
    
    .hamburger span {
      display: block;
      position: absolute;
      height: 2px;
      width: 100%;
      background: var(--black);
      border-radius: 1px;
      opacity: 1;
      left: 0;
      transform: rotate(0deg);
      transition: .25s ease-in-out;
    }
    
    .hamburger span:nth-child(1) {
      top: 0px;
    }
    
    .hamburger span:nth-child(2) {
      top: 8px;
    }
    
    .hamburger span:nth-child(3) {
      top: 16px;
    }
    
    .hamburger.open span:nth-child(1) {
      top: 8px;
      transform: rotate(135deg);
    }
    
    .hamburger.open span:nth-child(2) {
      opacity: 0;
      left: -60px;
    }
    
    .hamburger.open span:nth-child(3) {
      top: 8px;
      transform: rotate(-135deg);
    }
    
    /* Drawer - Louis Vuitton Style */
    .drawer {
      position: fixed;
      top: 0;
      right: -400px;
      width: 400px;
      height: 100vh;
      background: var(--white);
      box-shadow: -10px 0 30px rgba(0,0,0,0.15);
      transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      z-index: 1100;
      padding: 0;
      display: flex;
      flex-direction: column;
      overflow-y: auto;
    }
    
    @media (max-width: 480px) {
      .drawer {
        width: 100vw;
        right: -100vw;
      }
    }
    
    .drawer.open {
      right: 0;
    }
    
    .drawer-header {
      padding: 2rem;
      border-bottom: 1px solid #e5e5e5;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .drawer-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      color: var(--black);
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }
    
    .drawer-close {
      width: 32px;
      height: 32px;
      cursor: pointer;
      color: var(--black);
      transition: all 0.3s ease;
      background: none;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
    }
    
    .drawer-close:hover {
      color: var(--gold);
      background: rgba(191, 160, 106, 0.1);
    }
    
    .drawer-content {
      padding: 2rem;
      flex: 1;
    }
    
    .drawer-nav {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    
    .drawer-nav a {
      font-size: 1.125rem;
      font-weight: 400;
      color: var(--black);
      padding: 1.5rem 0;
      border-bottom: 1px solid #f0f0f0;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      position: relative;
    }
    
    .drawer-nav a:hover {
      color: var(--gold);
      padding-right: 1rem;
    }
    
    .drawer-nav a::after {
      content: '→';
      position: absolute;
      right: 0;
      opacity: 0;
      transition: all 0.3s ease;
      color: var(--gold);
    }
    
    .drawer-nav a:hover::after {
      opacity: 1;
      right: 0;
    }
    
    .drawer-footer {
      padding: 2rem;
      border-top: 1px solid #e5e5e5;
      background: #fafafa;
    }
    
    .drawer-social {
      display: flex;
      gap: 1rem;
      justify-content: center;
    }
    
    .drawer-social a {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--black);
      transition: all 0.3s ease;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .drawer-social a:hover {
      background: var(--gold);
      color: var(--white);
      transform: translateY(-2px);
    }
    
    /* Overlay */
    .drawer-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      z-index: 1050;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }
    
    .drawer-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    /* Hero */
    .hero {
      position: relative;
      height: 80vh;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #000;

      color: var(--white);
      font-family: 'Playfair Display', serif;
    }
    @media (max-width: 768px) {
      .hero {
        height: 70vh;
      }
    }
    @media (max-width: 480px) {
      .hero {
        height: 60vh;
      }
    }
    .hero img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      z-index: 0;
    }
    .hero img.active {
      opacity: 1;
      z-index: 1;
    }

    .hero-content h1 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 1rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    @media (max-width: 768px) {
      .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
      }
    }
    @media (max-width: 640px) {
      .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
      }
    }
    @media (max-width: 480px) {
      .hero-content h1 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
      }
    }
    .hero-content p {
      font-size: 1.25rem;
      font-weight: 400;
      opacity: 0.8;
      max-width: 600px;
      margin: 0 auto;
    }
    @media (max-width: 768px) {
      .hero-content p {
        font-size: 1.1rem;
        max-width: 500px;
      }
    }
    @media (max-width: 640px) {
      .hero-content p {
        font-size: 1rem;
        max-width: 400px;
      }
    }
    @media (max-width: 480px) {
      .hero-content p {
        font-size: 0.9rem;
        max-width: 350px;
      }
    }
    /* Sections */
    section {
      max-width: 100%;
      margin: 3rem auto;
      padding: 0 1rem;
    }
    @media (max-width: 768px) {
      section {
        margin: 2rem auto;
        padding: 0 0.75rem;
      }
    }
    @media (max-width: 480px) {
      section {
        margin: 1.5rem auto;
        padding: 0 0.5rem;
      }
    }
    section h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 2rem;
      border-bottom: 2px solid var(--gold);
      display: inline-block;
      padding-bottom: 0.25rem;
    }
    @media (max-width: 768px) {
      section h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
      }
    }
    @media (max-width: 480px) {
      section h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
      }
    }
    /* Section Header */
    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 2rem;
    }

    /* Categories, Subcategories, Brands */
    .grid-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
    }
    @media (max-width: 1024px) {
      .grid-cards {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.25rem;
      }
    }
    @media (max-width: 768px) {
      .grid-cards {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
      }
    }
    @media (max-width: 640px) {
      .grid-cards {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 0.875rem;
      }
    }
    @media (max-width: 480px) {
      .grid-cards {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 0.75rem;
      }
    }
    .card {
      position: relative;
      overflow: hidden;
      border-radius: 1rem;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      cursor: pointer;
      transition: all 0.3s ease;
      background: var(--white);
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      text-align: center;
      width: 100%;
      max-width: 250px;
      height: 280px;
      padding-bottom: 1rem;
      margin: 0 auto;
      border: 1px solid rgba(191, 166, 106, 0.2);
    }
    @media (max-width: 640px) {
      .card {
        height: 240px;
        max-width: 180px;
      }
    }
    @media (max-width: 480px) {
      .card {
        height: 220px;
        max-width: 160px;
      }
    }
    .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 30px rgba(0,0,0,0.2);
      border-color: var(--gold);
    }
    .card img {
      width: 100%;
      height: 80%;
      object-fit: cover;
      border-top-left-radius: 1rem;
      border-top-right-radius: 1rem;
      transition: transform 0.5s ease;
      flex-shrink: 0;
    }
    .card:hover img {
      transform: scale(1.05);
    }
    .card-content {
      padding: 1rem;
      text-align: center;
      font-weight: 600;
      font-size: 1.1rem;
      color: var(--black);
      background: linear-gradient(135deg, rgba(191, 166, 106, 0.05) 0%, rgba(191, 166, 106, 0.1) 100%);
      width: 100%;
      border-bottom-left-radius: 1rem;
      border-bottom-right-radius: 1rem;
    }
    /* Featured Products */
    .featured-products {
      position: relative;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      padding-bottom: 1rem;
    }
    @media (max-width: 1024px) {
      .featured-products {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.25rem;
      }
    }
    @media (max-width: 768px) {
      .featured-products {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
      }
    }
    @media (max-width: 640px) {
      .featured-products {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 0.875rem;
      }
    }
    @media (max-width: 480px) {
      .featured-products {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 0.75rem;
      }
    }
    .featured-product {
      border-radius: 1rem;
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
      background: var(--white);
      cursor: pointer;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      text-align: center;
      width: 100%;
      max-width: 250px;
      height: 280px;
      margin: 0 auto;
      padding-bottom: 0;
      border: 1px solid rgba(191, 166, 106, 0.3);
      position: relative;
    }
    @media (max-width: 640px) {
      .featured-product {
        height: 240px;
        max-width: 180px;
      }
    }
    @media (max-width: 480px) {
      .featured-product {
        height: 220px;
        max-width: 160px;
      }
    }
    .featured-product:hover {
      transform: translateY(-12px);
      box-shadow: 0 25px 40px rgba(0,0,0,0.3);
      border-color: var(--gold);
    }
    .featured-product img {
      width: 100%;
      height: 60%;
      object-fit: cover;
      transition: transform 0.5s ease;
      border-top-left-radius: 1rem;
      border-top-right-radius: 1rem;
      flex-shrink: 0;
    }
    .featured-product:hover img {
      transform: scale(1.1);
    }
    .discount-tag {
      position: absolute;
      top: 0.75rem;
      left: 0.75rem;
      background-color: var(--gold);
      color: var(--white);
      font-weight: 700;
      font-size: 0.75rem;
      padding: 0.25rem 0.5rem;
      border-radius: 0.5rem;
      z-index: 10;
      user-select: none;
    }
    .special-tag {
      position: absolute;
      top: 0.75rem;
      right: 0.75rem;
      background-color: #d9534f; /* red for special */
      color: var(--white);
      font-weight: 700;
      font-size: 0.75rem;
      padding: 0.25rem 0.5rem;
      border-radius: 0.5rem;
      z-index: 10;
      user-select: none;
    }
    .featured-product-content {
      padding: 1rem 1.25rem 1.5rem 1.25rem;
      font-weight: 600;
      color: var(--black);
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      flex-grow: 1;
    }
    @media (max-width: 640px) {
      .featured-product-content {
        padding: 0.75rem 1rem 1rem 1rem;
      }
    }
    @media (max-width: 480px) {
      .featured-product-content {
        padding: 0.5rem 0.75rem 0.75rem 0.75rem;
      }
    }
    .featured-product-title {
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
      font-weight: 700;
      color: var(--black);
    }
    @media (max-width: 640px) {
      .featured-product-title {
        font-size: 1rem;
        margin-bottom: 0.375rem;
      }
    }
    @media (max-width: 480px) {
      .featured-product-title {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
      }
    }
    .featured-product-description {
    .featured-product-description {
      font-size: 0.75rem;
      color: #555;
      margin-bottom: 0.75rem;
      font-weight: 400;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
      width: 100%;
      text-align: center;
      line-height: 1.2;
    }
    @media (max-width: 640px) {
      .featured-product-description {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
        -webkit-line-clamp: 1;
        line-clamp: 1;
      }
    }
    @media (max-width: 480px) {
      .featured-product-description {
        font-size: 0.65rem;
        margin-bottom: 0.375rem;
        -webkit-line-clamp: 1;
        line-clamp: 1;
      }
    }
      font-size: 1rem;
      color: var(--gold);
      font-weight: 700;
      margin-top: auto;
      display: flex;
      gap: 0.5rem;
      align-items: center;
    }
    @media (max-width: 640px) {
      .featured-product-price {
        font-size: 0.9rem;
        gap: 0.375rem;
      }
    }
    @media (max-width: 480px) {
      .featured-product-price {
        font-size: 0.8rem;
        gap: 0.25rem;
      }
    }
    .price-before-discount {
      text-decoration: line-through;
      color: #999;
      font-weight: 400;
      font-size: 0.9rem;
    }
    .price-after-discount {
      color: var(--gold);
      font-weight: 700;
      font-size: 1.1rem;
    }
    /* Footer */
    footer {
      text-align: center;
      padding: 2rem 1rem;
      font-size: 0.9rem;
      color: #666;
      border-top: 1px solid #ddd;
      margin-top: 4rem;
    }
    @media (max-width: 768px) {
      footer {
        padding: 1.5rem 0.75rem;
        margin-top: 3rem;
        font-size: 0.85rem;
      }
    }
    @media (max-width: 480px) {
      footer {
        padding: 1rem 0.5rem;
        margin-top: 2rem;
        font-size: 0.8rem;
      }
    }
    /* Reviews Section */
    .reviews-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 1rem;
      padding: 1rem 0;
    }
    @media (max-width: 1024px) {
      .reviews-container {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 0.875rem;
      }
    }
    @media (max-width: 768px) {
      .reviews-container {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.75rem;
      }
    }
    @media (max-width: 640px) {
      .reviews-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
      }
    }
    .review-card {
      background: var(--white);
      border-radius: 0.375rem;
      padding: 0.5rem;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      border: 1px solid rgba(191, 166, 106, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      aspect-ratio: 1 / 1;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      text-align: center;
      max-width: 160px;
      margin: 0 auto;
    }
    .review-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.15);
      border-color: var(--gold);
    }
    .review-header {
      display: flex;
      align-items: center;
      margin-bottom: 0.375rem;
      gap: 0.25rem;
    }
    .review-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), #d4af37);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-weight: 700;
      font-size: 1rem;
      flex-shrink: 0;
    }
    .review-info {
      flex: 1;
    }
    .review-name {
      font-weight: 700;
      color: var(--black);
      margin-bottom: 0.125rem;
      font-size: 0.8rem;
    }
    .review-rating {
      display: flex;
      gap: 0.125rem;
      margin-bottom: 0.125rem;
    }
    .star {
      color: #ffd700;
      font-size: 0.7rem;
    }
    .review-date {
      font-size: 0.65rem;
      color: #666;
    }
    .review-content {
      color: #555;
      line-height: 1.3;
      font-size: 0.8rem;
      margin-bottom: 0.375rem;
    }
    .review-product {
      font-size: 0.85rem;
      color: var(--gold);
      font-weight: 600;
      padding-top: 0.75rem;
      border-top: 1px solid rgba(191, 166, 106, 0.3);
    }
    .review-photos img {
      max-width: 80px;
      max-height: 80px;
      width: auto;
      height: auto;
      object-fit: cover;
    }

    /* Responsive */
    @media (max-width: 768px) {
      nav.desktop-menu {
        display: none;
      }
      .mobile-menu-button {
        display: block;
      }
      .review-card {
        padding: 1.25rem;
      }
      .review-header {
        gap: 0.5rem;
      }
      .review-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
      }
    }
    @media (max-width: 480px) {
      .review-card {
        padding: 1rem;
      }
      .review-content {
        font-size: 0.9rem;
      }
    }
