@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg-body: #ffffff;
  --bg-card: #ffffff;
  --bg-header: rgba(255, 255, 255, 0.95);
  --border-subtle: #eaeaea;
  --text-main: #111111;
  --text-subtle: #737373;
  --primary: #000000;
  --primary-soft: rgba(0, 0, 0, 0.05);
  --primary-deep: #111111;
  --radius-lg: 16px;
  --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.05);
  --glass-border: 1px solid rgba(0, 0, 0, 0.08);
}

body {
  margin: 0;
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  background: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
}

a {
  color: var(--text-main);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */

.site-header {
  border-bottom: var(--glass-border);
  background: var(--bg-header);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
}

.logo a {
  font-weight: 100;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}

.site-logo {
  height: 90px;
  width: auto;
}

.nav a {
  margin-left: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-subtle);
}

.nav a:hover {
  background: var(--primary-soft);
  color: var(--text-main);
}

.nav a.active {
  background: var(--text-main);
  color: var(--bg-body);
}

.cart-link {
  border: 1px solid #d4d4d8;
}

.cart-link.active {
  border-color: var(--primary-deep);
}

.cart-count-pill {
  background: #ef4444;
  color: #ffffff;
  border-radius: 999px;
  padding: 0 0.45rem;
  font-size: 0.75rem;
  min-width: 18px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: 0.25rem;
}

.nav-auth-area {
  display: flex;
  align-items: center;
  margin-left: 1rem;
}

.nav-auth-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.04);
  padding: 6px 14px 6px 6px;
  border-radius: 100px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-auth-btn:hover {
  background: rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.nav-auth-btn-premium {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--text-main);
  color: #fff !important;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-auth-btn-premium:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.nav-auth-btn-premium i {
  font-size: 1.1rem;
}

.nav-auth-loading {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: navAuthSpin 0.8s linear infinite;
}

@keyframes navAuthSpin {
  to {
    transform: rotate(360deg);
  }
}

/* User Dropdown Menu */
.nav-user-dropdown-container {
  position: relative;
  display: inline-block;
}

.nav-user-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.nav-user-trigger:hover {
  background: var(--primary-soft);
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dropdown-icon {
  font-size: 0.7rem;
  color: var(--text-subtle);
  transition: transform 0.3s ease;
}

.nav-user-dropdown-container.is-open .dropdown-icon {
  transform: rotate(180deg);
}

.nav-profile-img-wrap {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary);
}

.nav-profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-placeholder {
  font-size: 1.6rem;
  color: var(--text-main);
}

.nav-user-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 240px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  padding: 0.8rem;
  display: none;
  z-index: 100;
  transform-origin: top right;
  animation: menuAppear 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes menuAppear {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.nav-user-dropdown-container.is-open .nav-user-menu {
  display: block;
}

.nav-user-menu-header {
  padding: 0.6rem 0.8rem;
}

.menu-user-name {
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0;
  color: var(--text-main);
}

.menu-user-email {
  font-size: 0.8rem;
  color: var(--text-subtle);
  margin: 2px 0 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.menu-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 0.6rem 0;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.7rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
  border-radius: 12px;
  transition: all 0.2s ease;
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  cursor: pointer;
}

.menu-item i {
  width: 18px;
  font-size: 1rem;
  color: var(--text-subtle);
}

.menu-item:hover {
  background: var(--primary-soft);
  text-decoration: none !important;
}

.menu-item:hover i {
  color: var(--text-main);
}

.logout-item {
  color: #ef4444;
}

.logout-item:hover {
  background: #fef2f2;
  color: #dc2626;
}

.logout-item:hover i {
  color: #dc2626;
}

.login-btn-pill {
  background: var(--text-main);
  color: var(--bg-body) !important;
  padding: 0.6rem 1.4rem !important;
  font-weight: 600 !important;
}

.login-btn-pill:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1024px) {
  .nav-text {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-user-dropdown-container {
    width: 100%;
    margin-top: 1rem;
  }

  .nav-user-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 0.8rem 1.2rem;
  }

  .nav-user-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
    background: var(--bg-soft);
    display: block;
    /* Always show in mobile nav if parent is open */
    padding: 0;
    margin-top: 0.5rem;
  }

  .nav-user-dropdown-container:not(.is-open) .nav-user-menu {
    display: none;
  }

  .nav-text {
    display: inline !important;
  }
}


/* Auth Page & Sections */
.auth-page {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}

.auth-section {
  width: 100%;
}

.auth-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 32px;
  padding: 4rem 3rem;
  max-width: 480px;
  width: 95%;
  margin: 0 auto;
  box-shadow:
    0 10px 30px -10px rgba(0, 0, 0, 0.1),
    0 40px 80px -20px rgba(0, 0, 0, 0.15);
  text-align: center;
}


.auth-card h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
  color: var(--text-main);
}

.auth-card .section-subtitle {
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
  color: #64748b;
}

.auth-card .form {
  text-align: left;
}

.auth-card .form-group {
  margin-bottom: 1.25rem;
}

.auth-card label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #1e293b;
}

.auth-card input {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  transition: all 0.2s ease;
  font-size: 1rem;
  font-family: inherit;
}

.auth-card input:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.auth-footer-text {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: #64748b;
}

.auth-footer-text a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.auth-footer-text a:hover {
  text-decoration: underline;
}

.btn-full {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
}

.btn-secondary {
  background: #fff;
  color: var(--text-main);
  border: 1px solid #e2e8f0;
  cursor: pointer;
}

.btn-secondary:hover {
  background: #f8fafc;
}

.auth-error {
  background: #fef2f2;
  color: #dc2626;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid #fee2e2;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1.5rem 0;
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 500;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #e2e8f0;
}

.auth-divider:not(:empty)::before {
  margin-right: .75em;
}

.auth-divider:not(:empty)::after {
  margin-left: .75em;
}

.auth-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Main wrapper */

.main {
  padding-bottom: 3rem;
}

/* HERO SLIDER */

.hero-slider {
  padding: 0;
  background: transparent;
  width: 100%;
  overflow: hidden;
}

.hero-slider .container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.slider {
  position: relative;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.slider-track {
  display: flex;
  transition: transform 0.6s ease;
}

.slide {
  min-width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 70vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Slide left styles (if needed for fallback) */
.slide-left h1 {
  font-size: clamp(2.1rem, 4vw, 2.8rem);
  margin: 0 0 0.75rem;
}

.slide-left p {
  margin: 0 0 1.5rem;
  color: var(--text-subtle);
  max-width: 420px;
}

.slide-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.badge {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
}

.badge-primary {
  background: #000000;
  color: #ffffff;
}

.slide-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.slide-right {
  justify-self: center;
}

.slide-hero-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #111827;
}

.slide-hero-img {
  display: block;
  width: 100%;
  max-width: 360px;
  height: 260px;
  object-fit: cover;
}

/* Slider controls */

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25);
}

.slider-btn.prev {
  left: 12px;
}

.slider-btn.next {
  right: 12px;
}

.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.35rem;
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.form-group input {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1.5px solid var(--border-subtle);
  background: #fff;
  transition: all 0.2s ease;
  font-size: 1rem;
}

