/* ============================================================
   VERDELA — PREMIUM HOME & GARDEN THEME
   Design System: Light, Natural, Warm
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
  /* Brand Colors — Natural Green + Warm Cream */
  --vx-gold: #2D7A4F;
  --vx-gold-light: #3A9963;
  --vx-gold-dark: #1F5C3A;
  --vx-gold-rgb: 45, 122, 79;

  /* Backgrounds */
  --vx-bg-primary: #FAFAF5;
  --vx-bg-secondary: #F2F0E8;
  --vx-bg-tertiary: #E8E5D8;
  --vx-card-bg: #FFFFFF;

  /* Text */
  --vx-text-primary: #1A2E1A;
  --vx-text-secondary: #4A5D4A;
  --vx-text-muted: #7A8B7A;

  /* Borders */
  --vx-border: rgba(45, 122, 79, 0.10);
  --vx-border-light: rgba(0, 0, 0, 0.06);

  /* Semantic */
  --vx-success: #2D7A4F;
  --vx-error: #C0392B;
  --vx-warning: #D4A017;

  /* Typography */
  --vx-font-heading: 'Outfit', sans-serif;
  --vx-font-body: 'DM Sans', sans-serif;

  /* Spacing */
  --vx-radius: 12px;
  --vx-radius-sm: 8px;
  --vx-radius-lg: 20px;
  --vx-shadow: 0 2px 20px rgba(0,0,0,0.06);
  --vx-shadow-hover: 0 8px 32px rgba(0,0,0,0.10);
  --vx-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--vx-font-body);
  background: var(--vx-bg-primary);
  color: var(--vx-text-primary);
  line-height: 1.7;
  font-size: 15px;
  overflow-x: hidden;
}
a { color: var(--vx-gold); text-decoration: none; transition: var(--vx-transition); }
a:hover { color: var(--vx-gold-dark); }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, h6 { font-family: var(--vx-font-heading); font-weight: 700; line-height: 1.2; color: var(--vx-text-primary); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 24px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  font-size: 0.85rem; font-weight: 700; font-family: var(--vx-font-body);
  text-transform: uppercase; letter-spacing: 1.5px;
  border-radius: var(--vx-radius-sm);
  transition: var(--vx-transition);
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--vx-gold), var(--vx-gold-dark));
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px rgba(var(--vx-gold-rgb), 0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(var(--vx-gold-rgb), 0.35); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--vx-gold);
  border: 2px solid var(--vx-gold);
}
.btn-outline:hover { background: var(--vx-gold); color: #fff; }
.btn-ghost {
  background: rgba(var(--vx-gold-rgb), 0.08);
  color: var(--vx-gold);
  border: none;
}
.btn-ghost:hover { background: rgba(var(--vx-gold-rgb), 0.15); }

/* ---- HEADER ---- */
.verdela-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--vx-border-light);
  transition: var(--vx-transition);
}

.header-top-bar {
  background: linear-gradient(135deg, var(--vx-gold), var(--vx-gold-light));
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 1px;
}

.header-main {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px;
  height: 72px;
}

.verdela-logo {
  font-family: var(--vx-font-heading);
  font-size: 1.6rem; font-weight: 800;
  color: var(--vx-text-primary);
  text-decoration: none;
  letter-spacing: 2px;
}
.verdela-logo span { color: var(--vx-gold); }

.nav-main {
  display: flex; gap: 32px;
  list-style: none; margin: 0; padding: 0;
}
.nav-main a {
  color: var(--vx-text-secondary);
  font-size: 0.88rem; font-weight: 500;
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: var(--vx-transition);
}
.nav-main a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--vx-gold);
  transition: width 0.3s ease;
}
.nav-main a:hover, .nav-main a.active { color: var(--vx-gold); }
.nav-main a:hover::after, .nav-main a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 8px; }
.header-action-btn {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--vx-text-secondary);
  transition: var(--vx-transition);
  background: none; border: none;
  text-decoration: none;
  position: relative;
}
.header-action-btn:hover { background: rgba(var(--vx-gold-rgb), 0.08); color: var(--vx-gold); }

