@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* CSS Variables */
:root {
  --purple: #7c3aed;
  --purple-light: #a78bfa;
  --purple-dark: #5b21b6;
  --pink: #ec4899;
  --pink-light: #f9a8d4;
  --gradient: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #ec4899 100%);
  --gradient-soft: linear-gradient(135deg, #f5f3ff 0%, #fdf4ff 100%);
  --white: #ffffff;
  --off-white: #fafafa;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --shadow-sm: 0 1px 3px rgba(124,58,237,0.08);
  --shadow: 0 4px 20px rgba(124,58,237,0.12);
  --shadow-lg: 0 10px 40px rgba(124,58,237,0.18);
  --shadow-hover: 0 20px 60px rgba(124,58,237,0.22);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }


img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; outline: none; }
/* =========================================
   PREMIUM GLASS HEADER
========================================= */

.site-header{
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 30px);
  max-width: 1750px;
  z-index: 9999;

  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.4);

  border-radius: 28px;

  transition: 0.4s ease;

  box-shadow:
    0 8px 30px rgba(124,58,237,0.08);
}

/* Scroll Effect */
.site-header.scrolled{
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(25px);

  box-shadow:
    0 10px 35px rgba(0,0,0,0.08);
}

/* HEADER TOP */
.header-top{
  display: flex;
  align-items: center;
  gap: 30px;

  padding: 18px 30px;
}

/* LOGO */
.logo-img{
  width: 150px;
  height: auto;
}

/* SEARCH */
.search-bar{
  flex: 1;
  position: relative;
}

.search-bar input{
  width: 100%;
  height: 60px;

  border: none;

  background: rgba(255,255,255,0.7);

  border-radius: 60px;

  padding:
    0 160px 0 60px;

  font-size: 1rem;

  box-shadow:
    inset 0 0 0 1px rgba(124,58,237,0.08);
}

.search-bar input:focus{
  outline: none;

  box-shadow:
    0 0 0 4px rgba(124,58,237,0.08);
}

.search-icon{
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);

  font-size: 20px;
  color: #999;
}

.search-btn{
  position: absolute;

  right: 8px;
  top: 50%;

  transform: translateY(-50%);

  height: 46px;
  padding: 0 28px;

  border: none;

  border-radius: 40px;

  background: linear-gradient(
    135deg,
    #7c3aed,
    #ec4899
  );

  color: white;

  font-weight: 600;

  cursor: pointer;
}