.form-group input:focus {
  outline: none;
  border-color: var(--text-main);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.btn-primary.btn-full {
  padding: 1rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  margin-top: 1rem;
}

.btn-secondary.btn-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.8rem;
  border: 1.5px solid var(--border-subtle);
  background: transparent;
  color: var(--text-main);
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-secondary.btn-full:hover {
  background: var(--bg-soft);
  border-color: var(--text-main);
}


.auth-card h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--text-main) 0%, #475569 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.auth-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.2);
  cursor: pointer;
  transition: all 0.2s ease;
}

.slider-dot.active {
  width: 22px;
  background: var(--primary-deep);
}

/* PAGE HERO (inner banners) */

.page-hero {
  padding: 2.4rem 0 2rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 1rem;
}

.page-hero-title {
  margin: 0 0 0.3rem;
  font-size: 1.7rem;
}

.page-hero-subtitle {
  margin: 0;
  color: var(--text-subtle);
  font-size: 0.9rem;
}

.page-hero-shop {
  background: linear-gradient(135deg, #eef2ff, #f1f5f9);
}

.page-hero-contact {
  background: linear-gradient(135deg, #f5f3ff, #e0f2fe);
}

.page-hero-checkout {
  background: linear-gradient(135deg, #ecfdf3, #eef2ff);
}

.page-hero-success {
  background: linear-gradient(135deg, #dcfce7, #dbeafe);
}

/* Sections */

.section {
  padding: 4.5rem 0 0;
  background-color: transparent;
}

.section-header {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-header h2,
.section-header h1 {
  margin: 0 0 0.3rem;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.section-subtitle {
  margin: 0;
  color: #64748b;
  font-size: 0.9rem;
}

.link-inline {
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 600;
  transition: color 0.2s ease;
}

.link-inline:hover {
  text-decoration: underline;
}

/* Info strip */

.info-strip {
  padding: 4rem 0 2rem;
  background-color: transparent;
  margin-bottom: 20px;
}

.info-strip-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
  padding-bottom: 30px;
  /* margin-bottom: 0px; */
}

.info-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 999px;
  background: #1e293b;
  border: 1px solid #334155;
  padding: 0.7rem 1rem;
}

.info-emoji {
  font-size: 1.3rem;
}

.info-title {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #f8fafc;
}

.info-sub {
  margin: 0;
  font-size: 0.8rem;
  color: #94a3b8;
}

/* Cards / Products */

.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

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

.product-card {
  border-radius: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 0;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.product-image-link {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: #f5f5f5;
}

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

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

.product-info {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card h3 {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.product-card .category {
  font-size: 0.8rem;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.product-card .price {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-main);
  margin: 0.5rem 0 0.4rem;
}

.product-card .desc {
  font-size: 0.85rem;
  color: var(--text-subtle);
  min-height: 2.4em;
  margin: 0 0 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.add-to-cart-form {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.add-to-cart-form input[type="number"] {
  width: 64px;
  padding: 0.4rem 0.5rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  text-align: center;
  font-weight: 600;
}

/* Buttons */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--text-main);
  color: var(--bg-body);
  border: 1px solid var(--text-main);
}

.btn-primary:hover {
  background: transparent;
  color: var(--text-main);
}

.btn-secondary {
  background: #f5f5f5;
  color: var(--text-main);
  border: 1px solid #eaeaea;
}

.btn-secondary:hover {
  background: #e2e2e2;
  border-color: #d4d4d4;
}

.btn-sm {
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
}

.btn-full {
  width: 100%;
}

/* Toast */

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #111827;
  color: #f9fafb;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.5);
  font-size: 0.85rem;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 50;
}

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

/* Forms */

.form {
  max-width: 100%;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.86rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border-radius: 0.9rem;
  border: 1px solid var(--border-subtle);
  background: #f9fafb;
  font-size: 0.9rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.1);
}

.inline-input {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.helper-text {
  margin: 0.25rem 0 0;
  font-size: 0.78rem;
  color: var(--text-subtle);
}

.alert-success {
  background: #ecfdf3;
  border: 1px solid #22c55e;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  display: none;
}

/* Checkout layout */

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.6rem;
  margin-top: 1.2rem;
}

.cart-summary {
  padding: 1.1rem 1.2rem;
}

.cart-summary h2,
.checkout-card h2 {
  margin-top: 0;
  margin-bottom: 0.9rem;
}

.cart-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.9rem 0;
}

.cart-item {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
}

.cart-item img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  object-fit: cover;
  background: #e5e7eb;
}

.cart-item h3 {
  margin: 0 0 0.1rem;
  font-size: 0.9rem;
}

.cart-item p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-subtle);
}

.cart-item-actions {
  margin-top: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.cart-qty-btn {
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: #f3f4f6;
  padding: 0.1rem 0.55rem;
  font-size: 0.78rem;
  cursor: pointer;
}

.cart-qty-btn:hover {
  background: #e5e7eb;
}

.cart-qty {
  font-size: 0.8rem;
}

.cart-remove {
  border-radius: 999px;
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #b91c1c;
  padding: 0.18rem 0.65rem;
  font-size: 0.78rem;
  cursor: pointer;
}

.cart-remove:hover {
  background: #fee2e2;
}

.cart-total {
  font-size: 1rem;
  margin-top: 0.4rem;
}

.checkout-card {
  padding: 1.1rem 1.2rem;
}

.small-note {
  font-size: 0.78rem;
  color: var(--text-subtle);
  margin-top: 0.35rem;
}

.empty-cart-message {
  font-size: 0.9rem;
  color: var(--text-subtle);
}

/* Order success page */

.success-card {
  max-width: 520px;
  margin: 1.5rem auto 0;
  padding: 1.5rem 1.6rem 1.7rem;
}

.success-icon {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}

.success-details {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-subtle);
}

.success-details p {
  margin: 0.15rem 0;
}

.success-actions {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* Contact */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.8rem;
  align-items: flex-start;
}

.contact-copy h1 {
  margin-top: 0;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--text-subtle);
}

.contact-list li+li {
  margin-top: 0.3rem;
}

.contact-card {
  padding: 1.2rem 1.3rem;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--border-subtle);
  background: #ffffff;
  padding: 1.2rem 0;
  margin-top: 2.5rem;
}

.footer-inner {
  font-size: 0.82rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 1fr)) minmax(0, 1.2fr);
  gap: 1.4rem;
  align-items: flex-start;
}

.footer-logo {
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.3rem;
}

.footer-sub {
  margin: 0;
  color: var(--text-subtle);
}

