*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: auto;
}

body, html {
    height: 100%;
     font-family: 'Poppins', sans-serif;
     background-color: #fff8fb;
  color: #4a4a4a;
}

.hero {
  position: relative;
  height: 60vh; /* Half-height */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.hero-content {
  z-index: 2;
  text-align: center;
  background: rgba(255, 192, 203, 0.3); /* Soft pink overlay */
  padding: 2rem;
  border-radius: 12px;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin: 0;
  color: #fff;
}

.hero-content p {
  font-size: 1.2rem;
  margin: 1rem 0;
  color: #fff;
}

.hero-btn {
  background: #ff69b4;
  color: white;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s;
}

.hero-btn:hover {
  background: #e754a3;
}





/* Navbar styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #F7A9C4; /* Soft pink */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  box-shadow: 0 2px 8px rgba(255, 111, 145, 0.4);
  z-index: 1000;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Logo */
.logo {
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  user-select: none;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #ffdde1; /* lighter pink */
}

/* Cart icon container */
.cart-icon {
  position: relative;
  cursor: pointer;
  color: #fff;
  font-size: 1.4rem;
}

.cart-icon:hover {
  color: #ffd1dc;
}

/* Cart count badge */
.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #fff;
  color: #ff6f91;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
  border: 2px solid #ff6f91;
  user-select: none;
}

.cart-total {
  font-size: 1.1rem;
  text-align: right;
  color: #333;
}


/* Hamburger menu - hidden on desktop */
.hamburger {
  display: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
}

/* Mobile dropdown link styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #F7A9C4; /* Matches navbar */
    padding: 20px 0;
    gap: 10px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: transform 0.3s ease-in-out;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    text-align: center;
    width: 100%;
  }

  .nav-links li a {
    display: block;
    width: 100%;
    padding: 12px 0;
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.3s ease;
  }

  .nav-links li a:hover {
    background-color: #ff87a4; /* Slightly deeper pink on hover */
    color: #fff;
  }

  .hamburger {
    display: block;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    padding: 8px;
    transition: transform 0.3s;
  }

  .hamburger:hover {
    transform: rotate(90deg);
  }
}

/* === DROPDOWN === */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #F7A9C4;
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
  min-width: 180px;
  padding: 0;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  position: relative;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background-color: #ff87a4;
}

/* === SUB-DROPDOWN === */
.sub-dropdown:hover .sub-dropdown-menu {
  display: block;
}

.sub-dropdown-menu {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background-color: #0c0c0c;
  min-width: 160px;
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
}

.sub-dropdown-menu li a {
  padding: 10px 15px;
  color: #fff;
}

/* Add arrow indicators */
.dropdown > a::after {
  content: " ▼";
  font-size: 0.8rem;
}

.sub-dropdown > a::after {
  content: " ▶";
  float: right;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .dropdown-menu,
  .sub-dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    padding-left: 20px;
    background: #0c0c0c;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .sub-dropdown.active .sub-dropdown-menu {
    display: block;
  }

  .dropdown > a::after,
  .sub-dropdown > a::after {
    float: right;
  }
}




.product-section {
  padding: 40px 20px;
  background-color: #FFF6F0;
}

.section-header {
  text-align: center;
  margin: 30px;
}

.section-header h2 {
  font-size: 2rem;
  margin: 0;
  color: #222;
}

.section-header p {
  font-size: 1rem;
  color: #666;
}


/* Products grid */
.products {
  display: grid;
  gap: 20px;
  margin: 0 auto;
  padding: 0 10px;
  width: 100%;
 
  grid-template-columns: repeat(2, 1fr);

}

/* Desktop view: exactly 4 cards per row */
@media (min-width: 1024px) {
  .products {
    grid-template-columns: repeat(4, 1fr);
  }
}

.products > div {
    background: white;
    border: 0.2px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}


.product-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;       /* bold */
  color: #222;              /* dark for good contrast */
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.product-description {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

.product-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #e91e63; /* feminine pink accent */
}

.container{
  max-width: none;
  width: 100%;
  padding: 20px;
  margin: auto;
}

.row{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px; /* for gutter spacing */
}

.column{
  flex: 1 1 100%;
  padding: 10px;
  box-sizing: border-box;
}

@media (min-width: 768px){
  .column{
    flex: 1 1 25%;
  }
}