/* RIGHT ACTIONS */
.header-actions{
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-btn{
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 55px;
  height: 55px;

  border-radius: 50%;

  background: rgba(255,255,255,0.7);

  color: #7c3aed;

  transition: 0.3s;
}

.icon-btn:hover{
  transform: translateY(-2px);
}

.icon-btn i{
  font-size: 22px;
}

.icon-btn span:last-child{
  display: none;
}

/* BADGE */
.badge{
  position: absolute;

  top: -2px;
  right: -2px;

  width: 20px;
  height: 20px;

  border-radius: 50%;

  background: linear-gradient(
    135deg,
    #ff7a7a,
    #ff4d97
  );

  color: white;

  font-size: 11px;

  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-login{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    min-width:120px;
    max-width:170px;

    height:50px;
    padding:0 18px;

    border-radius:50px;
    background:linear-gradient(90deg,#7b2ff7,#f107a3);
    color:#fff;
    font-size:18px;
    font-weight:600;
    text-decoration:none;

    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;

    transition:.3s ease;
    box-shadow:0 10px 25px rgba(123,47,247,.25);
}

.btn-login:hover{
    transform:translateY(-2px);
    box-shadow:0 14px 30px rgba(123,47,247,.35);
}
@media (max-width:768px){

.btn-login{

    max-width:120px;
    height:44px;

    font-size:16px;

    padding:0 14px;

}

}

/* NAVIGATION */
.header-nav{
  padding: 0 25px 14px;
}

.nav-list{
    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:6px;

    border-top:1px solid rgba(124,58,237,.08);

    padding-top:14px;

    flex-wrap:nowrap;
}

.nav-list a{

    display:flex;
    align-items:center;
    justify-content:center;

    white-space:nowrap;

    padding:10px 12px;

    font-size:15px;

    border-radius:12px;

    color:#5b4b73;

    transition:.3s;

}

.nav-list a:hover,
.nav-list a.active{
  background:
    linear-gradient(
      135deg,
      rgba(124,58,237,0.08),
      rgba(236,72,153,0.08)
    );

  color: #7c3aed;
}

/* MOBILE MENU */
.mobile-menu-btn{
  display: none;
}

.mobile-bottom-nav{
  display: none;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

  body{
    padding-bottom: 85px;
  }

  .site-header{
    width: calc(100% - 16px);

    top: 8px;

    border-radius: 24px;
  }

  .header-top{
    flex-wrap: wrap;

    gap: 14px;

    padding: 14px;
  }

  .logo-img{
    width: 120px;
  }

  .header-actions{
    margin-left: auto;
    gap: 10px;
  }

  .icon-btn{
    width: 42px;
    height: 42px;
    background: transparent;
  }
  
  .header-actions a[href="wishlist.html"]{
    display: none;
  }

  .btn-login{
    height: 42px;
    padding: 0 20px;
    font-size: 14px;
  }

  .search-bar{
    width: 100%;
    order: 3;
  }

  .search-bar input{
    height: 52px;
    padding: 0 120px 0 50px;
    font-size: 14px;
  }

  .search-btn{
    height: 40px;
    padding: 0 18px;
  }

  /* HIDE TOP NAV */
  .header-nav{
    display: none;
  }


  /* BOTTOM NAVIGATION */
  .mobile-bottom-nav{
    position: fixed;

    bottom: 0;
    left: 0;

    width: 100%;

    height: 72px;

    background: rgba(255,255,255,0.9);

    backdrop-filter: blur(20px);

    display: flex;
    justify-content: space-around;
    align-items: center;

    z-index: 99999;

    border-top:
      1px solid rgba(124,58,237,0.1);
  }

  .mobile-bottom-nav a{
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 4px;

    color: #9b7cb5;

    font-size: 12px;

    font-weight: 500;
  }

  .mobile-bottom-nav i{
    font-size: 22px;
  }

  .mobile-bottom-nav a.active{
    color: #7c3aed;
  }
}

/* ===============================
   LAPTOP / MACBOOK
================================ */

@media (max-width:1500px){

.site-header{

    max-width:1350px;
    width:calc(100% - 20px);

}

.logo-img{

    width:135px;

}

.header-top{

    gap:16px;
    padding:14px 20px;

}

.search-bar{

    flex:1;
    min-width:350px;

}

.search-bar input{

    height:54px;
    font-size:15px;

}

.search-btn{

    height:42px;
    padding:0 22px;

}

.header-actions{

    gap:10px;

}

.icon-btn{

    width:46px;
    height:46px;

}

.btn-login{

    min-width:110px;
    max-width:135px;

    font-size:15px;

    padding:0 16px;

}

.nav-list{

    gap:4px;
    justify-content:space-between;

}

.nav-list a{

    font-size:15px;
    padding:10px 10px;

}

}

@media (max-width:1200px){

.logo-img{

    width:120px;

}

.search-bar{

    min-width:260px;

}

.nav-list{

    overflow-x:auto;
    scrollbar-width:none;
}

.nav-list::-webkit-scrollbar{

    display:none;

}

.nav-list a{

    white-space:nowrap;

}

}
/* =========================================
   SIDEBAR
========================================= */

.mobile-sidebar{
  position: fixed;
  top: 0;
  left: -100%;

  width: 320px;
  height: 100vh;

  background: rgba(255,255,255,0.95);

  backdrop-filter: blur(20px);

  z-index: 999999;

  transition: 0.4s ease;

  overflow-y: auto;

  padding: 22px;
}

.mobile-sidebar.active{
  left: 0;
}

/* TOP */

.sidebar-top{
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 20px;
}

.sidebar-logo img{
  width: 130px;
}

.close-sidebar{
  width: 42px;
  height: 42px;

  border: none;

  border-radius: 50%;

  background: rgba(124,58,237,0.08);

  color: #7c3aed;

  font-size: 18px;

  cursor: pointer;
}

.sidebar-heading{
  font-size: 24px;
  margin-bottom: 20px;

  color: #7c3aed;
}

/* CATEGORY */

.sidebar-category{
  margin-bottom: 12px;
}

.category-btn,
.subcategory-btn{
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 15px 16px;

  border: none;

  background: rgba(124,58,237,0.05);

  border-radius: 16px;

  font-size: 15px;
  font-weight: 600;

  color: #5b4b73;

  cursor: pointer;

  transition: 0.3s;
}

.category-btn:hover,
.subcategory-btn:hover{
  background:
    linear-gradient(
      135deg,
      rgba(124,58,237,0.08),
      rgba(236,72,153,0.08)
    );
}

.category-btn span,
.subcategory-btn span{
  display: flex;
  align-items: center;
  gap: 12px;
}

/* SUBCATEGORY */

.subcategory{
  display: none;

  padding:
    10px 0 0 14px;
}

.subcategory.active{
  display: block;
}

.subcategory-box{
  margin-bottom: 10px;
}

/* ITEMS */

.subcategory-items{
  display: none;

  padding:
    10px 0 0 16px;
}

.subcategory-items.active{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.subcategory-items a{
  padding: 10px 14px;

  border-radius: 12px;

  color: #6b5a84;

  background: rgba(124,58,237,0.03);

  font-size: 14px;

  transition: 0.3s;
}

.subcategory-items a:hover{
  background:
    linear-gradient(
      135deg,
      rgba(124,58,237,0.08),
      rgba(236,72,153,0.08)
    );

  color: #7c3aed;
}

/* ARROW */

.arrow{
  transition: 0.3s;
}

.rotate{
  transform: rotate(180deg);
}

/* SOCIAL */

.sidebar-social{
  display: flex;
  justify-content: center;
  gap: 16px;

  margin-top: 30px;
  padding-top: 22px;

  border-top:
    1px solid rgba(124,58,237,0.1);
}

.sidebar-social a{
  width: 48px;
  height: 48px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(
      135deg,
      rgba(124,58,237,0.08),
      rgba(236,72,153,0.08)
    );

  color: #7c3aed;

  font-size: 20px;

  transition: 0.3s;
}

.sidebar-social a:hover{
  transform: translateY(-3px);

  background:
    linear-gradient(
      135deg,
      #7c3aed,
      #ec4899
    );

  color: white;
}

/* OVERLAY */

.sidebar-overlay{
  position: fixed;
  inset: 0;

  background: rgba(0,0,0,0.35);

  opacity: 0;
  visibility: hidden;

  transition: 0.3s;

  z-index: 999998;
}

.sidebar-overlay.active{
  opacity: 1;
  visibility: visible;
}

/* SINGLE SIDEBAR LINK */

.sidebar-link-single{
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 15px 16px;

  border-radius: 16px;

  font-size: 15px;
  font-weight: 600;

  color: #5b4b73;

  background: rgba(124,58,237,0.05);

  transition: 0.3s;
}

.sidebar-link-single:hover{
  background:
    linear-gradient(
      135deg,
      rgba(124,58,237,0.10),
      rgba(236,72,153,0.10)
    );

  transform: translateX(4px);

  color: #7c3aed;
}

.sidebar-link-single span{
  display: flex;
  align-items: center;
  gap: 12px;
}


/* ============================================
   HERO SLIDER
   ============================================ */

   
.hero{
  position: relative;

  width: 82%;
  margin: 20px auto;

  border-radius: 24px;

  overflow: hidden !important;

  isolation: isolate;

  box-shadow: var(--shadow-md);

  height: 68vh;
  max-height: 520px;
  min-height: 300px;
}

/* TRACK */

.hero__track{
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: var(--r-lg);

  transition: transform 0.6s ease;
}

/* SLIDE */

.hero__slide{
  min-width: 100%;
  height: 100%;
  border-radius: var(--r-lg);

}

/* IMAGE */

.hero__slide img{
  width: 100%;
  height: 100%;
  border-radius: var(--r-lg);

  object-fit: cover;
  object-position: center center;

  display: block;
}

/* ===== ARROWS ===== */

.hero__arrow{
  position: absolute;

  top: 50%;
  transform: translateY(-50%);

  width: 45px;
  height: 45px;

  border-radius: 50%;
  border: none;

  background: transparent;


  display: flex;
  align-items: center;
  justify-content: center;

  color: #000;

  font-size: 16px;

  cursor: pointer;

  z-index: 10;

  transition: 0.3s ease;
}

.hero__arrow:hover{
  transform: translateY(-50%) scale(1.08);

  background: rgba(255,255,255,0.3);
}

/* ARROW POSITION */

.hero__arrow--prev{
  left: 12px;
}

.hero__arrow--next{
  right: 12px;
}

/* ===== DOTS ===== */

.hero__dots{
  position: absolute;

  bottom: 12px;
  left: 50%;

  transform: translateX(-50%);

  display: flex;
  align-items: center;

  gap: 6px;

  z-index: 10;
}

.hero__dot{
  width: 8px;
  height: 8px;

  border: none;
  border-radius: 50%;

  background: rgba(255,255,255,0.5);

  cursor: pointer;

  transition: 0.3s ease;
}

.hero__dot.active{
  width: 22px;

  border-radius: 20px;

  background: #fff;
}

/* ========================= */
/* ===== TABLET ===== */
/* ========================= */

@media (max-width: 992px){

  .hero{
    width: 94%;

    height: 55vh;

    min-height: 260px;
    max-height: 420px;

    border-radius: 18px;
  }

}

/* ========================= */
/* ===== MOBILE ===== */
/* ========================= */

@media (max-width: 768px){

  .hero{
    width: 95%;

    height: 22vh;

    min-height: 150px;
    max-height: 180px;

    margin: 10px auto;

    border-radius: 14px;
  }

  /* ARROWS */

  .hero__arrow{
    width: 30px;
    height: 30px;

    font-size: 11px;
  }

  .hero__arrow--prev{
    left: 6px;
  }

  .hero__arrow--next{
    right: 6px;
  }

  /* DOTS */

  .hero__dots{
    bottom: 8px;

    gap: 5px;
  }

  .hero__dot{
    width: 6px;
    height: 6px;
  }

  .hero__dot.active{
    width: 18px;
  }

}

/* ========================= */
/* ===== SMALL MOBILE ===== */
/* ========================= */

@media (max-width: 480px){

  .hero{
    height: 20vh;

    min-height: 130px;
    max-height: 160px;

    border-radius: 12px;
  }

  .hero__arrow{
    width: 26px;
    height: 26px;

    font-size: 10px;
  }

}

   
/* =========================================
   USP STRIP
========================================= */

.usp-strip{
  width: 100%;

  margin-top: 10px;

  background:
    linear-gradient(
      135deg,
      rgba(124,58,237,0.06),
      rgba(236,72,153,0.06)
    );

  border-top:
    1px solid rgba(124,58,237,0.08);

  border-bottom:
    1px solid rgba(124,58,237,0.08);
}

.usp-container{
  max-width: 1450px;

  margin: 0 auto;

  padding: 18px 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 50px;

  flex-wrap: wrap;
}

/* ITEM */

.usp-item{
  display: flex;
  align-items: center;

  gap: 12px;

  color: #4b5563;

  font-size: 15px;
  font-weight: 500;

  transition: 0.3s ease;
}

.usp-item:hover{
  transform: translateY(-2px);
}

/* ICON */

.usp-item i{
  width: 42px;
  height: 42px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(
      135deg,
      rgba(124,58,237,0.12),
      rgba(236,72,153,0.12)
    );

  color: #7c3aed;

  font-size: 18px;

  flex-shrink: 0;
}

/* =========================================
   TABLET
========================================= */

@media(max-width:992px){

  .usp-container{
    gap: 24px;
    padding: 16px 20px;
  }

}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

  .usp-strip{
    margin-top: 6px;
  }

  .usp-container{
    display: grid;

    grid-template-columns: 1fr;

    gap: 14px;

    padding: 18px 16px;
  }

  .usp-item{
    background: rgba(255,255,255,0.65);

    padding: 14px;

    border-radius: 16px;

    font-size: 14px;

    box-shadow:
      0 4px 12px rgba(0,0,0,0.04);
  }

  .usp-item i{
    width: 38px;
    height: 38px;

    font-size: 16px;
  }

}

/* =========================================
   SMALL MOBILE
========================================= */

@media(max-width:480px){

  .usp-item{
    font-size: 13px;
  }

}


/* ============================================
   SECTIONS COMMON
   ============================================ */
.section { padding: 80px 40px; max-width: 1400px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-tag {
  display: inline-block;
  background: var(--gradient-soft);
  color: var(--purple);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gray-800);
  line-height: 1.25;
}
.section-title span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-subtitle { font-size: 1rem; color: var(--gray-400); margin-top: 8px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ============================================
   CATEGORIES GRID
   ============================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 16px;
  background: white;
  border-radius: var(--radius);
  border: 2px solid var(--gray-100);
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  color: var(--gray-800);
}
.category-card:hover {
  border-color: var(--purple-light);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.category-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: var(--transition);
}
.category-card:hover .category-icon { background: var(--gradient); }
.category-card:hover .category-icon span { filter: brightness(10); }
.category-name { font-weight: 600; font-size: 0.85rem; }
.category-count { font-size: 0.75rem; color: var(--gray-400); }

/* ============================================
   PRODUCT CARDS
   ============================================ */


.products-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
}

/* PRODUCT CARD */

.product-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--gray-100);
  transition:0.35s ease;
  position:relative;
}