.footer-col-title {
  margin: 0 0 0.3rem;
  font-weight: 600;
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-links a {
  color: var(--text-subtle);
  font-size: 0.82rem;
}

/* Responsive */

@media (max-width: 900px) {
  .slide-full-content {
    max-width: 100%;
    padding: 1.5rem 2rem;
  }

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

/* @media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .nav a {
    margin-left: 0.3rem;
  }

  .slider {
    border-radius: 20px;
  }

  .slider-btn {
    display: none;
  }

  .section {
    padding-top: 1.7rem;
  }

  .checkout-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .slide-full-content {
    padding: 1rem;
  }

  .product-card img {
    height: auto;
  }
}

/* ================================
   MOBILE NAV (OFF-CANVAS DRAWER)
   Desktop remains unchanged
================================ */

@media (max-width: 768px) {

  /* Prevent swipe-back gesture from opening nav */
  body {
    touch-action: pan-y;
  }

  /* Disable scrolling when nav is open */
  body.nav-open {
    overflow: hidden;
  }

  /* Header stays sticky */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1010;
    background: var(--bg-header);
  }

  .header-inner {
    padding: 0.6rem 0;
  }

  /* Mobile Navigation Drawer - Matching DigiFashion */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    padding: 5rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    overflow-y: auto;
    touch-action: pan-y;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  }

  /* Show nav when opened - slides in from right */
  body.nav-open .nav {
    right: 0;
  }

  /* Overlay that appears behind nav */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
  }

  body.nav-open .nav-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Nav links styling (drawer) */
  .nav a {
    margin: 0;
    font-size: 1.1rem;
    padding: 0.9rem 1.25rem;
    border-radius: 12px;
    color: #1f2937;
    transition: all 0.2s ease;
    display: block;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    z-index: 10;
    cursor: pointer;
  }

  .nav a:hover {
    background: #f1f5f9;
  }

  .nav a.active {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
    border-left: 4px solid #f97316;
    border-radius: 4px 12px 12px 4px;
  }

  /* Cart button inside drawer */
  .cart-link {
    margin-top: auto;
    padding: 0.75rem 1rem !important;
    border: 1px solid #e2e8f0;
    color: #1f2937;
    border-radius: 8px;
  }

  .cart-link:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
  }

  .cart-count-pill {
    background: #ef4444;
    color: #ffffff;
  }

  /* Logo size for mobile */
  .site-logo {
    height: 56px;
  }

  /* Hamburger toggle visible only on mobile */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    margin-left: auto;
    z-index: 1002;
  }

  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text-main);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    margin: 3px 0;
  }

  /* Close button inside nav drawer - hidden because nav-toggle handles it */
  .nav-close {
    display: none;
  }

  .nav-close:hover {
    color: #ef4444;
  }

  /* Hamburger to X animation */
  body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* ================================
   DESKTOP SAFETY - RESTORE NAV
================================ */

@media (min-width: 769px) {

  /* Show nav normally on desktop */
  .nav {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 0;
    transition: none;
    right: auto;
    z-index: auto;
    overflow: visible;
  }

  /* Restore desktop nav link styles */
  .nav a {
    margin-left: 1rem;
    font-size: 0.95rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    color: var(--text-main);
  }

  .nav a:hover {
    background: #e5e7eb;
  }

  .nav a.active {
    background: var(--primary-soft);
    color: var(--primary-deep);
  }

  .cart-link {
    border: 1px solid #d4d4d8;
    color: var(--text-main);
  }

  .cart-link:hover {
    background: #e5e7eb;
  }

  .nav-overlay {
    display: none;
  }

  .nav-toggle {
    display: none;
  }

  .nav-close {
    display: none;
  }
}


/* ===== ECOMMERCE FOOTER (OVERRIDE) ===== */

.site-footer {
  border-top: none;
  background: #020617;
  padding: 2.5rem 0 2.8rem;
  margin-top: 3rem;
  color: #e5e7eb;
}

.footer-inner {
  font-size: 0.85rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: 2rem;
  align-items: flex-start;
}

.footer-logo {
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  color: #f9fafb;
}

.footer-sub {
  margin: 0;
  color: #9ca3af;
}

.footer-col-title {
  margin: 0 0 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-links a {
  color: #9ca3af;
  font-size: 0.83rem;
}

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

.footer-newsletter {
  margin-top: 1rem;
}

.footer-newsletter label {
  display: block;
  font-size: 0.82rem;
  color: #e5e7eb;
  margin-bottom: 0.35rem;
}

.footer-newsletter-row {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.35rem;
}

.footer-newsletter-row input {
  flex: 1;
  padding: 0.5rem 0.65rem;
  border-radius: 999px;
  border: 1px solid #4b5563;
  background: #020617;
  color: #e5e7eb;
  font-size: 0.85rem;
}

.footer-newsletter-row input::placeholder {
  color: #6b7280;
}

.footer-newsletter-row button {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: none;
  background: #f97316;
  color: #111827;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
}

.footer-newsletter-row button:hover {
  background: #fb923c;
}

.footer-newsletter-note {
  margin: 0;
  font-size: 0.76rem;
  color: #6b7280;
}

.footer-demo-note {
  margin-top: 0.8rem;
}

@media (max-width: 900px) {
  .footer-columns {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }
}

/* ===== FULL-WIDTH HERO SLIDER UPGRADE ===== */
.hero-slider {
  padding: 0;
}

/* CART PAGE REFINEMENT */
.cart-page {
  background: #f5f5f7;
}

.cart-page-title {
  text-align: center;
  margin: 0 0 1.6rem;
  font-size: 1.8rem;
  font-weight: 600;
}

.cart-summary,
.checkout-card {
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
  border: 1px solid #e5e7eb;
}

.cart-summary {
  padding: 1.4rem 1.6rem;
}

.checkout-card {
  padding: 1.4rem 1.6rem;
}

.cart-item {
  align-items: center;
}

.cart-item img {
  width: 70px;
  height: 70px;
  border-radius: 14px;
}

.cart-item h3 {
  font-size: 0.95rem;
}

.cart-item-actions {
  margin-top: 0.4rem;
}

.cart-total {
  font-size: 1.05rem;
  font-weight: 600;
}

.btn-primary.btn-full {
  font-size: 0.95rem;
  font-weight: 600;
}

/* FOOTER REDESIGN */
.site-footer {
  border-top: none;
  background: #1f2933;
  padding: 2.6rem 0 2.4rem;
  margin-top: 3rem;
  color: #e5e7eb;
}

.footer-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.2rem;
  align-items: flex-start;
}

.footer-logo-mark {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #f97316, #facc15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #111827;
  font-size: 1rem;
}

.footer-logo-title {
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
}

.footer-logo-sub {
  margin: 0;
  font-size: 0.8rem;
  color: #9ca3af;
}

.footer-sub {
  margin: 0.2rem 0;
  color: #9ca3af;
  font-size: 0.84rem;
}

.footer-support-link {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.82rem;
  color: #fbbf24;
}

.footer-support-link:hover {
  color: #facc15;
}

.footer-col-title {
  margin: 0 0 0.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #e5e7eb;
}

.footer-links a {
  color: #cbd5f5;
  font-size: 0.84rem;
}

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

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.84rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
  color: #e5e7eb;
}

.footer-contact-list i {
  margin-top: 0.15rem;
}

.footer-contact-list a {
  color: #e5e7eb;
}

.footer-contact-list a:hover {
  color: #fbbf24;
}

.footer-social-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.footer-social-row a {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
  font-size: 0.85rem;
}

.footer-social-row a:hover {
  background: #fbbf24;
  color: #111827;
}

.footer-demo-note {
  margin-top: 0.6rem;
}

