/* =========================
   BASE / RESET
========================= */
/* GLOBAL SAFETY */
* {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;   /* ❌ horizontal scroll block */
}



* {
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    margin: 0;
    background-color: #f5f5f6;
    color: #282c3f;
}

/* =========================
   COMMON CONTAINER
========================= */
.container {
    width: 90%;
    max-width: 900px;
    margin: 30px auto;
    background: #fff;
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

h2 {
    margin-bottom: 20px;
}

/* =========================
   BUTTONS
========================= */
button {
    background-color: #ff3f6c;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 15px;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #e73362;
}

/* =========================
   CART / PRICE BOX
========================= */
.price-box {
    background: #fef3f6;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.price-box h3 {
    margin: 8px 0;
}

.qty-btn {
    display: inline-block;
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    background: #ff3f6c;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
}

.qty-btn:hover {
    background: #e73362;
}

.qty {
    margin: 0 10px;
    font-weight: 500;
}

/* =========================
   FORMS / INPUTS
========================= */
label {
    display: block;
    margin-top: 12px;
    margin-bottom: 5px;
    font-weight: 500;
}

input[type="text"],
input[name="upi"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #d4d5d9;
    border-radius: 4px;
    font-size: 14px;
}

input[type="text"]:focus {
    outline: none;
    border-color: #ff3f6c;
}

input[type="radio"] {
    margin-right: 8px;
}

/* =========================
   PAYMENT
========================= */
.payment-option {
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 10px;
    cursor: pointer;
}

.payment-option:hover {
    border-color: #ff3f6c;
    background: #fff5f8;
}

/* =========================
   SUCCESS PAGE
========================= */
.success {
    text-align: center;
}

.success h1 {
    color: #03a685;
}

.link {
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    color: #ff3f6c;
    font-weight: 500;
}

/* =========================
   NAVBAR
========================= */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 26px;
    font-weight: bold;
}

.logo .mall {
    color: #ff3f6c;
}

.logo .sks {
    color: #111;
}

.logo-peacock {
    height: 34px;
    margin: 0 6px;
    opacity: 0.7;
}

/* MENU */
.menu a {
    margin: 0 15px;
    text-decoration: none;
    font-weight: 600;
    color: #333;
}

.menu a:hover {
    color: #ff3f6c;
}

/* SEARCH */
.search-box {
    flex: 1;
    display: flex;
    justify-content: center;
}

.search-box input {
    width: 60%;
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid #ddd;
}

/* RIGHT NAV */
.nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.profile {
    cursor: pointer;
    font-weight: 600;
}

/* =========================
   PRODUCTS
========================= */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.card {
    background: white;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}

.card h3 {
    margin: 10px 0;
}

.card button {
    width: 100%;
}

/* =========================
   UPI PAYMENT
========================= */
.upi-box {
    width: 400px;
    margin: 80px auto;
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #5f259f;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin: 20px auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* =========================
   MODAL
========================= */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
}

.modal-box {
    background: white;
    padding: 30px;
    width: 300px;
    border-radius: 10px;
    text-align: center;
}

.modal-box input {
    width: 100%;
    padding: 8px;
    margin: 10px 0;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
.hamburger {
    display: none;
    font-size: 22px;
    cursor: pointer;
}

@media (max-width: 768px) {

    .hamburger {
        display: block;
    }

    .menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        border-top: 1px solid #ddd;
    }

    .menu.show {
        display: flex;
    }

    .menu a {
        padding: 12px;
        border-bottom: 1px solid #eee;
    }

    .search-box input {
        width: 100%;
    }

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

    body {
        padding-bottom: 70px;
    }
}