.product-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(0,0,0,0.08);
  border-color:transparent;
}

/* PRODUCT IMAGE */

.product-image{
  position:relative;
  aspect-ratio:1/1;
  overflow:hidden;
  background:var(--gray-50);
}

.product-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 0.5s ease;
}

.product-card:hover .product-image img{
  transform:scale(1.06);
}

/* BADGE */

.product-badge{
  position:absolute;
  top:10px;
  left:10px;

  background:var(--gradient);
  color:#fff;

  padding:4px 10px;

  border-radius:40px;

  font-size:0.68rem;
  font-weight:700;

  z-index:5;
}

/* ACTION BUTTONS */

.product-actions{
  position:absolute;

  top:10px;
  right:10px;

  display:flex;
  flex-direction:column;
  gap:8px;

  opacity:0;
  transform:translateX(10px);

  transition:0.35s ease;

  z-index:5;
}

.product-card:hover .product-actions{
  opacity:1;
  transform:translateX(0);
}

.product-action-btn{
  width:34px;
  height:34px;

  border-radius:50%;

  background:#fff;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:0.9rem;
  color:var(--gray-600);

  border:1px solid var(--gray-100);

  cursor:pointer;

  transition:0.3s ease;

  box-shadow:0 6px 16px rgba(0,0,0,0.08);
}

.product-action-btn:hover{
  background:var(--gradient);
  color:#fff;
  transform:scale(1.08);
  border-color:transparent;
}

.product-action-btn.wishlisted{
  background:#fff0f0;
  color:#ef4444;
  border-color:#fecaca;
}

/* PRODUCT INFO */

.product-info{
  padding:13px;
}

.product-category{
  font-size:0.68rem;
  color:var(--purple);

  font-weight:600;

  text-transform:uppercase;
  letter-spacing:0.5px;

  margin-bottom:5px;
}

.product-name{
  font-size:0.9rem;
  font-weight:600;

  line-height:1.4;
  color:var(--gray-800);

  margin-bottom:7px;

  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;

  overflow:hidden;
}

/* RATING */

.product-rating{
  display:flex;
  align-items:center;
  gap:6px;

  margin-bottom:10px;
}

.stars{
  color:#f59e0b;
  font-size:0.72rem;
  letter-spacing:1px;
}

.rating-count{
  font-size:0.7rem;
  color:var(--gray-400);
}

/* PRICING */

.product-pricing{
  display:flex;
  align-items:center;
  flex-wrap:wrap;

  gap:6px;

  margin-bottom:12px;
}

.price-current{
  font-size:1rem;
  font-weight:700;
  color:var(--gray-800);
}

.price-old{
  font-size:0.78rem;
  color:var(--gray-400);
  text-decoration:line-through;
}

.price-discount{
  font-size:0.72rem;
  font-weight:600;
  color:#16a34a;
}

/* BUTTON */

.btn-add-cart{
  width:100%;

  background:var(--gradient);
  color:#fff;

  padding:10px;

  border:none;

  border-radius:12px;

  font-size:0.82rem;
  font-weight:600;

  letter-spacing:0.3px;

  transition:0.3s ease;

  cursor:pointer;
}

.btn-add-cart:hover{
  opacity:0.92;
  transform:translateY(-1px);
  box-shadow:0 6px 18px rgba(124,58,237,0.3);
}

/* ============================================
   RESPONSIVE
============================================ */

/* LAPTOP */

@media(max-width:1400px){

  .products-grid{
    grid-template-columns:repeat(4,1fr);
  }

}

/* TABLET */

@media(max-width:992px){

  .products-grid{
    grid-template-columns:repeat(3,1fr);
    gap:16px;
  }

}

/* MOBILE */

@media(max-width:768px){

  .products-grid{
    grid-template-columns:repeat(2,1fr);
    gap:12px;
  }

  .product-card{
    border-radius:14px;
  }

  .product-info{
    padding:10px;
  }

  .product-name{
    font-size:0.8rem;
  }

  .price-current{
    font-size:0.92rem;
  }

  .btn-add-cart{
    padding:9px;
    font-size:0.75rem;
  }

  .product-action-btn{
    width:30px;
    height:30px;
    font-size:0.8rem;
  }

}

/* SMALL MOBILE */

@media(max-width:480px){

  .products-grid{
    grid-template-columns:repeat(2,1fr);
    gap:10px;
  }

  .product-image{
    aspect-ratio:1/1;
  }

  .product-name{
    font-size:0.76rem;
  }

  .price-current{
    font-size:0.88rem;
  }

  .btn-add-cart{
    font-size:0.72rem;
    padding:8px;
  }

}
/* ============================================
   PROMOTIONAL BANNER
   ============================================ */
.promo-banner {
  margin: 0 40px;
  border-radius: var(--radius-lg);
  background: var(--gradient);
  padding: 60px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  position: relative;
}
.promo-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.promo-banner::after {
  content: '';
  position: absolute;
  bottom: -60%;
  right: 20%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.promo-content { color: white; position: relative; z-index: 1; }
.promo-tag { font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; opacity: 0.8; margin-bottom: 8px; }
.promo-title { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; line-height: 1.2; margin-bottom: 12px; }
.promo-sub { font-size: 1rem; opacity: 0.85; margin-bottom: 28px; }



/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-section {
  background: var(--gradient);
  padding: 80px 40px;
  text-align: center;
  color: white;
}
.newsletter-title { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; margin-bottom: 12px; }
.newsletter-sub { opacity: 0.85; font-size: 1rem; margin-bottom: 36px; }
.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.15);
  color: white;
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.7); }
.newsletter-form input:focus { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.2); }
.newsletter-form button {
  background: white;
  color: var(--purple-dark);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  white-space: nowrap;
}
.newsletter-form button:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }

/* ============================================
   FOOTER
============================================ */


.footer-logo{
  display: inline-block;
}

.footer-logo img{
  width: 150px;   
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
  transition: 0.3s ease;
}

.footer-logo img:hover{
  transform: scale(1.05);
}

