:root {
  --pink-700: #be185d;
  --pink-600: #e91e63;
  --pink-500: #ec4899;
  --pink-400: #f783ac;
  --pink-100: #fce7f0;
  --pink-050: #fff5f8;
  --text-dark: #2d2333;
  --text-muted: #8a7f8c;
  --border: #f0d9e4;
  --white: #ffffff;
  --gold: #eab308;
  --shadow: 0 4px 20px rgba(190, 24, 93, 0.08);
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--pink-050);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: 'Poppins', sans-serif;
}

.section-inner,
.header-inner,
.top-bar-inner,
.feature-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ==================== Top bar ==================== */
.top-bar {
  background: var(--pink-100);
  color: var(--pink-700);
  font-size: 12.5px;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 32px;
  gap: 16px;
  flex-wrap: wrap;
}

.top-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-right a {
  color: var(--pink-700);
  font-weight: 500;
}

.top-right a:hover {
  text-decoration: underline;
}

.top-right .divider {
  margin: 0 8px;
  opacity: .5;
}

/* ==================== Header ==================== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  /* width:80px;height:80px; */
  /* border-radius:; */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  /* background: var(--pink-100); */
  width: 80px;

}

.logo-mark img {
  /* width:100%;
  height:100%;

  object-position:center 25%;
  transform:scale(1.6); */
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-text strong {
  font-family: 'Playfair Display', serif;
  font-size: 27px;
  font-weight: 700;
  color: var(--pink-700);
  letter-spacing: 2px;
}

.logo-text em {
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-size: 19px;
  font-weight: 700;
  color: var(--pink-700);
  letter-spacing: 1px;
}

.header-search {
  flex: 1;
  max-width: 400px;
  display: flex;
  border: 1.5px solid var(--border);
  border-radius: 30px;
  overflow: hidden;
}

.header-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  color: var(--text-dark);
}

.header-search input::placeholder {
  color: var(--text-muted);
}

.header-search button {
  background: var(--pink-600);
  border: none;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  flex-shrink: 0;
}

.header-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  background: none;
  border: none;
}

.header-action-btn span {
  display: flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
}

.header-action-btn .chev {
  margin-left: 1px;
}

.header-action-btn:hover {
  color: var(--pink-600);
}

/* ==================== Collapsible account sidebar ==================== */
.account-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45, 35, 51, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 200;
}

.account-overlay.open {
  opacity: 1;
  visibility: visible;
}

.account-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 330px;
  background: var(--white);
  box-shadow: -8px 0 30px rgba(45, 35, 51, 0.15);
  transform: translateX(100%);
  transition: transform .3s ease;
  z-index: 201;
  display: flex;
  flex-direction: column;
  padding: 22px 22px 30px;
  overflow-y: auto;
}

.account-sidebar.open {
  transform: translateX(0);
}

.account-sidebar-head {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 8px;
}

.account-close-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  cursor: pointer;
  transition: background .12s ease;
}

.account-close-btn:hover {
  background: var(--pink-050);
  color: var(--pink-600);
}

.account-sidebar-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: var(--pink-050);
  border-radius: 12px;
  margin-bottom: 22px;
}

.account-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--pink-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.account-sidebar-profile strong {
  display: block;
  font-size: 14.5px;
  color: var(--text-dark);
}

.account-sidebar-profile span {
  font-size: 12px;
  color: var(--text-muted);
}

.account-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.account-sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 14px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dark);
  transition: background .12s ease, color .12s ease;
}

.account-sidebar-nav a svg {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: color .12s ease;
}

.account-sidebar-nav a:hover {
  background: var(--pink-050);
  color: var(--pink-600);
}

.account-sidebar-nav a:hover svg {
  color: var(--pink-600);
}

.account-sidebar-nav a.logout-link {
  color: #ef4444;
}

.account-sidebar-nav a.logout-link svg {
  color: #ef4444;
}

.account-sidebar-nav a.logout-link:hover {
  background: #fdeaea;
}

.account-sidebar-divider {
  height: 1px;
  background: var(--border);
  margin: 10px 4px;
}

@media (max-width: 400px) {
  .account-sidebar {
    width: 100%;
  }
}