/* =========================
   MOBILE BOTTOM NAV
========================= */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background: #fff;
        border-top: 1px solid #ddd;
        justify-content: space-around;
        align-items: center;
        z-index: 1000;
    }

    .mobile-bottom-nav a {
        text-decoration: none;
        color: #333;
        font-size: 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
/* =========================
   MOBILE TOP BAR FIX
========================= */
@media (max-width: 768px) {

    /* Navbar single row */
    .navbar {
        flex-direction: row;
        padding: 10px 14px;
    }

    /* Hide right icons on top */
    .nav-right {
        display: none;
    }

    /* Center logo */
    .logo {
        flex: 1;
        justify-content: center;
        font-size: 22px;
    }

    .logo-peacock {
        height: 26px;
    }

    /* Hamburger left */
    .hamburger {
        display: block;
        font-size: 24px;
    }

    /* Search below navbar */
    .search-box {
        width: 100%;
        margin-top: 8px;
        order: 2;
    }

    .search-box input {
        width: 100%;
    }
}
/* ================= DESKTOP HEADER FIX ================= */
@media (min-width: 1024px) {

    .navbar {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        padding: 12px 40px;
        height: 80px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        background: #fff;
        width: 100%;
    }

    /* LOGO */
    .logo {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 22px;
        font-weight: bold;
    }

    .logo-peacock {
        height: 36px;
    }

    /* HIDE HAMBURGER ON DESKTOP */
    .hamburger {
        display: none;
    }

    /* MENU (MEN WOMEN ETC) */
    .menu {
        display: flex !important;
        gap: 28px;
        margin-left: 40px;
    }

    .menu a {
        font-size: 14px;
        font-weight: 600;
        color: #282c3f;
        text-decoration: none;
        position: relative;
    }

    .menu a:hover {
        color: #ff3f6c;
    }

    /* SEARCH BAR */
    .search-box {
        max-width: 420px;
        width: 100%;
        margin: 0 auto;
    }

    .search-box input {
        width: 100%;
        padding: 10px 14px;
        border-radius: 6px;
        border: 1px solid #ddd;
        font-size: 14px;
    }

    .search-btn {
        display: none;
    }

    /* RIGHT ICONS */
    .nav-right {
        display: flex;
        align-items: center;
        gap: 24px;
        font-size: 14px;
    }

    .nav-right a,
    .profile {
        text-decoration: none;
        color: #282c3f;
        font-weight: 600;
        cursor: pointer;
    }

    .nav-right a:hover,
    .profile:hover {
        color: #ff3f6c;
    }

    /* HIDE MOBILE BOTTOM NAV ON DESKTOP */
    .mobile-bottom-nav {
        display: none;
    }
}
/* ========== DESKTOP ONLY – SIMPLE MYNTRA STYLE ========== */
@media (min-width: 992px) {

  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
    background: #fff;
    height: 80px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    width: 100%;
  }

  /* LOGO */
  .logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 22px;
    font-weight: 700;
  }

  .logo-peacock {
    height: 34px;
  }

  .hamburger {
    display: none;
  }

  /* MENU */
  .menu {
    display: flex !important;
    gap: 26px;
    margin-left: 40px;
  }

  .menu a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #282c3f;
  }

  .menu a:hover {
    color: #ff3f6c;
  }

  /* SEARCH */
  .search-box {
    flex: 1;
    max-width: 480px;
    margin: 0 40px;
  }

  .search-box input {
    width: 100%;
    padding: 10px 14px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 14px;
  }

  .search-btn {
    display: none;
  }

  /* RIGHT SIDE */
  .nav-right {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 14px;
  }

  .nav-right a,
  .profile {
    text-decoration: none;
    font-weight: 600;
    color: #282c3f;
    cursor: pointer;
  }

  .nav-right a:hover,
  .profile:hover {
    color: #ff3f6c;
  }

  /* MOBILE THINGS OFF */
  .mobile-bottom-nav {
    display: none;
  }
}
/* ============== GLOBAL ============== */
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f5f5f6;
  color: #282c3f;
}

/* ============== NAVBAR (DESKTOP FIRST) ============== */
.navbar {
  display: flex;
  align-items: center;
  padding: 14px 40px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 26px;
  font-weight: 700;
}