.site-footer{
  background: linear-gradient(135deg,#0f0a1e,#1b1035);
  color: rgba(255,255,255,0.75);
  padding: 80px 40px 30px;
  margin-top: 80px;
}

.footer-grid{
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-text{
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

.footer-brand p{
  margin: 20px 0 28px;
  line-height: 1.9;
  font-size: 0.95rem;
  max-width: 420px;
}

/* SOCIAL */

.social-links{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.social-link{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: 1.1rem;
  transition: 0.35s ease;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}

.social-link:hover{
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.instagram:hover{
  background: linear-gradient(45deg,#ff0080,#ff8c00);
}

.facebook:hover{
  background: #1877f2;
}

.youtube:hover{
  background: #ff0000;
}

.snapchat:hover{
  background: #fffc00;
  color: #000;
}

.whatsapp:hover{
  background: #25d366;
}

/* FOOTER COLUMNS */

.footer-col h4{
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 22px;
  position: relative;
}

.footer-col h4::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 3px;
  border-radius: 20px;
  background: linear-gradient(90deg,#a855f7,#7c3aed);
}

.footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li{
  margin-bottom: 14px;
}

.footer-links a{
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 0.92rem;
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}

.footer-links a:hover{
  color: #c084fc;
  padding-left: 5px;
}

.contact-links i{
  color: #c084fc;
  min-width: 18px;
}

/* BOTTOM */

.footer-bottom{
  max-width: 1400px;
  margin: auto;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p{
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}

.footer-policy-links{
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-policy-links a{
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.88rem;
  transition: 0.3s ease;
}

.footer-policy-links a:hover{
  color: #c084fc;
}

/* ============================================
   MOBILE RESPONSIVE
============================================ */

@media(max-width: 992px){

  .footer-grid{
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

}

@media(max-width: 768px){

  .site-footer{
    padding: 60px 20px 25px;
  }

  .footer-grid{
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-bottom{
    flex-direction: column;
    text-align: center;
  }

  .footer-policy-links{
    justify-content: center;
    gap: 15px;
  }

  .social-links{
    justify-content: flex-start;
  }

}

/* =========================================
   CART OVERLAY
========================================= */

.cart-overlay{
  position: fixed;
  inset: 0;

  background: rgba(0,0,0,0.45);

  backdrop-filter: blur(4px);

  z-index: 99998;

  opacity: 0;
  visibility: hidden;

  transition: 0.3s ease;
}

.cart-overlay.active{
  opacity: 1;
  visibility: visible;
}

/* =========================================
   CART SIDEBAR
========================================= */

.cart-sidebar{
  position: fixed;

  top: 0;
  right: 0;

  width: 430px;
  max-width: 100%;

  height: 100vh;

  background: rgba(255,255,255,0.96);

  backdrop-filter: blur(20px);

  z-index: 99999;

  transform: translateX(100%);

  transition: 0.4s cubic-bezier(
    0.4,
    0,
    0.2,
    1
  );

  display: flex;
  flex-direction: column;

  box-shadow:
    -10px 0 40px rgba(0,0,0,0.12);

  overflow: hidden;
}

.cart-sidebar.active{
  transform: translateX(0);
}

/* =========================================
   HEADER
========================================= */

.cart-header{
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 24px;

  border-bottom:
    1px solid rgba(124,58,237,0.08);

  background: rgba(255,255,255,0.7);

  backdrop-filter: blur(10px);

  flex-shrink: 0;
}

.cart-header h3{
  font-size: 1.3rem;
  font-weight: 700;

  color: #5b4b73;
}

.cart-close{
  width: 42px;
  height: 42px;

  border: none;

  border-radius: 50%;

  background:
    rgba(124,58,237,0.08);

  color: #7c3aed;

  font-size: 18px;

  cursor: pointer;

  transition: 0.3s;
}

.cart-close:hover{
  transform: rotate(90deg);

  background:
    rgba(124,58,237,0.15);
}

/* =========================================
   BODY
========================================= */

.cart-body{
  flex: 1;

  overflow-y: auto;

  padding: 20px;
}

/* =========================================
   ITEM
========================================= */

.cart-item{
  display: flex;
  gap: 14px;

  padding: 16px;

  margin-bottom: 14px;

  border-radius: 20px;

  background:
    rgba(124,58,237,0.03);

  border:
    1px solid rgba(124,58,237,0.05);
}

.cart-item-img{
  width: 85px;
  height: 85px;

  border-radius: 16px;

  object-fit: cover;

  flex-shrink: 0;
}

.cart-item-info{
  flex: 1;
}

.cart-item-name{
  font-size: 15px;
  font-weight: 600;

  color: #4b5563;

  margin-bottom: 6px;
}

.cart-item-price{
  font-size: 16px;
  font-weight: 700;

  color: #7c3aed;
}

/* =========================================
   QUANTITY
========================================= */

.qty-control{
  display: flex;
  align-items: center;

  gap: 10px;

  margin-top: 10px;
}

.qty-btn{
  width: 30px;
  height: 30px;

  border-radius: 50%;

  border: none;

  background:
    rgba(124,58,237,0.08);

  color: #7c3aed;

  font-size: 16px;

  cursor: pointer;
}

.qty-value{
  min-width: 20px;

  text-align: center;

  font-weight: 600;
}

.remove-item{
  margin-left: auto;

  color: #ef4444;

  cursor: pointer;

  font-size: 18px;
}

/* =========================================
   FOOTER
========================================= */

.cart-footer{
  padding: 22px;

  border-top:
    1px solid rgba(124,58,237,0.08);

  background: white;

  flex-shrink: 0;
}

.cart-subtotal{
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 18px;

  font-size: 1.1rem;
  font-weight: 700;

  color: #374151;
}

/* CHECKOUT */

.btn-checkout{
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  height: 58px;

  border-radius: 18px;

  background:
    linear-gradient(
      135deg,
      #7c3aed,
      #ec4899
    );

  color: white;

  font-size: 1rem;
  font-weight: 700;

  margin-bottom: 14px;

  transition: 0.3s;
}

.btn-checkout:hover{
  transform: translateY(-2px);
}

/* VIEW CART */

.btn-view-cart{
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  height: 54px;

  border-radius: 18px;

  border:
    2px solid rgba(124,58,237,0.1);

  color: #5b4b73;

  font-weight: 600;

  transition: 0.3s;
}

.btn-view-cart:hover{
  border-color: #7c3aed;
  color: #7c3aed;
}

/* =========================================
   EMPTY CART
========================================= */

.cart-empty{
  height: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  padding: 30px;
}

.cart-empty .icon{
  font-size: 5rem;

  margin-bottom: 20px;
}

.cart-empty h4{
  font-size: 1.3rem;

  color: #4b5563;

  margin-bottom: 8px;
}

.cart-empty p{
  color: #9ca3af;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

  .cart-sidebar{
    width: 100%;
    border-radius: 0;
  }

  .cart-header{
    padding:
      18px 16px;
  }

  .cart-body{
    padding: 16px;
  }

  .cart-footer{
    padding:
      18px 16px 95px;
  }

  .btn-checkout{
    height: 54px;
    font-size: 15px;
  }

  .btn-view-cart{
    height: 50px;
    font-size: 14px;
  }

}
/* ============================================
   FLOATING BUTTONS
============================================ */

.floating-whatsapp{
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9999;

  width: 60px;
  height: 60px;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  background: #25d366;
  color: #fff;

  font-size: 1.7rem;
  text-decoration: none;

  box-shadow: 0 10px 25px rgba(37,211,102,0.35);

  transition: 0.35s ease;
  animation: whatsappPulse 2s infinite;
}

.floating-whatsapp:hover{
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 15px 35px rgba(37,211,102,0.5);
}

/* WHATSAPP PULSE */

@keyframes whatsappPulse{

  0%{
    box-shadow: 0 0 0 0 rgba(37,211,102,0.5);
  }

  70%{
    box-shadow: 0 0 0 18px rgba(37,211,102,0);
  }

  100%{
    box-shadow: 0 0 0 0 rgba(37,211,102,0);
  }

}

/* BACK TO TOP */

.back-to-top{
  position: fixed;
  bottom: 28px;
  left: 24px;
  z-index: 9999;

  width: 55px;
  height: 55px;

  border: none;
  outline: none;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg,#a855f7,#7c3aed);
  color: #fff;

  font-size: 1.3rem;
  cursor: pointer;

  box-shadow: 0 10px 25px rgba(124,58,237,0.35);

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);

  transition: 0.35s ease;
}

.back-to-top.visible{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover{
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 15px 35px rgba(124,58,237,0.45);
}

/* ICONS */

.floating-whatsapp i,
.back-to-top i{
  line-height: 1;
}

/* MOBILE */


@media(max-width:768px){

  .floating-whatsapp{
    position: fixed !important;
    right: 16px !important;
    bottom: 90px !important; 
    z-index: 99999 !important;
  }

  .back-to-top{
    position: fixed !important;
    left: 16px !important;
    bottom: 90px !important;
    z-index: 99999 !important;
  }

}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.toast-container {
  position: fixed;
  top: 100px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.toast {
  background: white;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
  animation: toastIn 0.4s ease;
  border-left: 4px solid var(--purple);
}
.toast.success { border-color: #16a34a; }
.toast.error { border-color: #ef4444; }
.toast-icon { font-size: 1.3rem; }
.toast-text { font-size: 0.9rem; font-weight: 500; }
@keyframes toastIn {
  from { opacity: 0; transform: translateX(100%); }
  to { opacity: 1; transform: translateX(0); }
}

/* ============================================
   LOADING
   ============================================ */
.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px;
}
.spinner {
  width: 44px;
  height: 44px;
  border: 3px solid var(--gray-100);
  border-top-color: var(--purple);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Skeleton loader */
.skeleton {
  background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
  background-size: 200% 100%;
  animation: skeleton 1.5s infinite;
  border-radius: var(--radius-sm);
}
@keyframes skeleton { to { background-position: -200% 0; } }

/* ============================================
   PAGE-SPECIFIC STYLES
   ============================================ */

/* Auth Pages */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-soft);
  padding: 40px 20px;
}
.auth-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px;
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow-lg);
}
.auth-title { font-family: var(--font-display); font-size: 2rem; margin-bottom: 8px; }
.auth-subtitle { color: var(--gray-400); font-size: 0.9rem; margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 500; margin-bottom: 8px; color: var(--gray-600); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--purple-light);
  box-shadow: 0 0 0 4px rgba(124,58,237,0.08);
}
.btn-submit {
  width: 100%;
  background: var(--gradient);
  color: white;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(124,58,237,0.3);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(124,58,237,0.4); }
.auth-link { text-align: center; margin-top: 20px; font-size: 0.9rem; color: var(--gray-400); }
.auth-link a { color: var(--purple); font-weight: 500; }



/* Cart Page */
.cart-page { padding: 60px 40px; max-width: 1400px; margin: 0 auto; }
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; }
.cart-table-item {
  display: grid;
  grid-template-columns: 100px 1fr auto auto auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-100);
}
.order-summary-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  height: fit-content;
  position: sticky;
  top: 100px;
  border: 1px solid var(--gray-100);
}
.coupon-input { display: flex; gap: 8px; margin-bottom: 20px; }
.coupon-input input {
  flex: 1;
  padding: 11px 14px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}
.coupon-input button {
  background: var(--gradient);
  color: white;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
}
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 0.95rem; }
.summary-row.total { font-weight: 700; font-size: 1.1rem; border-top: 2px solid var(--gray-100); margin-top: 8px; padding-top: 16px; }

/* Orders */
.order-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--gray-100);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.order-status {
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.status-pending { background: #fff7ed; color: #ea580c; }
.status-processing { background: #eff6ff; color: #2563eb; }
.status-shipped { background: #f0fdf4; color: #16a34a; }
.status-delivered { background: #f0fdf4; color: #166534; }
.status-cancelled { background: #fff1f2; color: #e11d48; }

/* Admin */
.admin-layout { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.admin-sidebar {
  background: #0f0a1e;
  color: white;
  padding: 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.admin-brand {
  padding: 28px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
}
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.admin-nav a:hover, .admin-nav a.active {
  color: white;
  background: rgba(124,58,237,0.2);
  border-left-color: var(--purple-light);
}
.admin-content { background: var(--gray-50); padding: 40px; }
.admin-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}
.stat-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 20px;
}
.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.stat-value { font-size: 1.8rem; font-weight: 800; }
.stat-label { font-size: 0.85rem; color: var(--gray-400); }

.data-table { width: 100%; border-collapse: collapse; }
.data-table th { text-align: left; padding: 12px 16px; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray-400); border-bottom: 2px solid var(--gray-100); }
.data-table td { padding: 14px 16px; font-size: 0.9rem; border-bottom: 1px solid var(--gray-100); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--gray-50); }

.btn-sm { padding: 7px 14px; border-radius: var(--radius-sm); font-size: 0.82rem; font-weight: 500; transition: var(--transition); cursor: pointer; }
.btn-edit { background: var(--gradient-soft); color: var(--purple); border: 1px solid var(--purple-light); }
.btn-delete { background: #fff1f2; color: #e11d48; border: 1px solid #fecdd3; }
.btn-edit:hover { background: var(--gradient); color: white; border-color: transparent; }
.btn-delete:hover { background: #e11d48; color: white; border-color: transparent; }

/* Page Banner */
.page-banner {
  background: var(--gradient);
  padding: 60px 40px;
  text-align: center;
  color: white;
}
.page-banner h1 { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 12px; font-size: 0.9rem; opacity: 0.8; }
.breadcrumb a:hover { opacity: 1; }

/* ==========================================
   FILTER SIDEBAR
========================================== */

.filter-sidebar{
    position:sticky;
    top:110px;
    width:300px;
    min-width:300px;
    height:fit-content;

    background:#fff;
    border:1px solid #ececec;
    border-radius:24px;
    padding:24px;

    box-shadow:0 4px 20px rgba(0,0,0,.05);
}
/* ==========================================
   FILTER TITLE
========================================== */

.desktop-filter-title{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:1.05rem;
  font-weight:700;
  margin-bottom:24px;
  color:#222;
}

.desktop-filter-title i{
  color:#7c3aed;
}

/* ==========================================
   FILTER GROUP
========================================== */

.filter-group{
  margin-bottom:24px;
  padding-bottom:24px;
  border-bottom:1px solid #f1f1f1;
}

.filter-group h4{
  font-size:0.88rem;
  font-weight:700;
  color:#374151;
  text-transform:uppercase;
  letter-spacing:0.5px;
  margin-bottom:16px;
}

/* ==========================================
   FILTER CHECKBOX
========================================== */

.filter-check{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:14px;
  cursor:pointer;
}

.filter-check input{
  width:16px;
  height:16px;
  accent-color:#7c3aed;
}

.filter-check span{
  font-size:0.92rem;
  color:#4b5563;
}

/* ==========================================
   PRICE RANGE
========================================== */

.price-range{
  display:flex;
  gap:10px;
  margin-bottom:14px;
}

.price-range input{
  flex:1;
  width:100%;
  height:46px;
  border:2px solid #e5e7eb;
  border-radius:14px;
  padding:0 14px;
  font-size:0.9rem;
  transition:0.3s;
  background:#fff;
}

.price-range input:focus{
  border-color:#7c3aed;
  outline:none;
}

/* ==========================================
   APPLY BUTTON
========================================== */

.apply-filter-btn{
  width:100%;
  height:48px;
  border:none;
  border-radius:14px;
  background:linear-gradient(135deg,#7c3aed,#ec4899);
  color:#fff;
  font-size:0.95rem;
  font-weight:700;
  cursor:pointer;
  transition:0.3s;
  box-shadow:0 8px 20px rgba(124,58,237,0.18);
}

.apply-filter-btn:hover{
  transform:translateY(-2px);
}

/* ==========================================
   RESET BUTTON
========================================== */

.reset-filter-btn{
  width:100%;
  height:46px;
  border:2px solid #e5e7eb;
  border-radius:14px;
  background:#fff;
  color:#4b5563;
  font-size:0.92rem;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}

.reset-filter-btn:hover{
  border-color:#7c3aed;
  color:#7c3aed;
}

/* ==========================================
   PRODUCTS CONTENT
========================================== */

.products-content{
  min-width:0;
}

/* ==========================================
   TOOLBAR
========================================== */

.products-toolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  background:#fff;
  border:1px solid #ececec;
  border-radius:22px;
  padding:18px 22px;
  margin-bottom:28px;
  box-shadow:0 4px 20px rgba(0,0,0,0.03);
}

#results-count{
  font-size:0.92rem;
  color:#6b7280;
  font-weight:500;
}

.sort-area{
  display:flex;
  align-items:center;
  gap:12px;
}

.sort-area label{
  font-size:0.92rem;
  color:#374151;
  font-weight:600;
}

.sort-area select{
  height:42px;
  min-width:180px;
  border:2px solid #e5e7eb;
  border-radius:12px;
  padding:0 14px;
  font-size:0.9rem;
  cursor:pointer;
  background:#fff;
}

.sort-area select:focus{
  outline:none;
  border-color:#7c3aed;
}



/* ==========================================
   MOBILE FILTER BUTTON
========================================== */

.mobile-filter-toggle{
  display:none;
  width:100%;
  height:48px;
  border:none;
  border-radius:14px;
  background:#fff;
  border:1px solid #ececec;
  margin-bottom:18px;
  font-size:0.95rem;
  font-weight:700;
  align-items:center;
  justify-content:center;
  gap:10px;
  cursor:pointer;
}

.mobile-filter-toggle i{
  color:#7c3aed;
}

/* ==========================================
   MOBILE HEADER
========================================== */

.filter-mobile-header{
  display:none;
}

/* ==========================================
   OVERLAY
========================================== */

.filter-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.45);
  opacity:0;
  visibility:hidden;
  transition:0.3s;
  z-index:999;
}

.filter-overlay.active{
  opacity:1;
  visibility:visible;
}

.mobile-action-bar{
  display:none;
}

@media(max-width:768px){

  body{
    overflow-x:hidden;
  }

  .products-wrapper{
    padding:20px 14px 40px;
  }
    .mobile-sort-select{
    flex:1;
    height:48px;
    min-width:0;
  }

  .products-layout{
    grid-template-columns:1fr;
    gap:18px;
  }

  /* ==========================================
     ACTION BAR
  ========================================== */

  .mobile-action-bar{
    display:flex;
    gap:10px;
    margin-bottom:18px;
    position:sticky;
    top:84px;
    z-index:120;
    padding-bottom:2px;
  }

  /* ==========================================
     FILTER BUTTON
  ========================================== */

  .mobile-filter-toggle{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    height:48px;
    border:none;
    border-radius:14px;
    background:#fff;
    border:1px solid #ececec;
    font-size:0.92rem;
    font-weight:700;
    cursor:pointer;
    box-shadow:0 4px 12px rgba(0,0,0,0.04);
  }

  .mobile-filter-toggle i{
    color:#7c3aed;
  }

  /* ==========================================
     MOBILE SORT
  ========================================== */

  .mobile-sort-select{
    flex:1;
    height:48px;
    border:1px solid #ececec;
    border-radius:14px;
    padding:0 42px 0 14px;
    background:#fff;
    font-size:0.9rem;
    font-weight:600;
    color:#222;
    outline:none;
    cursor:pointer;
    appearance:none;
    -webkit-appearance:none;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%23666' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:right 14px center;
    background-size:16px;
    box-shadow:0 4px 12px rgba(0,0,0,0.04);
  }

  .mobile-sort-select:focus{
    border-color:#7c3aed;
  }

  .filter-sidebar{
    position:fixed;
    top:0;
    right:-100%;
    width:88%;
    max-width:340px;
    height:100dvh;
    overflow-y:auto;
    background:#fff;
    border-radius:24px 0 0 24px;
    padding:0 20px 24px;
    z-index:99999;
    transition:right 0.35s ease;
    box-shadow:-10px 0 40px rgba(0,0,0,0.12);
  }

  .filter-sidebar.active{
    right:0;
  }

  /* ==========================================
     OVERLAY
  ========================================== */

  .filter-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.5);
    opacity:0;
    visibility:hidden;
    transition:0.3s;
    z-index:9999;
    backdrop-filter:blur(2px);
  }

  .filter-overlay.active{
    opacity:1;
    visibility:visible;
  }

  /* ==========================================
     MOBILE HEADER
  ========================================== */

  .filter-mobile-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 0;
    margin-bottom:20px;
    border-bottom:1px solid #eee;
    position:sticky;
    top:0;
    background:#fff;
    z-index:20;
  }

  .filter-mobile-header h3{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:1rem;
    font-weight:700;
    color:#222;
  }

  .filter-mobile-header h3 i{
    color:#7c3aed;
  }

  .filter-mobile-header button{
    width:38px;
    height:38px;
    border:none;
    border-radius:50%;
    background:#f5f5f5;
    cursor:pointer;
    font-size:1rem;
    color:#222;
  }

  /* ==========================================
     HIDE DESKTOP TITLE
  ========================================== */

  .desktop-filter-title{
    display:none;
  }

  /* ==========================================
     PRICE RANGE
  ========================================== */

  .price-range{
    flex-direction:column;
    gap:12px;
  }

  .price-range input{
    height:46px;
  }


  /* ==========================================
     PRODUCTS GRID
  ========================================== */

  .products-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

}



/* ==========================================
   PREMIUM SORT DROPDOWN
========================================== */

.sort-area select,
.mobile-sort-select{

  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;

  background-color:#fff;

  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%23666' stroke-width='2.5' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");

  background-repeat:no-repeat;

  background-position:right 14px center;

  background-size:16px;

  padding-right:42px;

  border:2px solid #e5e7eb;

  border-radius:14px;

  font-size:0.92rem;

  font-weight:600;

  color:#222;

  transition:0.25s ease;

  cursor:pointer;

  box-shadow:0 4px 10px rgba(0,0,0,0.03);

}

/* HOVER */

.sort-area select:hover,
.mobile-sort-select:hover{

  border-color:#d1d5db;

}

/* FOCUS */

.sort-area select:focus,
.mobile-sort-select:focus{

  outline:none;

  border-color:#7c3aed;

  box-shadow:
  0 0 0 4px rgba(124,58,237,0.12);

}

/* OPTION STYLE */

.sort-area select option,
.mobile-sort-select option{

  background:#fff;
  color:#222;
  padding:12px;

}

/* Scroll animations */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Pagination */
.pagination { display: flex; gap: 8px; align-items: center; justify-content: center; margin-top: 40px; }
.page-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid var(--gray-200);
  color: var(--gray-600);
}
.page-btn:hover, .page-btn.active { background: var(--gradient); color: white; border-color: transparent; }





/* ==========================================================
   GIFTRIXS RESPONSIVE OVERRIDES (ChatGPT)
   ========================================================== */

@media (max-width:768px){

  .products-toolbar{
    display:none !important;
  }

  .mobile-action-bar{
    display:flex !important;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    margin-bottom:16px;
    position:sticky;
    top:84px;
    z-index:120;
    background:#fff;
    padding:6px 0;
  }

  .mobile-filter-toggle,
  .mobile-sort-select{
    flex:1;
    min-width:0;
    height:48px;
  }

  .filter-check{
    display:flex;
    align-items:flex-start;
    gap:10px;
  }

  .filter-check span{
    flex:1;
    line-height:1.4;
    word-break:break-word;
  }

  .price-range{
    display:flex;
    flex-direction:row !important;
    gap:10px;
  }

  .price-range input{
    width:50%;
  }

  .products-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
  }

  .products-card,
  .product-card{
    width:100%;
    min-width:0;
  }

  img{
    max-width:100%;
    height:auto;
  }
}

@media (min-width:769px){

  .filter-sidebar{
    max-width:320px;
  }

  .products-layout{
    align-items:start;
  }

}
/* ==========================================
   PRODUCTS LAYOUT
========================================== */

.products-layout{
    display:grid;
    grid-template-columns:300px 1fr;
    gap:30px;
    align-items:start;
    width:100%;
}

.products-content{
    width:100%;
    min-width:0;
}

#products-container{
    width:100%;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
    gap:24px;
}