.cart-icon-wrap {
  position: relative;
  display: flex;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -9px;
  background: var(--pink-600);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 14px 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.main-nav a {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .4px;
  color: var(--text-dark);
  padding: 4px 0;
  position: relative;
}

.main-nav a:hover {
  color: var(--pink-600);
}

.main-nav a.sale-link {
  color: var(--pink-600);
}

/* ==================== Hero ==================== */
.hero-section{
  
  max-width:1280px;
  margin:0 auto;
}
.hero-carousel{
  position:relative;
  border-radius:25px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.hero-track{
  display:flex;
  width:400%;
  transition:transform .5s ease;
}

.hero-slide{
  position:relative;
  width:25%;
  min-height:460px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: linear-gradient(120deg, var(--pink-100) 0%, #fdf0f4 60%);
    padding: 24px 14px;
	border-radius:25px;
	margin-top:20px;
    
}
.hero-slide-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:fill;
  object-position:center;
  border-radius:25px;
}
.hero-slide-overlay{
  position:absolute;
  left:0; right:0; bottom:0;
  
  display:flex;
  justify-content:center;
  background:linear-gradient(to top, rgba(20,10,20,0.55) 0%, rgba(20,10,20,0.15) 60%, transparent 100%);
}
.hero-slide-btn{
  background:var(--pink-600);
  color:#fff;
  padding:14px 32px;
  border-radius:6px;
  font-size:12.5px;
  font-weight:700;
  letter-spacing:.5px;
  text-transform:uppercase;
  box-shadow:0 6px 20px rgba(0,0,0,0.25);
  transition:background .15s ease, transform .15s ease;
}
.hero-slide-btn:hover{
  background:var(--pink-700);
  transform:translateY(-2px);
}

.hero-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:42px;height:42px;
  border-radius:50%;
  background:rgba(255,255,255,0.85);
  border:none;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;
  box-shadow:var(--shadow);
  transition:background .15s ease;
}
.hero-arrow:hover{ background:#fff; }
.hero-arrow.prev{ left:20px; }
.hero-arrow.next{ right:20px; }

.hero-dots{
  position:absolute;
  bottom:20px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
}
.hero-dot{
  width:8px;height:8px;
  border-radius:50%;
  background:rgba(190,24,93,0.3);
  border:none;
  padding:0;
  cursor:pointer;
  transition:all .2s ease;
}
.hero-dot.active{
  width:24px;
  border-radius:5px;
  background:var(--pink-600);
}

/* ==================== Feature strip ==================== */
.feature-strip {
  padding: 28px 32px;
  max-width: 1280px;
  margin: 28px auto 0;
}

.feature-strip-inner {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  padding: 0;
}

.feature-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  border-right: 1px solid var(--border);
}

.feature-item:last-child {
  border-right: none;
}

.feature-item strong {
  display: block;
  font-size: 13.5px;
  margin-bottom: 2px;
}

.feature-item span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ==================== Generic section ==================== */
.section {
  padding: 44px 32px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--text-dark);
}

.view-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--pink-600);
}

.view-all:hover {
  text-decoration: underline;
}

/* ==================== Category circles ==================== */
.category-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.category-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 100px;
}

.category-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--white);
  box-shadow: var(--shadow);
  transition: transform .15s ease;
}

.category-circle-item:hover .category-circle {
  transform: translateY(-4px);
}

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

.category-circle-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

/* ==================== Product grid ==================== */
.products-section {
  background: var(--white);
}

.products-container{

    width:90%;
    margin:40px auto;

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:25px;

}

.product-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 5px 15px rgba(0,0,0,.12);

    transition:.3s;
}

.product-card:hover{

    transform:translateY(-8px);

    box-shadow:0 12px 25px rgba(0,0,0,.18);

}

.product-card a{

    text-decoration:none;

    color:#222;

}

.product-img-wrap{

    width:100%;
    height:260px;

    overflow:hidden;

}

.product-img-wrap img{

    width:100%;
    height:100%;

    object-fit:cover;

}

.product-info{

    padding:15px;

}

.product-name{

    font-size:18px;

    font-weight:600;

    margin-bottom:10px;

}

.price{

    color:#e91e63;

    font-size:22px;

    font-weight:bold;

}

.hidden-product{

    display:none;

}

.view-all-div{

    width:90%;

    margin:25px auto;

    text-align:right;

}

#toggleProducts{

    color:#e91e63;

    font-weight:700;

    text-decoration:none;

    font-size:18px;

}
.badge-new {
  background: var(--pink-600);
}

.badge-sale {
  background: #ef4444;
}

.badge-bestseller {
  background: #111827;
}

.wishlist-heart {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  z-index: 2;
  transition: color .15s ease;
}

.wishlist-heart.active {
  color: var(--pink-600);
}

.wishlist-heart.active svg {
  fill: var(--pink-600);
}

.product-info {
  padding: 14px;
}

.product-info h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.price {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--pink-600);
}

.old-price {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 12px;
}

.star {
  color: #e5d9c9;
  font-size: 12px;
}

.star.filled {
  color: var(--gold);
}

.review-count {
  font-size: 11px;
  color: var(--text-muted);
  margin-left: 4px;
}

.add-cart-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--pink-600);
  color: #fff;
  border: none;
  padding: 9px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background .12s ease;
}

.add-cart-btn:hover {
  background: var(--pink-700);
}

/* ==================== Promo + newsletter ==================== */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 20px;
}

