@import url('https://fonts.googleapis.com/css2?family=Alike&display=swap');
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Alike', serif;
      background-color: #ffffff;
      color: #1e1717;
      line-height: 1.6;
      overflow-x: hidden;
    }
    
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    
    button {
      cursor: pointer;
      border: none;
      font-family: 'Alike', serif;
    }
    
    a {
      text-decoration: none !important;
      color: inherit;
    }
    
    /* Layout components */
    .container {
      width: 100%;
      margin: 0 auto;
    }
    
    .flex-row {
      display: flex;
      flex-direction: row;
    }
    
    .flex-column {
      display: flex;
      flex-direction: column;
    }
    
    /* Header styles */
    .top-banner {
      background-color: #6d115f;
      padding: 14px;
      text-align: center;
    }
    
    .top-banner-text {
      font-size: 13px;
      font-family: 'Alike', serif;
      font-weight: 400;
      line-height: 24px;
      color: #ffffff;
      margin-top: 4px;
    }
    
    .highlight-text {
      color: #e4ab39;
    }
    
    .secondary-banner {
      background-color: #fedff5;
      padding: 14px;
      text-align: center;
    }
    
    .secondary-banner-text {
      font-size: 14px;
      font-family: 'Alike', serif;
      font-weight: 400;
      line-height: 24px;
      color: #6d115f;
    }
    
    /* .main-header {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      padding: 16px;
      gap: 12px;
      width: 100%;
    } */

.main-header {
 
  z-index: 1000;
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  gap: 12px;
  width: 100%;
}

/* header {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: #000000;
} */

header {
  position: sticky;
  top: 0;
  z-index: 1000;
}
    
    .header-content {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      gap: 16px;
    }
    
    .logo {
      width: 60px;
      height: auto;
      flex-shrink: 0;
    }
    
    /* .nav-menu {
      display: none;
    } */

    /* .nav-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #ffffff;
  box-shadow: 0 6px 16px rgba(0,0,0,0.10);
  padding: 0 16px;
  gap: 0;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease;
  z-index: 999;
} */

.nav-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 110%;
  left: 16px;
  right: 16px;

  background: #ffffff;
  border-radius: 14px;

  box-shadow: 0 20px 40px rgba(0,0,0,0.12);

  padding: 0;
  overflow: hidden;

  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);

  pointer-events: none;

  transition: all 0.35s ease;

  z-index: 999;
}

/* .nav-menu.nav-open {
  max-height: 400px;
  opacity: 1;
  pointer-events: auto;
  padding: 12px 16px;
} */

.nav-menu.nav-open {
  max-height: 600px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  padding: 12px;
}

.nav-item {
  padding: 4px 16px;
  font-size: 19px;
  border-radius: 10px;
  transition: all 0.25s ease;
  /*color: #212529;*/
  color: #15171a;
  font-weight: 600;
}

.nav-item:hover {
 
  color: #6d115f;
  font-weight: 600;
  /* padding-left: 20px; */
}

.nav-menu hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 10px 0;
}
    
    /* .hamburger {
      display: block;
      width: 32px;
      height: 32px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23a61991'%3E%3Cpath d='M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z'/%3E%3C/svg%3E");
      background-size: contain;
      border: none;
      cursor: pointer;
      flex-shrink: 0;
      margin-left: auto;
    } */

    .hamburger {
  display: block;
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23a61991'%3E%3Cpath d='M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: auto;
  transition: background-image 0.2s ease;
}

