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

:root {
  --bg-color: #0f1012;
  --bg-alt: #17191c;
  --card-bg: #1f2226;
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --accent: #e5e7eb;
  --border: #2e3238;
  --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
  width: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin: 0 auto;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(15, 16, 18, 0.85);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid var(--border);
}

.brand-logo {
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text-main);
  text-decoration: none;
  font-size: 1.1rem;
}

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

.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-btn {
  color: var(--bg-color);
  background-color: var(--text-main);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Hamburger hidden on desktop */
.hamburger {
  display: none;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  padding: 2rem 1.25rem 4rem;
  background: url('images/bueauty.png') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    var(--bg-color) 10%,
    rgba(15, 16, 18, 0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.btn-primary {
  display: inline-block;
  background-color: var(--text-main);
  color: var(--bg-color);
  padding: 0.85rem 1.75rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.bg-alt {
  background-color: var(--bg-alt);
}

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.section h2 {
  font-size: 1.75rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.body-text {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Quality Features */
.quality-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.quality-feature {
  padding: 1.5rem;
  border-radius: 12px;
  background-color: var(--card-bg);
  border: 1px solid var(--border);
}

.quality-feature h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.quality-feature p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border);
}

.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8),
    transparent
  );
  font-weight: 600;
  font-size: 0.95rem;
}

/* Collection CTA */

.collection-cta {
  text-align: center;
  margin-top: 3rem;
}

.collection-cta p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.collection-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 30px;
  background-color: var(--card-bg);
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  transition: 0.3s ease;
}

.collection-btn span {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.collection-btn:hover {
  background-color: var(--text-main);
  color: var(--bg-color);
}

.collection-btn:hover span {
  transform: translateX(4px);
}


/* Footer */
.footer {
  padding: 4rem 0 2rem;
  
  text-align: center;
}

.footer h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

/* Social Links */
.social-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 0.75rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.social-btn {
  display: block;
  padding: 0.85rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  background-color: var(--card-bg);
}

.copyright {
  border-top: 1px solid var(--border);
  padding: 2rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}



/* Collection Hero */

.collection-hero {
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding: 8rem 1.25rem 4rem;
  background:
    linear-gradient(
      to top,
      var(--bg-color) 5%,
      rgba(15, 16, 18, 0.35) 100%
    ),
    url('images/1.jpg') center/cover no-repeat;
}

.collection-hero-content {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.collection-hero h1 {
  max-width: 700px;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.collection-hero p {
  max-width: 600px;
  color: var(--text-muted);
  font-size: 1.05rem;
}


/* Collection Section */

.collection-section {
  padding: 5rem 0;
}

.collection-heading {
  max-width: 650px;
}

.collection-heading h2 {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}


/* Filters */

.collection-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 2.5rem 0;
}

.filter-btn {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  cursor: pointer;
  font-family: inherit;
  transition: 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--text-main);
  color: var(--bg-color);
}


/* Collection Grid */

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.25rem;
}


/* Product Card */

.collection-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-5px);
}


/* Product Image */

.collection-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--bg-alt);
}

.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.collection-card:hover .collection-image img {
  transform: scale(1.04);
}


/* Product Tag */

.collection-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 20px;
  background: var(--text-main);
  color: var(--bg-color);
  font-size: 0.7rem;
  font-weight: 700;
}


/* Product Information */

.collection-info {
  padding: 1.25rem;
}

.product-category {
  display: block;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.collection-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.collection-info p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}


/* View Details */

.view-product {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
}

.view-product span {
  transition: transform 0.3s ease;
}

.view-product:hover span {
  transform: translateX(4px);
}


/* Bottom CTA */

.collection-bottom {
  padding: 5rem 0;
  text-align: center;
  background: var(--bg-alt);
}

.collection-bottom h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.collection-bottom p {
  max-width: 550px;
  margin: 0 auto 1.5rem;
  color: var(--text-muted);
}




/* product page css */
/* === PRODUCT PAGE ===*/

.product-page {
  padding: 8rem 0 5rem;
  min-height: 80vh;
}

.back-collection {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 2rem;
  transition: 0.3s ease;
}

.back-collection:hover {
  color: var(--text-main);
}

.back-collection span {
  font-size: 1.2rem;
}


/* Product Layout */

.product-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}


/* Product Image */

.product-gallery {
  width: 100%;
}

.product-main-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 14px;
  background: var(--card-bg);
  border: 1px solid var(--border);
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* Product Details */

.product-details {
  padding-top: 1rem;
}

