/* ================================================
   Alhumdulillah Fashion - Main Stylesheet
   Premium Pink Women's Fashion Theme
   Fully Responsive & Dynamic Slider Ready
   ================================================ */

:root {
  --pink: #e91e8c;
  --pink-dark: #c2185b;
  --pink-light: #fce4ec;
  --pink-pale: #fff5f9;
  --pink-mid: #f48fb1;
  --text: #2d2d2d;
  --text-light: #777;
  --border: #f0d0e0;
  --white: #fff;
  --shadow: 0 4px 20px rgba(233,30,140,0.1);
  --shadow-hover: 0 8px 40px rgba(233,30,140,0.2);
  --radius: 12px;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); overflow-x: hidden; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
input, select, textarea, button { font-family: var(--font-body); }

.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--pink);
  color: white;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  border: 2px solid var(--pink);
  cursor: pointer;
  text-align: center;
  min-width: 120px;
}
.btn-primary:hover {
  background: var(--pink-dark);
  border-color: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(233,30,140,0.35);
}
.btn-primary:active { transform: scale(0.97); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--pink);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--pink);
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  min-width: 120px;
}
.btn-outline:hover {
  background: var(--pink);
  color: white;
  transform: translateY(-2px);
}
.btn-outline:active { transform: scale(0.97); }

