/* ==========================================================================
   ARABNUTRA V6 - DHENBIO INSPIRED
   Complete Store Styles - All Sections
   Primary: #10b981 | Dark: #1f2937 | Light: #f0fdf4
   ========================================================================== */

:root {
  /* DHENBIO Exact Colors */
  --dhen-primary: #10b981;
  --dhen-primary-hover: #059669;
  --dhen-primary-light: #f0fdf4;
  --dhen-primary-border: #d1fae5;
  
  /* Neutrals */
  --dhen-dark: #1f2937;
  --dhen-text: #374151;
  --dhen-text-muted: #6b7280;
  --dhen-border: #e5e7eb;
  --dhen-bg: #ffffff;
  --dhen-bg-soft: #f9fafb;
  --dhen-bg-section: #f0fdf4;
  
  /* Accents */
  --dhen-star: #fbbf24;
  --dhen-error: #ef4444;
  --dhen-success: #10b981;
  
  /* Typography */
  --font-display: 'Cairo', 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Noto Sans Arabic', 'Inter', system-ui, -apple-system, sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  
  /* Transitions */
  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dhen-text);
  background: var(--dhen-bg);
  direction: rtl;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* Container */
.dh-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .dh-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .dh-container {
    padding: 0 2rem;
  }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.dh-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--dhen-border);
}

.dh-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.dh-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dhen-dark);
}

.dh-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--dhen-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.dh-nav {
  display: none;
}

@media (min-width: 1024px) {
  .dh-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.dh-nav-link {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--dhen-text-muted);
  transition: color var(--transition);
}

.dh-nav-link:hover {
  color: var(--dhen-primary);
}

.dh-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dh-icon-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--dhen-text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}

.dh-icon-btn:hover {
  background: var(--dhen-bg-soft);
  color: var(--dhen-dark);
}

.dh-cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--dhen-primary);
  color: white;
  font-size: 0.6875rem;
  font-weight: 700;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.dh-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--dhen-primary-light) 0%, var(--dhen-bg) 50%, var(--dhen-bg-soft) 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.dh-hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .dh-hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.dh-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: white;
  border: 1px solid var(--dhen-border);
  border-radius: 999px;
  font-size: 0.875rem;
  color: var(--dhen-primary);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.dh-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--dhen-dark);
  margin-bottom: 1.5rem;
}

.dh-hero-title span {
  color: var(--dhen-primary);
}

.dh-hero-desc {
  font-size: 1.125rem;
  color: var(--dhen-text-muted);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.dh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

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

.dh-btn-primary:hover {
  background: var(--dhen-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.dh-btn-secondary {
  background: white;
  color: var(--dhen-dark);
  border: 1px solid var(--dhen-border);
}

.dh-btn-secondary:hover {
  border-color: var(--dhen-primary);
  color: var(--dhen-primary);
}

.dh-btn-lg {
  padding: 1rem 2rem;
  font-size: 1.0625rem;
}

.dh-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.dh-hero-stats {
  display: flex;
  gap: 2.5rem;
}

.dh-stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--dhen-dark);
}

.dh-stat-value span {
  color: var(--dhen-primary);
}

.dh-stat-label {
  font-size: 0.875rem;
  color: var(--dhen-text-muted);
}

/* ==========================================================================
   TRUST BAR
   ========================================================================== */
.dh-trust {
  background: white;
  border-bottom: 1px solid var(--dhen-border);
  padding: 1.25rem 0;
}

.dh-trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.dh-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--dhen-text-muted);
  font-weight: 500;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.dh-section {
  padding: 5rem 0;
}

.dh-section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.dh-section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dhen-primary);
  margin-bottom: 0.75rem;
}

.dh-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--dhen-dark);
  margin-bottom: 0.75rem;
}

.dh-section-desc {
  color: var(--dhen-text-muted);
  font-size: 1.0625rem;
}

/* ==========================================================================
   CATEGORIES
   ========================================================================== */
.dh-categories {
  background: var(--dhen-bg-soft);
}

.dh-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .dh-cat-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .dh-cat-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.dh-cat-card {
  background: white;
  border: 1px solid var(--dhen-border);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition);
}

.dh-cat-card:hover {
  border-color: var(--dhen-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.dh-cat-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: var(--dhen-primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dhen-primary);
  transition: all var(--transition);
}

.dh-cat-card:hover .dh-cat-icon {
  background: var(--dhen-primary);
  color: white;
}

.dh-cat-title {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dhen-dark);
  margin-bottom: 0.25rem;
}

.dh-cat-count {
  font-size: 0.8125rem;
  color: var(--dhen-text-muted);
}