html{
  scroll-behavior:smooth;
  font-size:15px;
}

body{
  font-family:var(--font-body);
  background:var(--white);
  color:var(--gray-800);
  line-height:1.45;
  overflow-x:hidden;
  padding-top:145px;
}

/* HEADER */
.site-header{
  top:10px;
  width:calc(100% - 200px);
  max-width:1600px;
  border-radius:24px;
  box-shadow:0 6px 24px rgba(124,58,237,0.07);
}

/* HEADER TOP */
.header-top{
  display:flex;
  align-items:center;
  gap:18px;
  padding:12px 22px;
}

/* LOGO */
.logo-img{
  width:118px;
  height:auto;
}

/* SEARCH */
.search-bar input{
  width:100%;
  height:50px;
  border:none;
  background:rgba(255,255,255,0.7);
  border-radius:50px;
  padding:0 135px 0 52px;
  font-size:14px;
  box-shadow:inset 0 0 0 1px rgba(124,58,237,0.06);
}

.search-icon{
  left:20px;
  font-size:17px;
}

.search-btn{
  right:6px;
  height:38px;
  padding:0 22px;
  border-radius:40px;
  font-size:14px;
  font-weight:600;
}

/* HEADER ACTIONS */
.header-actions{
  gap:10px;
}

.icon-btn{
  width:46px;
  height:46px;
}