.btn-xs {
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}
.btn-xs:hover { border-color: var(--pink); color: var(--pink); }
.btn-xs.delete { color: #d32f2f; border-color: #ffcdd2; }
.btn-xs.delete:hover { background: #d32f2f; color: white; border-color: #d32f2f; }

.btn-sm {
  display: inline-block;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  background: var(--pink);
  color: white;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-sm:hover { background: var(--pink-dark); transform: translateY(-2px); }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-top {
  background: var(--pink);
  color: white;
  padding: 6px 0;
  font-size: 13px;
}
.header-top .container {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.header-top span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-top i { font-size: 12px; }

.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon {
  font-size: 28px;
  color: var(--pink);
}
.logo-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--text);
  line-height: 1.1;
}
.logo-text em {
  font-style: normal;
  font-size: 13px;
  color: var(--pink);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== NAVIGATION ===== */
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover {
  color: var(--pink);
  border-bottom-color: var(--pink);
}

.nav-dropdown { position: relative; }
.nav-link-drop { cursor: pointer; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  min-width: 200px;
  padding: 8px 0;
  z-index: 100;
  border: 1px solid var(--border);
}
.nav-dropdown:hover .dropdown-menu {
  display: block;
  animation: fadeInDown 0.2s ease;
}
.dropdown-item { position: relative; }
.dropdown-item > a {
  display: block;
  padding: 9px 20px;
  font-size: 14px;
  transition: var(--transition);
  border-bottom: none !important;
}
.dropdown-item > a:hover {
  color: var(--pink);
  background: var(--pink-pale);
}
.sub-dropdown {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  min-width: 180px;
  padding: 8px 0;
}
.dropdown-item:hover .sub-dropdown { display: block; }
.sub-dropdown a {
  display: block;
  padding: 8px 18px;
  font-size: 13px;
  transition: var(--transition);
}
.sub-dropdown a:hover {
  color: var(--pink);
  background: var(--pink-pale);
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   ===== HERO SLIDER - সম্পূর্ণ ডাইনামিক (ব্লার মুক্ত) =====
   ============================================================ */
.hero-slider {
  position: relative;
  height: 580px;
  overflow: hidden;
  background: var(--pink-light);
}
.slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 5%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
  overflow: hidden;
}
.slide.active {
  opacity: 1;
  z-index: 2;
}

/* গ্রেডিয়েন্ট ব্যাকগ্রাউন্ড ক্লাস */
.slide-gradient-0 { background: linear-gradient(135deg, #f8d7e3 0%, #fce4ec 50%, #f48fb1 100%); }
.slide-gradient-1 { background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 50%, #e91e63 100%); }
.slide-gradient-2 { background: linear-gradient(135deg, #fce4ec 0%, #f48fb1 50%, #ad1457 100%); }
.slide-gradient-3 { background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 50%, #ab47bc 100%); }
.slide-gradient-4 { background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 50%, #ffa000 100%); }
.slide-gradient-5 { background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 50%, #66bb6a 100%); }
.slide-gradient-6 { background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 50%, #42a5f5 100%); }
.slide-gradient-7 { background: linear-gradient(135deg, #fbe9e7 0%, #ffccbc 50%, #ff7043 100%); }

/* স্লাইডার ইমেজ সহ - ব্লার মুক্ত */
.slide-with-image {
  position: relative;
}
.slide-with-image .slide-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.slide-with-image .slide-content {
  z-index: 2;
  position: relative;
}
/* ব্লার ইফেক্ট সম্পূর্ণ রিমুভ - শুধু ডার্ক ওভারলে */

.slide-with-image .slide-content h1,
.slide-with-image .slide-content p,
.slide-with-image .slide-content .slide-tag {
  color: #fff !important;
}
.slide-with-image .slide-content h1 em {
  color: #ff6b9d !important;
}
.slide-with-image .slide-btns .btn-outline {
  border-color: #fff;
  color: #fff;
}
.slide-with-image .slide-btns .btn-outline:hover {
  background: #fff;
  color: #1a1a1a;
}
.slide-with-image .slide-btns .btn-primary {
  background: #e91e8c;
  border-color: #e91e8c;
}

/* স্লাইড কন্টেন্ট */
.slide-content {
  flex: 1;
  max-width: 600px;
  z-index: 3;
  position: relative;
  padding: 20px 0;
}
.slide-tag {
  display: inline-block;
  background: rgba(233,30,140,0.15);
  color: var(--pink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 16px;
  border: 1px solid rgba(233,30,140,0.3);
}
.slide-content h1 {
  font-family: var(--font-head);
  font-size: 3.2rem;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 12px;
}
.slide-content h1 em {
  color: var(--pink);
  font-style: italic;
}
.slide-content p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 440px;
}
.slide-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* স্লাইড ডেকোরেশন */
.slide-deco {
  flex: 1;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.deco-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}
.deco-circle.c1 {
  width: 350px;
  height: 350px;
  background: var(--pink);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 4s ease-in-out infinite;
}
.deco-circle.c2 {
  width: 200px;
  height: 200px;
  background: var(--white);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 4s ease-in-out infinite 2s;
}
.deco-text {
  position: absolute;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(26,26,26,0.06);
  letter-spacing: 8px;
  z-index: 1;
  font-family: var(--font-head);
  font-style: italic;
}

/* স্লাইডার কন্ট্রোল */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  font-size: 1.1rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover {
  background: var(--pink);
  color: #fff;
}
.slider-btn:active { transform: translateY(-50%) scale(0.93); }
.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
}
.slider-dots .dot.active {
  background: var(--pink);
  width: 30px;
  border-radius: 10px;
}

/* ===== FEATURES BAR ===== */
.features-bar {
  background: var(--pink-pale);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.features-bar .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.feature-item i {
  font-size: 26px;
  color: var(--pink);
  flex-shrink: 0;
}
.feature-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}
.feature-item span {
  font-size: 12px;
  color: var(--text-light);
}

/* ===== SECTIONS ===== */
.section { padding: 70px 0; }
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-tag {
  display: inline-block;
  background: var(--pink-light);
  color: var(--pink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: 40px;
  color: var(--text);
  margin-bottom: 12px;
}
.section-header p {
  color: var(--text-light);
  font-size: 15px;
}

/* ===== CATEGORIES ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.category-card {
  background: var(--pink-pale);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 35px 20px;
  text-align: center;
  transition: var(--transition);
}
.category-card:hover {
  border-color: var(--pink);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  background: white;
}
.cat-icon {
  font-size: 48px;
  margin-bottom: 14px;
  display: block;
}
.category-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text);
}
.category-card span {
  font-size: 13px;
  color: var(--pink);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.category-card span i {
  transition: var(--transition);
}
.category-card:hover span i { transform: translateX(4px); }

/* ===== PRODUCTS GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}

.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--border);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.badge-sale,
.badge-featured {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.badge-sale { background: #ff4444; color: white; }
.badge-featured {
  background: var(--pink);
  color: white;
  top: 40px;
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  display: block;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(233,30,140,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }
.product-overlay span {
  color: white;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid white;
  padding: 10px 20px;
  border-radius: 50px;
}

.product-info { padding: 16px; }
.product-info h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}
.product-info h3 a:hover { color: var(--pink); }
.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.price-current {
  font-size: 18px;
  font-weight: 700;
  color: var(--pink);
}
.price-original {
  font-size: 14px;
  color: var(--text-light);
  text-decoration: line-through;
}
.btn-order-now {
  display: block;
  text-align: center;
  background: var(--pink-light);
  color: var(--pink);
  padding: 10px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  transition: var(--transition);
}
.btn-order-now:hover {
  background: var(--pink);
  color: white;
}

/* ===== MID BANNER ===== */
.mid-banner {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  padding: 60px 0;
}
.banner-content {
  text-align: center;
  color: white;
}
.banner-content span {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.banner-content h2 {
  font-family: var(--font-head);
  font-size: 38px;
  margin-bottom: 12px;
}
.banner-content p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.banner-content .btn-primary {
  background: white;
  color: var(--pink);
  border-color: white;
}
.banner-content .btn-primary:hover {
  background: var(--pink-light);
  color: var(--pink);
}

/* ===== ABOUT STRIP ===== */
.about-strip {
  background: var(--pink-pale);
  padding: 70px 0;
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text h2 {
  font-family: var(--font-head);
  font-size: 36px;
  margin-bottom: 16px;
}
.about-text h2 span { color: var(--pink); }
.about-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-text ul {
  list-style: none;
  margin-bottom: 28px;
}
.about-text ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 15px;
}
.about-text ul li i {
  color: var(--pink);
  width: 20px;
}
.deco-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.deco-stat {
  background: white;
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
}
.deco-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 36px;
  color: var(--pink);
}
.deco-stat span {
  font-size: 13px;
  color: var(--text-light);
}

/* ===== PAGE BANNER ===== */
.page-banner {
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--pink-pale) 100%);
  padding: 50px 0;
  border-bottom: 1px solid var(--border);
}
.page-banner h1 {
  font-family: var(--font-head);
  font-size: 38px;
  color: var(--text);
  margin-bottom: 10px;
}
.page-banner.small { padding: 30px 0; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
  flex-wrap: wrap;
}
.breadcrumb a:hover { color: var(--pink); }
.breadcrumb .current { color: var(--pink); }
.breadcrumb span { color: var(--border); }

/* ===== CATEGORY PAGE ===== */
.category-page { padding: 40px 0; }
.subcategory-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.subcategory-tabs a {
  padding: 8px 18px;
  border-radius: 50px;
  border: 2px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
}
.subcategory-tabs a.active,
.subcategory-tabs a:hover {
  background: var(--pink);
  color: white;
  border-color: var(--pink);
}
.category-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 30px;
}
.sidebar-box {
  background: var(--pink-pale);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}
.sidebar-box h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text);
}
.sidebar-box ul { list-style: none; }
.sidebar-box ul li a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.sidebar-box ul li a:hover,
.sidebar-box ul li a.active {
  color: var(--pink);
  padding-left: 8px;
}
.products-header {
  margin-bottom: 20px;
  color: var(--text-light);
  font-size: 14px;
}

/* ===== PRODUCT DETAIL ===== */
.product-detail-page { padding: 40px 0; }
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.main-image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--pink-pale);
}
.main-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.thumbnail-strip {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.thumb.active,
.thumb:hover { border-color: var(--pink); }

.product-title {
  font-family: var(--font-head);
  font-size: 32px;
  margin-bottom: 8px;
  line-height: 1.2;
}
.product-category {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 16px;
}
.product-category a { color: var(--pink); }
.product-price-box {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.big-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--pink);
  font-family: var(--font-head);
}
.orig-price {
  font-size: 18px;
  color: var(--text-light);
  text-decoration: line-through;
}
.discount-badge {
  background: #ff4444;
  color: white;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 700;
}
.product-description {
  margin-bottom: 24px;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 15px;
}

/* ===== ORDER BOX ===== */
.order-box {
  background: var(--pink-pale);
  border: 2px solid var(--pink-mid);
  border-radius: 16px;
  padding: 28px;
}
.order-box-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.order-box-header i {
  font-size: 22px;
  color: var(--pink);
}
.order-box-header h3 {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--text);
}

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  background: white;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(233,30,140,0.1);
}
.required { color: var(--pink); }

.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  width: fit-content;
  background: white;
}
.qty-control button {
  background: var(--pink-light);
  border: none;
  width: 40px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
  color: var(--pink);
  transition: var(--transition);
}
.qty-control button:hover {
  background: var(--pink);
  color: white;
}
.qty-control input {
  border: none;
  width: 60px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}

.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.size-label input { display: none; }
.size-label span {
  display: block;
  padding: 8px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.size-label input:checked + span {
  background: var(--pink);
  color: white;
  border-color: var(--pink);
}
.size-label span:hover { border-color: var(--pink); color: var(--pink); }

.color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.color-label input { display: none; }
.color-label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 4px 8px;
  transition: var(--transition);
}
.color-label input:checked + .color-dot {
  box-shadow: 0 0 0 3px white, 0 0 0 5px var(--pink);
}
.color-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.1);
}
.color-name { font-size: 12px; }

.payment-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: white;
  border: 2px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
}
.payment-label.active,
.payment-label:has(input:checked) {
  border-color: var(--pink);
  background: var(--pink-pale);
}
.payment-label input { display: none; }
.payment-label i {
  font-size: 22px;
  color: #4caf50;
}
.payment-label span { font-weight: 600; font-size: 15px; }
.payment-label small {
  display: block;
  font-size: 12px;
  color: var(--text-light);
}

.delivery-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.delivery-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: white;
  border: 2px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
}
.delivery-btn:has(input:checked) {
  border-color: var(--pink);
  background: var(--pink-pale);
}
.delivery-btn input { display: none; }
.delivery-btn i {
  font-size: 22px;
  color: var(--pink);
}
.delivery-btn strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}
.delivery-btn span {
  font-size: 12px;
  color: var(--pink);
  font-weight: 700;
}