.mall { color: #ff3f6c; }
.sks { color: #111; }

.logo-peacock {
  height: 34px;
  margin: 0 6px;
  opacity: .75;
}

/* MENU */
.menu {
  margin-left: 40px;
}

.menu a {
  margin: 0 14px;
  text-decoration: none;
  font-weight: 600;
  color: #333;
}

.menu a:hover {
  color: #ff3f6c;
  width: 100%;
}

/* SEARCH */
.search-box {
  flex: 1;
  display: flex;
  justify-content: center;
}

.search-box input {
  width: 420px;
  padding: 10px 16px;
  border-radius: 20px;
  border: 1px solid #ddd;
  font-size: 14px;
}

/* RIGHT */
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-right a {
  text-decoration: none;
  font-weight: 600;
  color: #333;
}

/* ============== HERO BANNER ============== */
.hero-banner {
  width: 100%;
  padding: 70px 20px;
  background: linear-gradient(90deg, #ff3f6c, #ff6f91);
  text-align: center;
  color: #fff;
}

.hero-banner h1 {
  font-size: 38px;
  margin-bottom: 10px;
}

.hero-banner p {
  font-size: 18px;
  opacity: .95;
}

/* ============== PRODUCTS ============== */
.products {
  width: 90%;
  max-width: 1200px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  text-align: center;
}

.card img {
  width: 100%;
  border-radius: 10px;
}

.card h3 {
  margin: 10px 0;
}

.card button {
  width: 100%;
  padding: 10px;
  background: #ff3f6c;
  border: none;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

/* ============== MOBILE FIX (ONLY MOBILE) ============== */
@media (max-width: 768px) {

  .navbar {
    flex-wrap: wrap;
    padding: 12px 16px;
  }

  .menu {
    display: none;
  }

  .search-box {
    width: 100%;
    margin-top: 10px;
  }

  .search-box input {
    width: 100%;
  }

  .nav-right {
    display: none;
  }

  .hero-banner {
    padding: 45px 15px;
  }

  .hero-banner h1 {
    font-size: 24px;
  }

  .hero-banner p {
    font-size: 14px;
  }

  .products {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

/* ============== MOBILE BOTTOM NAV ============== */
.mobile-bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #fff;
    border-top: 1px solid #ddd;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
  }

  .mobile-bottom-nav a {
    text-decoration: none;
    color: #333;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  body {
    padding-bottom: 70px;
  }
}
/* AUTH PAGES */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 20px;
}

.auth-box {
    width: 100%;
    max-width: 380px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    text-align: center;
}

.auth-box h2 {
    margin-bottom: 10px;
}

.auth-box p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.auth-box input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.auth-box button {
    width: 100%;
}

.resend {
    display: inline-block;
    margin-top: 15px;
    font-size: 14px;
    color: #ff3f6c;
    text-decoration: none;
}

/* RESPONSIVE FIX */
@media (max-width: 768px) {
    .auth-box {
        box-shadow: none;
        border-radius: 0;
    }
}
.navbar {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 14px 40px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

/* MENU */
.menu {
  display: flex;
  gap: 24px;
}

.menu a {
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: #282c3f;
}

.menu a:hover {
  color: #ff3f6c;
}

/* SEARCH */
.search-box {
  flex: 1;
  display: flex;
  justify-content: center;
}

.search-box input {
  width: 420px;
  padding: 10px 16px;
  border-radius: 20px;
  border: 1px solid #ddd;
}
/* ================= VISIBILITY FIX ================= */
.desktop-only {
  display: flex;
  
}

.mobile-only {
  display: none;
}

/* ================= DESKTOP HEADER ALIGN ================= */
.navbar {
  display: flex;
  align-items: center;
  gap: 40px;
}

.menu {
  display: flex;
  gap: 24px;
}

.search-box {
  flex: 1;
  max-width: 420px;
}

.nav-right {
  display: flex;
  gap: 20px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block;
  }

  .navbar {
    justify-content: space-between;
    padding: 12px 16px;
  }

  .hamburger {
    display: block;
    font-size: 24px;
  }

  .logo {
    font-size: 22px;
  }

  .menu.mobile-only {
    display: none;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid #ddd;
  }

  .menu.mobile-only.show {
    display: flex;
  }
}
/* GLOBAL SAFETY */
.navbar {
  width: 100%;
  max-width: 1400px;        /* laptop screens safe */
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  background: #fff;
}

/* MENU */
.menu {
  display: flex;
  gap: 20px;
  white-space: nowrap;
}

/* SEARCH */
.search-box {
  flex: 1;
  min-width: 0;             /* ⭐ overflow fix */
}

.search-box input {
  width: 100%;
  max-width: 420px;
  padding: 10px 14px;
  border-radius: 20px;
  border: 1px solid #ddd;
}

/* RIGHT */
.nav-right {
  display: flex;
  gap: 18px;
  white-space: nowrap;
}
@media (max-width: 768px) {

  .navbar {
    max-width: 100%;
    padding: 10px 14px;
  }

  .logo {
    font-size: 22px;
  }

  .search-box.mobile-only {
    width: 100%;
    padding: 8px 14px;
  }

  .search-box.mobile-only input {
    width: 100%;
    max-width: 100%;
  }

  .menu.mobile-only {
    width: 100%;
  }
}
.banner {
  width: 100%;
  padding: 80px 20px;
  background: linear-gradient(90deg, #ff3f6c, #ff6f91);
  text-align: center;
  color: white;
}

.banner h2 {
  font-size: clamp(22px, 4vw, 38px);
}

.banner p {
  font-size: clamp(14px, 2vw, 18px);
}
.products {
  width: 100%;
  max-width: 1200px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* ===== VISIBILITY CONTROL ===== */

/* Default: Desktop */
.desktop-only {
  display: flex;
}

.mobile-only {
  display: none;
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 768px) {

  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block;
  }

  /* Mobile menu hidden by default */
  #mobileMenu {
    display: none;
  }

  #mobileMenu.show {
    display: block;
  }
}
/* ================= FORCE VISIBILITY FIX ================= */

/* DESKTOP DEFAULT */
.desktop-only {
  display: flex !important;
}

.mobile-only {
  display: none !important;
}

/* Desktop lo mobile menu hide */
#mobileMenu {
  display: none !important;
}

/* ================= MOBILE ONLY ================= */
@media (max-width: 768px) {

  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }

  .navbar {
    flex-wrap: wrap;
  }

  /* Mobile menu hidden until hamburger click */
  #mobileMenu {
    display: none !important;
    flex-direction: column;
    background: #fff;
    width: 100%;
    border-top: 1px solid #ddd;
  }

  #mobileMenu.show {
    display: flex !important;
  }
}
/* ===== FOOTER ===== */
.footer {
    background: #fff;
    margin-top: 60px;
    border-top: 1px solid #eee;
}

/* CATEGORY STRIP */
.footer-strip {
    background: #ffe6ee;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    padding: 12px;
}

.footer-strip a {
    text-decoration: none;
    color: #ff3f6c;
    font-weight: 600;
}

/* MAIN */
.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 50px 8%;
}

.footer-brand h2 span {
    color: #ff3f6c;
}

.footer-links h4 {
    margin-bottom: 12px;
}

.footer-links a {
    display: block;
    margin-bottom: 8px;
    color: #444;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ff3f6c;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid #eee;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 14px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-strip {
        gap: 12px;
        font-size: 14px;
    }

    .footer-bottom {
        text-align: center;
        justify-content: center;
        gap: 10px;
    }
}
/* ===== HERO SECTION ===== */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 90px 8%;
    background: linear-gradient(135deg, #ffe6ee, #ffffff);
    gap: 40px;
}

/* LEFT */
.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-left h1 span {
    color: #ff3f6c;
}

.hero-left p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-btn {
    padding: 14px 34px;
    background: #ff3f6c;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
}

/* RIGHT */
.hero-right {
    flex: 1;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-img {
    width: 30%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* stagger look */
.img2 { margin-top: 40px; }
.img3 { margin-top: 80px; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 50px 5%;
        text-align: center;
    }

    .hero-left h1 {
        font-size: 42px;
    }

    .hero-right {
        margin-top: 30px;
    }

    .hero-img {
        width: 28%;
    }

    .img2, .img3 {
        margin-top: 0;
    }
}
/* ===== ANIMATIONS KEYFRAMES ===== */
@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* APPLY TO HERO */
.hero-left {
    animation: slideLeft 0.9s ease-out forwards;
}

.hero-right {
    animation: slideRight 1s ease-out forwards;
}
.hero-img {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-img:hover {
    transform: scale(1.08);
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}
.card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}
body {
    animation: fadePage 0.6s ease-in;
}

@keyframes fadePage {
    from { opacity: 0; }
    to { opacity: 1; }
}
.collections {
    padding: 50px 20px;
    background: #fafafa;
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

.collection-card {
    position: relative;
    height: 350px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    text-decoration: none;
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-card:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0.1));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: #fff;
}