@media (max-width: 900px) {
  .footer-columns {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .cart-page-title {
    font-size: 1.5rem;
  }
}

/* CART PAGE LIKE REFERENCE UI */
.cart-page {
  background: #f4f0e9;
}

.cart-page-title {
  text-align: left;
  font-size: 1.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 1.4rem;
}

/* Main layout already using .checkout-layout: keep it, just tweak gaps */
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: flex-start;
}

/* Cart card similar to mock */
.cart-summary {
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.06);
  padding: 1.4rem 1.5rem;
}

.cart-summary h2 {
  margin-top: 0;
  margin-bottom: 0.9rem;
  font-size: 1.1rem;
}

/* List container style */
.cart-list {
  margin: 0;
  padding: 0;
}

/* Cart item row */
.cart-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  padding: 0.9rem 0.3rem;
  border-radius: 16px;
  align-items: center;
}

.cart-item+.cart-item {
  border-top: 1px solid #e5e7eb;
}

.cart-item img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: contain;
  background: #f3f4f6;
}

.cart-item-main h3 {
  margin: 0 0 0.15rem;
  font-size: 0.98rem;
}

.cart-item-meta {
  margin: 0;
  font-size: 0.8rem;
  color: #6b7280;
}

.cart-item-bottom {
  margin-top: 0.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-item-line-total {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Qty controls like pill */
.cart-item-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: #f3f4f6;
}

.cart-qty-btn {
  border: none;
  background: transparent;
  font-size: 0.9rem;
  cursor: pointer;
}

.cart-qty {
  font-size: 0.85rem;
}

/* Remove icon */
.cart-remove {
  border-radius: 999px;
  border: none;
  background: transparent;
  color: #ef4444;
  cursor: pointer;
  font-size: 1rem;
}

/* Total label */
.cart-total {
  margin-top: 1.1rem;
  text-align: right;
  font-size: 0.95rem;
}

.cart-total strong {
  font-size: 1.1rem;
}

/* Order summary card like mock */
.checkout-card {
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.06);
  padding: 1.4rem 1.5rem 1.6rem;
}

.summary-title {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.summary-rows {
  border-radius: 16px;
  background: #f9fafb;
  padding: 0.9rem 0.9rem 0.7rem;
  margin-bottom: 0.9rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.summary-row span:last-child {
  font-weight: 500;
}

.summary-row:nth-child(2) span:last-child {
  color: #ef4444;
}

.summary-total {
  margin-top: 0.4rem;
  padding-top: 0.4rem;
  border-top: 1px solid #e5e7eb;
  font-weight: 600;
}

.summary-total span:last-child {
  font-size: 1rem;
}

/* Promo form style */
.promo-form {
  margin: 0 0 0.9rem;
}

.promo-input-wrap {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.3rem;
}

.promo-input-wrap input {
  flex: 1;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #d4d4d8;
  font-size: 0.85rem;
}

.promo-input-wrap button {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: none;
  background: #0f172a;
  color: #f9fafb;
  font-size: 0.85rem;
  cursor: pointer;
}

.promo-input-wrap button:hover {
  background: #020617;
}

.promo-help {
  margin: 0;
  font-size: 0.78rem;
  color: #6b7280;
}

.divider-soft {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 0.9rem 0 0.9rem;
}

.checkout-subtitle {
  margin: 0 0 0.7rem;
  font-size: 0.95rem;
}

/* Responsive tweaks for cart layout */
@media (max-width: 768px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .cart-page-title {
    text-align: center;
  }

  .cart-item {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }

  .cart-remove {
    grid-column: 2 / 3;
    justify-self: flex-end;
  }
}

/* TREND STYLE FOOTER */
.footer-trend {
  background: linear-gradient(180deg, #111, #0a0a0a);
  position: relative;
  padding: 3.5rem 0 5rem;
  color: #fff;
  overflow: hidden;
}

.footer-trend-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
}

.footer-trend-left h2 {
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.3;
}

.footer-newsletter {
  margin: 1rem 0 1.2rem;
  display: flex;
  gap: 0.5rem;
}

.footer-newsletter input {
  flex: 1;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: none;
}

.footer-newsletter button {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #9efc67;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
}

.footer-social-pills span {
  display: inline-block;
  background: #222;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  margin-right: 0.4rem;
}

.footer-trend-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-trend-links h4 {
  margin-bottom: 0.6rem;
}

.footer-trend-links a {
  display: block;
  color: #bbb;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

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

.footer-bg-text {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 7rem;
  font-weight: 800;
  opacity: 0.05;
  padding-left: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-trend-inner {
    grid-template-columns: 1fr;
  }

  .footer-bg-text {
    font-size: 4rem;
  }
}

/* SHOP PAGE REDESIGN */
.shop-hero {
  padding: 1.5rem 0 1.2rem;
}

.shop-hero .container {
  max-width: 1180px;
}

.shop-hero-inner {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-radius: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  padding: 2rem 2.5rem;
}

.shop-hero-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0f172a;
}

.shop-hero-text h1 {
  margin: 0 0 0.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #0f172a;
}

.shop-hero-copy {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.5;
}

.shop-hero-media img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

/* Shop layout body */
.shop-body {
  padding: 0.8rem 0 0;
}

.shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 2.1fr);
  gap: 1.6rem;
  align-items: flex-start;
}

.shop-filters {
  background: #ffffff;
  border-radius: 18px;
  padding: 1rem 1rem 1.2rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.04);
  font-size: 0.85rem;
}

.shop-filter-header {
  margin-bottom: 0.75rem;
}

.shop-count {
  margin: 0;
  font-size: 0.85rem;
  color: #6b7280;
}

.shop-filter-group+.shop-filter-group {
  margin-top: 0.8rem;
}

.shop-filter-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  padding: 0.25rem 0;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
}

.shop-filter-body {
  margin-top: 0.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.shop-filter-body label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #4b5563;
}

/* Products side */
.shop-products {
  background: transparent;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 0.9rem;
  gap: 1rem;
}

.shop-toolbar-title {
  margin: 0;
  font-weight: 600;
}

.shop-toolbar-sub {
  margin: 0.1rem 0 0;
  font-size: 0.85rem;
  color: #6b7280;
}

.shop-toolbar-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.86rem;
}

#sort-select {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  font-size: 0.85rem;
}

/* 3-column grid */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

/* Responsive for shop layout */
@media (max-width: 1024px) {
  .shop-layout {
    grid-template-columns: minmax(0, 1fr);
  }

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

@media (max-width: 768px) {
  .shop-hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .shop-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* DIGI FASHION FOOTER (REFINED) */
.df-footer {
  background: #111827;
  border-top: 1px solid #1f2937;
  padding: 2.4rem 0 2.1rem;
  color: #e5e7eb;
  font-size: 0.85rem;
}

.df-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr) minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: 2.2rem;
  align-items: flex-start;
}

.df-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.df-footer-logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: #111827;
}

.df-footer-logo-title {
  margin: 0;
  font-weight: 600;
  font-size: 0.98rem;
}

.df-footer-logo-sub {
  margin: 0;
  font-size: 0.78rem;
  color: #9ca3af;
}

.df-footer-text {
  margin: 0 0 0.4rem;
  color: #9ca3af;
}

.df-footer-support {
  font-size: 0.8rem;
  color: #fbbf24;
}

.df-footer-support:hover {
  color: #facc15;
}