/* ==========================================================================
   PRODUCTS
   ========================================================================== */
.dh-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .dh-products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .dh-products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.dh-product {
  background: white;
  border: 1px solid var(--dhen-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition);
}

.dh-product:hover {
  border-color: var(--dhen-primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.dh-product-img-wrap {
  position: relative;
  aspect-ratio: 1;
  background: var(--dhen-bg-soft);
  overflow: hidden;
}

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

.dh-product:hover .dh-product-img {
  transform: scale(1.05);
}

.dh-product-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.25rem 0.75rem;
  background: var(--dhen-primary);
  color: white;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 999px;
}

.dh-product-info {
  padding: 1rem;
}

.dh-product-cat {
  font-size: 0.6875rem;
  color: var(--dhen-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  margin-bottom: 0.25rem;
}

.dh-product-name {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dhen-dark);
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.dh-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--dhen-border);
}

.dh-product-price {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dhen-dark);
}

.dh-product-add {
  width: 36px;
  height: 36px;
  background: var(--dhen-primary);
  border: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all var(--transition);
}

.dh-product-add:hover {
  background: var(--dhen-primary-hover);
  transform: scale(1.1);
}

/* ==========================================================================
   FEATURES
   ========================================================================== */
.dh-features {
  background: var(--dhen-bg-soft);
}

.dh-features-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .dh-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .dh-features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.dh-feature {
  background: white;
  border: 1px solid var(--dhen-border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
}

.dh-feature:hover {
  border-color: var(--dhen-primary);
  transform: translateY(-4px);
}

.dh-feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: var(--dhen-primary-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dhen-primary);
  transition: all var(--transition);
}

.dh-feature:hover .dh-feature-icon {
  background: var(--dhen-primary);
  color: white;
}

.dh-feature-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--dhen-dark);
  margin-bottom: 0.5rem;
}

.dh-feature-desc {
  font-size: 0.9375rem;
  color: var(--dhen-text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   APP SECTION
   ========================================================================== */
.dh-app {
  background: var(--dhen-primary-light);
}

.dh-app-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .dh-app-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.dh-app-content {
  text-align: center;
}

@media (min-width: 1024px) {
  .dh-app-content {
    text-align: right;
  }
}

.dh-app-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.dh-app-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: white;
  border: 1px solid var(--dhen-border);
  border-radius: 12px;
}

.dh-app-icon {
  width: 40px;
  height: 40px;
  background: var(--dhen-primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dhen-primary);
  flex-shrink: 0;
}

.dh-app-text {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--dhen-dark);
  font-size: 0.9375rem;
}

.dh-app-stores {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 1024px) {
  .dh-app-stores {
    justify-content: flex-start;
  }
}

.dh-app-store {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: var(--dhen-dark);
  color: white;
  border-radius: 12px;
  transition: all var(--transition);
}

.dh-app-store:hover {
  background: #111827;
  transform: translateY(-2px);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.dh-testimonials {
  background: var(--dhen-primary);
  color: white;
}

.dh-testimonials .dh-section-title {
  color: white;
}

.dh-testimonials-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .dh-testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.dh-testimonial {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  color: var(--dhen-text);
}

.dh-testimonial-stars {
  display: flex;
  gap: 0.25rem;
  color: var(--dhen-star);
  margin-bottom: 1rem;
}

.dh-testimonial-text {
  font-size: 0.9375rem;
  color: var(--dhen-text);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.dh-testimonial-author {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--dhen-dark);
  font-size: 0.9375rem;
}

/* ==========================================================================
   NEWSLETTER
   ========================================================================== */
.dh-newsletter {
  background: var(--dhen-primary);
  padding: 4rem 0;
  text-align: center;
  color: white;
}

.dh-newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.dh-newsletter-desc {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.dh-newsletter-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  gap: 0.75rem;
}

.dh-newsletter-input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
}

.dh-newsletter-input::placeholder {
  color: var(--dhen-text-muted);
}

.dh-newsletter-btn {
  padding: 0.875rem 1.5rem;
  background: var(--dhen-dark);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.dh-newsletter-btn:hover {
  background: #111827;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.dh-footer {
  background: var(--dhen-dark);
  color: #9ca3af;
  padding: 4rem 0 2rem;
}

.dh-footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .dh-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .dh-footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.dh-footer-brand {
  max-width: 300px;
}

.dh-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.dh-footer-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.dh-footer-social {
  display: flex;
  gap: 0.75rem;
}

.dh-footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  transition: all var(--transition);
}

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

.dh-footer-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.25rem;
}

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

.dh-footer-links a {
  color: #9ca3af;
  font-size: 0.9375rem;
  transition: color var(--transition);
}