.price-summary {
  background: white;
  border-radius: 10px;
  padding: 16px;
  margin: 16px 0;
  border: 1px solid var(--border);
}
.price-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid #f5f5f5;
}
.price-row:last-child { border: none; }
.price-row.total {
  font-size: 18px;
  font-weight: 700;
  color: var(--pink);
  margin-top: 4px;
}

.btn-confirm-order {
  width: 100%;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  letter-spacing: 0.5px;
}
.btn-confirm-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(233,30,140,0.4);
}
.btn-confirm-order:active { transform: scale(0.97); }

/* ===== SUCCESS PAGE ===== */
.success-page { padding: 60px 0; }
.success-card {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 50px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid var(--border);
}
.success-icon {
  font-size: 70px;
  color: #4caf50;
  margin-bottom: 16px;
}
.success-icon i { animation: bounceIn 0.5s ease; }
.success-card h1 {
  font-family: var(--font-head);
  font-size: 36px;
  margin-bottom: 10px;
  color: var(--text);
}
.success-card > p { color: var(--text-light); margin-bottom: 20px; }
.order-number-badge {
  display: inline-block;
  background: var(--pink-light);
  color: var(--pink);
  font-size: 18px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: 30px;
  border: 2px solid var(--pink-mid);
}
.order-summary-table { text-align: left; margin-bottom: 30px; }
.order-summary-table h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
}
.order-summary-table table { width: 100%; border-collapse: collapse; }
.order-summary-table td {
  padding: 10px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.order-summary-table td:first-child {
  color: var(--text-light);
  width: 40%;
}
.order-summary-table .total-row td {
  font-size: 18px;
  font-weight: 700;
  color: var(--pink);
}
.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: capitalize;
}
.status-badge.pending { background: #fff3e0; color: #e65100; }
.status-badge.processing { background: #e3f2fd; color: #1565c0; }
.status-badge.shipped { background: #f3e5f5; color: #6a1b9a; }
.status-badge.delivered { background: #e8f5e9; color: #2e7d32; }
.status-badge.cancelled { background: #ffebee; color: #c62828; }
.success-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.contact-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--pink-pale);
  padding: 14px;
  border-radius: 10px;
  font-size: 14px;
}
.contact-note i { color: var(--pink); }

/* ===== ADMIN CARDS ===== */
.admin-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 30px;
}
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--pink-pale);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 10px;
}
.card-header h3 {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.card-header h3 i { color: var(--pink); }
.btn-add {
  background: var(--pink);
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-add:hover { background: var(--pink-dark); transform: translateY(-2px); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ===== ADMIN STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.stat-card {
  background: white;
  padding: 18px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 14px;
  border-left: 4px solid var(--pink);
}
.stat-card.pink { border-left-color: #e91e8c; }
.stat-card.green { border-left-color: #4caf50; }
.stat-card.orange { border-left-color: #ff9800; }
.stat-card.blue { border-left-color: #2196f3; }
.stat-card.purple { border-left-color: #9c27b0; }
.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
}
.stat-card.pink .stat-icon { background: #fce4ec; color: #e91e8c; }
.stat-card.green .stat-icon { background: #e8f5e9; color: #4caf50; }
.stat-card.orange .stat-icon { background: #fff3e0; color: #ff9800; }
.stat-card.blue .stat-icon { background: #e3f2fd; color: #2196f3; }
.stat-card.purple .stat-icon { background: #f3e5f5; color: #9c27b0; }
.stat-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 2px;
}
.stat-info p {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
}

/* ===== ADMIN TABLE ===== */
.table-responsive { overflow-x: auto; padding: 16px; }
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.admin-table thead {
  background: #f5f5f5;
}
.admin-table th,
.admin-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.admin-table th {
  font-weight: 600;
  color: var(--text);
  font-size: 13px;
}
.admin-table tbody tr:hover {
  background: var(--pink-pale);
}
.text-center { text-align: center; }

/* ===== MODAL ===== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.open { display: flex; }
.modal-box {
  background: white;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: fadeInDown 0.3s ease;
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: white;
  border-radius: 20px 20px 0 0;
  z-index: 1;
}
.modal-header h3 {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-head);
}
.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
  padding: 0 4px;
}
.modal-close:hover { color: var(--pink); }
.modal-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: 16px;
}

/* ===== ALERTS ===== */
.alert {
  padding: 14px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  border: 1px solid transparent;
}
.alert-success {
  background: #e8f5e9;
  color: #2e7d32;
  border-color: #a5d6a7;
}
.alert-error {
  background: #ffebee;
  color: #c62828;
  border-color: #ef9a9a;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #1a1a2e;
  color: rgba(255,255,255,0.8);
}
.footer-top { padding: 60px 0; }
.footer-top .container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo .logo-icon { color: var(--pink-mid); font-size: 24px; }
.footer-logo strong {
  display: block;
  color: white;
  font-family: var(--font-head);
  font-size: 18px;
}
.footer-logo em {
  font-style: normal;
  font-size: 12px;
  color: var(--pink-mid);
}
.footer-col > p { font-size: 14px; line-height: 1.8; margin-bottom: 16px; }
.footer-phone a {
  color: var(--pink-mid);
  font-weight: 600;
  font-size: 16px;
}
.footer-col h4 {
  color: white;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 14px;
  transition: var(--transition);
}
.footer-col ul li a:hover {
  color: var(--pink-mid);
  padding-left: 4px;
}
.footer-col > p {
  font-size: 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-col > p i {
  color: var(--pink-mid);
  margin-top: 3px;
}
.footer-col > p a { color: var(--pink-mid); }
.delivery-info {
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 12px;
  margin-top: 16px;
  font-size: 13px;
}
.delivery-info strong {
  display: block;
  color: white;
  margin-bottom: 6px;
}
.delivery-info span { display: block; color: var(--pink-mid); }
.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 16px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
.wa-tooltip {
  position: absolute;
  right: 70px;
  background: #25d366;
  color: white;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: var(--pink);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  z-index: 998;
  opacity: 0;
  transition: var(--transition);
}
.back-to-top.visible { opacity: 1; }
.back-to-top:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
}

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
}
.empty-state i {
  font-size: 60px;
  color: var(--border);
  margin-bottom: 16px;
}
.empty-state h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--text);
}
.empty-state p { margin-bottom: 20px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes bounceIn {
  0% { transform: scale(0); }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* ============================================================
   ===== RESPONSIVE - মোবাইল ফ্রেন্ডলি =====
   ============================================================ */

/* ট্যাবলেট & ছোট ল্যাপটপ */
@media (max-width: 1024px) {
  .footer-top .container { grid-template-columns: 1fr 1fr; }
  .product-detail-layout { grid-template-columns: 1fr; }
  .about-content { grid-template-columns: 1fr; }
  .category-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .hero-slider { height: 480px; }
  .slide-content h1 { font-size: 2.8rem; }
}

/* মোবাইল ল্যান্ডস্কেপ & ছোট ট্যাবলেট */
@media (max-width: 768px) {
  .hero-slider { height: 420px; }
  .slide { padding: 0 4%; }
  .slide-content { padding: 20px 0; max-width: 100%; }
  .slide-content h1 { font-size: 2.2rem; }
  .slide-content p { font-size: 0.9rem; max-width: 100%; }
  .slide-deco { display: none; }
  .slider-btn { width: 36px; height: 36px; font-size: 0.9rem; }
  .slider-btn.prev { left: 10px; }
  .slider-btn.next { right: 10px; }
  .slider-dots { bottom: 16px; gap: 8px; }
  .slider-dots .dot { width: 8px; height: 8px; }
  .slider-dots .dot.active { width: 24px; }
  .slide-btns { gap: 8px; }
  .slide-btns .btn-primary,
  .slide-btns .btn-outline { padding: 10px 20px; font-size: 13px; min-width: 80px; }
  
  /* মোবাইলে ইমেজ ওভারলে */
 
  .main-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 999;
    font-size: 16px;
    padding: 40px;
  }
  .main-nav.open { display: flex; }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: var(--pink-pale);
    min-width: unset;
  }
  .sub-dropdown {
    position: static;
    box-shadow: none;
    padding-left: 16px;
  }
  .hamburger { display: flex; }

  .features-bar .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .feature-item { justify-content: center; }

  .section { padding: 40px 0; }
  .section-header h2 { font-size: 28px; }
  .section-header { margin-bottom: 30px; }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .category-card { padding: 24px 12px; }
  .cat-icon { font-size: 36px; }
  .category-card h3 { font-size: 15px; }

  .footer-top .container { grid-template-columns: 1fr; gap: 30px; }
  .delivery-options { grid-template-columns: 1fr; }

  .header-top .container { justify-content: center; gap: 10px; font-size: 12px; }
  .header-top span { gap: 4px; }

  .btn-primary, .btn-outline { padding: 10px 20px; font-size: 13px; min-width: 80px; }

  .mid-banner { padding: 40px 0; }
  .banner-content h2 { font-size: 28px; }

  .about-strip { padding: 40px 0; }
  .about-text h2 { font-size: 28px; }
  .deco-box { grid-template-columns: 1fr 1fr; gap: 12px; }
  .deco-stat { padding: 20px; }
  .deco-stat strong { font-size: 28px; }

  .order-box { padding: 20px; }
  .form-row { grid-template-columns: 1fr; }

  .success-card { padding: 30px 20px; }
  .success-actions { flex-direction: column; align-items: center; }

  .card-header { flex-direction: column; align-items: flex-start; }
  .modal-box { max-width: 95%; margin: 10px; }
  .modal-header { padding: 14px 18px; }
  .modal-header h3 { font-size: 18px; }
  
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ছোট মোবাইল (৩২০px - ৪৮০px) */
@media (max-width: 480px) {
  .hero-slider { height: 360px; }
  .slide-content h1 { font-size: 1.6rem; }
  .slide-content p { font-size: 0.8rem; margin-bottom: 14px; }
  .slide-tag { font-size: 10px; padding: 4px 12px; }
  .slide-btns .btn-primary,
  .slide-btns .btn-outline { padding: 8px 16px; font-size: 12px; min-width: 70px; }
  .slider-btn { width: 30px; height: 30px; font-size: 0.7rem; }
  .slider-btn.prev { left: 6px; }
  .slider-btn.next { right: 6px; }
  .slider-dots { bottom: 12px; gap: 6px; }
  .slider-dots .dot { width: 6px; height: 6px; }
  .slider-dots .dot.active { width: 18px; }

  .section { padding: 30px 0; }
  .section-header h2 { font-size: 24px; }

  .products-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .product-info { padding: 10px; }
  .product-info h3 { font-size: 12px; }
  .price-current { font-size: 15px; }
  .btn-order-now { font-size: 11px; padding: 8px; }

  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .category-card { padding: 16px 10px; }
  .cat-icon { font-size: 28px; }
  .category-card h3 { font-size: 13px; }

  .feature-item { flex-direction: column; text-align: center; gap: 6px; }
  .feature-item i { font-size: 22px; }

  .footer-top { padding: 30px 0; }

  .logo-text strong { font-size: 18px; }
  .logo-text em { font-size: 11px; }
  .logo-icon { font-size: 22px; }

  .btn-primary, .btn-outline { padding: 8px 16px; font-size: 12px; min-width: 60px; }

  .order-box { padding: 16px; }
  .order-box-header h3 { font-size: 18px; }

  .admin-card { margin-bottom: 16px; }
  .card-header { padding: 12px 14px; }
  .card-header h3 { font-size: 15px; }
  .btn-add { padding: 6px 14px; font-size: 12px; }
  
  .stats-grid { grid-template-columns: 1fr; }
}

/* খুব ছোট মোবাইল (যেমন: 320px) */
@media (max-width: 360px) {
  .hero-slider { height: 300px; }
  .slide-content h1 { font-size: 1.3rem; }
  .slide-content p { font-size: 0.7rem; }
  .slide-btns .btn-primary,
  .slide-btns .btn-outline { padding: 6px 12px; font-size: 10px; min-width: 60px; }
  .products-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 12px; }
}

/* প্রিন্ট স্টাইল */
@media print {
  .site-header, .site-footer, .whatsapp-float, .back-to-top, .slider-btn, .slider-dots { display: none !important; }
  .hero-slider { height: auto !important; }
  .slide { position: static !important; opacity: 1 !important; padding: 20px !important; }
  .slide-deco { display: none !important; }
}