/* ============================================================
   ASHOKGIFTS – Main Stylesheet
   ============================================================ */

:root {
  --primary: #e84393;
  --primary-dark: #c2286d;
  --primary-light: #fce4f1;
  --secondary: #f5a623;
  --accent: #8b5cf6;
  --dark: #1a1a2e;
  --dark-2: #16213e;
  --text: #2d2d2d;
  --text-muted: #6b7280;
  --bg: #f8f9fc;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.hidden {
  display: none !important;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 67, 147, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-top {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 0;
  font-size: 0.8rem;
}

.header-top .container {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.header-top span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-top i {
  color: var(--primary);
}

.navbar {
  background: var(--white);
  padding: 14px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

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

.logo-img {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
}

.logo-accent {
  color: var(--primary);
}

.search-bar {
  flex: 1;
  display: flex;
  max-width: 520px;
  border: 2px solid var(--border);
  border-radius: 50px;
  overflow: hidden;
  transition: var(--transition);
}

.search-bar:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(232, 67, 147, 0.1);
}

.search-bar input {
  flex: 1;
  padding: 11px 20px;
  border: none;
  outline: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
}

.search-bar button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0 20px;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
}

.search-bar button:hover {
  background: var(--primary-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  font-size: 0.9rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: var(--primary-light);
}

.nav-link.cart-btn {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--text);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 10px 0;
}

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

.mobile-menu a {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.mobile-menu a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

/* ===== HERO ===== */
.hero {
  min-height: 560px;
  overflow: hidden;
}

.hero-slide {
  min-height: 560px;
  display: flex;
  align-items: center;
  position: relative;
  padding: 60px 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  width: 100%;
}

/* Solo hero layout (text spans full if no visual) */
.hero-slide .container.hero-content {
  max-width: 1280px;
}

.hero-badge {
  display: inline-block;
  background: rgba(232, 67, 147, 0.2);
  color: #f9a8d4;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(232, 67, 147, 0.3);
  margin-bottom: 16px;
}

.hero-slide h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-slide h1 span {
  color: var(--secondary);
}

.hero-slide p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stats div {
  display: flex;
  flex-direction: column;
}

.hero-stats strong {
  font-size: 1.4rem;
  color: white;
  font-weight: 700;
}

.hero-stats span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.floating-cards {
  position: relative;
  width: 300px;
  height: 300px;
}

.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
  animation: floatAnim 4s ease-in-out infinite;
}

.float-card i {
  font-size: 1.5rem;
  color: var(--secondary);
}

.fc1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.fc2 {
  top: 5%;
  right: 5%;
  animation-delay: 1s;
}

.fc3 {
  bottom: 20%;
  left: 10%;
  animation-delay: 2s;
}

.fc4 {
  bottom: 5%;
  right: 10%;
  animation-delay: 0.5s;
}

@keyframes floatAnim {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* ===== SECTION ===== */
.section {
  padding: 70px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 42px;
  position: relative;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 10px;
  transition: var(--transition);
}

.view-all-link:hover {
  gap: 10px;
}

/* ===== CATEGORIES ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 20px;
}

.category-card {
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.category-card:hover::before {
  opacity: 0.08;
}

.cat-toys {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.cat-keychains {
  background: linear-gradient(135deg, #fce7f3, #fbcfe8);
}

.cat-lamps {
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
}

.cat-nameplates {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}

.cat-photo {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.cat-mugs {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
}

.cat-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.cat-toys .cat-icon {
  background: #f59e0b;
  color: white;
}

.cat-keychains .cat-icon {
  background: var(--primary);
  color: white;
}

.cat-lamps .cat-icon {
  background: var(--accent);
  color: white;
}

.cat-nameplates .cat-icon {
  background: #10b981;
  color: white;
}

.cat-photo .cat-icon {
  background: #3b82f6;
  color: white;
}

.cat-mugs .cat-icon {
  background: #ef4444;
  color: white;
}

.category-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

.category-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.cat-arrow {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: var(--transition);
  margin-top: 4px;
}

.category-card:hover .cat-arrow {
  background: white;
  color: var(--primary);
  transform: translateX(4px);
}

/* ===== PRODUCT CARDS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 22px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg);
}

.product-image .prod-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  transition: transform 0.4s ease;
}

.product-card:hover .prod-img-inner {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.badge-new {
  background: #10b981;
  color: white;
}

.badge-sale {
  background: var(--primary);
  color: white;
}

.badge-bestseller {
  background: var(--secondary);
  color: white;
}

.badge-hot {
  background: #ef4444;
  color: white;
}

.product-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover .product-actions {
  opacity: 1;
}

.action-btn {
  width: 36px;
  height: 36px;
  background: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.action-btn:hover {
  color: var(--primary);
  transform: scale(1.1);
}

.product-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-cat {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
}

.stars-filled {
  color: var(--secondary);
  letter-spacing: 1px;
}

.rating-count {
  color: var(--text-muted);
}

.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.price-current {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
}

.price-original {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-off {
  font-size: 0.78rem;
  font-weight: 700;
  color: #10b981;
}

.add-to-cart-btn {
  width: 100%;
  padding: 11px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.add-to-cart-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(232, 67, 147, 0.4);
}

/* LIST VIEW */
.products-grid.list-view {
  grid-template-columns: 1fr;
}

.products-grid.list-view .product-card {
  flex-direction: row;
  max-height: 180px;
}

.products-grid.list-view .product-image {
  width: 200px;
  flex-shrink: 0;
  aspect-ratio: unset;
  height: 180px;
}

.products-grid.list-view .product-body {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

.products-grid.list-view .product-name {
  font-size: 1.05rem;
  flex-basis: 100%;
}

.products-grid.list-view .add-to-cart-btn {
  width: auto;
  padding: 10px 22px;
  margin-left: auto;
}

/* ===== OFFER BANNER ===== */
.offer-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #0f3460 100%);
  padding: 60px 0;
  overflow: hidden;
}

.offer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.offer-text {
  max-width: 580px;
}

.offer-tag {
  display: inline-block;
  background: var(--secondary);
  color: white;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.offer-text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: white;
  font-weight: 800;
  margin-bottom: 12px;
}

.offer-text p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
}

.offer-text strong {
  color: var(--secondary);
}

.offer-icons {
  display: flex;
  gap: 16px;
}

.offer-icon-card {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--secondary);
  animation: floatAnim 3s ease-in-out infinite;
}