.df-footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.df-footer-heading {
  margin: 0 0 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.df-footer-col a {
  color: #cbd5f5;
  font-size: 0.84rem;
}

.df-footer-col a:hover {
  color: #fff;
}

.df-footer-line {
  margin: 0 0 0.3rem;
  color: #e5e7eb;
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
}

.df-footer-line i {
  margin-top: 0.15rem;
}

.df-footer-line a {
  color: #e5e7eb;
}

.df-footer-line a:hover {
  color: #fbbf24;
}

.df-footer-social-row {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
}

.df-footer-social-row a {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #020617;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
  font-size: 0.82rem;
}

.df-footer-social-row a:hover {
  background: #fbbf24;
  color: #111827;
}

.df-footer-meta {
  margin: 0;
  color: #9ca3af;
  font-size: 0.8rem;
}

/* Responsive footer layout */
@media (max-width: 960px) {
  .df-footer-inner {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
  }
}

@media (max-width: 640px) {
  .df-footer-inner {
    grid-template-columns: 1fr;
  }
}

/* Modern product card styling */
.product-card {
  border-radius: 0;
  padding: 1rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  border: 1px solid #e5e7eb;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.product-card img {
  border-radius: 0;
  margin-bottom: 0.6rem;
}

.product-card .category {
  font-size: 0.8rem;
  color: #6b7280;
  margin: 0 0 0.25rem;
}

.product-card .price {
  font-weight: 600;
  margin: 0 0 0.25rem;
}

.product-card .desc {
  font-size: 0.82rem;
  color: #6b7280;
  margin-bottom: 0.7rem;
}

.product-card .add-to-cart-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-card .add-to-cart-form input[type="number"] {
  width: 56px;
  padding: 0.35rem 0.3rem;
  border-radius: 999px;
}

.product-card .add-to-cart-form button {
  flex: 1;
}

/* Modern CTA button */
.product-card .btn-secondary {
  background: var(--primary);
  border-color: var(--primary);
  color: #f9fafb;
  font-weight: 500;
}

.product-card .btn-secondary:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* CONTACT PAGE ENHANCEMENTS */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 1.8rem;
  align-items: flex-start;
}

.contact-copy {
  background: #f3f4f6;
  border-radius: 18px;
  padding: 1.4rem 1.5rem;
}

.contact-copy h2 {
  margin-top: 0;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
  font-size: 0.88rem;
}

.contact-list li+li {
  margin-top: 0.25rem;
}

.contact-card {
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
  border: 1px solid #e5e7eb;
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ===== HERO SLIDE CONTENT STYLES ===== */

/* Full background hero slide */
.slide-full {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  min-height: 80vh;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  z-index: 1;
}

.slide-full-content {
  position: relative;
  z-index: 2;
  padding: 2rem 3rem;
  max-width: 650px;
  color: #ffffff;
  margin-left: 6%;
  animation: slideFadeIn 0.7s ease-out forwards;
}

@keyframes slideFadeIn {
  from { opacity: 0; transform: translateX(-24px); }
  to { opacity: 1; transform: translateX(0); }
}

.slide-tagline {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.slide-cta-btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: #ffffff;
  color: #111827;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  text-transform: uppercase;
}

.slide-cta-btn:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}

/* Slider nav dots & buttons */
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.slider-dot.active {
  background: #ffffff;
  transform: scale(1.3);
}

.slider-btn-prev,
.slider-btn-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}

.slider-btn-prev { left: 1.2rem; }
.slider-btn-next { right: 1.2rem; }

.slider-btn-prev:hover,
.slider-btn-next:hover {
  background: rgba(255,255,255,0.3);
}

/* === RESPONSIVE HERO === */
@media (max-width: 768px) {
  .slide-full {
    min-height: 55vw;
    min-height: min(55vw, 480px);
    align-items: flex-end;
    justify-content: center;
  }

  .slide-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
  }

  .slide-full-content {
    margin-left: 0;
    text-align: center;
    padding: 1.5rem 1.25rem 2rem;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .slide-tagline {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
    margin-bottom: 1.25rem;
  }

  .slide-cta-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.88rem;
  }

  .slider-btn-prev,
  .slider-btn-next {
    display: none;
  }
}

@media (max-width: 480px) {
  .slide-full {
    min-height: 70vw;
    min-height: min(70vw, 400px);
  }

  .slide-tagline {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}


/* FULL WIDTH CTA BANNER - SHOP */
.shop-cta-banner {
  position: relative;
  width: 100%;
  height: 380px;
  background: url('https://images.unsplash.com/photo-1445205170230-053b83016050?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.shop-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 6, 8, 0.9), rgba(192, 132, 252, 0.2));
  backdrop-filter: blur(5px);
}

.shop-cta-content {
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 700px;
  padding: 1rem;
}

.shop-cta-content h1 {
  font-size: 2.4rem;
  margin: 0 0 0.6rem;
}

.shop-cta-content p {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: #e5e7eb;
}

.shop-cta-btn {
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .shop-cta-banner {
    height: 280px;
  }

  .shop-cta-content h1 {
    font-size: 1.6rem;
  }
}

/* EMPTY CART STATE */
.empty-cart-message {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.empty-cart-card {
  background: #fefaf5;
  border-radius: 18px;
  padding: 1.8rem 2rem;
  max-width: 520px;
  text-align: center;
  border: 1px solid #f3e7d9;
  box-shadow: 0 18px 40px rgba(148, 113, 61, 0.15);
}

.empty-cart-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  margin: 0 auto 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f97316;
  color: #111827;
  font-size: 1.3rem;
}

.empty-cart-card h2 {
  margin: 0 0 0.4rem;
  font-size: 1.4rem;
}

.empty-cart-card p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: #6b7280;
}

.empty-cart-btn {
  display: inline-block;
  padding-inline: 1.6rem;
}

/* Product detail page */
.product-detail-section {
  padding: 1.2rem 0 2.5rem;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: 1.8rem;
  align-items: flex-start;
}

.product-detail-image img,
.full-cover-img {
  width: 100%;
  border-radius: 12px;
  background: #f5f5f5;
  aspect-ratio: 4/5;
  max-height: 700px;
  object-fit: cover;
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-subtle);
  margin-bottom: 1.5rem;
  padding: 0.5rem 0;
}

.product-breadcrumb a {
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.2s;
}

.product-breadcrumb a:hover {
  color: var(--primary);
}

.product-breadcrumb span {
  opacity: 0.7;
}

@media (max-width: 480px) {
  .product-breadcrumb {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    gap: 0.8rem;
    scrollbar-width: none;
    padding-bottom: 10px;
    margin-bottom: 1rem;
  }

  .product-breadcrumb::-webkit-scrollbar {
    display: none;
  }

  .product-breadcrumb span {
    flex-shrink: 0;
  }
}

.product-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.product-breadcrumb a:hover {
  text-decoration: underline;
}

.product-detail-title {
  font-size: 1.45rem;
  margin: 0 0 0.2rem;
}

.product-detail-meta {
  font-size: 0.85rem;
  color: var(--text-subtle);
  margin-bottom: 0.8rem;
}