.verdela-cart-count {
  position: absolute; top: 4px; right: 2px;
  background: var(--vx-gold);
  color: #fff;
  font-size: 0.65rem; font-weight: 700;
  min-width: 18px; height: 18px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 28px; height: 22px;
  background: none; border: none; cursor: pointer;
  padding: 0;
}
.mobile-menu-toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--vx-text-primary);
  border-radius: 2px;
  transition: var(--vx-transition);
}

/* ---- MOBILE NAV ---- */
.mobile-nav {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  z-index: 10000;
  display: none; flex-direction: column;
  padding: 80px 32px 32px;
  gap: 0;
}
.mobile-nav.active { display: flex !important; }
.mobile-nav a {
  display: block; padding: 16px 0;
  color: var(--vx-text-primary);
  font-size: 1.1rem; font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--vx-border-light);
  transition: var(--vx-transition);
}
.mobile-nav a:hover { color: var(--vx-gold); padding-left: 8px; }
.mobile-nav-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none;
  font-size: 1.5rem; color: var(--vx-text-primary);
  cursor: pointer;
}

/* ---- SEARCH OVERLAY ---- */
.search-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(250,250,245,0.98);
  backdrop-filter: blur(20px);
  z-index: 10000;
  display: none; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.3s ease;
}
.search-overlay.active { display: flex !important; opacity: 1; visibility: visible; }

/* ---- MINI CART SIDEBAR ---- */
.mini-cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(4px);
  z-index: 10001;
  opacity: 0; visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.mini-cart-overlay.active { opacity: 1; visibility: visible; pointer-events: auto; }

.mini-cart-sidebar {
  position: fixed; top: 0; right: 0;
  width: 400px; max-width: 90vw;
  height: 100vh; height: 100dvh;
  background: #fff;
  border-left: 1px solid var(--vx-border-light);
  z-index: 10002;
  display: flex; flex-direction: column;
  transform: translateX(100%); visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), visibility 0.4s ease;
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
}
.mini-cart-sidebar.active { transform: translateX(0); visibility: visible; }

.mini-cart-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--vx-border-light);
}
.mini-cart-title {
  font-family: var(--vx-font-heading);
  font-size: 1rem; font-weight: 700;
  color: var(--vx-text-primary);
}
.mini-cart-close {
  background: none; border: none;
  color: var(--vx-text-muted); cursor: pointer;
  transition: var(--vx-transition);
}
.mini-cart-close:hover { color: var(--vx-text-primary); }

.mini-cart-body { flex: 1; overflow-y: auto; padding: 16px 24px; }
.mini-cart-items { display: flex; flex-direction: column; gap: 16px; }
.mini-cart-item {
  display: flex; gap: 14px; align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--vx-border-light);
}
.mini-cart-item-img {
  width: 64px; height: 64px; border-radius: var(--vx-radius-sm);
  overflow: hidden; flex-shrink: 0;
  background: var(--vx-bg-secondary);
}
.mini-cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.mini-cart-item-name {
  font-size: 0.88rem; font-weight: 600;
  color: var(--vx-text-primary);
  text-decoration: none;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.mini-cart-item-meta { display: flex; gap: 6px; align-items: center; font-size: 0.8rem; color: var(--vx-text-muted); margin-top: 4px; }
.mini-cart-item-remove { background: none; border: none; color: var(--vx-text-muted); cursor: pointer; transition: var(--vx-transition); margin-left: auto; }
.mini-cart-item-remove:hover { color: var(--vx-error); }

.mini-cart-empty { text-align: center; padding: 40px 0; color: var(--vx-text-muted); }
.mini-cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--vx-border-light);
  display: flex; flex-direction: column; gap: 12px;
}
.mini-cart-subtotal { display: flex; justify-content: space-between; font-weight: 700; font-size: 1rem; }
.mini-cart-shipping-note { font-size: 0.78rem; color: var(--vx-text-muted); display: flex; align-items: center; gap: 6px; }
.mini-cart-view-btn { text-align: center; }
.mini-cart-checkout-btn { text-align: center; }

