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

body {
  background: #111;
  font-family: Inter, sans-serif;
}

/* PAGE */
.page {
  width: 100%;
  max-width: 1800px;
  margin: auto;
  background: #FFF9F9;
}

/* HEADER */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: #FFF9F9;
}

.logo {
  width: 350px;
  margin-top: 30px;
  margin-left: -60px;
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon img {
  width: 22px;
  height: 22px;
  transition: 0.3s ease;
  margin-bottom: 30px;
  margin-left: 0px;
}

.icon:hover img {
  transform: scale(1.15);
  filter: brightness(0.7);
}

/*  NAV */
.nav {
  display: flex;
  gap: 22px;
}

.nav a {
  text-decoration: none;
  font-size: 14px;
  color: #000;
}

.nav a:hover {
  color: #C9135F;
}

.hero img {
  width: 100%;
  display: block;
}

/* BREADCRUMB  */
.breadcrumb {
  padding: 20px 90px 0;
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.breadcrumb a {
  color: #cb7e97;                   
  text-decoration: none;
  transition: color 0.2s ease;
  margin-left: -40px;
  font-size: 12px;
}

.breadcrumb a:hover {
  color: #C9135F;              
}

.breadcrumb span {
  margin: 0 6px;
  color: #d99bba;
}

.breadcrumb strong {
  color: #d8237e;                
  font-weight: 500;
}

/* CATEGORY  */
.category-section {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.category-card {
  width: 400px;
  height: 400px;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;

  text-decoration: none;   
  color: inherit;          
}

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

.category-card img {
  width: 100%;
  border-radius: 18px;
  display: block;
}

.category-card span {
  display: block;
  margin-top: 50px;
  font-size: 22px;
  font-weight: 600;
  color: #C9135F;
}

.category-wrapper {
  padding: 140px 100px;
}

.category-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 60px;
  text-align: center;
}

/* FEATURED PRODUCTS AND PRODUCTS */
.product-section {
  margin-bottom: 80px;
}

.section-title {
  font-size: 30px;
  margin-bottom: 40px;
  margin-left: 50px;
}

/* PRODUCT  */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  width: 90%;
  margin: 60px auto;
  margin-top: 15px;
}

.product-card {
  position: relative; 
  background: #fff;
  border: 1px solid #ddd;
  text-decoration: none;
  
  border-radius: 15px;         
  border: 1.5px solid #bc3d72;  

}

.product-card {
  position: relative;
  background: #fff;
  border-radius: 15px;
  border: 1.5px solid #bc3d72;
  overflow: hidden;   /* VERY IMPORTANT */
  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.heart {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 26px;
  cursor: pointer;
  color: #232323;
  z-index: 10;
  user-select: none;
}

.heart {
  z-index: 999;          
  pointer-events: auto; 
}

.heart.active {
  color: #f4a7b9;
}

.product-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-link:visited,
.product-link:active,
.product-link:hover {
  color: inherit;
  text-decoration: none;
}

.card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.image-box {
  width: 100%;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.image-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.card-link {
  position: relative;
  z-index: 1;
}

/*  PRODUCT INFO */
.product-info {
  padding: 12px;
}

.product-info h4 {
  font-size: 14px;
  margin-bottom: 4px;
}

.product-info p {
  font-size: 12px;
  color: #666;
  margin-bottom: 6px;
}

.price {
  font-size: 14px;
  font-weight: 600;
}

/* SALE BADGE (same as shop) */
.sale-badge{
  position:absolute;
  top:10px;
  left:10px;
  background:#c9135f;
  color:#fff;
  font-size:12px;
  font-weight:600;
  padding:4px 8px;
  border-radius:4px;
  z-index:2;
}

/* IMAGE BOX */
.image-box{
  position:relative;
}

/* PRICE BOX */
.price-box{
  margin-top:6px;
  display:flex;
  gap:8px;
  align-items:center;
}

/* OLD PRICE */
.old-price{
  font-size:14px;
  color:#888;
  text-decoration:line-through;
}

/* SALE PRICE */
.sale-price{
  font-size:16px;
  font-weight:700;
  color:#c9135f;
}

/* NORMAL PRICE */
.normal-price{
  font-size:16px;
  font-weight:600;
  color:#000;
}

/* MORE */
.more-wrapper {
  text-align: center;
  margin-top: 40px;
}

.more-link {
  display: inline-block;
  padding: 10px 30px;
  border-radius: 25px;
  color: #bc3d72;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.more-link:hover {
  background: #bc3d72;
  color: #fff;
}


/* FOOTER */
.footer {
  background: #f8d1e0;
  padding: 50px 100px 20px; 
  font-family: Inter, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 30px;
  align-items: start;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 18px;
  color: #000;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
  text-decoration: none;
}

.footer-col a:hover {
  color: #E91E63;
}

/* BRAND */
.footer-logo {
  width: 260px;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 24px;
}

.footer-socials img {
  width: 40px;
  height: 38px;
  object-fit: contain;
}

.footer-socials img:hover {
  transform: scale(1.15);
  filter: drop-shadow(0 0 10px rgba(233,30,99,0.7));
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 10px;
  font-size: 13px;
  color: #777;
}

.socials img:hover {
  filter: drop-shadow(0 0 15px rgba(255, 105, 180, 0.9));
  transform: scale(1.15);
}

.socials img:active {
  filter: drop-shadow(0 0 25px rgba(255, 20, 147, 1));
  transform: scale(0.95);
}
.footer-container {
  position: relative;
}

.footer-col {
  position: relative;
  padding-left: 40px;
}

.footer-col:first-child {
  padding-left: 0;
}

/* Vertical divider */
.footer-col:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 120px;
  width: 1px;
  background: #C9135F;
}

@media (max-width: 768px) {

  /* HEADER */
  .header {
    flex-direction: column;
    padding: 15px;
    gap: 10px;
  }

  .logo {
    width: 180px;
    margin: 0;
  }

  .header-right {
    align-items: center;
    width: 100%;
  }

  /* ICONS */
  .icons {
    justify-content: center;
    gap: 15px;
  }

  .icon img {
    width: 18px;
    height: 18px;
    margin-bottom: 0;
  }

  /* NAV → SCROLLABLE */
  .nav {
    width: 100%;
    overflow-x: auto;
    justify-content: center;
    gap: 15px;
  }

  .nav a {
    white-space: nowrap;
    font-size: 12px;
  }

  /* BREADCRUMB */
  .breadcrumb {
    padding: 10px 20px;
    margin-left: 0;
  }

  .breadcrumb a {
    margin-left: 0;
  }

  /* CATEGORY */
  .category-wrapper {
    padding: 40px 20px;
  }

  .category-section {
    flex-direction: column;
    gap: 20px;
  }

  .category-card {
    width: 100%;
    height: auto;
  }

  .category-card span {
    margin-top: 20px;
    font-size: 16px;
  }

  /* PRODUCTS */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 95%;
  }

  .image-box {
    height: 180px;
  }

  .product-info h4 {
    font-size: 12px;
  }

  .product-info p {
    font-size: 11px;
  }

  .price {
    font-size: 13px;
  }

  /* SECTION TITLE */
  .section-title {
    font-size: 22px;
    margin-left: 20px;
  }

  /* FOOTER */
  .footer {
    padding: 30px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-col {
    padding-left: 0;
  }

  .footer-col::before {
    display: none;
  }

  .footer-logo {
    width: 180px;
  }

  .footer-socials {
    justify-content: center;
  }

}