.icon-btn i{
  font-size:18px;
}

.badge{
  width:18px;
  height:18px;
  font-size:10px;
}

/* LOGIN */
.btn-login{
  height:44px;
  padding:0 22px;
  font-size:14px;
}

/* NAVIGATION */
.header-nav{
  padding:0 22px 12px;
}

.nav-list{
  gap:8px;
  padding-top:12px;
}

.nav-list a{
  padding:9px 14px;
  border-radius:12px;
  font-size:14px;
  font-weight:500;
}

/* HERO */
.hero{
  position:relative;
  width:88%;
  margin:16px auto;
  border-radius:22px;
  overflow:hidden !important;
  isolation:isolate;
  height:75vh;
  max-height:580px;
  min-height:260px;
}



/* USP */
.usp-container{
  max-width:1400px;
  padding:14px 22px;
  gap:28px;
}

.usp-item{
  gap:10px;
  font-size:14px;
}

.usp-item i{
  width:38px;
  height:38px;
  font-size:15px;
}

/* SECTIONS */
.section{
  padding:55px 28px;
  max-width:1400px;
  margin:0 auto;
}

.section-header{
  margin-bottom:34px;
}

.section-tag{
  padding:5px 18px;
  font-size:0.72rem;
  margin-bottom:10px;
}