.product-detail-price {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.product-detail-desc {
  font-size: 0.9rem;
  color: var(--text-subtle);
  margin-bottom: 1rem;
}

.product-detail-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.86rem;
  margin-right: 0.7rem;
}

.product-detail-info .add-to-cart-form {
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .product-detail-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Home product sections (reference-matched style, home only) */
.home-products-section {
  background: #f8fafc;
  padding-top: 2.5rem;
}

.home-products-section .section-header {
  margin-bottom: 1.35rem;
}

.home-products-section .section-header h2 {
  color: #1f2937;
}

.home-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.home-product-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.home-product-image-link {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f8fafc;
}

.home-product-image-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.home-product-card:hover .home-product-image-link img {
  transform: scale(1.05);
}

.home-product-copy {
  padding: 1rem;
}

.home-product-title {
  margin: 0 0 0.3rem;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
  color: #1f2937;
}

.home-product-title-link {
  color: inherit;
  text-decoration: none;
}

.home-product-title-link:hover {
  text-decoration: underline;
}

.home-product-price {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
}

.home-product-badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  padding: 0.3rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: #f97316;
  border-radius: 999px;
  z-index: 2;
}

.home-featured-cta-wrap {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.home-featured-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0f172a;
  border-radius: 999px;
  padding: 0.6rem 1.5rem;
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.home-featured-cta:hover {
  background: #0f172a;
  color: #ffffff;
}

.home-category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
}

.home-category-chip {
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #475569;
}

.home-category-chip.is-active {
  background: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
}

.home-category-chip:hover:not(.is-active) {
  border-color: #0f172a;
  color: #0f172a;
}

@media (max-width: 1024px) {
  .home-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .home-products-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .home-products-section .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Product detail page - modern layout */
.product-detail-page {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.product-crumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin: 1.5rem 0;
  padding: 0.5rem 0;
  color: var(--text-subtle);
}

.product-crumbs a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
}

.product-crumbs a:hover {
  color: var(--primary);
}

.product-crumbs span {
  display: flex;
  align-items: center;
  opacity: 0.5;
}

@media (max-width: 600px) {
  .product-crumbs {
    font-size: 0.75rem;
    gap: 0.4rem;
    margin: 1rem 0;
  }

  /* Show only home and current on very small screens to avoid crowding */
  .product-crumbs a:not(:first-child):not(:last-child) {
    display: none;
  }

  .product-crumbs span:nth-of-type(1) {
    display: none;
  }
}


.product-crumbs a {
  color: var(--text-subtle);
  text-decoration: none;
}

.product-crumbs a:hover {
  text-decoration: underline;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

.product-detail-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.product-detail-main-image {
  border-radius: 20px;
  background: #e5e7eb;
  overflow: hidden;
}

.product-detail-main-image img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 520px;
}

.product-detail-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
}

.product-detail-thumb {
  border-radius: 14px;
  padding: 0;
  border: 2px solid transparent;
  background: transparent;
  overflow: hidden;
  cursor: pointer;
}

.product-detail-thumb img {
  display: block;
  width: 100%;
  height: 90px;
  object-fit: cover;
}

.product-detail-thumb.is-active {
  border-color: var(--primary);
}

.product-detail-info-pane {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.product-detail-title {
  font-size: 1.6rem;
  margin: 0;
}

.product-detail-price-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
}

.product-detail-price {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0;
}

.product-detail-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--text-subtle);
}

.rating-stars {
  display: inline-flex;
  gap: 0.1rem;
}

.rating-stars i {
  font-size: 0.8rem;
  color: #facc15;
}

.rating-score {
  font-weight: 500;
  color: var(--text-main);
}

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

.product-detail-short-desc {
  font-size: 0.9rem;
  color: var(--text-subtle);
  max-width: 36rem;
}

.product-detail-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.product-detail-meta-block {
  min-width: 180px;
}

.meta-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-subtle);
  margin-bottom: 0.4rem;
}

.detail-size-options {
  display: flex;
  gap: 0.4rem;
}

.size-pill {
  min-width: 38px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
}

.size-pill.is-active {
  background: var(--text-main);
  color: #ffffff;
  border-color: var(--text-main);
}