/* ---- HERO SECTION ---- */
.verdela-hero {
  position: relative;
  background: linear-gradient(135deg, #E8F5E9 0%, var(--vx-bg-primary) 50%, #FFF8E1 100%);
  overflow: hidden;
  min-height: auto;
  display: block;
  padding: 0;
}
.verdela-hero .container { padding-top: 60px; padding-bottom: 100px; position: relative; z-index: 2; }

.hero-bg-pattern {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background-image: radial-gradient(circle at 20% 50%, rgba(var(--vx-gold-rgb), 0.06) 0%, transparent 50%),
                     radial-gradient(circle at 80% 30%, rgba(var(--vx-gold-rgb), 0.04) 0%, transparent 40%);
  z-index: 0;
}
.hero-floating-shapes { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
.hero-shape {
  position: absolute; border-radius: 50%;
  background: rgba(var(--vx-gold-rgb), 0.04);
  animation: float 20s infinite ease-in-out;
}
.hero-shape:nth-child(1) { width: 300px; height: 300px; top: -50px; right: -50px; animation-delay: 0s; }
.hero-shape:nth-child(2) { width: 200px; height: 200px; bottom: -30px; left: 10%; animation-delay: -7s; }
.hero-shape:nth-child(3) { width: 150px; height: 150px; top: 30%; right: 20%; animation-delay: -14s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(5deg); }
  66% { transform: translateY(10px) rotate(-3deg); }
}

.hero-content { max-width: 720px; }
.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(var(--vx-gold-rgb), 0.1);
  color: var(--vx-gold);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  border-radius: 30px;
  margin-bottom: 24px;
  border: 1px solid rgba(var(--vx-gold-rgb), 0.15);
}
.hero-title {
  font-family: var(--vx-font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--vx-text-primary);
}
.hero-title .highlight { color: var(--vx-gold); }
.hero-description {
  font-size: 1.05rem;
  color: var(--vx-text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 560px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.hero-stat-item { text-align: left; }
.hero-stat-number {
  font-family: var(--vx-font-heading);
  font-size: 2rem; font-weight: 800;
  color: var(--vx-gold);
}
.hero-stat-label { font-size: 0.82rem; color: var(--vx-text-muted); margin-top: 4px; font-weight: 500; }

/* ---- SECTIONS ---- */
.verdela-section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-label {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--vx-gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--vx-font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.section-description {
  font-size: 0.95rem;
  color: var(--vx-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ---- CATEGORIES GRID ---- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.category-card {
  position: relative;
  border-radius: var(--vx-radius-lg);
  overflow: hidden;
  min-height: 280px;
  display: flex; align-items: flex-end;
  text-decoration: none;
  transition: var(--vx-transition);
  box-shadow: var(--vx-shadow);
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--vx-shadow-hover); }
.category-card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.category-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,46,26,0.1) 0%, rgba(26,46,26,0.75) 100%);
}
.category-card-content {
  position: relative; z-index: 2;
  padding: 28px;
  width: 100%;
}
.category-card-icon { font-size: 2rem; margin-bottom: 8px; display: block; }
.category-card-title {
  font-family: var(--vx-font-heading);
  font-size: 1.3rem; font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.category-card-count { font-size: 0.82rem; color: rgba(255,255,255,0.7); margin-bottom: 12px; }
.category-card-link {
  font-size: 0.8rem; font-weight: 600;
  color: #fff;
  text-transform: uppercase; letter-spacing: 1px;
  display: inline-flex; align-items: center; gap: 6px;
}

/* ---- PRODUCTS GRID ---- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--vx-card-bg);
  border-radius: var(--vx-radius);
  overflow: hidden;
  transition: var(--vx-transition);
  box-shadow: var(--vx-shadow);
  border: 1px solid var(--vx-border-light);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--vx-shadow-hover); }

.product-card-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--vx-bg-secondary);
}
.product-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.05); }

.verdela-badges {
  position: absolute; top: 12px; left: 12px;
  display: flex; flex-direction: column; gap: 6px;
  z-index: 5;
}
.badge {
  padding: 4px 10px;
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  border-radius: 4px;
  display: inline-block;
}
.badge-sale { background: var(--vx-error); color: #fff; }
.badge-new { background: var(--vx-gold); color: #fff; }
.badge-bestseller { background: var(--vx-warning); color: #1A2E1A; }

.product-card-actions {
  position: absolute; bottom: 12px; right: 12px;
  display: flex; gap: 8px;
  opacity: 0; transform: translateY(10px);
  transition: var(--vx-transition);
}
.product-card:hover .product-card-actions { opacity: 1; transform: translateY(0); }
.product-card-action-btn {
  width: 38px; height: 38px;
  background: var(--vx-card-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--vx-text-primary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: var(--vx-transition);
  text-decoration: none; border: none; cursor: pointer;
}
.product-card-action-btn:hover { background: var(--vx-gold); color: #fff; }

.product-card-info { padding: 16px 18px 20px; }
.product-card-category {
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--vx-gold);
  margin-bottom: 6px;
}
.product-card-title { font-size: 0.92rem; font-weight: 600; margin-bottom: 8px; line-height: 1.4; }
.product-card-title a { color: var(--vx-text-primary); text-decoration: none; }
.product-card-title a:hover { color: var(--vx-gold); }
.product-card-price { display: flex; align-items: center; gap: 8px; }
.price-current { font-size: 1rem; font-weight: 700; color: var(--vx-gold); }
.price-regular { font-size: 0.85rem; color: var(--vx-text-muted); text-decoration: line-through; }

/* ---- FEATURES GRID ---- */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card {
  background: var(--vx-card-bg);
  border-radius: var(--vx-radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--vx-transition);
  box-shadow: var(--vx-shadow);
  border: 1px solid var(--vx-border-light);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--vx-shadow-hover); }
.feature-icon {
  width: 60px; height: 60px;
  background: rgba(var(--vx-gold-rgb), 0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--vx-gold);
}
.feature-icon .material-icons-outlined { font-size: 1.5rem; }
.feature-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.feature-text { font-size: 0.85rem; color: var(--vx-text-secondary); line-height: 1.6; }

/* ---- BLOG GRID ---- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: var(--vx-card-bg);
  border-radius: var(--vx-radius);
  overflow: hidden;
  transition: var(--vx-transition);
  box-shadow: var(--vx-shadow);
  border: 1px solid var(--vx-border-light);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--vx-shadow-hover); }
.blog-card-image { aspect-ratio: 16/10; overflow: hidden; background: var(--vx-bg-secondary); }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-content { padding: 20px 24px 24px; }
.blog-card-meta { display: flex; gap: 12px; align-items: center; font-size: 0.75rem; color: var(--vx-text-muted); margin-bottom: 10px; }
.blog-card-category { color: var(--vx-gold); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.blog-card-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.blog-card-title a { color: var(--vx-text-primary); text-decoration: none; }
.blog-card-title a:hover { color: var(--vx-gold); }
.blog-card-excerpt { font-size: 0.85rem; color: var(--vx-text-secondary); line-height: 1.6; margin-bottom: 12px; }
.blog-card-link {
  font-size: 0.8rem; font-weight: 600; color: var(--vx-gold);
  text-transform: uppercase; letter-spacing: 1px;
  display: inline-flex; align-items: center; gap: 4px;
}
.blog-card-link:hover { gap: 8px; }

/* ---- NEWSLETTER ---- */
.newsletter-section { background: var(--vx-bg-secondary); border-top: 1px solid var(--vx-border-light); }
.newsletter-content { text-align: center; max-width: 500px; margin: 0 auto; }
.newsletter-form {
  display: flex; gap: 12px; margin-top: 24px;
}
.newsletter-input {
  flex: 1; padding: 14px 20px;
  background: var(--vx-card-bg);
  border: 1px solid var(--vx-border-light);
  border-radius: var(--vx-radius-sm);
  font-size: 0.9rem; color: var(--vx-text-primary);
  outline: none; transition: var(--vx-transition);
}
.newsletter-input:focus { border-color: var(--vx-gold); box-shadow: 0 0 0 3px rgba(var(--vx-gold-rgb), 0.1); }
.newsletter-input::placeholder { color: var(--vx-text-muted); }

/* ---- FOOTER ---- */
.verdela-footer {
  background: var(--vx-text-primary);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-logo {
  font-family: var(--vx-font-heading);
  font-size: 1.6rem; font-weight: 800;
  color: #fff; text-decoration: none;
  display: inline-block; margin-bottom: 16px;
  letter-spacing: 2px;
}
.footer-logo span { color: var(--vx-gold); }
.footer-description { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--vx-transition);
}
.footer-social a:hover { background: var(--vx-gold); color: #fff; }

.footer-column-title {
  font-family: var(--vx-font-heading);
  font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: #fff;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-links li {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--vx-transition);
}
.footer-links a:hover { color: var(--vx-gold); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copyright { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.footer-payment-icons { display: flex; gap: 8px; }
.payment-icon {
  padding: 4px 10px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  font-size: 0.7rem; font-weight: 600;
  color: rgba(255,255,255,0.5);
}

/* ---- SHOP PAGE ---- */
.verdela-shop-header { padding: 30px 0 16px; }
.verdela-breadcrumbs { padding: 0 0 4px; font-size: 0.82rem; color: var(--vx-text-muted); }
.verdela-breadcrumbs a { color: var(--vx-text-muted); text-decoration: none; }
.verdela-breadcrumbs a:hover { color: var(--vx-gold); }
.verdela-breadcrumbs .sep { margin: 0 8px; }
.verdela-breadcrumbs .current { color: var(--vx-text-primary); font-weight: 600; }

/* Category browser */
.verdela-category-browser {
  padding: 16px 0 24px;
  border-bottom: 1px solid var(--vx-border-light);
  margin-bottom: 24px;
}
.category-main-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.category-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  background: var(--vx-card-bg);
  border: 1px solid var(--vx-border-light);
  border-radius: 30px;
  font-size: 0.82rem; font-weight: 500;
  color: var(--vx-text-secondary);
  text-decoration: none;
  transition: var(--vx-transition);
}
.category-pill:hover, .category-pill.active {
  background: rgba(var(--vx-gold-rgb), 0.1);
  border-color: var(--vx-gold);
  color: var(--vx-gold);
}
.cat-icon { font-size: 1rem; }
.cat-count { font-size: 0.7rem; color: var(--vx-text-muted); }

.category-sub-row {
  display: none; gap: 8px; flex-wrap: wrap; align-items: center;
  padding: 8px 0;
}
.category-sub-row.visible { display: flex; }
.sub-label { font-size: 0.75rem; font-weight: 600; color: var(--vx-text-muted); text-transform: uppercase; letter-spacing: 1px; margin-right: 8px; }
.subcategory-chip {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 5px 12px;
  background: var(--vx-bg-secondary);
  border-radius: 20px;
  font-size: 0.78rem; font-weight: 500;
  color: var(--vx-text-secondary);
  text-decoration: none;
  transition: var(--vx-transition);
}
.subcategory-chip:hover, .subcategory-chip.active {
  background: rgba(var(--vx-gold-rgb), 0.1);
  color: var(--vx-gold);
}
.sub-icon { font-size: 0.85rem; }
.sub-count { font-size: 0.68rem; color: var(--vx-text-muted); }

/* ---- TRUST BADGES ---- */
.verdela-trust-badges {
  display: flex; gap: 16px; margin-top: 24px;
  flex-wrap: wrap;
}
.verdela-trust-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 500;
  color: var(--vx-text-secondary);
  padding: 8px 14px;
  background: rgba(var(--vx-gold-rgb), 0.06);
  border-radius: var(--vx-radius-sm);
}
.verdela-trust-badge .material-icons-outlined { font-size: 1.1rem; color: var(--vx-gold); }

/* ---- 404 PAGE ---- */
.page-404 { text-align: center; padding: 80px 24px; }
.page-404 h1 { font-size: 6rem; color: var(--vx-gold); margin-bottom: 16px; }

/* ---- PAGE HEADER ---- */
.page-header { padding: 30px 0 30px; }
.page-header h1 { font-size: 2rem; }

/* ---- SINGLE POST ---- */
.single-post-header { text-align: center; padding: 40px 0 24px; }
.single-post-meta { font-size: 0.82rem; color: var(--vx-text-muted); margin-bottom: 12px; display: flex; gap: 16px; justify-content: center; }
.single-post-content { max-width: 780px; margin: 0 auto; padding: 0 24px 60px; }
.single-post-content h2 { font-size: 1.5rem; margin: 32px 0 16px; }
.single-post-content h3 { font-size: 1.2rem; margin: 24px 0 12px; }
.single-post-content p { margin-bottom: 16px; line-height: 1.8; }
.single-post-content img { border-radius: var(--vx-radius); margin: 24px 0; }
.single-post-content ul, .single-post-content ol { padding-left: 24px; margin-bottom: 16px; }
.single-post-content li { margin-bottom: 6px; list-style: disc; }

/* ---- ANIMATIONS ---- */
.animate-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-in.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
  .nav-main { display: none; }
  .mobile-menu-toggle { display: flex; }
}
@media (max-width: 768px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .blog-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-stats { gap: 28px; }
  .hero-title { font-size: 2rem; }
  .header-main { padding: 0 16px; height: 60px; }
  .verdela-section { padding: 50px 0; }
  .newsletter-form { flex-direction: column; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-card-info { padding: 10px 12px 14px; }
  .product-card-title { font-size: 0.82rem; }
  .hero-buttons { flex-direction: column; }
}

/* ---- PRODUCT MARQUEE ---- */
.verdela-marquee-section {
  padding: 24px 0;
  overflow: hidden;
  background: var(--vx-bg-secondary);
  border-top: 1px solid var(--vx-border-light);
  border-bottom: 1px solid var(--vx-border-light);
  position: relative;
}
.marquee-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--vx-gold);
  margin-bottom: 16px;
}
.marquee-track {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}
.marquee-inner {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marqueeScroll 60s linear infinite;
}
.marquee-inner:hover {
  animation-play-state: paused;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-product {
  display: flex;
  flex-direction: column;
  width: 200px;
  flex-shrink: 0;
  text-decoration: none;
  transition: transform 0.3s ease;
  border-radius: var(--vx-radius);
  overflow: hidden;
  background: var(--vx-card-bg);
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
  border: 1px solid var(--vx-border-light);
}
.marquee-product:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--vx-shadow-hover);
}
.marquee-product-img {
  width: 200px;
  height: 200px;
  overflow: hidden;
  position: relative;
  background: var(--vx-bg-tertiary);
}
.marquee-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.marquee-product:hover .marquee-product-img img {
  transform: scale(1.08);
}
.marquee-product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: var(--vx-bg-tertiary);
}
.marquee-sale-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--vx-error);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 1px;
}
.marquee-product-info {
  padding: 10px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.marquee-product-cat {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--vx-gold);
}
.marquee-product-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--vx-text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}
.marquee-product-price {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--vx-gold);
}