.hamburger.is-open {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23a61991'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
}
    
    .header-actions {
      display: flex;
      gap: 20px;
      align-items: center;
      justify-content: flex-end;
      flex-shrink: 0;
    }
    
    .action-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }
    
    .action-icon {
      width: 16px;
      height: 16px;
    }
    
    .action-text {
      font-size: 12px;
      font-family: 'Alike', serif;
      font-weight: 600;
      line-height: 18px;
      color: grey !important;
    }
    
    .login-btn {
      font-size: 16px;
      font-family: 'Alike', serif;
      font-weight: 400;
      line-height: 25px;
      color: #ffffff;
      background-color: #6d115f;
      border-radius: 8px;
      padding: 8px 16px;
    }
    
    .login-btn:hover {
      background-color: #6d115f;
      transform: scale(1.05);
      transition: all 0.3s ease;
    }
    
    /* Hero section */
    .hero-section {
      
      
      background-size: cover;
      background-position: center;
      padding: 40px 16px;
      min-height: 400px;
      display: flex;
      align-items: flex-start;
      justify-content: flex-start;
    }

    .home-hero-section{
/*background-image: url('../images/img_rectangle_18671.png');*/
background-image: url('../images/home-banner-3.png');
object-fit:cover;
min-height:70% !important;

    }
    
    .hero-content {
      text-align: left;
      max-width: 600px;
    }
    
    .hero-title {
      font-size: 28px;
      font-family: 'Alike', serif;
      font-weight: 800;
      line-height: 1.2;
      color: #6d115f;
      margin-bottom: 16px;
    }
    
    .hero-subtitle {
      font-size: 18px;
      font-family: 'Alike', serif;
      font-weight: 500;
      line-height: 1.3;
      color: #434655;
      margin-bottom: 24px;
    }
    
    .hero-buttons {
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: flex-start;
    }
    
    .btn-primary {
      font-size: 18px;
      font-family: 'Alike', serif;
      font-weight: 400;
      line-height: 33px;
      color: #ffffff;
      background-color: #6d115f;
      border-radius: 8px;
      padding: 10px 20px;
      transition: all 0.3s ease;
    }
    
    .btn-primary:hover {
      background-color: #6d115f;
      transform: scale(1.05);
    }
    
    .btn-secondary {
      font-size: 18px;
      font-family: 'Alike', serif;
      font-weight: 400;
      line-height: 33px;
      color: #6d115f;
      background-color: #ffffff;
      border-radius: 8px;
      padding: 10px 20px;
      transition: all 0.3s ease;
    }
    
    .btn-secondary:hover {
      background-color: #fedff5;
      transform: scale(1.05);
    }
    
    /* Category section */
    .category-section {
      padding: 40px 16px;
      margin-top: 20px;
    }
    
    .section-title {
      font-size: 28px;
      font-family: 'Alike', serif;
      font-weight: 700;
      line-height: 1.2;
      color: #6d115f;
      text-align: center;
      margin-bottom: 12px;
    }
    
    .section-subtitle {
      font-size: 22px;
      font-family: 'Alike', serif;
      font-weight: 500;
      line-height: 1.3;
      color: #434655;
      text-align: center;
      margin-bottom: 40px;
    }
    
    .category-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }
    
    .category-card {
      position: relative;
      border-radius: 42px;
      overflow: hidden;
      box-shadow: 0px 4px 4px rgba(136, 136, 136, 1);
    }
    
    .category-image {
      width: 100%;
      /* height: auto; */
      height: 400px;
      border-radius: 42px;
    }
    
    /* .category-label {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      font-size: 18px;
      font-family: 'Alike', serif;
      font-weight: 800;
      line-height: 32px;
      color: #6d115f;
      text-align: center;
      background: linear-gradient(90deg, rgba(217, 217, 217, 0.2) 0%, rgba(115, 115, 115, 0.2) 100%);
      padding: 18px 20px;
      border-radius: 0px 0px 38px 38px;
      box-shadow: 0px 4px 4px rgba(136, 136, 136, 1);
    } */

    .category-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100%; /* hide initially */
  
  opacity: 0;
  transform: translateY(30px);

  transition: all 0.4s ease;

  font-size: 18px;
  font-family: 'Alike', serif;
  font-weight: 800;
  color: #6d115f;
  text-align: center;

   background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 18px 20px;
  border-radius: 0 0 38px 38px;
}


.category-card:hover .category-label {
  bottom: 0;
  opacity: 1;
  transform: translateY(0);
}
    
    /* Best sellers section */
    .bestsellers-section {
      padding: 40px 16px;
      margin-top: 20px;
    }
    
    .section-header {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      margin-bottom: 32px;
    }
    
    .view-products-link {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 16px;
      font-family: 'Alike', serif;
      font-weight: 400;
      color: #6d115f;
    }
    
    .arrow-icon {
      width: 24px;
      height: 24px;
    }
    
    .products-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
    }
    
    .product-card {
      background-color: #f8f8f8;
      border-radius: 20px;
      padding: 10px;
      box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
      position: relative;
      overflow: hidden;
    }

    
    .wishlist-btn {
      position: absolute;
      top: 30px;
      right: 18px;
      width: 40px;
      height: 40px;
      border-radius: 28px;
      background-color: #6d115f;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
      padding: 12px;
      z-index: 1;
    }
    
     .wishlist-btn:hover {
      transform: scale(1.1);
    }
    
    .wishlist-icon {
      width: 18px;
      height: 18px;
    }
    
    .product-image {
      width: 100%;
      height: auto;
      margin: 12px 0 40px;
    }
    
    .product-info {
      padding: 0 10px 44px;
    }
    
    .product-name {
      font-size: 18px;
      font-family: 'Alike', serif;
      font-weight: 500;
      line-height: 26px;
      color: #0f3e38;
      margin-bottom: 4px;
    }
    
    .product-price {
      display: flex;
      gap: 6px;
      align-items: center;
      margin-bottom: 4px;
    }
    
    .current-price {
      font-size: 18px;
      font-family: 'Alike', serif;
      font-weight: 500;
      line-height: 27px;
      color: #6d115f;
    }
    
    .original-price {
      font-size: 18px;
      font-family: 'Alike', serif;
      font-weight: 400;
      line-height: 27px;
      color: #39363699;
      text-decoration: line-through;
    }
    
    .rating-bar {
      display: flex;
      gap: 2px;
    }

    /* .rating-bar::before {
      content: "★★★★★";
      font-size: 14px;
      letter-spacing: 2px;
      background: linear-gradient(90deg, #e4ab39 80%, #ddd 80%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    } */

    .product-image {
            width: 100%;
            /* height: auto; */
            height: 350px;
            border-radius: 8px;
        }