.dh-footer-links a:hover {
  color: var(--dhen-primary);
}

.dh-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dh-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
}

.dh-footer-contact-item svg {
  color: var(--dhen-primary);
}

.dh-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .dh-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ==========================================================================
   SHOP PAGE
   ========================================================================== */
.dh-shop-header {
  background: var(--dhen-bg-soft);
  padding: 100px 0 3rem;
}

.dh-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--dhen-text-muted);
  margin-bottom: 1rem;
}

.dh-breadcrumb a {
  color: var(--dhen-primary);
}

.dh-shop-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dhen-dark);
  margin-bottom: 0.5rem;
}

.dh-shop-desc {
  color: var(--dhen-text-muted);
}

.dh-shop-bar {
  background: white;
  border-bottom: 1px solid var(--dhen-border);
  padding: 1rem 0;
}

.dh-shop-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dh-shop-count strong {
  color: var(--dhen-dark);
}

.dh-select {
  padding: 0.5rem 1rem;
  border: 1px solid var(--dhen-border);
  border-radius: 8px;
  background: white;
  font-size: 0.875rem;
}

.dh-shop-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .dh-shop-layout {
    grid-template-columns: 250px 1fr;
  }
}

.dh-shop-sidebar {
  display: none;
}

@media (min-width: 1024px) {
  .dh-shop-sidebar {
    display: block;
  }
}

.dh-filter-widget {
  background: white;
  border: 1px solid var(--dhen-border);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.dh-filter-title {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--dhen-dark);
  margin-bottom: 1rem;
}

.dh-filter-list {
  list-style: none;
}

.dh-filter-list li {
  margin-bottom: 0.5rem;
}

.dh-filter-list a {
  display: flex;
  justify-content: space-between;
  color: var(--dhen-text-muted);
  font-size: 0.9375rem;
  transition: color var(--transition);
}

.dh-filter-list a:hover,
.dh-filter-list a.active {
  color: var(--dhen-primary);
}

.dh-filter-list a span {
  color: var(--dhen-text-muted);
  font-size: 0.8125rem;
}

.dh-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.dh-page-link {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--dhen-border);
  border-radius: 8px;
  font-size: 0.9375rem;
  color: var(--dhen-text-muted);
  transition: all var(--transition);
}

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

.dh-page-link.disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* ==========================================================================
   PRODUCT PAGE
   ========================================================================== */
.dh-product-page {
  padding-top: 90px;
}

.dh-breadcrumb-wrap {
  background: var(--dhen-bg-soft);
  padding: 1rem 0;
  border-bottom: 1px solid var(--dhen-border);
}

.dh-product-layout {
  display: grid;
  gap: 3rem;
  padding: 3rem 0;
}

@media (min-width: 1024px) {
  .dh-product-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.dh-product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dh-gallery-main {
  position: relative;
  background: var(--dhen-bg-soft);
  border-radius: 16px;
  overflow: hidden;
}

.dh-gallery-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.dh-product-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 1rem;
  background: var(--dhen-primary);
  color: white;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 8px;
}

.dh-gallery-thumbs {
  display: flex;
  gap: 0.75rem;
}

.dh-thumb {
  width: 80px;
  height: 80px;
  border: 2px solid var(--dhen-border);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
}

.dh-thumb.active,
.dh-thumb:hover {
  border-color: var(--dhen-primary);
}

.dh-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dh-product-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.dh-product-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
}

.dh-product-sku {
  color: var(--dhen-text-muted);
}

.dh-stock {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 500;
}

.dh-stock.in-stock {
  color: var(--dhen-success);
}

.dh-product-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dhen-dark);
  line-height: 1.3;
}

.dh-product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dh-stars {
  color: var(--dhen-star);
  letter-spacing: 2px;
}

.dh-rating-count {
  color: var(--dhen-text-muted);
  font-size: 0.875rem;
}

.dh-product-price-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.dh-price-current {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dhen-primary);
}

.dh-price-old {
  font-size: 1.25rem;
  color: var(--dhen-text-muted);
  text-decoration: line-through;
}

.dh-price-save {
  padding: 0.25rem 0.75rem;
  background: #fef3c7;
  color: #d97706;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 6px;
}

.dh-product-shortdesc {
  color: var(--dhen-text-muted);
  line-height: 1.7;
}

.dh-product-features {
  list-style: none;
  margin-top: 1rem;
}

.dh-product-features li {
  margin-bottom: 0.5rem;
}

.dh-product-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.dh-quantity {
  display: flex;
  align-items: center;
  border: 1px solid var(--dhen-border);
  border-radius: 10px;
  overflow: hidden;
}

