/*
Theme Name: ArtVilla
Theme URI: https://artvilla.com
Author: Custom
Description: Custom handmade portrait art eCommerce theme — Dynamic homepage with advanced animations, shortcode-powered inner pages, fully WooCommerce compatible.
Version: 2.1.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.0
License: GPL v2 or later
Text Domain: artvilla
Tags: woocommerce, ecommerce, custom, art, portrait
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --primary:        #6C3FC5;
  --primary-dark:   #4E2B9A;
  --primary-light:  #8B5CF6;
  --primary-pale:   #F3EEFF;
  --accent:         #F5A623;
  --accent-dark:    #D4881A;
  --accent-light:   #FFD580;
  --accent-pale:    #FFF8EC;
  --dark:           #1A1A2E;
  --dark-2:         #2D2D44;
  --gray-1:         #F7F5FF;
  --gray-2:         #EDE8F8;
  --gray-3:         #C4B8E0;
  --gray-4:         #8878AA;
  --gray-5:         #5C5078;
  --white:          #FFFFFF;
  --body-bg:        #FAF7FF;
  --text:           #1A1A2E;
  --text-muted:     #5C5078;
  --text-light:     #8878AA;
  --border:         #E2D9F3;
  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --radius-xl:      32px;
  --shadow-sm:      0 2px 8px rgba(108,63,197,0.08);
  --shadow-md:      0 6px 24px rgba(108,63,197,0.12);
  --shadow-lg:      0 12px 48px rgba(108,63,197,0.18);
  --font-heading:   'Playfair Display', Georgia, serif;
  --font-body:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition:     0.25s ease;
  --container:      1200px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--body-bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.section-padding { padding: 90px 0; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--dark);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-block;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-size: 15px;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-accent { background: var(--accent); color: var(--dark); border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: var(--dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(245,166,35,0.35); }

.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }

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

.btn-lg { padding: 18px 48px; font-size: 17px; }
.btn-sm { padding: 10px 22px; font-size: 13px; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-dark) 100%);
  background-size: 200% auto;
  animation: shimmer-bar 4s linear infinite;
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
}
.announcement-bar a { color: var(--accent-light); }
.announcement-bar strong { color: var(--accent-light); }
@keyframes shimmer-bar {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

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

.site-logo {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.site-logo span { color: var(--accent); }
.site-logo img { height: 44px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--primary);
  background: var(--primary-pale);
}

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

.header-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  color: var(--text);
  transition: all var(--transition);
}
.header-cart:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-pale); }

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

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================================
   HERO — DYNAMIC
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2D1B6E 50%, var(--primary-dark) 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* animated floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.18;
  animation: float-orb 8s ease-in-out infinite;
  pointer-events: none;
}
.hero-orb-1 { width: 500px; height: 500px; background: var(--primary-light); top: -100px; right: -100px; animation-delay: 0s; }
.hero-orb-2 { width: 350px; height: 350px; background: var(--accent); bottom: -80px; left: 10%; animation-delay: -3s; }
.hero-orb-3 { width: 250px; height: 250px; background: var(--primary); top: 40%; left: -60px; animation-delay: -6s; }
@keyframes float-orb {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.08); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 60px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.4);
  color: var(--accent-light);
  padding: 6px 18px;
  border-radius: var(--radius-xl);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}
.hero-badge::before { content: '★'; color: var(--accent); margin-right: 4px; }

.hero-title {
  font-size: clamp(38px, 5.5vw, 66px);
  color: var(--white);
  margin-bottom: 22px;
  line-height: 1.12;
}
.hero-title .highlight {
  color: var(--accent);
  position: relative;
}
.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 38px;
  line-height: 1.75;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 0; }

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero image side */
.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
}
.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: -12px;
  background: linear-gradient(135deg, rgba(245,166,35,0.3), rgba(108,63,197,0.3));
  border-radius: calc(var(--radius-lg) + 12px);
  animation: rotate-border 6s linear infinite;
}
.hero-image-wrap img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.hero-image-placeholder {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/5;
  background: rgba(255,255,255,0.06);
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.4);
  font-size: 70px;
}
.hero-image-placeholder p { font-size: 14px; font-family: var(--font-body); }