/* hidden by default */




/* ---------------- OVERLAY PANEL ---------------- */
.product-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  background: #6d115f;
  color: #fff;

  padding: 18px;
  border-radius: 0 0 20px 20px;

  transform: translateY(100%);
  transition: all 0.4s ease;

  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* SHOW ON HOVER */
.product-card:hover .product-overlay {
  transform: translateY(0);
}

/* ---------------- TEXT STYLES ---------------- */
.product-overlay h3 {
  font-size: 16px;
  font-family: 'Alike', serif;
}

.overlay-price {
  font-size: 16px;
  font-weight: 600;
}

.overlay-price span {
  text-decoration: line-through;
  color: #ddd;
  margin-left: 6px;
  font-weight: 400;
}

/* ---------------- STARS ---------------- */
/* .overlay-rating::before {
  content: "★★★★☆";
  color: #e4ab39;
  font-size: 14px;
} */

.overlay-rating {
  display: flex;
  gap: 4px;
}

.overlay-rating .star {
  background-color: rgba(255,255,255,0.3);  /* uncolored = faded white */
}

.overlay-rating .star.filled {
  background-color: #e4ab39;  /* gold */
}

/* ---------------- BUTTON ---------------- */
.overlay-btn {
  margin-top: 10px;
  background: #fff;
  color: #6d115f;
  padding: 10px;
  border-radius: 25px;
  font-weight: 600;
  transition: 0.3s;
}

.overlay-btn:hover {
  background: #f3e6f1;
}