.dh-qty-btn {
  width: 44px;
  height: 44px;
  background: white;
  border: none;
  font-size: 1.25rem;
  color: var(--dhen-text-muted);
  cursor: pointer;
  transition: all var(--transition);
}

.dh-qty-btn:hover {
  background: var(--dhen-bg-soft);
  color: var(--dhen-dark);
}

.dh-qty-input {
  width: 60px;
  height: 44px;
  border: none;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}

.dh-addtocart {
  flex: 1;
  min-width: 200px;
}

.dh-btn-wishlist {
  width: 52px;
  height: 52px;
  border: 1px solid var(--dhen-border);
  border-radius: 10px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dhen-text-muted);
  cursor: pointer;
  transition: all var(--transition);
}

.dh-btn-wishlist:hover {
  border-color: var(--dhen-error);
  color: var(--dhen-error);
}

.dh-product-trust {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
  background: var(--dhen-bg-soft);
  border-radius: 12px;
}

.dh-product-trust .dh-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--dhen-text-muted);
}

/* Product Tabs */
.dh-product-tabs {
  background: var(--dhen-bg-soft);
  padding: 4rem 0;
}

.dh-tabs-nav {
  display: flex;
  gap: 0.5rem;
  border-bottom: 2px solid var(--dhen-border);
  margin-bottom: 2rem;
  overflow-x: auto;
}

.dh-tab-btn {
  padding: 1rem 1.5rem;
  background: transparent;
  border: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--dhen-text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
}

.dh-tab-btn.active {
  color: var(--dhen-primary);
  box-shadow: inset 0 -2px 0 var(--dhen-primary);
}

.dh-tabs-content {
  background: white;
  border-radius: 16px;
  padding: 2rem;
}

.dh-tab-panel {
  display: none;
}

.dh-tab-panel.active {
  display: block;
}

.dh-tab-panel h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dhen-dark);
  margin-bottom: 1rem;
}

.dh-tab-panel h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--dhen-dark);
  margin: 1.5rem 0 0.75rem;
}

.dh-tab-panel p {
  color: var(--dhen-text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.dh-tab-panel ul {
  padding-right: 1.5rem;
  color: var(--dhen-text-muted);
}

.dh-tab-panel li {
  margin-bottom: 0.5rem;
}

.dh-related-products {
  padding: 4rem 0;
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.dh-about-hero {
  background: linear-gradient(135deg, var(--dhen-primary-light) 0%, var(--dhen-bg) 100%);
  padding: 120px 0 4rem;
  text-align: center;
}

.dh-about-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--dhen-dark);
  margin-bottom: 1rem;
}

.dh-about-desc {
  font-size: 1.125rem;
  color: var(--dhen-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.dh-story {
  background: white;
}

.dh-story-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .dh-story-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.dh-story-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.dh-story-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dhen-dark);
  margin-bottom: 1.5rem;
}

.dh-story-content p {
  color: var(--dhen-text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.dh-story-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--dhen-border);
}

.dh-story-stat {
  text-align: center;
}

.dh-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--dhen-primary);
}

.dh-mission {
  background: var(--dhen-bg-soft);
}

.dh-mission-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .dh-mission-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.dh-mission-card {
  background: white;
  border: 1px solid var(--dhen-border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.dh-mission-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: var(--dhen-primary-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dhen-primary);
}

.dh-mission-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dhen-dark);
  margin-bottom: 0.75rem;
}

.dh-mission-card p {
  color: var(--dhen-text-muted);
  line-height: 1.7;
}

.dh-why-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .dh-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.dh-why-item {
  display: flex;
  gap: 1rem;
}

.dh-why-icon {
  width: 48px;
  height: 48px;
  background: var(--dhen-primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dhen-primary);
  flex-shrink: 0;
}

.dh-why-item h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--dhen-dark);
  margin-bottom: 0.25rem;
}

.dh-why-item p {
  color: var(--dhen-text-muted);
  font-size: 0.9375rem;
}

.dh-team {
  background: var(--dhen-primary-light);
}

.dh-team-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .dh-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .dh-team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.dh-team-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
}

.dh-team-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.dh-team-name {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--dhen-dark);
  margin-top: 1rem;
}

.dh-team-role {
  display: block;
  color: var(--dhen-text-muted);
  font-size: 0.875rem;
  padding-bottom: 1rem;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.dh-contact-hero {
  background: linear-gradient(135deg, var(--dhen-primary-light) 0%, var(--dhen-bg) 100%);
  padding: 120px 0 4rem;
  text-align: center;
}

.dh-contact-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--dhen-dark);
  margin-bottom: 1rem;
}