.hero-float-badge {
  position: absolute;
  bottom: 30px;
  left: -24px;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float-badge 4s ease-in-out infinite;
}
.hero-float-badge .icon {
  width: 40px; height: 40px;
  background: var(--primary-pale);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.hero-float-badge .text-sm { font-size: 12px; color: var(--text-muted); }
.hero-float-badge .text-bold { font-size: 14px; font-weight: 700; color: var(--dark); }

.hero-float-badge-2 {
  position: absolute;
  top: 24px;
  right: -20px;
  z-index: 2;
  background: var(--accent);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  box-shadow: 0 6px 20px rgba(245,166,35,0.4);
  color: var(--dark);
  font-weight: 700;
  font-size: 13px;
  animation: float-badge 4s ease-in-out infinite 2s;
}

@keyframes float-badge {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes rotate-border {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
}
.trust-item .icon {
  width: 32px; height: 32px;
  background: var(--primary-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
}

/* ============================================================
   PRODUCT CATEGORIES
   ============================================================ */
.categories { background: var(--body-bg); }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  display: block;
}
.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
  color: var(--text);
}
.category-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: var(--gray-2);
}
.category-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.category-card:hover .category-card-image img { transform: scale(1.08); }
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.55) 0%, transparent 60%);
}
.category-card-body {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.category-card-name {
  font-weight: 700;
  font-size: 16px;
  color: var(--dark);
  font-family: var(--font-heading);
}
.category-card-count { font-size: 12px; color: var(--text-muted); margin-top: 3px; }
.category-card-arrow {
  width: 34px; height: 34px;
  background: var(--primary-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 16px;
  transition: all var(--transition);
  flex-shrink: 0;
}
.category-card:hover .category-card-arrow { background: var(--primary); color: var(--white); transform: translateX(3px); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { background: var(--white); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.67% + 36px);
  right: calc(16.67% + 36px);
  height: 2px;
  background: linear-gradient(to right, var(--primary-light), var(--accent));
  z-index: 0;
}

.step-card { text-align: center; position: relative; z-index: 1; }

.step-number {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 24px;
  box-shadow: 0 6px 20px rgba(108,63,197,0.35);
  border: 4px solid var(--body-bg);
  transition: transform var(--transition);
}
.step-card:hover .step-number { transform: scale(1.1); }
.step-card:nth-child(3) .step-number {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  box-shadow: 0 6px 20px rgba(245,166,35,0.35);
}
.step-title { font-family: var(--font-heading); font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--dark); }
.step-desc { font-size: 15px; color: var(--text-muted); line-height: 1.75; }

/* ============================================================
   FEATURED PRODUCTS
   ============================================================ */
.featured-products { background: var(--body-bg); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.product-card-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: var(--gray-2);
}
.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.06); }

.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--accent);
  color: var(--dark);
  font-size: 11px; font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-xl);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 1;
}
.product-badge.new { background: var(--primary); color: var(--white); }

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card:hover .product-card-overlay { opacity: 1; }

.product-card-body { padding: 18px; }
.product-card-title { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.product-card-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.product-rating { display: flex; align-items: center; gap: 4px; font-size: 13px; color: var(--accent-dark); }
.product-rating span { color: var(--text-muted); }
.product-price { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--primary); }
.product-price del { font-size: 13px; color: var(--text-light); font-weight: 400; font-family: var(--font-body); margin-right: 4px; }