/* ---------------- HIDE NORMAL CONTENT ON HOVER ---------------- */
.product-card:hover .product-info {
  opacity: 0;
}
    
    /* Trending section */
    .trending-section {
      padding: 40px 16px;
      margin-top: 20px;
    }
    
    .trending-description {
      font-size: 18px;
      font-family: 'Alike', serif;
      font-weight: 500;
      line-height: 1.3;
      color: #747474;
      text-align: center;
      margin-bottom: 40px;
      padding: 0 20px;
    }
    
    .trending-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
    }
    
    .trending-image {
      width: 100%;
      height: auto;
      border-radius: 12px;
    }
    
    /* Bespoke section */
    .bespoke-section {
      background-color: #6d115f;
      padding: 40px 16px;
      margin-top: 20px;
    }
    
    .bespoke-content {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }
    
    .bespoke-text {
      text-align: center;
    }
    
    .bespoke-label {
      font-size: 22px;
      font-family: 'Alike', serif;
      font-weight: 700;
      line-height: 39px;
      color: #d0a04e;
      margin-bottom: 6px;
    }
    
    .bespoke-title {
      font-size: 28px;
      font-family: 'Alike', serif;
      font-weight: 700;
      line-height: 1.2;
      color: #ffffff;
      margin-bottom: 12px;
    }
    
    .bespoke-description {
      font-size: 18px;
      font-family: 'Alike', serif;
      font-weight: 400;
      line-height: 1.3;
      color: #ffffff;
      margin-bottom: 18px;
    }
    
    .btn-gold {
      font-size: 18px;
      font-family: 'Alike', serif;
      font-weight: 400;
      line-height: 32px;
      color: #ffffff;
      background-color: #d0a04e;
      border-radius: 8px;
      padding: 10px 20px;
      display: inline-block;
      transition: all 0.3s ease;
    }
    
    .btn-gold:hover {
      background-color: #b8903f;
      transform: scale(1.05);
    }
    
    .bespoke-image {
      width: 100%;
      height: auto;
      border-radius: 4px;
    }
    
    /* Story section */
    .story-section {
      padding: 40px 16px;
      margin-top: 20px;
    }
    
    .story-content {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }
    
    .story-image {
      width: 100%;
      height: auto;
    }
    
    .story-text {
      text-align: center;
    }
    
    .story-label {
      font-size: 22px;
      font-family: 'Alike', serif;
      font-weight: 700;
      line-height: 39px;
      color: #d0a04e;
      margin-bottom: 12px;
    }
    
    .story-title {
      font-size: 28px;
      font-family: 'Alike', serif;
      font-weight: 400;
      line-height: 1.2;
      color: #000000;
      margin-bottom: 12px;
    }
    
    .story-description {
      font-size: 18px;
      font-family: 'Alike', serif;
      font-weight: 400;
      line-height: 1.2;
      color: #1e1717bc;
    }
    
    /* Footer */
    .footer {
      background-color: #6d115f;
      padding: 40px 16px;
      margin-top: 20px;
    }
    
    .newsletter-title {
      font-size: 32px;
      font-family: 'Alike', serif;
      font-weight: 500;
      line-height: 1.2;
      color: #ffffff;
      text-align: center;
      margin-bottom: 40px;
    }
    
    .footer-content {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }
    
    .footer-column {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    
    .footer-heading {
      font-size: 22px;
      font-family: 'Alike', serif;
      font-weight: 700;
      line-height: 39px;
      color: #d6a84d;
      margin-bottom: 8px;
    }
    
    .footer-text {
      font-size: 16px;
      font-family: 'Alike', serif;
      font-weight: 400;
      line-height: 1.2;
      color: #ffffff;
    }
    
    .footer-link {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 16px;
      font-family: 'Alike', serif;
      font-weight: 400;
      line-height: 29px;
      color: #ffffff;
      transition: color 0.3s ease;
    }
    
    .footer-link:hover {
      color: #d6a84d;
    }
    
    .bullet-point {
      width: 8px;
      height: 8px;
      background-color: #d6a84d;
      border-radius: 4px;
      flex-shrink: 0;
    }
    
    .contact-icon {
      width: 20px;
      height: 20px;
    }
    
    .newsletter-form {
      display: flex;
      flex-direction: row;
      gap: 12px;
      margin-top: 24px;
      align-items: center;
      flex-wrap: wrap;
    }
    
    .email-input {
      font-size: 16px;
      font-family: 'Alike', serif;
      font-weight: 400;
      line-height: 22px;
      color: #393636c6;
      background-color: #ffffffdd;
      border-radius: 6px;
      padding: 10px 10px 10px 36px;
      border: none;
      box-shadow: 1px 1px 9px rgba(0, 0, 0, 0.25);
      background-image: url('../images/img_envelope.svg');
      background-repeat: no-repeat;
      background-position: 10px center;
      background-size: 14px 14px;
      flex: 1;
      min-width: 180px;
    }
    
    .subscribe-btn {
      font-size: 16px;
      font-family: 'Alike', serif;
      font-weight: 700;
      line-height: 21px;
      color: #ffffff;
      background-color: #d6a84d;
      border-radius: 8px;
      padding: 8px 26px;
      transition: all 0.3s ease;
    }
    
    .subscribe-btn:hover {
      background-color: #b8903f;
      transform: scale(1.05);
    }
    
    .footer-divider {
      width: 100%;
      height: 1px;
      background-color: #ffffff;
      margin: 40px 0 32px;
    }
    
    .footer-bottom {
      display: flex;
      flex-direction: column;
      gap: 24px;
      align-items: center;
      text-align: center;
    }
    
    .copyright-text {
      font-size: 18px;
      font-family: 'Alike', serif;
      font-weight: 400;
      line-height: 38px;
      color: #ffffff;
      margin: 0 auto;
    }
    
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 16px;
      align-items: center;
    }
    
    .footer-link-item {
      font-size: 18px;
      font-family: 'Alike', serif;
      font-weight: 400;
      line-height: 36px;
      color: #ffffff;
      transition: color 0.3s ease;
    }
    
    .footer-link-item:hover {
      color: #d6a84d;
    }
    
    .privacy-icon {
      width: 20px;
      height: 24px;
    }
    
    /* Responsive media queries */
    @media (min-width: 640px) {
      .top-banner-text {
        font-size: 16px;
      }
      
      .secondary-banner-text {
        font-size: 16px;
      }
      
      .main-header {
        padding: 20px 24px;
      }
      
      .hero-section {
        padding: 60px 24px;
        min-height: 500px;
      }
      
      .hero-title {
        font-size: 36px;
      }
      
      .hero-subtitle {
        font-size: 24px;
      }
      
      .hero-buttons {
        flex-direction: row;
        justify-content: center;
      }
      
      .btn-primary, .btn-secondary {
        font-size: 20px;
      }
      
      .category-section {
        padding: 60px 24px;
      }
      
      .section-title {
        font-size: 36px;
      }
      
      .section-subtitle {
        font-size: 28px;
      }
      
      .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
      }
      
      .category-label {
        font-size: 20px;
      }
      
      .bestsellers-section {
        padding: 60px 24px;
        margin-top: 20px;
      }
      
      .products-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .trending-section {
        padding: 60px 24px;
        margin-top: 20px;
      }
      
      .trending-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }
      
      .bespoke-section {
        padding: 60px 24px;
        margin-top: 20px;
      }
      
      .story-section {
        padding: 60px 24px;
        margin-top: 20px;
      }
      
      .footer {
        padding: 60px 24px;
        margin-top: 20px;
      }
      
      .newsletter-title {
        font-size: 40px;
      }
      
      .newsletter-form {
        flex-direction: row;
      }
      
      .email-input {
        flex: 1;
      }
      
      .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
      }
      
      .footer-links {
        flex-direction: row;
        gap: 24px;
      }

      .privacy-icon {
      width: 16px;
      height: 20px;
    }
    .action-text {
      
      color: #1e1717bf;
    }
    }
    
    @media (min-width: 768px) {
      .main-header {
        padding: 12px 32px;
      }
      
      .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }
      
      .logo {
        /*width: 76px;*/
        /*width: 100px;*/
      }
      
      .hero-section {
        padding: 76px 32px;
        min-height: 600px;
      }
      
      .hero-title {
        font-size: 42px;
      }
      
      .hero-subtitle {
        font-size: 28px;
      }
      
      .btn-primary, .btn-secondary {
        font-size: 22px;
      }
      
      .category-section {
        padding: 80px 32px;
      }
      
      .section-title {
        font-size: 42px;
      }
      
      .section-subtitle {
        font-size: 32px;
      }
      
      .category-label {
        font-size: 22px;
      }
      
      .bestsellers-section {
        padding: 80px 32px;
        margin-top: 20px;
      }
      
      .section-header {
        flex-direction: row;
        justify-content: space-between;
      }
      
      .view-products-link {
        font-size: 22px;
      }
      
      .product-name {
        font-size: 20px;
      }
      
      .current-price, .original-price {
        font-size: 20px;
      }
      
      .trending-section {
        padding: 80px 32px;
        margin-top: 20px;
      }
      
      .trending-description {
        font-size: 18px;
      }
      
      .bespoke-section {
        padding: 80px 32px;
        margin-top: 20px;
      }
      
      .bespoke-label {
        font-size: 26px;
      }
      
      .bespoke-title {
        font-size: 36px;
      }
      
      .bespoke-description {
        font-size: 20px;
      }
      
      .btn-gold {
        font-size: 20px;
      }
      
      .story-section {
        padding: 80px 32px;
        margin-top: 20px;
      }
      
      .story-label {
        font-size: 26px;
      }
      
      .story-title {
        font-size: 36px;
      }
      
      .story-description {
        font-size: 20px;
      }
      
      .footer {
        padding: 80px 32px;
        margin-top: 20px;
      }
      
      .newsletter-title {
        font-size: 40px;
      }
      
      .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 40px;
      }
      
      .footer-column {
        flex: 1;
        min-width: 250px;
      }
      
      .footer-heading {
        font-size: 26px;
      }
      
      .footer-text {
        font-size: 18px;
      }
      
      .footer-link {
        font-size: 18px;
      }
      
      .email-input {
        font-size: 18px;
      }
      
      .subscribe-btn {
        font-size: 17px;
      }
      
      .copyright-text {
        font-size: 15px;
      }
      
      .footer-link-item {
        font-size: 14px;
      }
    }
    
    @media (min-width: 1024px) {
      /* .hamburger {
        display: none;
      }
      
      .nav-menu {
        display: flex;
        gap: 32px;
        align-items: center;
        flex: 1;
        justify-content: center;
      } */

      .hamburger {
  display: none;
}

.nav-menu {
  display: flex !important;
  flex-direction: row;
  position: static;
  max-height: none;
  opacity: 1;
  pointer-events: auto;
  padding: 0;
  box-shadow: none;
  overflow: visible;
  gap: 32px;
  flex: 1;
  justify-content: center;
  transition: none;
  padding-top: 20px;
}

.nav-menu .nav-item {
  padding: 0;
  border-bottom: none;
}
      
      .nav-item {
        /*font-size: 20px;*/
        font-family: 'Alike', serif;
        font-weight: 700;
        line-height: 24px;
        /*color: #1e1717bc;*/
        /*color: grey;*/
        color: rgb(76, 76, 76);
        position: relative;
        transition: color 0.3s ease;
      }
      
      .nav-item:hover {
        color: #6d115f;
      }
      
      .nav-item.active {
        font-weight: 600;
        color: #6d115f;
      }
      .active-item.active .action-text{
        color: #6d115f;
      }
      
      .dropdown-icon {
        width: 20px;
        height: 20px;
        margin-left: 4px;
      }
      
      .main-header {
        padding: 10px 68px;
      }
      
      .hero-section {
        padding: 76px 56px;
        min-height: 500px;
      }
      
      .hero-content {
        text-align: left;
        max-width: 800px;
      }
      
      .hero-title {
        font-size: 42px;
      }
      
      .hero-subtitle {
        font-size: 20px;
      }
      
      .hero-buttons {
        justify-content: flex-start;
      }
      
      .btn-primary, .btn-secondary {
        font-size: 16px;
      }
      
      .category-section {
        padding: 88px 86px;
        max-width: 1548px;
        margin-left: auto;
        margin-right: auto;
      }
      
      .section-title {
        font-size: 32px;
      }
      
      .section-subtitle {
        font-size: 20px;
      }
      
      .category-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 36px;
      }
      
      .category-label {
        font-size: 16px;
      }
      
      .bestsellers-section {
        padding: 0px 80px;
        margin-top: 20px;
      }
      
      .view-products-link {
        font-size: 28px;
      }
      
      .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 60px;
      }
      
      .wishlist-btn {
        width: 46px;
        height: 46px;
      }
      
      .product-name {
        font-size: 18px;
      }
      
      .current-price, .original-price {
        font-size: 16px;
      }
      
      .trending-section {
        padding: 60px 48px;
        margin-top: 20px;
      }
      
      .trending-description {
        font-size: 18px;
      }
      
      .trending-grid {
        display: flex;
        gap: 22px;
      }
      
      .trending-column-left {
        display: flex;
        flex-direction: column;
        gap: 22px;
        width: 42%;
      }
      
      .trending-column-right {
        display: flex;
        flex-direction: column;
        gap: 22px;
        width: 58%;
      }
      
      .trending-row {
        display: flex;
        gap: 18px;
      }
      
      .bespoke-section {
        padding: 66px 56px;
        margin-top: 20px;
      }
      
      .bespoke-content {
        flex-direction: row;
        align-items: center;
      }
      
      .bespoke-text {
        width: 42%;
        text-align: left;
      }
      
      .bespoke-label {
        font-size: 26px;
      }
      
      .bespoke-title {
        font-size: 36px;
      }
      
      .bespoke-description {
        font-size: 20px;
      }
      
      .btn-gold {
        font-size: 16px;
      }
      
      .bespoke-image {
        width: 56%;
      }
      
      .story-section {
        padding: 100px 100px;
        margin-top: 16px;
      }
      
      .story-content {
        flex-direction: row;
        align-items: center;
        gap: 40px;
      }
      
      .story-image {
        width: 46%;
      }
      
      .story-text {
        width: 46%;
        text-align: left;
      }
      
      .story-label {
        font-size: 26px;
      }
      
      .story-title {
        font-size: 32px;
      }
      
      .story-description {
        font-size: 20px;
        margin-bottom: 20px;
      }
      
      .footer {
        padding: 52px;
        /* padding: 52px 100px; */
        margin-top: 20px;
      }
      
      .newsletter-title {
        font-size: 42px;
      }
      
      .footer-content {
        gap: 48px;
      }
      
      .footer-heading {
        font-size: 22px;
      }
      
      .footer-text {
        font-size: 16px;
      }
      
      .footer-link {
        font-size: 18px;
      }
      
      .email-input {
        font-size: 18px;
      }
      
      .subscribe-btn {
        font-size: 17px;
      }
      
      .copyright-text {
        /*font-size: 14px;*/
        font-size: 18px;
      }
      
      .footer-link-item {
        font-size: 14px;
      }
    }
    
    @media (min-width: 1280px) {
      .hero-title {
        font-size: 36px;
      }
      
      .hero-subtitle {
        font-size: 26px;
      }
    }
    
    @media (min-width: 1536px) {
      .category-section {
        max-width: 1548px;
      }
    }

    /* MOBILE + TABLET ONLY */