.dh-contact-desc {
  font-size: 1.125rem;
  color: var(--dhen-text-muted);
}

.dh-contact-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .dh-contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.dh-contact-card {
  background: white;
  border: 1px solid var(--dhen-border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.dh-contact-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: var(--dhen-primary-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dhen-primary);
}

.dh-contact-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--dhen-dark);
  margin-bottom: 0.75rem;
}

.dh-contact-card p {
  color: var(--dhen-text-muted);
  margin-bottom: 0.25rem;
}

.dh-form-layout {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .dh-form-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.dh-form-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dhen-dark);
  margin-bottom: 0.5rem;
}

.dh-form-desc {
  color: var(--dhen-text-muted);
  margin-bottom: 2rem;
}

.dh-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.dh-form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .dh-form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.dh-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dh-form-group label {
  font-weight: 500;
  color: var(--dhen-dark);
  font-size: 0.9375rem;
}

.dh-input,
.dh-textarea {
  padding: 0.875rem 1rem;
  border: 1px solid var(--dhen-border);
  border-radius: 10px;
  font-size: 1rem;
  transition: all var(--transition);
}

.dh-input:focus,
.dh-textarea:focus {
  outline: none;
  border-color: var(--dhen-primary);
  box-shadow: 0 0 0 3px var(--dhen-primary-light);
}

.dh-textarea {
  resize: vertical;
  min-height: 120px;
}

.dh-form-map {
  background: var(--dhen-bg-soft);
  border-radius: 16px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dh-map-placeholder {
  text-align: center;
  color: var(--dhen-text-muted);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.dh-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.dh-faq-item {
  background: white;
  border: 1px solid var(--dhen-border);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.dh-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dhen-dark);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: right;
}

.dh-faq-question svg {
  transition: transform var(--transition);
}

.dh-faq-item.active .dh-faq-question svg {
  transform: rotate(180deg);
}

.dh-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.dh-faq-item.active .dh-faq-answer {
  max-height: 500px;
}

.dh-faq-answer p {
  padding: 0 1.25rem 1.25rem;
  color: var(--dhen-text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   MOBILE MENU & FLOATING ELEMENTS
   ========================================================================== */
.dh-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.dh-mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.dh-mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  background: white;
  transform: translateX(100%);
  transition: transform var(--transition);
}

.dh-mobile-menu.active .dh-mobile-panel {
  transform: translateX(0);
}

.dh-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  border-bottom: 1px solid var(--dhen-border);
}

.dh-mobile-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--dhen-dark);
}

.dh-mobile-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: var(--dhen-text-muted);
  cursor: pointer;
}

.dh-mobile-nav {
  padding: 1rem;
}

.dh-mobile-link {
  display: block;
  padding: 0.875rem 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--dhen-dark);
  border-radius: 10px;
  transition: all var(--transition);
}

.dh-mobile-link:hover {
  background: var(--dhen-bg-soft);
  color: var(--dhen-primary);
}

/* Cart Drawer */
.dh-cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.dh-cart-drawer.active {
  opacity: 1;
  visibility: visible;
}

.dh-cart-panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  max-width: 400px;
  background: white;
  transform: translateX(-100%);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
}

.dh-cart-drawer.active .dh-cart-panel {
  transform: translateX(0);
}

.dh-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  border-bottom: 1px solid var(--dhen-border);
}

.dh-cart-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--dhen-dark);
}

/* WhatsApp Float */
.dh-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 1000;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
  animation: dh-pulse 2s infinite;
}

.dh-whatsapp:hover {
  transform: scale(1.1);
}

@keyframes dh-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* Back to Top */
.dh-back-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
  width: 44px;
  height: 44px;
  background: white;
  border: 1px solid var(--dhen-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dhen-text-muted);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
}

.dh-back-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dh-back-top:hover {
  background: var(--dhen-primary);
  border-color: var(--dhen-primary);
  color: white;
}

/* Animations */
.dh-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.dh-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Toast */
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

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


/* ==========================================================================
   CART PAGE
   ========================================================================== */
.dh-cart-page {
  padding-top: 90px;
}

.dh-cart-header {
  background: var(--dhen-bg-soft);
  padding: 100px 0 3rem;
  text-align: center;
}

.dh-cart-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dhen-dark);
  margin-bottom: 0.5rem;
}

.dh-cart-desc {
  color: var(--dhen-text-muted);
}

.dh-cart-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .dh-cart-layout {
    grid-template-columns: 1fr 380px;
  }
}

.dh-cart-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dh-cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto auto auto;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: white;
  border: 1px solid var(--dhen-border);
  border-radius: 12px;
}