.section-title{
  font-size:2rem;
  line-height:1.2;
}

.section-subtitle{
  font-size:0.92rem;
  margin-top:6px;
  max-width:460px;
}

/* CATEGORY GRID */
.categories-grid{
  gap:16px;
}

.category-card{
  gap:10px;
  padding:18px 12px;
  border-radius:14px;
}

.category-icon{
  width:62px;
  height:62px;
  font-size:1.6rem;
}

.category-name{
  font-size:0.82rem;
}

.category-count{
  font-size:0.72rem;
}

/* PROMO */
.promo-banner{
  margin:0 28px;
  border-radius:24px;
  padding:48px 56px;
  gap:26px;
}

.promo-title{
  font-size:2.1rem;
  line-height:1.2;
}

.promo-sub{
  font-size:0.92rem;
  margin-bottom:22px;
}

/* NEWSLETTER */
.newsletter-section{
  padding:65px 24px;
}

.newsletter-title{
  font-size:2rem;
  margin-bottom:10px;
}

.newsletter-sub{
  font-size:0.92rem;
  margin-bottom:28px;
}

.newsletter-form input{
  padding:13px 18px;
  font-size:0.9rem;
}

.newsletter-form button{
  padding:13px 24px;
  font-size:0.85rem;
}

/* FOOTER */
.site-footer{
  padding:65px 32px 24px;
  margin-top:60px;
}

.footer-grid{
  gap:36px;
  padding-bottom:40px;
}

.footer-logo img{
  width:125px;
}

.footer-brand p{
  margin:16px 0 22px;
  line-height:1.7;
  font-size:0.9rem;
}

.footer-col h4{
  font-size:1rem;
  margin-bottom:18px;
}

.footer-links li{
  margin-bottom:10px;
}

.footer-links a{
  font-size:0.88rem;
}

.social-link{
  width:42px;
  height:42px;
  font-size:1rem;
}

.footer-bottom{
  padding-top:22px;
}

.footer-bottom p,
.footer-policy-links a{
  font-size:0.82rem;
}

/* FLOATING */
.floating-whatsapp{
  width:56px;
  height:56px;
  font-size:1.5rem;
}

.back-to-top{
  width:50px;
  height:50px;
  font-size:1.1rem;
}



.filter-sidebar{
  border-radius:20px;
  padding:20px;
}

.sort-area select{
  height:40px;
  min-width:160px;
  font-size:0.86rem;
}

/* AUTH */
.auth-card{
  padding:38px;
  max-width:440px;
}

.auth-title{
  font-size:1.8rem;
}

.form-group{
  margin-bottom:16px;
}

.form-group input,
.form-group select,
.form-group textarea{
  padding:11px 14px;
  font-size:0.9rem;
}

.btn-submit{
  padding:13px;
  font-size:0.92rem;
}

/* CART */
.cart-sidebar{
  width:400px;
}

.cart-header{
  padding:20px;
}

.cart-body{
  padding:16px;
}

.cart-item{
  padding:14px;
  border-radius:16px;
}

.cart-item-img{
  width:78px;
  height:78px;
}

.cart-footer{
  padding:18px;
}

.btn-checkout{
  height:52px;
  font-size:0.92rem;
}

.btn-view-cart{
  height:48px;
  font-size:0.88rem;
}



/* TABLET */
@media(max-width:992px){

  body{
    padding-top:130px;
  }

  .hero{
    width:94%;
    height:42vh;
    max-height:360px;
  }

  .section{
    padding:45px 20px;
  }

  .section-title{
    font-size:1.7rem;
  }

  .products-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .categories-grid{
    grid-template-columns:repeat(3,1fr);
  }

}

/* MOBILE */
@media(max-width:768px){

  body{
    padding-top:150px;
  }

  .site-header{
    width:calc(100% - 14px);
    border-radius:18px;
  }

  .header-top{
    gap:12px;
    padding:12px;
  }

  .logo-img{
    width:105px;
  }

  .search-bar input{
    height:46px;
    padding:0 105px 0 44px;
    font-size:13px;
  }

  .search-btn{
    height:34px;
    padding:0 14px;
    font-size:12px;
  }

  .icon-btn{
    width:40px;
    height:40px;
  }

  .btn-login{
    height:38px;
    padding:0 16px;
    font-size:13px;
  }

  .hero{
    width:95%;
    height:22vh;
    min-height:145px;
    max-height:175px;
    border-radius:14px;
  }

  .section{
    padding:38px 14px;
  }

  .section-title{
    font-size:1.45rem;
  }

  .categories-grid,
  .products-grid{
    grid-template-columns:repeat(2,1fr);
    gap:12px;
  }

  .promo-banner{
    margin:0 14px;
    padding:34px 24px;
    border-radius:18px;
  }

  .promo-title{
    font-size:1.6rem;
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:28px;
  }

}
/* ============================================
   PRODUCT DETAIL PAGE
============================================ */

.product-detail{
  max-width:1380px;
  margin:auto;
  padding:40px 24px;
}

/* GRID */

.product-detail-grid{
  display:grid;
  grid-template-columns:0.9fr 1fr;
  gap:40px;
  align-items:start;
}

/* ============================================
   GALLERY
============================================ */

.product-gallery{
  position:sticky;
  top:100px;
}

.gallery-main{
  border-radius:22px;
  overflow:hidden;
  aspect-ratio:1/1;

  background:var(--gray-50);

  border:1px solid var(--gray-100);
}

.gallery-main img{
    width:100%;
    height:100%;
    object-fit:contain;
    background:#fff;
  cursor:zoom-in;
}

.gallery-thumbs{
  display:flex;
  gap:10px;
  margin-top:12px;
}

.gallery-thumb{
  width:70px;
  height:70px;

  border-radius:12px;
  overflow:hidden;

  border:2px solid transparent;

  cursor:pointer;

  transition:0.3s ease;
}

.gallery-thumb.active{
  border-color:var(--purple);
}

.gallery-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* ============================================
   PRODUCT INFO
============================================ */

.product-detail-info{
  padding-top:8px;
}

.product-detail-info .product-category{
  font-size:0.78rem;
  color:var(--purple);

  font-weight:700;

  text-transform:uppercase;

  margin-bottom:10px;
}

.product-detail-info h1{
  font-family:var(--font-display);

  font-size:2.5rem;
  font-weight:700;

  line-height:1.2;

  margin-bottom:18px;

  color:var(--gray-900);
}

/* RATING */

.product-rating{
  display:flex;
  align-items:center;
  gap:8px;

  margin-bottom:20px;
}

.stars{
  font-size:0.9rem;
}

.rating-count{
  font-size:0.9rem;
}

/* ============================================
   PRICE
============================================ */

.detail-price{
  display:flex;
  align-items:center;
  flex-wrap:wrap;

  gap:12px;

  margin-bottom:24px;
}

