
    :root {
      --primary: #1a1a1a;
      --accent: #d4af37;
      --light: #f8f8f8;
      --gray: #666;
      --dark-gray: #333;
    }

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

    body {
      font-family: 'Poppins', sans-serif;
      color: var(--primary);
      background: white;
      line-height: 1.6;
    }

    .container {
      width: 90%;
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Navbar */
    header {
      position: fixed;
      top: 0;
      width: 100%;
      background: white;
      z-index: 1000;
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.5rem 0;
    }

    .logo {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--primary);
    }

    .logo span {
      color: var(--accent);
    }

    .nav-links {
      display: flex;
      gap: 3rem;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--primary);
      font-weight: 500;
      transition: color 0.3s;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: var(--accent);
    }

    .hamburger {
      display: none;
      font-size: 1.8rem;
      cursor: pointer;
    }

    /* Hero */
    .hero {
      margin-top: 100px;
      height: 90vh;
      background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('./images/hero-gar-Picsart-AiImageEnhancer.jpg') center/cover no-repeat;
      display: flex;
      align-items: center;
      text-align: center;
      color: white;
    }

    .hero-content h1 {
      font-family: 'Playfair Display', serif;
      font-size: 4rem;
      margin-bottom: 1rem;
    }

    .hero-content p {
      font-size: 1.3rem;
      max-width: 600px;
      margin: 0 auto 2rem;
    }

    .btn-primary {
      background: var(--accent);
      color: var(--primary);
      padding: 1rem 2.5rem;
      border: none;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s;
      text-decoration: none;
      display: inline-block;
    }

    .btn-primary:hover {
      background: #b8972b;
    }

    /* Categories */
    .categories {
      padding: 100px 0;
      background: var(--light);
    }

    .section-title {
      text-align: center;
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      margin-bottom: 4rem;
    }

    .cat-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
      gap: 3rem;
    }

    .cat-card {
      position: relative;
      overflow: hidden;
      height: 600px;
      border-radius: 0;
      cursor: pointer;
      transition: transform 0.4s;
    }

    .cat-card:hover {
      transform: scale(1.03);
    }

    .cat-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s;
    }

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

    .cat-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 3rem;
      background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
      color: white;
      text-align: center;
      transition: 0.4s;
    }

    .cat-overlay h3 {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .view-btn {
      margin-top: 1rem;
      background: var(--accent);
      color: var(--primary);
      padding: 0.8rem 2rem;
      text-decoration: none;
      font-weight: 600;
      opacity: 0;
      transition: opacity 0.4s;
    }

    .cat-card:hover .view-btn {
      opacity: 1;
    }

    /* Products */
    .products {
      padding: 100px 0;
    }

    .prod-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }

    .prod-card {
      background: white;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
      transition: 0.4s;
    }

    .prod-card:hover {
      transform: translateY(-10px);
    }

    .prod-card img {
      width: 100%;
      height: 400px;
      object-fit: cover;
    }

    .prod-info {
      padding: 1.5rem;
      text-align: center;
    }

    .prod-info h4 {
      margin-bottom: 0.5rem;
    }

    .price {
      font-weight: 600;
      color: var(--accent);
    }

    .btn-add-cart {
      background: var(--accent);
      color: var(--primary);
      padding: 0.8rem 2rem;
      border: none;
      border-radius: 4px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s;
      margin-top: 1rem;
      width: 100%;
    }

    .btn-add-cart:hover {
      background: #b8972b;
      transform: translateY(-2px);
    }

    /* Footer */
    footer {
      background: var(--primary);
      color: white;
      padding: 80px 0 30px;
    }

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

    .footer-col h3 {
      margin-bottom: 1.5rem;
      color: var(--accent);
    }

    .footer-col a {
      color: #ccc;
      text-decoration: none;
      display: block;
      margin-bottom: 0.8rem;
    }

    .footer-col a:hover {
      color: var(--accent);
    }

    /* Mobile */
    @media (max-width: 768px) {
      .hamburger {
        display: block;
      }

      .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: center;
        padding-top: 3rem;
        transition: 0.4s;
      }

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

      .hero-content h1 {
        font-size: 2.8rem;
      }

      .cat-grid {
        grid-template-columns: 1fr;
      }
    }


    /* =============> card logo button css <============= */
    .cart-icon {
  margin-left: auto;
  margin-right: 2rem;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--accent);
  color: var(--primary);
  font-size: 0.8rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}