@media (max-width: 768px) {
  .dh-cart-item {
    grid-template-columns: 80px 1fr auto;
    gap: 0.75rem;
  }
}

.dh-cart-item-img {
  width: 100px;
  height: 100px;
  background: var(--dhen-bg-soft);
  border-radius: 8px;
  overflow: hidden;
}

.dh-cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dh-cart-item-name {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--dhen-dark);
  margin-bottom: 0.25rem;
}

.dh-cart-item-variant {
  font-size: 0.875rem;
  color: var(--dhen-text-muted);
  margin-bottom: 0.5rem;
}

.dh-cart-item-price {
  font-weight: 600;
  color: var(--dhen-primary);
}

.dh-cart-item-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--dhen-border);
  border-radius: 8px;
  overflow: hidden;
}

.dh-cart-item-total {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--dhen-dark);
  font-size: 1.125rem;
}

.dh-cart-item-remove {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--dhen-text-muted);
  cursor: pointer;
  transition: all var(--transition);
}

.dh-cart-item-remove:hover {
  color: var(--dhen-error);
}

.dh-cart-summary {
  background: white;
  border: 1px solid var(--dhen-border);
  border-radius: 16px;
  padding: 1.5rem;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.dh-summary-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dhen-dark);
  margin-bottom: 1.5rem;
}

.dh-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.dh-summary-row span:first-child {
  color: var(--dhen-text-muted);
}

.dh-summary-row span:last-child {
  font-weight: 600;
  color: var(--dhen-dark);
}

.dh-summary-divider {
  height: 1px;
  background: var(--dhen-border);
  margin: 1rem 0;
}

.dh-summary-total {
  font-size: 1.125rem;
}

.dh-summary-total span:first-child {
  color: var(--dhen-dark);
  font-weight: 700;
}

.dh-summary-total span:last-child {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dhen-primary);
}

.dh-summary-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.75rem;
  background: var(--dhen-primary-light);
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--dhen-primary);
}

.dh-btn-full {
  width: 100%;
}

/* ==========================================================================
   CHECKOUT PAGE
   ========================================================================== */
.dh-checkout-page {
  padding-top: 90px;
}

.dh-checkout-header {
  background: var(--dhen-bg-soft);
  padding: 100px 0 2rem;
}

.dh-checkout-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.dh-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.dh-step-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dhen-border);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--dhen-text-muted);
}

.dh-step.active .dh-step-number {
  background: var(--dhen-primary);
  color: white;
}

.dh-step-label {
  font-size: 0.875rem;
  color: var(--dhen-text-muted);
}

.dh-step.active .dh-step-label {
  color: var(--dhen-dark);
  font-weight: 600;
}

.dh-step-line {
  width: 60px;
  height: 2px;
  background: var(--dhen-border);
}

.dh-checkout-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .dh-checkout-layout {
    grid-template-columns: 1fr 400px;
  }
}

.dh-form-section {
  background: white;
  border: 1px solid var(--dhen-border);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.dh-form-section-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dhen-dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--dhen-border);
}

.dh-payment-methods {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dh-payment-method {
  display: flex;
  align-items: center;
  padding: 1rem;
  border: 2px solid var(--dhen-border);
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition);
}

.dh-payment-method:hover,
.dh-payment-method.active {
  border-color: var(--dhen-primary);
}

.dh-payment-method input {
  margin-left: 0.75rem;
}

.dh-payment-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dh-payment-content svg {
  color: var(--dhen-primary);
}

.dh-payment-content div {
  display: flex;
  flex-direction: column;
}

.dh-payment-content strong {
  color: var(--dhen-dark);
}

.dh-payment-content span {
  font-size: 0.875rem;
  color: var(--dhen-text-muted);
}

.dh-checkout-summary {
  background: white;
  border: 1px solid var(--dhen-border);
  border-radius: 16px;
  padding: 1.5rem;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.dh-order-items {
  margin-bottom: 1.5rem;
}

.dh-order-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--dhen-border);
}

.dh-order-item-img {
  position: relative;
  width: 60px;
  height: 60px;
  background: var(--dhen-bg-soft);
  border-radius: 8px;
  overflow: hidden;
}

.dh-order-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.dh-order-item-info {
  flex: 1;
}

.dh-order-item-info h5 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--dhen-dark);
  font-size: 0.9375rem;
}

.dh-order-item-info span {
  font-size: 0.8125rem;
  color: var(--dhen-text-muted);
}

.dh-order-item-price {
  font-weight: 600;
  color: var(--dhen-dark);
}

.dh-coupon {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.dh-coupon input {
  flex: 1;
}

.dh-secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--dhen-text-muted);
}