.product-card-btn {
  width: 100%;
  padding: 11px;
  background: var(--primary-pale);
  color: var(--primary);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
  text-align: center;
  display: block;
}
.product-card-btn:hover { background: var(--primary); color: var(--white); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us {
  background: linear-gradient(135deg, var(--dark) 0%, #1e1054 50%, #2D1B6E 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(108,63,197,0.15);
  pointer-events: none;
}
.why-us .section-title { color: var(--white); }
.why-us .section-subtitle { color: rgba(255,255,255,0.65); }
.why-us .section-label { color: var(--accent-light); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
}
.feature-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(245,166,35,0.4);
  transform: translateY(-6px);
}
.feature-icon {
  width: 56px; height: 56px;
  background: rgba(245,166,35,0.15);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.feature-title { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.feature-desc { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.75; }

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

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: var(--body-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 14px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 64px;
  color: var(--primary-pale);
  line-height: 1;
  pointer-events: none;
}
.review-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary-light); transform: translateY(-4px); }

.review-stars { display: flex; gap: 3px; margin-bottom: 14px; color: var(--accent); font-size: 16px; }
.review-text { font-size: 15px; color: var(--text); line-height: 1.75; margin-bottom: 20px; font-style: italic; position: relative; z-index: 1; }

.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; color: var(--white);
  flex-shrink: 0;
}
.review-author-name { font-weight: 700; font-size: 15px; color: var(--dark); }
.review-author-location { font-size: 12px; color: var(--text-muted); }

.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 52px;
  padding: 32px;
  background: linear-gradient(135deg, var(--primary-pale), var(--accent-pale));
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.reviews-summary-score {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.reviews-summary-stars { color: var(--accent); font-size: 26px; letter-spacing: 3px; margin: 6px 0; }
.reviews-summary-text { font-size: 14px; color: var(--text-muted); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--body-bg); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}
.gallery-grid .gallery-item:nth-child(3) { grid-column: span 2; }

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--gray-2);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label { color: var(--white); font-weight: 600; font-size: 15px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #2D1B6E 50%, var(--primary-dark) 100%);
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(245,166,35,0.12);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.cta-banner .section-label { color: var(--accent-light); }
.cta-banner .section-title { color: var(--white); }
.cta-banner .section-subtitle { color: rgba(255,255,255,0.78); margin: 0 auto 40px; }
.cta-banner .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: all var(--transition);
  animation: pulse-green 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); background: #20b858; box-shadow: 0 8px 32px rgba(37,211,102,0.6); }
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,0.8); }
}

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

.footer-top {
  padding: 72px 0 52px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .site-logo { color: var(--white); margin-bottom: 16px; }
.footer-brand .site-logo span { color: var(--accent); }
.footer-brand p { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,0.5); margin-bottom: 24px; }

.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--accent); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.footer-contact-item .ic { color: var(--accent); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); }
.footer-bottom-links a:hover { color: var(--accent); }

/* ============================================================
   WOOCOMMERCE — SINGLE PRODUCT
   ============================================================ */
.woocommerce-single { background: var(--white); padding: 60px 0; }
.single-product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

.product-gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 1;
  background: var(--gray-1);
}
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.product-thumbnails { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.product-thumbnails img {
  width: 72px; height: 72px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition);
}
.product-thumbnails img.active, .product-thumbnails img:hover { border-color: var(--primary); }

.product-info h1 { font-size: 32px; font-weight: 700; margin-bottom: 14px; }
.product-stars { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; font-size: 14px; color: var(--text-muted); }
.product-stars .stars { color: var(--accent); font-size: 16px; }

.product-price-single { font-family: var(--font-heading); font-size: 36px; font-weight: 700; color: var(--primary); margin-bottom: 24px; }
.product-price-single del { font-size: 20px; color: var(--text-light); font-weight: 400; margin-right: 8px; }

.product-desc { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }

.size-options { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.size-option {
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text);
}
.size-option:hover, .size-option.selected { border-color: var(--primary); background: var(--primary-pale); color: var(--primary); }

.upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  margin-bottom: 28px;
  transition: all var(--transition);
  cursor: pointer;
  background: var(--gray-1);
}
.upload-zone:hover, .upload-zone.active { border-color: var(--primary); background: var(--primary-pale); }
.upload-zone .upload-icon { font-size: 36px; margin-bottom: 12px; }
.upload-zone p { font-size: 15px; color: var(--text-muted); }
.upload-zone strong { color: var(--primary); }