.promo-card {
  background: var(--pink-100);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.promo-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.promo-card p {
  font-size: 13.5px;
  color: var(--text-muted);
}

.promo-btn {
  background: var(--pink-600);
  color: #fff;
  padding: 11px 24px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 700;
  margin-top: 6px;
}

.promo-btn:hover {
  background: var(--pink-700);
}

.newsletter-card {
  background: var(--pink-050);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.newsletter-text h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 6px;
}

.newsletter-text p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 11px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  width: 220px;
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--pink-500);
}

.newsletter-form button {
  background: var(--pink-600);
  color: #fff;
  border: none;
  padding: 11px 22px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
}

.newsletter-form button:hover {
  background: var(--pink-700);
}

.newsletter-img {
  width: 130px;
  height: 110px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

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

/* ==================== Trust badges ==================== */
.trust-section {
  padding-top: 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid var(--border);
  padding-top: 36px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.trust-item strong {
  display: block;
  font-size: 13.5px;
  margin-bottom: 3px;
}

.trust-item span {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==================== Footer ==================== */
.site-footer {
  background: #2d2333;
  color: #cbb9c9;
  padding: 44px 0 0;
  margin-top: 20px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo-text strong,
.footer-brand .logo-text em {
  color: #fff;
}

.footer-brand p {
  font-size: 13px;
  margin-top: 12px;
  line-height: 1.6;
}

.footer-col h5 {
  color: #fff;
  font-size: 13.5px;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  margin-bottom: 9px;
  color: #cbb9c9;
}

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

.footer-bottom {
  text-align: center;
  padding: 18px 0;
  font-size: 12px;
  color: #9a8aa0;
}

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

  .promo-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .header-search {
    display: none;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .main-nav.open {
    display: flex;
  }

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

  .hero-slide {
    flex-direction: column;
    padding: 40px 32px;
    text-align: center;
    min-height: auto;
  }

  .hero-text {
    max-width: none;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-img {
    width: 100%;
  }

  .feature-strip-inner {
    flex-wrap: wrap;
  }

  .feature-item {
    flex: 1 1 50%;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .category-row {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
  }

  .category-circle-item {
    flex: 0 0 auto;
  }
}

@media (max-width: 640px) {

  .header-action-btn span>span,
  .header-action-btn:nth-child(2) span {
    display: none;
  }
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-card {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }

  .newsletter-form input {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .top-bar-inner {
    font-size: 11px;
    justify-content: center;
    text-align: center;
  }

  .top-right {
    display: none;
  }

.shop-category{
    width:90%;
    margin:50px auto;
}



.category-container{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:35px;
}

.category-item{
    text-align:center;
}

.category-item a{
    text-decoration:none;
    color:#222;
}

.category-image{
    width:170px;
    height:170px;
    border-radius:50%;
    overflow:hidden;
    border:3px solid #ffffff;
    box-shadow:0 0 15px rgba(0,0,0,.15);
    transition:.4s;
    background:#f9f4f6;
}

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

.category-image:hover{
    transform:scale(1.08);
}

.category-item h4{
    margin-top:15px;
    font-size:22px;
    font-weight:600;
}


/* Products Section */
.products-container{
    width:90%;
    margin:40px auto;
    display:flex;
    flex-wrap:wrap;
    gap:25px;
    justify-content:flex-start;
}

/* Product Card */
.product-card{
    width:240px;
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 4px 12px rgba(0,0,0,0.12);
    transition:0.3s ease;
}

.product-card:hover{
    transform:translateY(-6px);
    box-shadow:0 8px 20px rgba(0,0,0,0.18);
}

/* Image */
.product-img-wrap{
    width:100%;
    height:280px;
    overflow:hidden;
    background:#f8f8f8;
}

.product-img-wrap img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:0.4s;
}

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

/* Product Details */
.product-info{
    padding:15px;
}

.product-name{
    font-size:18px;
    font-weight:600;
    color:#333;
    margin-bottom:8px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.price{
    font-size:20px;
    font-weight:bold;
    color:#e91e63;
}

.old-price{
    font-size:15px;
    color:#888;
    text-decoration:line-through;
    margin-left:8px;
}

.discount{
    color:#0a8f3d;
    font-size:15px;
    font-weight:600;
    margin-left:8px;
}

.hidden-category{
    display:none;
}

/* ================= MAP ================= */

.map-section{

    width:100%;

    margin-top:80px;

    background:#fff;

    padding:50px 0;

}

.map-heading{

    text-align:center;

    margin-bottom:30px;

}

.map-heading h2{

    font-size:42px;

    color:#d81b60;

    margin-bottom:10px;

    font-family:Georgia, serif;

}

.map-heading p{

    color:#666;

    font-size:18px;

}

.map-container{

    width:90%;

    margin:auto;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.map-container iframe{

    display:block;

}