.category-section {
  padding: 30px 15px;
}

.category-title {
  font-size: 1.8rem;
  color: #c71585;
  margin: 30px 0 15px;
  text-align: center;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}

.cat-icon-card {
  text-align: center;
  padding: 15px;
  border-radius: 12px;
  background: #ffe4ec;
  color: #c71585;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.cat-icon-card:hover {
  background: #ffb6c1;
  color: white;
}

.cat-icon-card i {
  font-size: 2rem;
  margin-bottom: 10px;
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.product-card {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
  border-radius: 6px;
  transition: box-shadow 0.3s ease;
  background: white;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 16px;
  box-sizing: border-box;

}

.product-card:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.product-image {
  height: auto;
  margin-bottom: 10px;
  width: 100%;
  max-width: 350px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
  display: block;         /* Make image a block element */
}


.product-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;

}

.product-description {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

.product-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #e91e63; /* feminine pink accent */
}


.section-header {
  text-align: center;
  margin: 40px 0 30px;
  font-family: 'Comic Sans MS', cursive, sans-serif; /* playful font */
  color: #D36C9A; /* soft pink-purple */
  position: relative;
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

/* Underline with a cute little heart or star icon */
.section-header::after {
  content: '★'; /* or '♥' or '❀' */
  display: inline-block;
  margin-top: 8px;
  font-size: 1.6rem;
  color: #F7A9C4; /* lighter pink */
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  opacity: 0.7;
  animation: pulse 2s infinite ease-in-out;
}

/* subtle animation */
@keyframes pulse {
  0%, 100% {
    opacity: 0.7;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.2);
  }
}


.site-footer {
  background-color: #E37B9F;
  color: #fff;
  padding: 80px 20px 40px;
  font-family: sans-serif;
  
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
  margin-bottom: 20px;
  padding: 0 40px;
}

.footer-column h3,
.footer-column h2 {
  margin-bottom: 10px;
  color: #fff;
}

.footer-column p {
  margin-top: 10px;
  color: #fff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #fff;
}

.social-icons {
  display: flex;
  gap: 12px; /* adds space between icons */
  align-items: center;
}


.social-icons a svg {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  filter: brightness(0) invert(1);
  padding: 5px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 10px;
  font-size: 14px;
}

.icon-block {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.icon-circle {
  width: 40px;
  height: 40px;
  background-color: #c71585; /* background color */
  color: white;              /* icon color */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}

.subpage-header {
  background-color: #f9f9f9;
  padding: 40px 20px 30px;
  border-bottom: 1px solid #e0e0e0;
  text-align: left;
  margin: 40px 0 30px;
  font-family: 'Comic Sans MS', cursive, sans-serif; /* playful font */
  
}

.subpage-header .container {
  max-width: 1200px;
  margin: 0 auto;
  
}

.breadcrumb {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 10px;
  display: flex;
  gap: 5px;
}

.breadcrumb a {
  color: #3498db;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.page-title {
  font-size: 2rem;
  color: #222;
  margin: 0;
}

.page-description {
  font-size: 1rem;
  color: #555;
  margin-top: 10px;
  max-width: 600px;
}


 .product-detail{
  background-color: #fff;
}
.product-detail .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.product-gallery {
  flex: 1 1 45%;
}

/* Responsive (mobile < 768px) */
@media (max-width: 768px) {
  .product-gallery{
    flex: 1 1 100%;
  }
}

.main-image {
  width: 100%;
  height: 400px;
  border: 1px solid #ccc;
  border-radius: 6px;
  object-fit: cover;
}


@media (min-width: 768px) {
  .main-image {
    width: 60%;
  }
}

.thumbnails {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.thumbnails img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 2px solid #eee;
  cursor: pointer;
  transition: border 0.3s ease;
}

.thumbnails img:hover {
  border-color: #3498db;
}

.product-info {
  flex: 1 1 45%;
}

.product-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #222;
}

.product-price {
  margin-top: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #e91e63; /* feminine pink accent */
}

.product-description {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin-top: 20px;
}

.product-actions {
  margin-top: 20px;
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 12px;
  background-color: #fff;
  max-width: 100%;
  font-family: 'Poppins', sans-serif;
}