.overlay h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.overlay p {
    font-size: 14px;
    opacity: 0.9;
}
/* ================= CATEGORY PAGE ================= */

.category-section {
    padding: 40px 8%;
    background: #f9f9f9;
}

.category-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
}

.product-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.product-info {
    padding: 15px;
}

.product-info h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.price {
    font-size: 18px;
    font-weight: bold;
    color: #ff3f6c;
}

.product-actions {
    display: flex;
    gap: 10px;
    padding: 15px;
}

.btn-cart,
.btn-buy {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-cart {
    background: #ff3f6c;
    color: #fff;
}

.btn-cart:hover {
    background: #e7335e;
}

.btn-buy {
    border: 1px solid #ff3f6c;
    color: #ff3f6c;
}

.btn-buy:hover {
    background: #ff3f6c;
    color: #fff;
}

/* EMPTY */
.empty-msg {
    text-align: center;
    margin-top: 40px;
    font-size: 18px;
    color: #666;
}
/* ================= PRODUCT PAGE ================= */

.product-page {
    display: flex;
    gap: 50px;
    padding: 50px 8%;
    background: #f9f9f9;
}

.product-image img {
    width: 420px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.product-details {
    max-width: 520px;
}

.product-details h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.product-price {
    font-size: 26px;
    font-weight: bold;
    color: #ff3f6c;
    margin-bottom: 15px;
}

.product-desc {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
}

.qty-box {
    margin-bottom: 15px;
}

.qty-box label {
    font-weight: 600;
    margin-right: 10px;
}

.qty-box select {
    padding: 6px 10px;
}

.delivery {
    margin-bottom: 20px;
    font-size: 14px;
}

.product-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.btn-wishlist,
.btn-cart,
.btn-buy {
    padding: 12px 18px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-wishlist {
    background: #ffe6eb;
    color: #ff3f6c;
}

.btn-cart {
    background: #ff3f6c;
    color: #fff;
}

.btn-buy {
    background: #000;
    color: #fff;
}

.btn-cart:hover {
    background: #e7335e;
}

.btn-buy:hover {
    opacity: 0.85;
}

.features {
    margin-top: 15px;
    list-style: none;
    padding-left: 0;
}

.features li {
    margin-bottom: 8px;
    font-size: 14px;
}
/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

/* ================= NAVBAR ================= */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 30px;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* ================= LOGO ================= */
.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.logo .mall {
  font-size: 22px;
  font-weight: 700;
  color: #111;
}

.logo .sks {
  font-size: 22px;
  font-weight: 700;
  color: #ff3f6c;
}

.logo-peacock {
  height: 28px;
}

/* ================= MENU ================= */
.menu a {
  margin: 0 14px;
  text-decoration: none;
  font-weight: 600;
  color: #222;
  position: relative;
}

.menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #ff3f6c;
  bottom: -6px;
  left: 0;
  transition: 0.3s;
}

.menu a:hover::after {
  width: 100%;
}

/* ================= SEARCH ================= */
.search-wrapper {
  position: relative;
  width: 320px;
  display: flex;
}

.search-wrapper input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 20px 0 0 20px;
  border: 1px solid #ddd;
  outline: none;
}

.search-wrapper button {
  padding: 10px 16px;
  border: none;
  background: #ff3f6c;
  color: #fff;
  border-radius: 0 20px 20px 0;
  cursor: pointer;
}

/* ================= SEARCH RESULTS ================= */
.search-results {
  position: absolute;
  top: 44px;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: none;
  max-height: 320px;
  overflow-y: auto;
  z-index: 999;
}

.search-item {
  display: flex;
  gap: 10px;
  padding: 10px;
  text-decoration: none;
  color: #111;
  border-bottom: 1px solid #f1f1f1;
}

.search-item:hover {
  background: #fff3f6;
}

.search-item img {
  width: 45px;
  height: 55px;
  object-fit: cover;
  border-radius: 6px;
}

.search-item h4 {
  font-size: 14px;
  margin-bottom: 4px;
}

.search-item p {
  font-size: 13px;
  color: #ff3f6c;
  font-weight: 600;
}

.no-result {
  padding: 12px;
  text-align: center;
  color: #999;
}

/* ================= RIGHT ICONS ================= */
.nav-right a {
  margin-left: 14px;
  text-decoration: none;
  font-weight: 600;
  color: #333;
}

.nav-user {
  margin-right: 10px;
  font-weight: 600;
}

/* ================= HAMBURGER ================= */
.hamburger {
  font-size: 24px;
  cursor: pointer;
  display: none;
}

/* ================= MOBILE ================= */
.mobile-only {
  display: none;
}

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

  .mobile-only {
    display: block;
  }

  .navbar {
    padding: 14px 18px;
  }
}

/* ================= MOBILE MENU ================= */
#mobileMenu {
  display: none;
  flex-direction: column;
  background: #fff;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

#mobileMenu.show {
  display: flex;
}

#mobileMenu a {
  padding: 12px 0;
  text-decoration: none;
  font-weight: 600;
  color: #111;
}