.add-to-cart-btn {
  width: 100%;
  padding: 18px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-xl);
  font-size: 17px; font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-bottom: 12px;
  font-family: var(--font-body);
}
.add-to-cart-btn:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.buy-now-btn {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: var(--dark);
  border: none;
  border-radius: var(--radius-xl);
  font-size: 16px; font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.buy-now-btn:hover { background: var(--accent-dark); transform: translateY(-2px); }

.product-assurances { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border); }
.product-assurance { text-align: center; font-size: 12px; color: var(--text-muted); }
.product-assurance .ic { font-size: 22px; margin-bottom: 4px; }
.product-assurance strong { display: block; color: var(--dark); font-size: 13px; }

/* ============================================================
   SHOP / ARCHIVE
   ============================================================ */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 40px; padding: 60px 0; }
.filter-widget { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 20px; }
.filter-widget-title { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.filter-option { display: flex; align-items: center; gap: 10px; padding: 7px 0; font-size: 14px; color: var(--text); cursor: pointer; }
.filter-option input[type="checkbox"] { accent-color: var(--primary); width: 16px; height: 16px; }
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.shop-count { font-size: 14px; color: var(--text-muted); }
.shop-sort select { padding: 8px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; color: var(--text); background: var(--white); outline: none; }
.woo-products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ============================================================
   PAGE HERO (INNER PAGES)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2D1B6E 100%);
  padding: 68px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(245,166,35,0.08);
  pointer-events: none;
}
.page-hero h1 { font-size: 42px; color: var(--white); margin-bottom: 10px; position: relative; z-index: 1; }
.breadcrumb { font-size: 14px; color: rgba(255,255,255,0.5); position: relative; z-index: 1; }
.breadcrumb a { color: var(--accent-light); }
.breadcrumb-sep { margin: 0 6px; }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 28px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-close { align-self: flex-end; color: var(--white); font-size: 28px; background: none; border: none; cursor: pointer; margin-bottom: 32px; }
.mobile-nav a { font-size: 24px; font-family: var(--font-heading); color: var(--white); padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); display: block; transition: color var(--transition); }
.mobile-nav a:hover { color: var(--accent); }

/* ============================================================
   FORMS
   ============================================================ */
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 7px; }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108,63,197,0.1);
}
.form-field textarea { min-height: 120px; resize: vertical; }

/* ============================================================
   SHORTCODE COMPONENTS — INNER PAGE USE
   ============================================================ */

/* [artvilla_reviews] */
/* uses .reviews-grid / .review-card (defined above) */

/* [artvilla_gallery_grid] */
/* uses .gallery-grid / .gallery-item (defined above) */

/* [artvilla_cta_banner] */
.sc-cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 48px 0;
}
.sc-cta-banner .section-title { color: var(--white); margin-bottom: 12px; }
.sc-cta-banner p { color: rgba(255,255,255,0.75); font-size: 16px; margin-bottom: 28px; }

/* [artvilla_steps] */
.sc-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin: 40px 0; }
.sc-step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
}
.sc-step-num {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 22px; font-weight: 700; color: var(--white);
  margin: 0 auto 18px;
}
.sc-step-title { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.sc-step-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* [artvilla_features] */
.sc-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0; }
.sc-feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
}
.sc-feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.sc-feature-icon { font-size: 32px; margin-bottom: 14px; }
.sc-feature-title { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.sc-feature-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* [artvilla_faq] */
.sc-faq { margin: 40px 0; }
.sc-faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
}
.sc-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 16px;
  color: var(--dark);
  cursor: pointer;
  user-select: none;
  transition: background var(--transition);
}
.sc-faq-question:hover { background: var(--primary-pale); color: var(--primary); }
.sc-faq-question.open { background: var(--primary-pale); color: var(--primary); }
.sc-faq-icon { font-size: 20px; transition: transform var(--transition); flex-shrink: 0; }
.sc-faq-question.open .sc-faq-icon { transform: rotate(45deg); }
.sc-faq-answer {
  padding: 0 24px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.sc-faq-answer.open { max-height: 400px; padding: 0 24px 22px; }

/* [artvilla_trust_bar] */
.sc-trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin: 40px 0;
}
.sc-trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--dark); }
.sc-trust-icon { width: 32px; height: 32px; background: var(--primary-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }

/* [artvilla_stats] */
.sc-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin: 40px 0; }
.sc-stat-card {
  background: linear-gradient(135deg, var(--primary-pale), var(--accent-pale));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
}
.sc-stat-num { font-family: var(--font-heading); font-size: 40px; font-weight: 700; color: var(--primary); }
.sc-stat-label { font-size: 14px; color: var(--text-muted); margin-top: 6px; }