/* ==========================================================================
   WOOCOMMERCE PRODUCT GRID FIXES
   ========================================================================== */

/* Product Collection Grid */
.wc-block-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.wc-block-grid.columns-3 {
  grid-template-columns: repeat(3, 1fr) !important;
}

.wc-block-grid.columns-4 {
  grid-template-columns: repeat(4, 1fr) !important;
}

/* Product Grid Items */
.wc-block-grid__product,
.wc-block-product {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid #e5e7eb;
}

.wc-block-grid__product:hover,
.wc-block-product:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Product Image */
.wc-block-grid__product-image,
.wc-block-product__image {
  width: 100% !important;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f9fafb;
}

.wc-block-grid__product-image img,
.wc-block-product__image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.wc-block-grid__product:hover .wc-block-grid__product-image img,
.wc-block-product:hover .wc-block-product__image img {
  transform: scale(1.05);
}

/* Product Title */
.wc-block-grid__product-title,
.dh-product-title {
  font-family: var(--font-display) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #111827 !important;
  text-decoration: none !important;
  line-height: 1.4;
}

.wc-block-grid__product-title a {
  color: #111827 !important;
  text-decoration: none !important;
}

.wc-block-grid__product-title a:hover {
  color: var(--dhen-primary) !important;
}

/* Product Price */
.wc-block-grid__product-price,
.wc-block-product__price {
  color: var(--dhen-primary) !important;
  font-weight: 700 !important;
  font-size: 18px !important;
}

/* Product Rating */
.wc-block-grid__product-rating,
.wc-block-product__rating {
  color: var(--dhen-star) !important;
}

/* Add to Cart Button */
.wc-block-grid__product-add-to-cart,
.wc-block-product__add-to-cart {
  width: 100% !important;
}

.wc-block-grid__product-add-to-cart button,
.wc-block-product__add-to-cart button {
  background: var(--dhen-primary) !important;
  color: white !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 12px 24px !important;
  font-weight: 600 !important;
  width: 100% !important;
  transition: background 0.2s ease !important;
}

.wc-block-grid__product-add-to-cart button:hover,
.wc-block-product__add-to-cart button:hover {
  background: var(--dhen-primary-hover) !important;
}

/* Responsive Grid */
@media (max-width: 1024px) {
  .wc-block-grid.columns-3 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .wc-block-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
}

@media (max-width: 480px) {
  .wc-block-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Shop Layout Sidebar */
.dh-shop-layout {
  gap: 32px;
}

.dh-shop-sidebar {
  min-width: 250px;
}

.dh-shop-main {
  flex: 1;
}

/* Filter Widgets */
.dh-filter-widget {
  margin-bottom: 24px;
}

.dh-filter-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

/* Product Collection Block Specific */
.wp-block-woocommerce-product-collection {
  display: block !important;
}

.wp-block-woocommerce-product-collection .wp-block-product-template {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
}

.wp-block-woocommerce-product-collection.columns-3 .wp-block-product-template {
  grid-template-columns: repeat(3, 1fr) !important;
}


/* ==========================================================================
   CLASSIC WOOCOMMERCE PRODUCT GRID STYLES
   ========================================================================== */

/* Product Grid Container */
.woocommerce .products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.woocommerce .products.columns-3 {
  grid-template-columns: repeat(3, 1fr) !important;
}

.woocommerce .products.columns-4 {
  grid-template-columns: repeat(4, 1fr) !important;
}

/* Product Item */
.woocommerce .products .product {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid #e5e7eb;
  position: relative;
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
}

.woocommerce .products .product:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Product Image */
.woocommerce .products .product .woocommerce-product-gallery__image,
.woocommerce .products .product img,
.woocommerce .products .product .attachment-woocommerce_thumbnail {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  margin: 0 !important;
  transition: transform 0.3s ease;
}

.woocommerce .products .product:hover img {
  transform: scale(1.05);
}

.woocommerce .products .product a.woocommerce-LoopProduct-link {
  display: block;
  text-decoration: none;
}

/* Product Title */
.woocommerce .products .product .woocommerce-loop-product__title,
.woocommerce .products .product h2,
.woocommerce .products .product h3 {
  font-family: var(--font-display) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #111827 !important;
  padding: 16px 16px 8px !important;
  margin: 0 !important;
  line-height: 1.4;
  text-decoration: none !important;
}

.woocommerce .products .product .woocommerce-loop-product__title:hover {
  color: var(--dhen-primary) !important;
}

/* Product Price */
.woocommerce .products .product .price {
  color: var(--dhen-primary) !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  padding: 0 16px 12px !important;
  margin: 0 !important;
}

.woocommerce .products .product .price del {
  color: #9ca3af !important;
  font-weight: 400 !important;
  margin-left: 8px;
}

.woocommerce .products .product .price ins {
  text-decoration: none !important;
}

/* Product Rating */
.woocommerce .products .product .star-rating {
  margin: 0 16px 12px !important;
  color: var(--dhen-star) !important;
  font-size: 14px !important;
}

/* Add to Cart Button */
.woocommerce .products .product .button {
  background: var(--dhen-primary) !important;
  color: white !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 12px 24px !important;
  font-weight: 600 !important;
  width: calc(100% - 32px) !important;
  margin: 0 16px 16px !important;
  text-align: center !important;
  text-decoration: none !important;
  display: block !important;
  transition: background 0.2s ease !important;
  font-family: var(--font-display) !important;
}

.woocommerce .products .product .button:hover {
  background: var(--dhen-primary-hover) !important;
}

/* Sale Badge */
.woocommerce .products .product .onsale {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--dhen-primary);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 10;
}