@media (max-width: 1023px) {

  .trending-grid {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Reset nested structure properly */
  .trending-column-left,
  .trending-column-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .trending-row {
    display: flex;
    gap: 16px;
  }

  /* Make all images full width */
  .trending-image {
    width: 100% !important;
    height: 240px;
    object-fit: cover;
    flex: 1;
  }

  /* Fix small images inside row */
  .trending-row .trending-image {
    width: 100% !important;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {

  .trending-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Ensure full width usage */
  .trending-column-left,
  .trending-column-right {
    width: 100%;
  }
}

@media (max-width: 1023px) {
  .trending-row img {
    width: 100% !important;
  }
}



/* new style */

/* COMMON HOVER EFFECT */
.category-card,
.product-card,
.trending-image,
.bespoke-image,
.story-image {
  transition: all 0.35s ease;
}

.category-card:hover,
.product-card:hover,
.trending-image:hover,
.bespoke-image:hover,
.story-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.category-card img,
.product-card img {
  transition: transform 0.5s ease;
}

.category-card:hover img{
  transform: scale(1.1);
}

.active-item.active .action-text{
        color: #6d115f;
      }
      
@media(max-width:800px){
  .nav-item.active {
        font-weight: 600;
        color: #6d115f;
         background-color: #f9e9f6;
         padding: 10px 20px;
      }

      .active-item.active .action-text{
        color: #6d115f;
      }

      


}

        /* MOBILE DROPDOWN ACTIONS */
.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #eee;
}

.mobile-actions .action-item {
  display: flex;
  align-items: center;
  gap: 12px;
 flex-direction: row; /* ← ADD THIS */

  padding: 4px 16px;
  border-radius: 10px;

  font-size: 14px;
  font-weight: 500;

  transition: all 0.3s ease;
}

.mobile-actions .action-item:hover {
  background: #f6eef4;
  transform: translateX(4px);
}

/* login full width */
.mobile-login {
  width: 100%;
  margin-top: 8px;
}

.mobile-login {
  width: 100%;
  margin-top: 10px;
  padding: 12px;

  font-size: 15px;
  font-weight: 600;

  border-radius: 10px;

  background: linear-gradient(135deg, #6d115f, #6d115f);

  box-shadow: 0 6px 16px rgba(166,25,145,0.25);
}

.mobile-login:hover {
  transform: translateY(-2px);
}

/* hide duplicate actions */
@media (max-width: 1023px) {
  .desktop-actions {
    display: none;
  }
}

@media (min-width: 1024px) {
  .mobile-actions {
    display: none;
  }
}

@media((min-width:1024px) and (max-width:1210px)){
  .main-header {
        padding: 10px 30px;
      }
      .nav-menu {
  
  gap: 15px;
  
  padding-top: 20px;
}
}

    
.trending-card {
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.trending-img {
  width: 100%;
  height: 260px; /* SAME HEIGHT FOR ALL */
  object-fit: cover;
}

/* hover effect */
.trending-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.trending-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* IMAGE */
.trending-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* OVERLAY */
.trending-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

   background: rgba(214, 176, 208, 0.944); 

  color: #6d115f;/* dark rose */

  font-size: 18px;
  font-weight: 600;

  opacity: 0;
  transition: all 0.35s ease;
}

/* HOVER EFFECT */
.trending-card:hover .trending-overlay {
  opacity: 1;
}

.trending-img{
    height:auto;
}
/* optional zoom */
.trending-card:hover .trending-img {
  transform: scale(1.08);
}

/* arrow animation */
.trending-overlay:hover {
  letter-spacing: 1px;
}


/* View button in overlay - bottom center */
.overlay-view-btn {
    display: block;
    text-align: center;
    margin: 10px auto 10px;
    background: #fff;
    color: #6d115f;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-family: 'Alike', serif;
    font-size: 15px;
    transition: 0.3s;
    width: fit-content;
    text-decoration: none !important;
}

.overlay-view-btn:hover {
    background: #f3e6f1;
    transform: scale(1.05);
}


.image-view-label {
    position: absolute;
    /* product-image has margin: 12px 0 40px in style.css 
       so bottom of image ≈ top of .product-info 
       adjust this value to sit at image bottom */
    bottom: calc(44px + 150px); /* 44px = product-info height approx, 10px = margin from bottom of image */
    left: 50%;
    transform: translateX(-50%);
    background: #6d115f;
    color: #ffffff !important;
    font-size: 14px;
    font-family: 'Alike', serif;
    font-weight: 600;
    padding: 7px 28px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-decoration: none !important;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    pointer-events: none;
}

.product-card:hover .image-view-label {
    opacity: 1;
    pointer-events: auto;
}

@media(max-width:426px){
  .wishlist-btn{
    height: 35px !important;
    width: 35px !important;
    padding: 0px !important;
    top: 30px !important;
  }
  .wishlist-icon{
    height: 16px !important;
    width: 16px !important;
  }
}


/*new home page css after live*/

/* Mobile View Only */
@media (max-width: 768px){

    .home-hero-section{
        position: relative;
        overflow: hidden;
    }

    /* Strong Light Blur Overlay */
/*    .home-hero-section::before{*/
/*        content: "";*/
/*        position: absolute;*/
/*        inset: 0;*/

        /* light white overlay */
        /*background: rgba(255,255,255,0.30);*/

        /* stronger blur */
        /*backdrop-filter: blur(10px);*/
        /*-webkit-backdrop-filter: blur(10px);*/
        
/*        background: linear-gradient(*/
/*    to bottom,*/
/*    rgba(255,255,255,0.55),*/
/*    rgba(255,240,248,0.45),*/
/*    rgba(255,220,240,0.38)*/
/*);*/

/* softer premium blur */
/*backdrop-filter: blur(14px);*/
/*-webkit-backdrop-filter: blur(14px);*/

/*        z-index: 1;*/
/*    }*/
.home-hero-section::before{
    content: "";
    position: absolute;
    inset: 0;

    /* DARK TRANSPARENT OVERLAY */
    background: rgba(0,0,0,0.45);

    /* NO BLUR */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    z-index: 1;
}
    /* keep content above overlay */
    .home-hero-section > *{
        position: relative;
        z-index: 2;
    }

    /* optional extra text clarity */
    /*.home-hero-section .hero-title,*/
    /*.home-hero-section .hero-subtitle{*/
    /*    text-shadow: 0px 2px 10px rgba(255,255,255,0.7);*/
    /*}*/
    .home-hero-section .hero-subtitle{
        color: white;
    }
        .hero-title{
    color: #D8D8D8;
    text-shadow: 0px 2px 10px rgba(0,0,0,0.45);
}
}

/* Mobile View Only */
@media (max-width: 768px){

    .hero-center-mobile{
        display: flex;
        justify-content: center; /* X axis */
        align-items: center;     /* Y axis */

        min-height: 100vh;
        text-align: center;
    }

    .hero-center-mobile .hero-content{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        padding: 20px;
    }

    .hero-center-mobile .hero-title,
    .hero-center-mobile .hero-subtitle{
        text-align: center;
    }

    .hero-center-mobile .hero-buttons{
        justify-content: center;
    }
}

@media(max-width:430px) and (min-width:379px){
  .home-category-image{
    height: 450px;
  }
}

@media(max-width:380px) and (min-width:330px){
  .home-category-image{
    height: 425px;
  }
}

@media(max-width:329px){
  .home-category-image{
    height: 425px !important;
  }
}


.wishlist-btn.wishlisted {
    background: white;
}

.wishlist-btn[data-wishlisted="true"] {
    background-color: white !important;
}
.detail-wishlist-btn[data-wishlisted="true"] {
    background-color: white !important;
}

.contact-page-btn{
    cursor:auto !important;
}

@media(max-width:1300px) and (min-width:800px){
    .product-image{
        height: 300px;
    }
}

@media(min-width:1300px){
    .logo{
        width: 153px !important;
    }
    .nav-item{
        font-size:20px;
    }
}

@media(min-width:1000px){
    .logo{
        width: 130px;
    }
    .nav-item{
        font-size:18px;
    }
}

@media(max-width:1100px) and (min-width:1020px){
    .category-image {
        height: 275px;
    }
}

@media(max-width:1200px) and (min-width:1101px){
    .category-image {
        height: 325px;
    }
}

@media(max-width:1250px) and (min-width:1201px){
    .category-image {
        height: 375px;
    }
}


@media(max-width:1050px) and (min-width:1000px){
    .product-image {
        height: 250px;
    }
}

@media(max-width:1150px) and (min-width:1051px){
    .product-image {
        height: 280px;
    }
}