body {
    margin: 0;   /* ❗ -7px hatao, ye layout bigaad raha tha */
    font-family: Arial, sans-serif;
}


.top-bar {
    background: #b3125d;
    color: #fff;
    text-align: center;
    font-size: 14px;

    padding: 10px 0;     /* 🔥 height kam */
    line-height: 1.2;
    margin: 0;           /* ❗ negative margin hatao */
}


/* HEADER */
/* .main-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    margin-top: -50px; 
    padding: 0;
    margin: 0;
} */

.main-header {
    background: #fff;
    border-bottom: 1px solid #eee;

    margin: 0;          /* ❗ koi gap nahi */
    padding: 0;
}


.container {
    max-width: 1124px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 95px;   /* 🔥 pehle 110 tha, kam kiya */
}


/* LOGO (SIZE PERFECT – TOUCH MAT KARNA) */
.logo img {
    height: 200px;         /* ✔ perfect size */
    width: auto;
    display: block;
}

/* MENU */
.menu ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.menu ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

/* ICONS */
.header-icons a {
    color: #000;
    margin-left: 15px;
    font-size: 18px;
}

/* ===== BANNER / SLIDER ===== */
.slider {
    position: relative;
    width: 100%;
    height: 520px;
    margin-top: -50px;   /* 🔥 GAP FORCEFULLY REMOVE */
    padding: 0;
    overflow: hidden;
}

/* SLIDES */
.slider .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
}


.slide.active {
    opacity: 1;
}

/* ===== COLLECTIONS ===== */
.collections-section {
    padding: 40px 0;
    background: #f8f5f6;
}

.collections-container {
    max-width: 1124px;
    margin: auto;
    padding: 0 20px;
}

.collections-title {
    font-size: 28px;
    margin-bottom: 25px;
    color: #7a1448;
}

.lc-title {
    font-size: 28px;
    margin-bottom: 25px;
    color: #7a1448;
}

/* GRID */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* CARD */
.collection-card {
    background: #f3c1d4;
    border-radius: 14px;
    padding: 15px;
    text-align: center;
}

/* IMAGE — ❌ CUT NHI HOGI */
.collection-card img {
    width: 100%;
    height: 340px;              /* Shopify jaisa size */
    object-fit: contain;        /* 🔥 CUT STOP */
    border-radius: 10px;
    background: #f3c1d4;
}

/* TITLE */
.collection-card h3 {
    margin-top: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}




/* ===== LATEST COLLECTION ===== */
.latest-collection {
  padding: 50px 0;
  background: #f6f6f6;   /* light grey background like Shopify */
}

.lc-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}
/* 
.lc-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
} */

/* GRID */
.lc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* CARD */
.lc-card {
  background: #fff;              /* ✅ card look */
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  overflow: hidden;
  text-align: center;
  transition: 0.3s ease;
  position: relative;
}

.lc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}

/* IMAGE */
.lc-card img {
  width: 100%;
  height: 300px;
  object-fit: contain;   /* ❌ cut nahi hogi */
  background: #fafafa;
  padding: 20px;
}

/* TITLE */
.lc-card h3 {
  font-size: 15px;
  font-weight: 500;
  margin: 12px 10px 6px;
}

/* PRICE */
.price {
  font-size: 14px;
  padding-bottom: 14px;
}

.price del {
  color: #999;
  margin-right: 6px;
}

/* SALE BADGE */
.sale-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #e91e63;
  color: #fff;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .lc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}



/* ===== BADGE ICON SECTION ===== */
.badge-icon-section {
  background: #E83F8D;   /* same pink */
  padding: 40px 20px;
}

.bi-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.bi-column {
  text-align: center;
  color: #fff;
}

.bi-icon {
  font-size: 46px;
  margin-bottom: 12px;
}

.bi-column h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