/* Pagination */
.woocommerce nav.woocommerce-pagination {
  margin-top: 48px;
  text-align: center;
}

.woocommerce nav.woocommerce-pagination ul {
  display: inline-flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  border: none;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: none;
  margin: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  background: #f3f4f6;
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.woocommerce nav.woocommerce-pagination ul li a:hover {
  background: var(--dhen-primary);
  color: white;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--dhen-primary);
  color: white;
}

/* Result Count and Sorting */
.woocommerce .woocommerce-result-count {
  color: #6b7280;
  font-size: 14px;
  margin: 0;
}

.woocommerce .woocommerce-ordering {
  margin: 0;
}

.woocommerce .woocommerce-ordering select {
  padding: 8px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: white;
  color: #374151;
  font-size: 14px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
  .woocommerce .products.columns-3 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .dh-shop-layout {
    flex-direction: column;
  }
  
  .dh-shop-sidebar {
    width: 100% !important;
  }
}

@media (max-width: 768px) {
  .woocommerce .products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
}

@media (max-width: 480px) {
  .woocommerce .products {
    grid-template-columns: 1fr !important;
  }
}

/* Clearfix for WooCommerce */
.woocommerce .products::after,
.woocommerce .products::before {
  display: none !important;
}

.woocommerce .products .product::after,
.woocommerce .products .product::before {
  display: none !important;
}

/* ==========================================================================
   SHOP LAYOUT FIXES
   ========================================================================== */

/* Hide duplicate result counts */
.woocommerce .woocommerce-result-count ~ .woocommerce-result-count,
.woocommerce .woocommerce-notices-wrapper + .woocommerce-result-count {
  display: none !important;
}

/* Shop Bar - Single row layout */
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  display: inline-block;
  vertical-align: middle;
  margin: 0 !important;
}

/* Products Grid - Force proper display */
.woocommerce .products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  width: 100% !important;
  clear: both !important;
  margin: 24px 0 !important;
}

.woocommerce .products::before,
.woocommerce .products::after {
  display: none !important;
}

.woocommerce .products .product {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  margin: 0 !important;
  clear: none !important;
}

/* Product Link */
.woocommerce .products .product > a {
  display: block;
  text-decoration: none;
}

/* Product Image Container */
.woocommerce .products .product a img {
  width: 100% !important;
  height: auto !important;
  display: block;
  margin: 0 !important;
}

/* Clear any floats */
.woocommerce .products .product::before,
.woocommerce .products .product::after,
.woocommerce .product::before,
.woocommerce .product::after {
  display: none !important;
  content: none !important;
}

/* Shop layout container */
.dh-shop-layout {
  display: flex !important;
  gap: 32px !important;
  align-items: flex-start !important;
}

.dh-shop-main {
  flex: 1 !important;
  min-width: 0 !important;
}

.dh-shop-sidebar {
  width: 280px !important;
  flex-shrink: 0 !important;
}

/* Ensure proper RTL layout */
[dir="rtl"] .dh-shop-layout,
.dh-shop-layout {
  flex-direction: row-reverse !important;
}

/* Responsive */
@media (max-width: 1024px) {
  .dh-shop-layout {
    flex-direction: column !important;
  }
  
  .dh-shop-sidebar {
    width: 100% !important;
    order: -1;
  }
  
  .woocommerce .products {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .woocommerce .products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
}

@media (max-width: 480px) {
  .woocommerce .products {
    grid-template-columns: 1fr !important;
  }
}

/* Fix product card internal layout */
.woocommerce .products .product {
  display: flex;
  flex-direction: column;
}

.woocommerce .products .product .woocommerce-loop-product__link {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.woocommerce .products .product .button {
  margin-top: auto !important;
}