.offer-icon-card:nth-child(2) {
  animation-delay: 1s;
}

.offer-icon-card:nth-child(3) {
  animation-delay: 2s;
}

/* ===== FEATURES STRIP ===== */
.features-strip {
  background: var(--white);
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-item>i {
  font-size: 2rem;
  color: var(--primary);
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}

.feature-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.stars {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.testimonial-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.reviewer strong {
  display: block;
  font-size: 0.92rem;
  color: var(--dark);
}

.reviewer span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--dark), #0f3460);
  padding: 40px 0 36px;
  color: white;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: white;
}

.breadcrumb i {
  font-size: 0.7rem;
}

.page-hero h1 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 8px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== LEGAL ===== */
.legal-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.legal-content h2 {
  margin-top: 22px;
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
}

.legal-content h3 {
  margin-top: 14px;
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

.legal-content p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 18px;
  margin-bottom: 14px;
}

.legal-content li {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--primary);
  font-weight: 600;
}

.legal-content a:hover {
  color: var(--primary-dark);
}

/* ===== SHOP LAYOUT ===== */
.shop-section {
  padding: 40px 0 60px;
}

.shop-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 30px;
  align-items: start;
}

/* ===== FILTER SIDEBAR ===== */
.filter-sidebar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.filter-sidebar::-webkit-scrollbar {
  width: 4px;
}