.product-details h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin: 0.5rem 0 1rem;
}

.product-description {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 500px;
}

.product-divider {
  height: 1px;
  background: var(--border);
  margin: 2rem 0;
}


/* Price */

.product-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.product-price span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.product-price strong {
  font-size: 1.2rem;
}


/* Options */

.product-option {
  margin-bottom: 1.75rem;
}

.product-option h3 {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.product-option p {
  color: var(--text-muted);
  font-size: 0.9rem;
}


/* Sizes */

.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.size-btn {
  min-width: 45px;
  height: 42px;
  padding: 0 0.75rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-main);
  cursor: pointer;
  font-family: inherit;
}

.size-btn:hover {
  background: var(--text-main);
  color: var(--bg-color);
}


/* WhatsApp */

.product-whatsapp {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem;
  border-radius: 8px;
  background: var(--text-main);
  color: var(--bg-color);
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
}

.product-whatsapp:hover {
  transform: translateY(-2px);
}

.product-whatsapp span {
  font-size: 1.2rem;
}


/* Note */
.product-note {
  color: var(--text-muted);
  font-size: 0.75rem;
  text-align: center;
  margin-top: 1rem;
}






@media (min-width: 768px) {

  .card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

}


/* Mobile Responsiveness */
@media screen and (max-width: 480px) {

  /* Navbar */
  .navbar {
    padding: 1rem 1.25rem;
  }

  .brand-logo {
    font-size: 0.85rem;
    letter-spacing: 1px;
    white-space: nowrap;
  }

  /* Hide desktop navigation */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-color);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem;
    flex-direction: column;
    gap: 1rem;
  }

  /* Show menu when opened */
  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 0.95rem;
  }

  /* Shop + Hamburger */
  .nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
  }

  .nav-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }

  /* Hamburger */
  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--text-main);
    padding: 0;
    cursor: pointer;
  }

  .hamburger .material-symbols-outlined {
    font-size: 1.7rem;
  }


  /* Container */
  .container {
    width: 100%;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }


  /* Hero */
  .hero {
    min-height: 85vh;
    padding: 2rem 1.25rem 4rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }


  /* Sections */
  .section {
    padding: 4rem 0;
  }

  .section h2 {
    font-size: 1.75rem;
  }


  /* Quality */
  .quality-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }


  /* Existing Cards */
  .card-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }


  /* Lookbook */
  .gallery {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .gallery-item img {
    height: 320px;
  }


  /* Social Links */
  .social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .social-btn {
    width: 100%;
    text-align: center;
  }


  /* Mobile Collections  css*/
  .collection-hero {
    min-height: 50vh;
    padding: 7rem 1.25rem 3rem;
  }

  .collection-hero h1 {
    font-size: 2.3rem;
  }

  .collection-hero p {
    font-size: 0.85rem;
  }


  /* Collection Section */
  .collection-section {
    padding: 3rem 0;
  }

  .collection-heading h2 {
    font-size: 1.6rem;
  }


  /* Filter Buttons */
  .collection-filters {
    gap: 0.4rem;
    margin: 1.75rem 0;
  }

  .filter-btn {
    padding: 0.45rem 0.8rem;
    font-size: 0.75rem;
  }


  /* TWO-COLUMN PRODUCT GRID */
  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 0.7rem;
  }


  /* Product Card */
  .collection-card {
    border-radius: 10px;
  }


  /* Product Image */
  .collection-image {
    aspect-ratio: 1 / 1;
  }


  /* Product Info */
  .collection-info {
    padding: 0.8rem;
  }

  .product-category {
    font-size: 0.6rem;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
  }

  .collection-info h3 {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
  }

  .collection-info p {
    font-size: 0.7rem;
    line-height: 1.4;
    margin-bottom: 0.7rem;
  }


  /* View Details */
  .view-product {
    font-size: 0.7rem;
  }


  /* Tags */
  .collection-tag {
    top: 0.5rem;
    left: 0.5rem;
    padding: 0.25rem 0.5rem;
    font-size: 0.55rem;
  }


  /* Bottom CTA */
  .collection-bottom {
    padding: 3rem 1.25rem;
  }

  .collection-bottom h2 {
    font-size: 1.6rem;
  }
 

  /* product page mobile css  */
    .product-page {
    padding: 7rem 0 3rem;
  }

  .product-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-details {
    padding-top: 0;
  }

  .product-details h1 {
    font-size: 2rem;
  }

  .product-description {
    font-size: 0.9rem;
  }

  .product-divider {
    margin: 1.5rem 0;
  }

}