.product-actions-row {
  display: flex;
  align-items: center;
  justify-content: space-between; /* space between size and button */
  gap: 15px;
  margin-top: 15px;
  font-family: 'Poppins', sans-serif;
}

.product-size-display {
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-size-display label {
  font-size: 14px;
  color: #555;
  font-weight: 500;
}

.size-tag {
  display: inline-block;
  background-color: #fce4ec;
  color: #c2185b;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 14px;
}

/* Button Style */
.hero-btn {
  background-color: #e91e63;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background-color: #c2185b;
}


.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
  gap: 15px;
  font-family: 'Poppins', sans-serif;
}

.btn {
  padding: 12px 26px;
  background: linear-gradient(135deg, #ff6f91, #ff9a8b);
  color: #fff;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(255, 111, 145, 0.4);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
}

.btn:hover {
  background: linear-gradient(135deg, #ff4972, #ff7363);
  box-shadow: 0 6px 16px rgba(255, 73, 114, 0.6);
}

.btn:active {
  transform: scale(0.96);
}

.pagination .info {
  color: #ff6f91;
  font-weight: 600;
  font-size: 1rem;
}


.search-bar {
  display: flex;
  justify-content: center;
  margin: 20px 0;
  gap: 10px;
}

.search-bar input[type="text"] {
  padding: 10px 15px;
  width: 250px;
  border: 2px solid #ff6f91;
  border-radius: 25px;
  outline: none;
  font-size: 1rem;
}

.search-bar button {
  padding: 10px 20px;
  background: #ff6f91;
  border: none;
  color: white;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.search-bar button:hover {
  background: #ff3c70;
}


.cart-container {
  position: fixed;
  top: 0;
  left: -100%;
  width: 320px;
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 10px rgba(0,0,0,0.2);
  z-index: 1000;
  overflow-y: auto;
  transition: left 0.3s ease;
}

.cart-container.open {
  left: 0;
}

.cart-header {
  padding: 15px;
  background: rgb(227, 123, 159);;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-items {
  padding: 10px;
}

.cart-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.cart-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-right: 10px;
  border-radius: 6px;
}

.cart-footer {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
}

.checkout-btn,
.clear-btn {
  flex: 1;
  margin: 0 5px;
  padding: 10px;
  background: #111;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s;
}

.checkout-btn:hover {
  background: green;
}

.clear-btn:hover {
  background: red;
}


.inspo-block {
  padding: 40px 20px;
  background-color: #fff0f6;
  text-align: center;
}

.inspo-block h2 {
  font-size: 1.5rem;
  color: #c2185b;
}

.inspo-subtext {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
}

.inspo-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.inspo-gallery img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}


/* Make link fill entire grid item */
.product-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Style the product card */
.product-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
  height: 100%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Optional hover effect */
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Image */
.product-image {
  width: 100%;
  max-width: 350px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 4px;
  display: block;         /* Make image a block element */
  margin: 0 auto;
}

/* Title */
.product-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  margin: 10px 0 5px;
}

/* Description */
.product-description {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/* Price */
.product-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #e91e63; /* feminine pink accent */
}




.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(255, 111, 145, 0.2);
  overflow: hidden;
}

.contact-info {
  flex: 1;
  padding: 40px;
  background: #ffe3ed;
}

.contact-info h2 {
  color: #ff6f91;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.contact-info p {
  margin: 10px 0;
  font-size: 1rem;
}

.contact-info i {
  color: #ff6f91;
  margin-right: 8px;
}

.contact-info a {
  color: #333;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.info-image {
  margin-top: 30px;
}

.info-image img {
  max-width: 100%;
  border-radius: 12px;
}

.contact-form-container {
  flex: 1;
  padding: 40px;
}

.contact-form-container h2 {
  color: #ff6f91;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #444;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff6f91;
  outline: none;
}

.submit-btn {
  background: #ff6f91;
  color: white;
  padding: 14px 20px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #e85c80;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-info,
  .contact-form-container {
    padding: 30px 20px;
  }
}


.about-us {
  padding: 60px 20px;
  background-color: #fff0f5; /* light pink background */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: 2rem;
  color: #ff6f91;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.ceo-profile {
  text-align: center;
  flex: 1;
  min-width: 250px;
}

.ceo-image {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #ff6f91;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.ceo-title {
  color: #777;
  font-size: 0.95rem;
  margin-top: 5px;
}