.filter-sidebar::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}

.filter-header h3 {
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-header h3 i {
  color: var(--primary);
}

.clear-filters-btn {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
}

.clear-filters-btn:hover {
  color: var(--primary-dark);
}

.filter-group {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.filter-group:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.filter-group h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-search-wrap {
  position: relative;
}

.filter-search-wrap input {
  width: 100%;
  padding: 10px 36px 10px 14px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: var(--transition);
  color: var(--text);
}

.filter-search-wrap input:focus {
  border-color: var(--primary);
}

.filter-search-wrap i {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text);
  transition: var(--transition);
  padding: 4px 6px;
  border-radius: 6px;
}

.filter-checkbox:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.filter-checkbox input[type="checkbox"] {
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
}

.filter-count {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.price-range-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-range-wrap input[type="range"] {
  width: 100%;
  accent-color: var(--primary);
  height: 4px;
}

.price-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

.rating-filter {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rating-btn {
  padding: 8px 14px;
  border: 2px solid var(--border);
  border-radius: 8px;
  background: white;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  transition: var(--transition);
}

.rating-btn:hover,
.rating-btn.active {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary);
}

.tag-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-btn {
  padding: 6px 14px;
  border: 2px solid var(--border);
  border-radius: 50px;
  background: white;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}

.tag-btn:hover,
.tag-btn.active {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
}

/* ===== SHOP TOOLBAR ===== */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  padding: 14px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 12px;
}

.results-info {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.results-info span {
  font-weight: 700;
  color: var(--dark);
}

.toolbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.toolbar-right select {
  padding: 8px 14px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  outline: none;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
}

.toolbar-right select:focus {
  border-color: var(--primary);
}

.view-toggle {
  display: flex;
  gap: 4px;
}

.view-btn {
  width: 36px;
  height: 36px;
  border: 2px solid var(--border);
  border-radius: 8px;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
  font-size: 0.9rem;
}

.view-btn.active,
.view-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.mobile-filter-btn {
  display: none;
  padding: 8px 16px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  gap: 6px;
  align-items: center;
}

/* ===== ACTIVE FILTERS ===== */
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  min-height: 0;
}

.filter-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.filter-chip button {
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  font-size: 0.85rem;
  line-height: 1;
  padding: 0;
}

/* ===== NO RESULTS ===== */
.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.no-results i {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.4;
  display: block;
}

.no-results h3 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.no-results p {
  margin-bottom: 20px;
}

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.page-btn {
  width: 40px;
  height: 40px;
  border: 2px solid var(--border);
  border-radius: 8px;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
}

.page-btn:hover,
.page-btn.active {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--dark);
  color: white;
  padding: 14px 22px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  z-index: 9999;
  box-shadow: var(--shadow-lg);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast i {
  color: #10b981;
  font-size: 1.1rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 260px;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  color: white;
}

.footer-links h4 {
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.87rem;
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.5);
}

.payment-icons {
  display: flex;
  gap: 12px;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .shop-layout {
    grid-template-columns: 240px 1fr;
  }
}

@media (max-width: 768px) {
  .header-top .container {
    display: none;
  }

  .nav-inner {
    gap: 12px;
  }

  .search-bar {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {
    display: none;
  }

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

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

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

  .shop-layout {
    grid-template-columns: 1fr;
  }

  .filter-sidebar {
    position: fixed;
    left: -100%;
    top: 0;
    height: 100%;
    z-index: 2000;
    border-radius: 0;
    transition: left 0.3s ease;
    overflow-y: auto;
  }

  .filter-sidebar.mobile-open {
    left: 0;
  }

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

  .offer-inner {
    flex-direction: column;
    text-align: center;
  }

  .offer-icons {
    justify-content: center;
  }

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

  .products-grid.list-view .product-card {
    flex-direction: column;
    max-height: unset;
  }

  .products-grid.list-view .product-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
  }
}

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

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

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