.detail-color-options {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.color-dot {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.color-inner {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.color-dot.is-active {
  border-color: var(--primary);
}

.product-detail-low-stock {
  font-size: 0.84rem;
  color: #b91c1c;
}

.product-detail-low-stock span {
  font-weight: 600;
}

.product-detail-cart-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-top: 0.2rem;
}

.detail-qty-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.qty-input-shell {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
}

.qty-input-shell input[type="number"] {
  width: 58px;
  border: none;
  text-align: center;
  padding: 0.3rem 0.2rem;
  font-size: 0.9rem;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: #f3f4f6;
  cursor: pointer;
  font-size: 1rem;
}

.btn-add-detail {
  min-width: 150px;
  height: 40px;
  border-radius: 999px;
}

.product-detail-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.3rem;
}

.detail-tab {
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  padding: 0.45rem 0.9rem;
  font-size: 0.8rem;
  cursor: pointer;
}

.detail-tab.is-active {
  border-color: var(--primary);
  background: var(--primary-soft);
}

.badge-number {
  font-size: 0.78rem;
  margin-left: 0.25rem;
}

.tab-content {
  display: none;
  margin-top: 1.5rem;
  animation: fadeIn 0.3s ease;
}

.tab-content.is-active {
  display: block;
}

.product-specs {
  display: grid;
  gap: 0.75rem;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.spec-label {
  font-weight: 500;
  color: var(--text-muted);
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.review-item {
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1.5rem;
}

.review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.review-name {
  font-weight: 600;
}

.review-stars {
  color: #fbbf24;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .product-detail-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Policy pages */
.policy-wrapper {
  padding: 1.5rem 0 2.5rem;
}



.policy-section+.policy-section {
  margin-top: 1.4rem;
}

.policy-section h2 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.policy-section p {
  font-size: 0.88rem;
  color: var(--text-subtle);
  line-height: 1.6;
}

/* CTA Strip */
.cta-strip {
  margin-top: 2rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #ffffff;
}

footer.site-footer.df-footer.mt-0 {
  margin: 0px;
}

.cta-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  gap: 1rem;
}

.cta-strip-content h2 {
  margin: 0;
  font-size: 1.4rem;
}

.cta-strip-content p {
  margin: 0.3rem 0 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* About page */
.about-body {
  padding: 1.6rem 0 2.6rem;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.about-copy h2 {
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
}

.about-copy p {
  font-size: 0.9rem;
  color: var(--text-subtle);
  line-height: 1.6;
}

.about-copy p+p {
  margin-top: 0.5rem;
}

.about-points {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.about-point {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.about-point i {
  margin-top: 0.15rem;
  font-size: 1rem;
  color: var(--primary);
}

.about-point-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.about-point-text {
  font-size: 0.84rem;
  color: var(--text-subtle);
}

.about-media {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.about-main-card {
  border-radius: 22px;
  overflow: hidden;
  background: #e5e7eb;
}

.about-main-card img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.about-stat-card {
  padding: 0.7rem 0.8rem;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
}

.about-stat-value {
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.about-stat-label {
  font-size: 0.78rem;
  color: var(--text-subtle);
}

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-main-card img {
    height: 220px;
  }
}

/* Success payment / QR section */
.success-payment {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.success-payment h3 {
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.success-payment-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.2rem;
  align-items: flex-start;
}

.success-qr {
  text-align: center;
}

.success-qr img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 18px;
  background: #e5e7eb;
  padding: 0.4rem;
}

.success-qr-note {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-subtle);
}

.success-meta p {
  font-size: 0.86rem;
  color: var(--text-subtle);
  margin-bottom: 0.25rem;
}

.success-meta p strong {
  color: var(--text-main);
}

@media (max-width: 768px) {
  .success-payment-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .success-qr img {
    width: 160px;
    height: 160px;
  }
}

.payment-timer {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #b91c1c;
}

.payment-timer span {
  font-weight: 700;
  font-size: 0.95rem;
}

/* Product card image container - fixed aspect ratio */
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  opacity: 0;
  transform: translateY(10px);
  animation: card-enter 0.4s ease forwards;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}

@keyframes card-enter {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Product card image wrapper with proper aspect ratio */
.product-card .product-image-link {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 0;
  background: #f8fafc;
  position: relative;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
  /* No background - container handles it */
}

/* Subtle zoom on hover - not too much */
.product-card:hover img {
  transform: scale(1.05);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.product-card h3 {
  margin: 0.5rem 0 0.2rem;
  font-size: 0.95rem;
  line-height: 1.4;
}

.product-card .category {
  font-size: 0.75rem;
  color: #64748b;
  margin-bottom: 0.2rem;
}

.product-card .price {
  font-weight: 600;
  font-size: 1rem;
  color: #0f172a;
  margin: 0.2rem 0 0.3rem;
}

.product-card .desc {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 0.8rem;
  display: -webkit-box;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card .add-to-cart-form {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-card .add-to-cart-form input[type="number"] {
  width: 54px;
  padding: 0.4rem 0.3rem;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  font-size: 0.85rem;
  text-align: center;
}

.product-card .add-to-cart-form button {
  flex: 1;
}

/* Buttons subtle hover */
.btn-primary,
.btn-secondary {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
}

/* Add to cart pulse */
.btn-pulse {
  animation: btn-pulse 0.3s ease;
}

@keyframes btn-pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.96);
  }

  100% {
    transform: scale(1);
  }
}

/* Cart count bump animation */
#cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease;
}

#cart-count.cart-bump {
  animation: cart-bump 0.35s ease;
}

@keyframes cart-bump {
  0% {
    transform: scale(1);
  }

  25% {
    transform: scale(1.25);
  }

  60% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
  }
}

/* Toast slide + fade */
.toast {
  position: fixed;
  left: 0px;
  bottom: 24px;
  transform: translateY(50%) translateY(16px);
  padding: 10px 16px;
  border-radius: 999px;
  background: #111827;
  color: #f9fafb;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 9999;
  text-align: center;
  width: 300px;
  max-width: 100%;
  margin: 0 auto;
  right: 0;
}

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

/* ====== FOOTER BASE WRAPPER ====== */

.site-footer.df-footer {
  background: #050816;
  /* Deep dark */
  color: #e5e7eb;
  /* Soft grey text */
  padding: 56px 0 32px;
  /* Top / bottom spacing */
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
}

/* ====== INNER LAYOUT ====== */

.df-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) repeat(3, minmax(0, 1.4fr));
  gap: 32px;
  align-items: flex-start;
}

/* Single-col layout on small screens */
@media (max-width: 900px) {
  .df-footer-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
}

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

.df-footer-brand {
  max-width: 360px;
}

.df-footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.df-footer-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: radial-gradient(circle at 0% 0%, #38bdf8, #4f46e5);
  color: #f9fafb;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  text-transform: uppercase;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.7);
}

.df-footer-logo-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #f9fafb;
}

.df-footer-logo-sub {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #9ca3af;
}

.df-footer-text {
  margin: 0 0 16px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #9ca3af;
}

/* Support link pill */

.df-footer-support {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #e5e7eb;
  text-decoration: none;
  transition: all 0.18s ease;
}

.df-footer-support::after {
  content: "→";
  font-size: 0.9rem;
}

.df-footer-support:hover {
  border-color: #38bdf8;
  color: #f9fafb;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.8);
}

/* ====== COLUMN GENERIC STYLES ====== */

.df-footer-col {
  font-size: 0.9rem;
}

.df-footer-heading {
  margin: 0 0 12px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9ca3af;
}

/* ====== QUICK LINKS ====== */

.df-footer-col a {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: #e5e7eb;
  text-decoration: none;
  opacity: 0.85;
  transition: color 0.18s ease, opacity 0.18s ease, transform 0.18s ease;
}

.df-footer-col a:hover {
  color: #38bdf8;
  opacity: 1;
  transform: translateX(2px);
}

/* ====== CONTACT LINES ====== */

.df-footer-line {
  margin: 0 0 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #9ca3af;
  line-height: 1.5;
  font-size: 0.9rem;
}

.df-footer-line i {
  margin-top: 3px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.df-footer-line a {
  display: inline;
  margin: 0;
  color: #e5e7eb;
  text-decoration: none;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.5);
  padding-bottom: 1px;
}

.df-footer-line a:hover {
  color: #38bdf8;
  border-color: #38bdf8;
}

/* ====== SOCIAL BLOCK ====== */

.df-footer-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.df-footer-social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: #e5e7eb;
  font-size: 0.85rem;
  transition: all 0.18s ease;
}

.df-footer-social-row a:hover {
  background: radial-gradient(circle at 0% 0%, #38bdf8, #4f46e5);
  border-color: transparent;
  transform: translateY(-1px) scale(1.03);
  color: #f9fafb;
}

/* Meta text */

.df-footer-meta {
  margin: 0 0 4px;
  font-size: 0.75rem;
  color: #6b7280;
}

/* ====== BOTTOM RESPONSIVE TWEAKS ====== */

@media (max-width: 600px) {
  .site-footer.df-footer {
    padding: 40px 0 24px;
  }

  .df-footer-brand {
    max-width: 100%;
  }

  .df-footer-logo-title {
    font-size: 1.05rem;
  }

  .df-footer-text {
    font-size: 0.88rem;
  }

  .df-footer-col,
  .df-footer-line {
    font-size: 0.86rem;
  }

  .df-footer-meta {
    font-size: 0.72rem;
  }
}

/* ABOUT US HOME SECTION */

.about-us-home {
  padding: 3rem 0;
  background-color: #1d4ed8;

  /* background: var(--bg-body); */
}

.about-us-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-us-label {
  font-size: 0.85rem;
  font-weight: 600;
  /* color: var(--primary-deep); */
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 0.8rem;
}

.about-us-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 1.5rem;
  color: var(--text-main);
}

.about-us-description {
  font-size: 1rem;
  line-height: 1.6;
  /* color: var(--text-subtle); */
  margin: 0 0 2rem;
}

.about-us-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.05);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;

}

.about-image {
  width: 100%;
  height: 50%;
  object-fit: contain;
}

/* Responsive for about us section */
@media (max-width: 768px) {
  .about-us-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-us-title {
    font-size: 1.8rem;
  }

  .about-us-description {
    font-size: 0.95rem;
  }

  .about-us-image {
    min-height: 300px;
  }
}