/* [artvilla_contact_bar] */
.sc-contact-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.sc-contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}
.sc-contact-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary-light); transform: translateY(-4px); }
.sc-contact-icon { font-size: 32px; margin-bottom: 12px; }
.sc-contact-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 6px; }
.sc-contact-value { font-size: 16px; font-weight: 600; color: var(--dark); }
.sc-contact-value a { color: var(--primary); }
.sc-contact-value a:hover { color: var(--primary-dark); }

/* [artvilla_team] */
.sc-team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin: 40px 0; }
.sc-team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: all var(--transition);
}
.sc-team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.sc-team-img { aspect-ratio: 1; background: var(--gray-2); overflow: hidden; }
.sc-team-img img { width: 100%; height: 100%; object-fit: cover; }
.sc-team-body { padding: 20px 16px; }
.sc-team-name { font-family: var(--font-heading); font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.sc-team-role { font-size: 13px; color: var(--primary); font-weight: 600; }

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .categories-grid, .products-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .sc-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .sc-team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-image { display: none; }
  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }
  .single-product-grid { grid-template-columns: 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .gallery-item:nth-child(3) { grid-column: span 1; }
  .woo-products-grid { grid-template-columns: repeat(2, 1fr); }
  .sc-steps-grid, .sc-features-grid { grid-template-columns: 1fr; }
  .sc-contact-bar { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section-padding { padding: 60px 0; }
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 20px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .product-assurances { grid-template-columns: 1fr; }
  .woo-products-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-summary { flex-direction: column; gap: 24px; }
  .sc-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .sc-team-grid { grid-template-columns: repeat(2, 1fr); }
  .sc-cta-banner { padding: 40px 24px; }
  .header-cta-btn { display: none !important; }
}

/* ============================================================
   SINGLE PRODUCT — FABUS-STYLE ENHANCEMENTS
   ============================================================ */

/* Gallery hover zoom */
.product-gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--gray-2);
  cursor: zoom-in;
}
.product-gallery-main:hover #main-img {
  transform: scale(1.05);
}

/* Thumbnails */
.product-thumbnails {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.product-thumbnails img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.product-thumbnails img.active,
.product-thumbnails img:hover {
  border-color: var(--primary);
  transform: scale(1.06);
}

/* Tooltip info icon */
.artvilla-tip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--text-light);
  font-size: 10px;
  font-weight: 700;
  color: var(--text-light);
  cursor: help;
  position: relative;
  flex-shrink: 0;
}
.artvilla-tip:hover::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 400;
  white-space: normal;
  max-width: 220px;
  z-index: 100;
  line-height: 1.5;
  box-shadow: var(--shadow-md);
}

/* Form selects & textarea */
.artvilla-select {
  width: 100%;
  padding: 10px 14px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--dark);
  font-family: var(--font-body);
  outline: none;
  cursor: pointer;
  transition: border-color var(--transition);
}
.artvilla-select:focus { border-color: var(--primary); }

.artvilla-textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--dark);
  font-family: var(--font-body);
  outline: none;
  resize: vertical;
  min-height: 80px;
  transition: border-color var(--transition);
}
.artvilla-textarea:focus { border-color: var(--primary); }

/* Upload zone */
.upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  background: var(--white);
}
.upload-zone:hover,
.upload-zone.drag {
  border-color: var(--primary);
  background: var(--primary-pale);
}

/* COD badge */
.cod-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-pale);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--primary-light);
}

/* Tab active state */
.product-tab-btn.active {
  border-bottom-color: var(--primary) !important;
  color: var(--primary) !important;
}

/* Toast */
#artvilla-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--dark);
  color: #fff;
  padding: 13px 28px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
  transition: transform 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
}