/* MOBILE */
@media (max-width: 768px) {
  .bi-container {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ===== FOOTER ===== */
.shopfoo-footer {
  background: #000;
  color: #fff;
  padding-top: 60px;
}

.shopfoo-footer-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.shopfoo-footer-column {
  flex: 1;
  background: #1e1e1e;
  padding: 30px;
  border-radius: 14px;
}

.shopfoo-footer-logo {
  width: 180px;
  margin-bottom: 15px;
}

.shopfoo-footer-text {
  font-size: 14px;
  line-height: 1.6;
}

.shopfoo-social-icons {
  margin-top: 15px;
}

.shopfoo-social-icons a {
  margin-right: 10px;
}

.shopfoo-social-icons i {
  font-size: 16px;
  padding: 12px;
  background: #EB1472;
  color: #fff;
  border-radius: 50%;
}

/* HEADINGS */
.shopfoo-footer-heading {
  font-size: 20px;
  margin-bottom: 10px;
}

.shopfoo-footer-underline {
  width: 50px;
  height: 2px;
  background: #EB1472;
  margin-bottom: 15px;
}

/* LINKS */
.shopfoo-footer-links {
  list-style: none;
  padding: 0;
}

.shopfoo-footer-links li {
  margin-bottom: 8px;
}

.shopfoo-footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.shopfoo-footer-links a:hover {
  color: #EB1472;
}

/* CONTACT */
.shopfoo-contact-info {
  list-style: none;
  padding: 0;
}

.shopfoo-contact-info li {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}

.shopfoo-contact-info i {
  color: #EB1472;
  font-size: 18px;
}

.shopfoo-contact-info h4 {
  margin: 0;
  font-size: 15px;
}

.shopfoo-contact-info p {
  margin: 0;
  font-size: 14px;
}

/* COPYRIGHT */
.shopfoo-copyright-wrapper {
  background: #1e1e1e;
  margin-top: 40px;
  text-align: center;
  padding: 18px;
  font-size: 14px;
}

.shopfoo-copyright-wrapper a {
  color: #EB1472;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
  .shopfoo-footer-container {
    flex-direction: column;
  }
}

/* ===== TRENDING SECTION ===== */
.trending-section {
  background: #b8326a;
  padding: 40px 30px;
  margin-top: 70px;
}

.trending-section h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: 600;
}

/* WRAPPER */
.slider-wrapper {
  position: relative;
  overflow: hidden;
}

/* 🔥 IMPORTANT: slider → trending-slider */
.trending-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.trending-slider::-webkit-scrollbar {
  display: none;
}

/* PRODUCT CARD */
.product-card {
  min-width: 23%;
  background: #fff;
  padding: 12px;
  position: relative;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* IMAGE */
.product-card img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  border-radius: 8px;
  background: #fafafa;
}

/* NAME */
.product-card h3 {
  font-size: 14px;
  margin: 10px 0 6px;
  color: #000;          /* 🔥 text visible */
  font-weight: 600;
}

/* PRICE */
.product-card .price {
  font-size: 14px;
  font-weight: 600;
  color: #b8326a;
}


.product-card .price del {
  color: #999;
  margin-right: 6px;
  font-weight: 400;
}

/* SALE BADGE */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #b8326a;
  color: #fff;
  padding: 4px 10px;
  font-size: 11px;
  border-radius: 20px;
}

/* NAV BUTTONS */
.nav {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  font-size: 28px;
  padding: 6px 12px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
}

.prev { left: 5px; }
.next { right: 5px; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .product-card {
    min-width: 48%;
  }
}

.af-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px; /* soft edges */
}


.af-right h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

.af-underline {
    width: 60px;
    border-bottom: 4px solid #ffffff;
    margin-bottom: 20px;
}

.af-right p {
    max-width: 520px;
    font-size: 16px;
    line-height: 1.7;
}
.af-right p {
    color: #f5f5f5;
}


.af-right h3 {
    margin-top: 20px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .af-columns {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .af-left {
        height: 280px;
    }
}
/* ===== FOUNDER SECTION ===== */
.urban-founder {
    padding: 70px 0;
    background: #f4f4f4;
}

/* OUTER BOX */
.urban-row {
    max-width: 1400px;
    margin: auto;
    display: flex;
    gap: 20px;                 /* 🔥 gap between image & text */
    padding: 20px;
    background: #fff;          /* single outer box */
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* BOTH SIDES */
.urban-left,
.urban-right {
    width: 50%;
}

/* IMAGE BOX */
.urban-left img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

/* TEXT BOX */
.urban-content {
    height: 420px;
    background: #e94b6d;
    color: #fff;
    padding: 45px 50px;
    border-radius: 16px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* HEADING */
.urban-content h2 {
    font-size: 40px;
    margin-bottom: 15px;
    font-weight: 700;
}

/* TEXT */
.urban-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* MOBILE */
@media (max-width: 991px) {
    .urban-row {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .urban-left img,
    .urban-content {
        height: auto;
    }
}