/* ================= MODAL ================= */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.modal-box {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  width: 300px;
}

.modal-box h3 {
  margin-bottom: 15px;
}

.modal-box input {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
}

.modal-box button {
  width: 100%;
  padding: 10px;
  background: #ff3f6c;
  border: none;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}
/* ================= MOBILE BOTTOM NAV ================= */
.mobile-bottom-nav {
  display: none;
}

@media (max-width: 768px) {

  body {
    padding-bottom: 70px;
  }

  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #fff;
    border-top: 1px solid #ddd;
    justify-content: space-around;
    align-items: center;
    z-index: 9999;
  }

  .mobile-bottom-nav a {
    text-decoration: none;
    color: #333;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mobile-bottom-nav a span {
    font-size: 11px;
  }
}
.mobile-bottom-nav {
    z-index: 999;
}

.send-otp-btn {
    position: relative;
    z-index: 1000;
}
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  display: none;
}

.auth-container {
  position: relative;
  z-index: 1;
}
/* ===== MOBILE MENU FIX ===== */
.mobile-menu {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 9999;
  display: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.mobile-menu.show {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 15px;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* ===== MOBILE SEARCH ===== */
.mobile-search {
  padding: 10px;
  background: #fff;
}

.mobile-search input {
  width: 100%;
  padding: 12px;
  border-radius: 25px;
  border: 1px solid #ddd;
}

/* ===== RESPONSIVE ===== */
.mobile-only { display: none; }

@media (max-width: 768px) {
  .mobile-only { display: block; }
  .desktop-only { display: none; }
}
/* ===== HEADER PINK BAR ===== */

.navbar {
  background: #ff2f6d;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 28px;
  box-shadow: 0 3px 14px rgba(0,0,0,0.08);
}

/* ===== BRAND ===== */

.brand-block {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  height: 48px;
  width: auto;
  border-radius: 50%;
}

.brand-text {
  line-height: 1;
}

.brand-sks {
  font-size: 22px;
  font-weight: 900;
  color: white;
}

.brand-mall {
  font-size: 14px;
  font-weight: 600;
  color: #ffe6ef;
}

/* ===== MENU ===== */

.menu a {
  color: white;
  font-weight: 700;
  text-decoration: none;
  margin-right: 18px;
}

.menu a:hover {
  opacity: .85;
}

/* ===== RIGHT ===== */

.nav-right a,
.nav-user {
  color: white;
  font-weight: 600;
  text-decoration: none;
  margin-left: 16px;
}

/* ===== SEARCH ===== */

.search-wrapper input {
  padding: 8px 12px;
  border-radius: 20px;
  border: none;
  width: 260px;
}

.search-wrapper button {
  border: none;
  background: white;
  border-radius: 50%;
  padding: 8px 10px;
  margin-left: 6px;
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {

  .brand-logo {
    height: 38px;
  }

  .brand-sks {
    font-size: 18px;
  }

  .brand-mall {
    font-size: 12px;
  }

}
/* RESET */
body {
  margin: 0;
  padding: 0;
}

/* NAVBAR FULL WIDTH */
.navbar {
  width: 100%;
  background: #ff2f6d;   /* dark pink */
  padding: 12px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: white;
}

.logo-peacock {
  height: 42px;
  width: auto;
  background: transparent;
  border-radius: 0;
}
.menu a {
  color: white;
  margin: 0 14px;
  font-weight: 600;
  text-decoration: none;
}

.nav-right a {
  color: white;
  margin-left: 16px;
  text-decoration: none;
}
.search-wrapper input {
  border-radius: 25px;
  border: none;
  padding: 10px 16px;
  width: 260px;
}

.desktop-only {
  display: none;
}
/* default desktop */
.desktop-only {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-only {
  display: none;
}

/* mobile view */
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-right a {
  color: white !important;
}
.nav-right {
  display: flex !important;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.nav-right a {
  color: white !important;
  font-weight: 600;
  display: inline-block !important;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar {
  width: 100%;
  padding: 0 24px;
}
.navbar {
  overflow: visible !important;
}
/* ===== HEADER BAR ===== */

.navbar {
  width: 100%;
  background: #ff2f6d;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 28px;
  box-sizing: border-box;
}

/* ===== LOGO ===== */

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
  min-width: 160px;
}

.logo-peacock {
  height: 46px;
  width: 46px;
  object-fit: contain;
  border-radius: 0;      /* remove circle */
  background: transparent;
}

.logo-text {
  line-height: 1;
}

.logo-text .sks {
  font-size: 20px;
  font-weight: 800;
}

.logo-text .mall {
  font-size: 13px;
  font-weight: 600;
}

/* ===== MENU ===== */

.menu {
  display: flex;
  gap: 22px;
}

.menu a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

/* ===== SEARCH ===== */

.search-wrapper {
  flex: 1;                 /* take middle space only */
  max-width: 420px;        /* IMPORTANT FIX */
  display: flex;
  background: white;
  border-radius: 30px;
  overflow: hidden;
}

.search-wrapper input {
  flex: 1;
  border: none;
  padding: 10px 14px;
  outline: none;
}

.search-wrapper button {
  border: none;
  background: transparent;
  padding: 0 12px;
  cursor: pointer;
}

/* ===== RIGHT NAV ===== */

.nav-right {
  display: flex;
  gap: 18px;
  align-items: center;
  white-space: nowrap;
}

.nav-right a,
.nav-user {
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
  .menu,
  .search-wrapper,
  .nav-right {
    display: none;
  }
}
.navbar {
  background: #ff2f6d;
  display: flex;
  align-items: center;
  padding: 12px 24px;
  gap: 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* LOGO TEXT WHITE */
.logo-text .sks,
.logo-text .mall {
  color: white;
  line-height: 1;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

/* SEARCH ICON */
.search-icon {
  font-size: 20px;
  cursor: pointer;
  color: white;
  margin-left: auto;
}

/* RIGHT SIDE LINKS */
.nav-right a,
.nav-user {
  color: white;
  text-decoration: none;
  margin-left: 14px;
  font-weight: 500;
}
.search-overlay {
  display: none;
  background: white;
  padding: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.search-overlay input {
  width: 100%;
  padding: 12px;
  border-radius: 30px;
  border: 1px solid #ddd;
  font-size: 15px;
}
.search-results {
  background: white;
  border-radius: 12px;
  margin-top: 8px;
  max-height: 260px;
  overflow-y: auto;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.search-results div {
  padding: 10px;
  cursor: pointer;
}

.search-results div:hover {
  background: #f5f5f5;
}

.search-overlay {
  display: none;
  background: white;
  padding: 12px;
  border-bottom: 3px solid #ff2f6d;
}

.search-results {
  background: white;
  border-radius: 10px;
  margin-top: 8px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  overflow: hidden;
}

.search-item {
  display: flex;
  gap: 10px;
  padding: 10px;
  cursor: pointer;
  align-items: center;
}

.search-item:hover {
  background: #ffe6ef;
}

.search-item img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 8px;
}
.search-overlay {
  display: none;
  background: white;
  padding: 12px;
  border-bottom: 4px solid #ff2f6d;
}

.search-results {
  background: white;
  border-radius: 12px;
  margin-top: 8px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  overflow: hidden;
}

.search-item {
  display: flex;
  gap: 10px;
  padding: 10px;
  cursor: pointer;
  align-items: center;
}

.search-item:hover {
  background: #ffe6ef;
}

.search-item img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
}
.success-wrapper {
  display:flex;
  justify-content:center;
  padding:20px;
}

.success-card {
  width:100%;
  max-width:700px;
  background:white;
  border-radius:12px;
  padding:20px;
  box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

.success-card h1 {
  text-align:center;
  color:#16a34a;
  margin-bottom:5px;
}

.thanks {
  text-align:center;
  color:#666;
  margin-bottom:20px;
}

.order-box {
  display:flex;
  gap:15px;
  border:1px solid #eee;
  border-radius:10px;
  padding:12px;
  margin-bottom:15px;
}

.order-left img {
  width:100px;
  height:100px;
  object-fit:cover;
  border-radius:8px;
}

.order-right {
  flex:1;
}

.row {
  display:flex;
  justify-content:space-between;
  margin-bottom:6px;
}

.addr {
  margin-top:8px;
  font-size:14px;
  color:#555;
}

.continue-btn {
  display:block;
  text-align:center;
  background:#ff3f6c;
  color:white;
  padding:12px;
  border-radius:8px;
  text-decoration:none;
  margin-top:15px;
}

.continue-btn:hover {
  opacity:0.9;
}

/* 📱 MOBILE */
@media (max-width:600px) {

  .order-box {
    flex-direction:column;
    align-items:center;
    text-align:center;
  }

  .order-left img {
    width:140px;
    height:140px;
  }

  .row {
    flex-direction:column;
    gap:3px;
  }
}
.shop-layout {
  display: flex;
  gap: 20px;
}

.filters {
  width: 250px;
  padding: 15px;
  border: 1px solid #ddd;
  background: #fafafa;
}

.products {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
  gap: 20px;
}

/* MOBILE */
@media (max-width:768px) {
  .shop-layout {
    flex-direction: column;
  }

  .filters {
    width: 100%;
  }
}
.shop-layout {
  display: flex;
  gap: 20px;
}

/* FILTER PANEL */
.filters {
  width: 240px;
  background: #f5f5f5;
  padding: 15px;
  border-radius: 8px;
  height: fit-content;
}

.filters label {
  display: block;
  margin-top: 10px;
  font-size: 14px;
}

.filters input,
.filters select {
  width: 100%;
  padding: 6px;
  margin-top: 4px;
}

.filter-btn {
  margin-top: 12px;
  width: 100%;
  padding: 8px;
}

/* PRODUCTS GRID */
.products {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px,1fr));
  gap: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
  .shop-layout {
    flex-direction: column;
  }

  .filters {
    width: 100%;
  }
}
.search-layout {
    display: flex;
    gap: 20px;
}

.filters {
    width: 220px;
    background: #fff0f6;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #ff4fa3;
}

.filters h3 {
    margin-bottom: 10px;
}

.filters input,
.filters select {
    width: 100%;
    margin-bottom: 10px;
    padding: 6px;
}

.filters button {
    width: 100%;
    background: #ff4fa3;
    color: white;
    border: none;
    padding: 8px;
    border-radius: 6px;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
    .search-layout {
        flex-direction: column;
    }

    .filters {
        width: 100%;
    }
}

.search-layout {
    display: flex;
    gap: 30px;
    padding: 30px;
}

/* FILTER BOX */
.filter-box {
    width: 260px;
    background: white;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 12px;
    height: fit-content;
}

.filter-box h3 {
    margin-bottom: 15px;
}

.filter-box label {
    font-size: 14px;
    margin-top: 10px;
    display: block;
}

.filter-box select,
.filter-box input {
    width: 100%;
    padding: 8px;
    margin-top: 4px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.filter-box button {
    margin-top: 15px;
    width: 100%;
    padding: 10px;
    background: black;
    color: white;
    border: none;
    border-radius: 8px;
}

/* PRODUCTS AREA */
.results-area {
    flex: 1;
}
@media (max-width:900px) {
  .nav-right .search-icon {
    display: block !important;
  }
}
/* ===== SEARCH OVERLAY SHOW FIX ===== */
.search-overlay {
  display: none;
}

.search-overlay.show {
  display: block;
}
.search-results {
  display: block;
}
@media (max-width: 768px) {
  .product-page {
    flex-direction: column;
  }

  .product-image img {
    max-width: 100%;
  }
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}
.product-card {
  width: 250px;
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
/* PRODUCT GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
/* MOBILE */
@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}
/* TABLET */
@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
 .card-btn {
            background-color: #ff4081;
            color: #fff;
            margin: 3px;
 }
.card-btn:hover {
            background-color: #e73370;
}
  .card-btn, .btn-buy {
            text-decoration: none;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.2s;
}
.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.cart-table th, .cart-table td {
    padding: 12px 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    vertical-align: middle;
}

.product-info {
    display: flex;
    align-items: center;
    gap: 15px; /* GAP between image and name */
}

.product-image img {
    width: 80px;   /* adjust size */
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.qty-btn {
    padding: 5px 10px;
    background-color: #f0f0f0;
    border: none;
    cursor: pointer;
    margin: 0 5px;
    border-radius: 4px;
}

.qty {
    font-weight: bold;
}
.product-image {
    width: 420px;          /* big image box */
    max-width: 100%;
}

.product-image img {
    width: 100%;
    height: auto;
    object-fit: contain;   /* image stretch kakunda */
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    text-align: center;
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

.cart-table td {
    padding: 16px;
    vertical-align: middle;
}

/* product cell layout */
.product-info {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* 🔥 cart image fixed size */
.cart-img img {
    width: 110px;
    height: 130px;
    object-fit: cover;
    border-radius: 10px;
    background: #f5f5f5;
    padding: 6px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

.product-name {
    font-weight: 600;
    font-size: 16px;
}

/* qty buttons */
.qty-btn {
    background: #eee;
    padding: 6px 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    color: #333;
}

.qty-btn:hover {
    background: #ddd;
}

.qty {
    margin: 0 8px;
    font-weight: 600;
}

/* price box */
.price-box {
    margin-top: 30px;
    background: #f9f0f3;
    padding: 20px;
    border-radius: 12px;
    width: 320px;
}
@media (max-width: 768px) {
    .product-info {
        flex-direction: column;
        text-align: center;
    }

    .cart-img img {
        width: 160px;
        height: auto;
    }
}
.products{
    flex:1;
    padding:20px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:20px;
}
.card{
    background:white;
    border-radius:14px;
    padding:14px;
    box-shadow:0 4px 14px rgba(0,0,0,0.08);
    text-align:center;
    transition:0.2s;
}

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

.card img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:12px;
}
@media(max-width:768px){

.filters{
    position:fixed;
    left:0;
    top:0;
    height:100%;
    background:white;
    z-index:2000;
    transform:translateX(-100%);
}

.filters.show{
    transform:translateX(0);
}

.shop-layout{
    flex-direction:column;
}
}
/* ===== SEARCH OVERLAY ===== */

.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 90px;
  z-index: 9999;
}

.search-overlay.show {
  display: flex;
}

/* search box */
.search-box {
  width: 520px;
  max-width: 92%;
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  position: relative;
}

/* input */
.search-box input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 16px;
  outline: none;
}

/* results dropdown */
.search-results {
  position: absolute;
  left: 0;
  right:
}
.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  image-rendering: auto;
}
/* SIZE */
.size-box {
    margin: 10px 0;
}

.size-box select {
    padding: 6px;
    border-radius: 5px;
}

.size-box {
    margin: 15px 0;
}

.sizes {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.size {
    border: 1px solid #ccc;
    padding: 8px 14px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 500;
}

.size:hover {
    border-color: #ff3f6c;
    color: #ff3f6c;
}

.size.active {
    background: #ff3f6c;
    color: white;
    border-color: #ff3f6c;
}
.slider {
    width: 100%;
    overflow-x: auto;
}

.slides {
    display: flex;
    gap: 10px;
}

.slides img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    flex-shrink: 0;
}
.sizes {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.size {
    padding: 8px 14px;
    border: 1px solid #ccc;
    border-radius: 20px;
    cursor: pointer;
}

.size.active {
    background: #ff3f6c;
    color: white;
    border: none;
}
.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.cart-row {
    border-bottom: 1px solid #eee;
}

.product-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
}

.product-info h4 {
    margin: 0;
    font-size: 16px;
}

.size-text {
    color: gray;
    font-size: 13px;
    margin-top: 5px;
}

/* Quantity buttons */
.qty-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-box a {
    background: #f1f1f1;
    padding: 5px 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    color: black;
}

.qty-box span {
    font-weight: bold;
}

/* PRICE BOX */
.price-box {
    background: #fff5f7;
    padding: 20px;
    border-radius: 12px;
    width: 300px;
    margin-top: 30px;
}

.checkout-btn {
    margin-top: 20px;
    background: #ff3f6c;
    color: white;
    border: none;
    padding: 12px 25px;
    apparently:inline-block;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

.slider {
    width: 100%;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: 0.5s;
}

.slides img {
    width: 100%;
    flex-shrink: 0;
}
.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: 0.5s;
}

.slides img {
    width: 100%;
    flex-shrink: 0;
}

/* arrows */


.prev { left: 10px; }
.next { right: 10px; }

.slider {
    position: relative;
    width: 100%;
    max-width: 400px; /* 👈 important */
    overflow: hidden;
}

.slides {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.slides img {
    width: 100%;
    min-width: 100%;   /* 🔥 MOST IMPORTANT */
    height: auto;
    object-fit: cover;
}
.slider {
    border-radius: 12px;
}
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 50%;
    z-index: 10;   /* 🔥 ADD THIS */
}
.prev {
    left: 10px;
}

.next {
    right: 10px;
}
.slider img {
    position: relative;
    z-index: 1;
}
.prev, .next {
    width: 40px;
    height: 40px;
}
body {
    padding-bottom: 120px; /* bottom space for buttons + nav */
}
@media (max-width: 768px) {

    .product-buttons {
        position: fixed;
        bottom: 60px; /* 👈 nav bar paina untundi */
        left: 0;
        width: 100%;
        display: flex;
        gap: 10px;
        background: white;
        padding: 10px;
        z-index: 1000;
    }

    .btn-cart {
        flex: 1;
        background: #eee;
        padding: 12px;
        text-align: center;
        border-radius: 8px;
    }

    .btn-buy {
        flex: 1;
        background: #ff3f6c;
        color: white;
        padding: 12px;
        text-align: center;
        border-radius: 8px;
        font-weight: bold;
    }
}
.bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: white;
    z-index: 999;
    border-top: 1px solid #ddd;
}
@media (max-width: 768px) {
    .product-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}
.product-details {
    margin-bottom: 80px;
}
.wishlist-wrapper {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}

#wishlistIcon {
    font-size: 26px; /* 👈 BIG size */
    color: black;
    background: white;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: 0.3s;
}
/* ===== MAIN LAYOUT ===== */
/* ===== LAYOUT ===== */
/* =========================
   DEFAULT (LAPTOP - NO CHANGE)
========================= */

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-row td {
    padding: 15px;
    vertical-align: middle;
}

.product-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-img {
    width: 80px;
    border-radius: 10px;
}

.qty-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-box a {
    padding: 5px 10px;
    background: #eee;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.price-box {
    margin-top: 20px;
    padding: 15px;
    background: #ffe6ea;
    border-radius: 10px;
}

.checkout-btn {
    width: 100%;
    padding: 12px;
    background: #ff416c;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 10px;
    margin-top: 20px;
}


/* =========================
   📱 MOBILE FIX (MAIN PART)
========================= */

@media (max-width: 600px) {

    .cart-table,
    .cart-table thead,
    .cart-table tbody,
    .cart-table tr,
    .cart-table td {
        display: block;
        width: 100%;
    }

    .cart-row {
        background: #fff;
        margin-bottom: 15px;
        padding: 10px;
        border-radius: 10px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .product-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-img {
        width: 100%;
        max-width: 180px;
        margin-bottom: 10px;
    }

    .cart-row td {
        padding: 8px 0;
    }

    .qty-box {
        margin-top: 5px;
    }

    .price-box {
        font-size: 14px;
    }

    h2 {
        font-size: 20px;
    }

    h4 {
        font-size: 16px;
    }

    .checkout-btn {
        font-size: 14px;
        padding: 10px;
    }
}

/* 🔥 RESET */
body {
    margin: 0;
    padding: 0;
}

/* 🔥 MAIN WRAPPER */
.home-shop {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

/* 🔥 PRODUCTS GRID (DEFAULT = MOBILE FIRST) */
.products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);  /* 🔥 2 per row */
    gap: 12px;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
}

/* 🔥 CARD */
.card {
    background: #fff;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    transition: 0.2s;
}

.card:hover {
    transform: scale(1.03);
}

/* 🔥 IMAGE (FULL FIT + CLEAN LOOK) */
.product-img {
    width: 100%;
    height: 150px;
    object-fit: cover;   /* 🔥 BEST LOOK */
    border-radius: 10px;
    display: block;
}

/* 🔥 TEXT */
.card h4 {
    font-size: 14px;
    margin: 6px 0;
}

.card b {
    font-size: 15px;
    color: #ff3f6c;
}

/* 🔥 TABLET */
@media (min-width: 600px) {
    .products {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-img {
        height: 180px;
    }
}

/* 🔥 LAPTOP / DESKTOP */
@media (min-width: 992px) {
    .products {
        grid-template-columns: repeat(4, 1fr);
    }

    .product-img {
        height: 220px;
    }
}
.container {
    padding: 20px;
}

.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    background: black;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

/* Mobile */
@media (max-width:768px) {
    .products {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* DEFAULT */
.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}

/* 📱 MOBILE VERSION */
@media (max-width: 768px) {

  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }

  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .logo-peacock {
    height: 30px;
  }

  .sks {
    font-size: 18px;
    font-weight: bold;
  }

  .mall {
    font-size: 12px;
  }

}
/* FULL SCREEN LOADER */
.size{
    padding:8px 12px;
    border:1px solid #333;
    cursor:pointer;
    margin-right:5px;
}

.sold{
    color:red;
    text-decoration: line-through;
    opacity:0.6;
    cursor:not-allowed;
}