/* Admin Panel */
.admin-header {
  background: #111;
  color: white;
  padding: 0;
  border-bottom: 1px solid #222;
  position: sticky;
  top: 0;
  z-index: 100;
}

.admin-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2rem;
}

.admin-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  color: white;
}

.admin-header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.admin-body {
  display: flex;
  min-height: calc(100vh - 60px);
}

.admin-sidebar {
  width: 220px;
  background: #f8fafc;
  border-right: 1px solid #e2e8f0;
  padding: 1.5rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex-shrink: 0;
}

.admin-tab-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  border: none;
  background: none;
  font-size: 0.9rem;
  cursor: pointer;
  color: #475569;
  text-align: left;
  font-weight: 500;
  transition: all 0.15s;
}

.admin-tab-btn:hover {
  background: #e2e8f0;
}

.admin-tab-btn.active {
  background: #111;
  color: white;
}

.admin-main-content {
  flex: 1;
  padding: 2rem;
  overflow-x: auto;
  background: white;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.admin-stat-card {
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.admin-stat-card i {
  font-size: 1.5rem;
  color: #64748b;
}

.admin-stat-card .stat-label {
  display: block;
  font-size: 0.78rem;
  color: #6b7280;
  margin-bottom: 0.2rem;
}

.admin-stat-card strong {
  font-size: 1.4rem;
  font-weight: 700;
}

.admin-stat-alert i {
  color: #f97316;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.admin-table th {
  background: #f8fafc;
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  color: #475569;
  border-bottom: 1px solid #e2e8f0;
  white-space: nowrap;
}

.admin-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}

.admin-table tr:hover>td {
  background: #f8fafc;
}

.admin-table-wrap {
  overflow-x: auto;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}

.admin-tab-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.admin-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.admin-select,
.admin-search {
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 0.85rem;
  background: white;
  color: #111;
}

.admin-search {
  min-width: 220px;
}

.admin-btn-sm {
  padding: 0.3rem 0.6rem;
  font-size: 0.76rem;
  border-radius: 6px;
  border: 1px solid currentColor;
  cursor: pointer;
  font-weight: 600;
  margin-right: 0.25rem;
}

.admin-btn-sm.btn-primary {
  background: #111;
  color: white;
  border-color: #111;
}

.admin-btn-sm.btn-outline {
  background: white;
  color: #475569;
  border-color: #d1d5db;
}

.admin-btn-sm.btn-danger {
  background: #fef2f2;
  color: #dc2626;
  border-color: #fca5a5;
}

.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.admin-modal-content {
  position: relative;
  background: white;
  border-radius: 16px;
  padding: 2rem;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.admin-modal-content h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.modal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.btn-danger {
  padding: 0.6rem 1.25rem;
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fca5a5;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.btn-danger:hover {
  background: #dc2626;
  color: white;
}

.order-detail-row td {
  background: #f8fafc !important;
}

@media (max-width: 768px) {
  .admin-body {
    flex-direction: column;
  }

  .admin-sidebar {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    padding: 0.5rem;
  }

  .admin-tab-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .admin-main-content {
    padding: 1rem;
  }
}


/* ====== ADMIN EXTRA STYLES ====== */
.admin-status-select {
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  font-size: 0.8rem;
  background: white;
  cursor: pointer;
  margin-right: 0.25rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0 5px;
  margin-left: 0.4rem;
}

.badge-warning {
  background: #fef3c7;
  color: #b45309;
}

/* ====== WISHLIST BUTTON ====== */
.wishlist-btn {
  transition: transform 0.2s ease;
}

.wishlist-btn:hover {
  transform: scale(1.15);
}

.wishlist-btn i {
  transition: color 0.2s ease;
}

/* ====== UPI SECTION CHECKOUT ====== */
.upi-section {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.upi-qr-block {
  text-align: center;
  margin-bottom: 1rem;
}

.upi-instruction {
  font-size: 0.9rem;
  color: #374151;
  margin-bottom: 1rem;
}

.upi-qr-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.upi-note {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: #6b7280;
}

.required-star {
  color: #dc2626;
}

.field-hint {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  color: #9ca3af;
}

/* ====== NAV WISHLIST ICON ====== */
.nav-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  padding: 0.3rem 0.5rem;
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}

.nav-icon-btn:hover {
  color: #ef4444;
}

/* ====== NEW HOMEPAGE SECTIONS ====== */

/* Announcement Bar */
.announcement-bar {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 8px 0;
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  letter-spacing: 0.5px;
}

.announcement-close {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  opacity: 0.7;
}

.announcement-close:hover {
  opacity: 1;
}

/* Trust Strip */
.trust-strip {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 2.5rem 0;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-item i {
  font-size: 1.5rem;
  color: #000;
}

.trust-item div strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
}

.trust-item div span {
  font-size: 0.85rem;
  color: #64748b;
}

@media (max-width: 992px) {
  .trust-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .trust-strip-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Why Laxshee */
.why-laxshee {
  background: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 2rem;
}

.why-card {
  text-align: center;
}

.why-icon {
  width: 70px;
  height: 70px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: #000;
}

.why-card h3 {
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.why-card p {
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Trending Now */
.trending-section {
  padding-bottom: 0;
}

.trending-scroll-wrapper {
  overflow-x: auto;
  padding: 0 5%;
  margin-top: 1rem;
  scrollbar-width: none;
  /* Firefox */
}

.trending-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

/* Chrome/Safari */

.trending-scroll {
  display: flex;
  gap: 1.5rem;
  min-width: max-content;
  padding-bottom: 2.5rem;
}

.trending-scroll .home-product-card {
  width: 280px;
  flex-shrink: 0;
}

/* Gender Tabs */
.gender-tab-btns {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.gender-tab {
  padding: 0.6rem 1.5rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 30px;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s;
}

.gender-tab.active {
  background: #000;
  color: #fff;
  border-color: #000;
}

/* Slider Controls Polish */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.slider-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
}

.slider-btn-prev {
  left: 30px;
}

.slider-btn-next {
  right: 30px;
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.slider-dot.active {
  width: 30px;
  border-radius: 5px;
  background: #fff;
}

@media (max-width: 768px) {
  .slider-btn {
    display: none;
  }
}

/* Misc UI Improvements */
.wishlist-count-pill {
  background: #ef4444;
  color: white;
  font-size: 0.65rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: -5px;
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: #64748b;
  font-style: italic;
}

/* Home CTA */
.home-cta {
  padding: 4rem 0;
}

.home-cta-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: var(--glass-border);
}

.home-cta-content {
  flex: 1;
  padding: 3rem;
}

.home-cta-content h2 {
  font-size: 2.2rem;
  margin-top: 0;
  margin-bottom: 1rem;
}

.home-cta-content p {
  color: var(--text-subtle);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.home-cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.cta-feature i {
  color: #10b981;
}

.home-cta-image {
  flex: 1;
  height: 100%;
  min-height: 400px;
}

.home-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .home-cta-card {
    flex-direction: column;
  }

  .home-cta-image {
    min-height: 250px;
    width: 100%;
  }
}