.detail-price .current{
  font-size:2.2rem;
  font-weight:800;

  color:var(--gray-900);
}

.detail-price .old{
  font-size:1rem;
  color:var(--gray-400);

  text-decoration:line-through;
}

.detail-price .save{
  background:#dcfce7;
  color:#16a34a;

  padding:6px 14px;

  border-radius:40px;

  font-size:0.82rem;
  font-weight:700;
}

/* DESCRIPTION */

.product-description{
  font-size:1rem;
  line-height:1.8;

  color:var(--gray-600);

  margin-bottom:28px;
}

/* FEATURES */

.product-features{
  margin-bottom:28px;
}

.product-features h3{
  font-size:1rem;
  font-weight:700;

  margin-bottom:14px;
}

.product-features ul{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.product-features li{
  font-size:0.95rem;
  color:var(--gray-700);

  display:flex;
  align-items:center;
  gap:10px;
}

/* ============================================
   OPTIONS
============================================ */

.option-group{
  margin-bottom:22px;
}

.option-group label{
  display:block;

  font-size:0.9rem;
  font-weight:700;

  margin-bottom:10px;
}

.option-chips{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.option-chip{
  padding:9px 18px;

  border:2px solid var(--gray-200);

  border-radius:50px;

  font-size:0.84rem;
  font-weight:500;

  cursor:pointer;

  transition:0.3s ease;
}

.option-chip:hover,
.option-chip.selected{
  border-color:var(--purple);
  background:var(--gradient-soft);
  color:var(--purple);
}

/* ============================================
   QUANTITY
============================================ */

.qty-selector{
  display:flex;
  align-items:center;

  border:2px solid var(--gray-200);

  border-radius:14px;

  width:fit-content;

  overflow:hidden;
}

.qty-selector button{
  width:42px;
  height:42px;

  font-size:1rem;

  display:flex;
  align-items:center;
  justify-content:center;

  background:#fff;

  transition:0.3s ease;
}

.qty-selector button:hover{
  background:var(--gradient-soft);
  color:var(--purple);
}

.qty-selector input{
  width:55px;

  border:none;

  text-align:center;

  font-size:0.95rem;
  font-weight:700;
}

/* ============================================
   BUTTONS
============================================ */

.product-ctas{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;

  margin-top:30px;
}

.btn-cart-large,
.btn-buy-now,
.btn-whatsapp{
  height:52px;

  border-radius:14px;

  font-size:0.92rem;
  font-weight:600;

  display:flex;
  align-items:center;
  justify-content:center;

  gap:8px;

  transition:0.3s ease;
}

.btn-cart-large{
  background:var(--gradient);
  color:#fff;
}

.btn-cart-large:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(124,58,237,0.25);
}

.btn-buy-now{
  border:2px solid var(--purple);

  color:var(--purple);
  background:#fff;
}

.btn-buy-now:hover{
  background:var(--gradient-soft);
}

.btn-whatsapp{
  grid-column:1/-1;

  background:#25d366;
  color:#fff;
}

.btn-whatsapp:hover{
  background:#22c55e;
  transform:translateY(-2px);
}

/* ============================================
   RESPONSIVE
============================================ */

@media(max-width:1200px){

  .product-detail-grid{
    grid-template-columns:1fr 1fr;
    gap:32px;
  }

}

@media(max-width:992px){

  .product-detail{
    padding:30px 18px;
  }

  .product-detail-grid{
    grid-template-columns:1fr;
    gap:30px;
  }

  .product-gallery{
    position:relative;
    top:0;
  }

}

@media(max-width:768px){

  .product-detail-info h1{
    font-size:1.9rem;
  }

  .detail-price .current{
    font-size:1.8rem;
  }

  .product-description{
    font-size:0.92rem;
    line-height:1.7;
  }

  .product-ctas{
    grid-template-columns:1fr;
  }

  .btn-whatsapp{
    grid-column:auto;
  }

}

@media(max-width:480px){

  .product-detail{
    padding:24px 14px;
  }

  .gallery-thumb{
    width:58px;
    height:58px;
  }

  .product-detail-info h1{
    font-size:1.6rem;
  }

  .detail-price .current{
    font-size:1.5rem;
  }

  .btn-cart-large,
  .btn-buy-now,
  .btn-whatsapp{
    height:48px;
    font-size:0.85rem;
  }

}

/* =========================================
   DESIGN CARDS
========================================= */

.design-scroll{
  display:flex;
  gap:16px;
  overflow-x:auto;
  padding-bottom:10px;
  margin-top:18px;
}

.design-scroll::-webkit-scrollbar{
  height:6px;
}

.design-scroll::-webkit-scrollbar-thumb{
  background:var(--purple-light);
  border-radius:20px;
}

.design-card{
  min-width:140px;
  max-width:140px;

  border:2px solid var(--gray-200);

  border-radius:18px;

  overflow:hidden;

  background:#fff;

  cursor:pointer;

  transition:0.3s ease;

  flex-shrink:0;
}

.design-card:hover{
  transform:translateY(-4px);
  border-color:var(--purple);
}

.design-card.active{
  border-color:var(--purple);
  box-shadow:0 10px 30px rgba(124,58,237,0.18);
}

.design-img{
  width:100%;
  aspect-ratio:1/1;
  overflow:hidden;
  background:#f9fafb;
}

.design-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.design-info{
  padding:10px;
}

.design-name{
  font-size:0.82rem;
  font-weight:600;
  margin-bottom:6px;
}

.design-price{
  font-size:0.95rem;
  font-weight:700;
  color:var(--gray-800);
}

.design-old-price{
  font-size:0.76rem;
  color:var(--gray-400);
  text-decoration:line-through;
}

/* =========================================
   ADMIN VARIANTS
========================================= */

.variant-card{

border:2px solid var(--gray-200);

border-radius:20px;

padding:18px;

margin-bottom:18px;

background:#fff;

}

.variant-top{

display:flex;

align-items:center;

justify-content:space-between;

margin-bottom:16px;

}

.variant-top h4{

font-size:1rem;

font-weight:700;

}

.remove-btn{

width:34px;

height:34px;

border:none;

border-radius:50%;

background:#fee2e2;

color:#dc2626;

font-size:1.1rem;

cursor:pointer;

}

.variant-grid{

display:grid;

grid-template-columns:
repeat(2,1fr);

gap:14px;

}

.variant-grid input{

width:100%;

padding:12px 16px;

border:2px solid var(--gray-200);

border-radius:14px;

font-size:0.92rem;

}

.category-check{

display:flex;

align-items:center;

gap:8px;

padding:10px 16px;

border:2px solid var(--gray-200);

border-radius:40px;

cursor:pointer;

transition:0.3s ease;

}

.category-check:hover{

border-color:var(--purple);

}

.category-check input{

accent-color:var(--purple);

width:18px;

height:18px;

}
.product-extra-tabs{
margin-top:60px;
display:flex;
flex-direction:column;
gap:24px;
}

.extra-box{
background:#fff;
padding:24px;
border-radius:16px;
border:1px solid #eee;
}

.extra-box h2{
font-size:24px;
margin-bottom:16px;
font-weight:700;
}

.extra-content{
line-height:1.9;
color:#555;
font-size:15px;
}


/* ===========================
   SEARCH SUGGESTIONS
=========================== */

.search-bar{
    position: relative;
}

.search-suggestions{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    max-height: 420px;
    overflow-y: auto;
    z-index: 99999;
    display: none;
}

.search-suggestions.active{
    display: block;
}

.suggestion-item{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    cursor: pointer;
    transition: .25s;
}

.suggestion-item:hover{
    background: #f8f8f8;
}

.suggestion-item img{
    width: 60px !important;
    height: 60px !important;
    min-width: 60px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.suggestion-info{
    flex: 1;
    overflow: hidden;
}

.suggestion-info .name{
    font-size: 14px;
    font-weight: 600;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.suggestion-info .price{
    margin-top: 4px;
    color: #8a2be2;
    font-weight: 700;
    font-size: 14px;
}


.main-badge{
    position:absolute;
    left:8px;
    top:8px;
    background:#7c3aed;
    color:#fff;
    padding:4px 8px;
    font-size:11px;
    border-radius:20px;
    font-weight:bold;
}


