:root {
            --gold: #0C3B38;
            --black: #0A0A0A;
            --ivory: #F9F6F0;
            --stone: #E8E6DF;
        }

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

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--ivory);
            color: var(--black);
            overflow-x: hidden;
        }

        /* Stardust Navigation Bar */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 5%;
            z-index: 1000;
            background: rgb(22, 22, 22);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(212, 175, 55, 0.3);
         
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--gold);
            letter-spacing: 2px;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--ivory);
            text-decoration: none;
            font-weight: 300;
            letter-spacing: 1px;
            position: relative;
            transition: all 0.3s;
        }

        .nav-links a::after {
            content: '✦';
            position: absolute;
            left: -15px;
            opacity: 0;
            transition: all 0.3s;
        }

        .nav-links a:hover::after {
            opacity: 1;
            left: -10px;
        }

        .nav-links a:hover {
            color: var(--gold);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--ivory);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Landing Section */
        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            padding: 0 10%;
            
            background-size: cover;
            color: var(--ivory);
            position: relative;
            margin-top: 80px;
        }

        .hero-content {
            max-width: 600px;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero p {
            margin-bottom: 2rem;
            line-height: 1.6;
        }
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
            opacity: 1; /* optional: darken image for better text visibility */
        }

        .cta-button {
            padding: 1rem 2.5rem;
            background: transparent;
            border: 1px solid var(--gold);
            color: var(--ivory);
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .cta-button:hover {
            background: var(--gold);
            color: var(--black);
        }

        /* New Arrivals Section */
        .new-arrivals {
            padding: 5rem 10%;
            text-align: center;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 2px;
            background: var(--gold);
        }

        .arrivals-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .arrival-card {
            position: relative;
            overflow: hidden;
            height: 350px;
            background: var(--stone);
        }

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

        .arrival-card:hover img {
            transform: scale(1.05);
        }

        .arrival-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--gold);
            color: var(--black);
            padding: 0.5rem 1rem;
            font-size: 0.8rem;
            letter-spacing: 1px;
        }

        .arrival-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.5rem;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            color: var(--ivory);
            transform: translateY(100%);
            transition: transform 0.3s;
        }

        .arrival-card:hover .arrival-info {
            transform: translateY(0);
        }

        /* Product Listings */
        .products {
            padding: 5rem 10%;
            background: var(--stone);
        }

        .product-filters {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .filter-btn {
            padding: 0.5rem 1.5rem;
            background: transparent;
            border: 1px solid var(--black);
            color: var(--black);
            cursor: pointer;
            transition: all 0.3s;
        }

        .filter-btn.active, .filter-btn:hover {
            background: var(--black);
            color: var(--ivory);
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
        }

        .product-card {
            background: var(--ivory);
            padding: 1.5rem;
            transition: transform 0.3s;
        }

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

        .product-img {
            height: 200px;
            background: var(--stone);
            margin-bottom: 1rem;
            overflow: hidden;
        }

        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .product-price {
            color: var(--gold);
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .add-to-cart {
            width: 100%;
            padding: 0.7rem;
            background: var(--black);
            color: var(--ivory);
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }

        .add-to-cart:hover {
            background: var(--gold);
            color: var(--black);
        }
/* RESPONSIVE FIX: Grid layout as 2 columns on mobile */

/* Categories Section - Responsive */
.categories-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    color: var(--black);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gold);
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Category Card */
.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    aspect-ratio: 1/1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .categories-section {
        padding: 50px 20px;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }
    
    .categories-section {
        padding: 40px 15px;
    }
    
    .category-title {
        font-size: 1.2rem;
        bottom: 15px;
    }
}


        /* Footer */
        footer {
            background: var(--black);
            color: var(--ivory);
            padding: 5rem 10%;
            text-align: center;
        }

        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--gold);
            margin-bottom: 2rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--ivory);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--gold);
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .social-icons a {
            color: var(--ivory);
            font-size: 1.2rem;
            transition: color 0.3s;
        }

        .social-icons a:hover {
            color: var(--gold);
        }

        .copyright {
            font-size: 0.9rem;
            opacity: 0.7;
        }



        /* cetegory -------- */
        /* CSS Variables */
  :root {
      --gold: #D4AF37;
      --black: #0A0A0A;
      --ivory: #F9F6F0;
      --stone: #E8E6DF;
  }

  /* Categories Section */
  .categories-section {
      padding: 80px 20px;
      max-width: 1200px;
      margin: 0 auto;
  }

  .section-title {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 60px;
      position: relative;
      color: var(--black);
  }

  .section-title::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 2px;
      background: var(--gold);
  }

  /* Categories Grid */
  .categories-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
  }

  /* Category Card */
  .category-card {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
      transition: all 0.4s ease;
      aspect-ratio: 1/1;
  }

  .category-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  }

  /* Category Image */
  .category-img-container {
      width: 100%;
      height: 100%;
      overflow: hidden;
      position: relative;
  }

  .category-img-container::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 50%);
      z-index: 1;
      opacity: 0;
      transition: opacity 0.3s ease;
  }

  .category-card:hover .category-img-container::before {
      opacity: 1;
  }

  .category-img-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
  }

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

  /* Category Title */
  .category-title {
      position: absolute;
      bottom: 20px;
      left: 0;
      right: 0;
      text-align: center;
      color: white;
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      z-index: 2;
      padding: 0 15px;
      transform: translateY(20px);
      opacity: 0;
      transition: all 0.4s ease;
  }

  .category-card:hover .category-title {
      transform: translateY(0);
      opacity: 1;
  }

  /* Responsive Design */
  @media (max-width: 992px) {
      .categories-grid {
          grid-template-columns: repeat(3, 1fr);
      }
  }

  @media (max-width: 768px) {
      .categories-grid {
          grid-template-columns: repeat(2, 1fr);
      }
      
      .section-title {
          font-size: 2rem;
      }
  }

  @media (max-width: 480px) {
      .categories-grid {
          grid-template-columns: 1fr;
          max-width: 350px;
          margin: 0 auto;
      }
      
      .section-title {
          font-size: 1.8rem;
          margin-bottom: 40px;
      }
      
      .categories-section {
          padding: 60px 20px;
      }
  }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: rgba(86, 26, 26, 0.95);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 3rem;
                transition: left 0.3s;
            }

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

            .mobile-menu-btn {
                display: block;
            }

            .hero {
                align-items: center;
                text-align: center;
            }

            .product-filters {
                flex-wrap: wrap;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }
        }



/* footer ========== */


footer {
  background: #0b0b0b;
  color: #d4af37;
  text-align: center;
  padding: 50px 20px;
  font-family: 'Open Sans', sans-serif;
}

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

.footer-logo {
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
  color: #fff;
}

.footer-links {
  margin-bottom: 20px;
}

.footer-links a {
  margin: 0 10px;
  text-decoration: none;
  color: #d4af37;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.social-icons a {
  margin: 0 8px;
  font-size: 1.2rem;
  color: #d4af37;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
}

.company-details {
  margin-top: 25px;
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.6;
}

.company-details a {
  color: #d4af37;
  text-decoration: none;
}

.company-details a:hover {
  text-decoration: underline;
}

footer p {
  font-size: 0.85rem;
  margin-top: 20px;
  color: #aaa;
}
