/* ==========================================================
   FURNOSTYLES LUXE DESIGNS
   Personal Luxury. Elevated.
   Complete Unified CSS — Single File
   Version: 2.0
   ========================================================== */

/* ==========================================================
   TABLE OF CONTENTS
   1. CSS Variables (Design Tokens)
   2. Reset & Base
   3. Typography
   4. Container & Layout
   5. Utility Classes
   6. Buttons
   7. Header System
   8. Footer System
   9. Hero Sections with Images & Overlays
   10. Feature Strip — GOLD THEME
   11. Categories Section — NAVY THEME
   12. Products Section — WARM THEME
   13. Product Cards
   14. Shop Page — PETROL THEME
   15. Product Details — DARK THEME
   16. About Page — CREAM THEME
   17. Contact Page — LIGHT THEME
   18. FAQ Section — WHITE THEME
   19. Blog Page — SAND THEME
   20. Projects Page — STONE THEME
   21. Checkout Page — CLEAN THEME
   22. Start Project — MODERN THEME
   23. Wishlist — ROSE THEME
   24. Cart — CRISP THEME
   25. Search — MINIMAL THEME
   26. Mega Menu
   27. Animations
   28. Responsive Design
   ========================================================== */

/* ==========================================================
   1. CSS VARIABLES (Design Tokens)
   ========================================================== */

:root {
  /* ===== PRIMARY BRAND — Navy Blue ===== */
  --primary: #1a3a5c;
  --primary-dark: #0f2a42;
  --primary-light: #2a5a82;
  --primary-transparent: rgba(26, 58, 92, 0.08);

  /* ===== LUXURY ACCENT — Gold ===== */
  --gold: #c9a227;
  --gold-light: #d4b44e;
  --gold-dark: #a8821a;
  --gold-transparent: rgba(201, 162, 39, 0.12);

  /* ===== FEATURE THEME COLORS ===== */
  --feature-gold: #c9a227;
  --feature-navy: #1a3a5c;
  --feature-warm: #d4a373;
  --feature-petrol: #1a4a5a;
  --feature-dark: #2b2b2b;
  --feature-cream: #f8f6f2;
  --feature-light: #f0ede8;
  --feature-white: #ffffff;
  --feature-sand: #e8dcc8;
  --feature-stone: #d5cdc0;
  --feature-clean: #f5f4f0;
  --feature-modern: #eae6e0;
  --feature-rose: #f0e6e6;
  --feature-crisp: #f2f0ed;
  --feature-minimal: #f5f3f0;

  /* ===== NEUTRALS ===== */
  --charcoal: #2b2b2b;
  --charcoal-light: #4a4a4a;
  --ivory: #f8f6f2;
  --grey-light: #ededed;
  --white: #ffffff;

  /* ===== BACKGROUNDS ===== */
  --bg: #ffffff;
  --bg-alt: #f8f6f2;
  --bg-section: #f4f2ee;

  /* ===== TEXT ===== */
  --text: #2b2b2b;
  --text-light: #5a5a5a;
  --text-muted: #8a8a8a;

  /* ===== BORDERS ===== */
  --border: #e8e4dc;
  --border-light: #f0ede8;

  /* ===== STATUS ===== */
  --success: #2e7d32;
  --warning: #f9a825;
  --danger: #c62828;
  --info: #0288d1;

  /* ===== GRADIENTS ===== */
  --gradient-primary: linear-gradient(
    135deg,
    #1a3a5c 0%,
    #0f2a42 60%,
    #2a5a82 100%
  );
  --gradient-gold: linear-gradient(
    135deg,
    #c9a227 0%,
    #d4b44e 50%,
    #a8821a 100%
  );
  --gradient-dark: linear-gradient(180deg, #2b2b2b 0%, #1a1a1a 100%);

  /* ===== TYPOGRAPHY ===== */
  --font-primary: "Playfair Display", serif;
  --font-secondary: "Montserrat", sans-serif;

  /* ===== FONT SIZES ===== */
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.8rem;
  --fs-4xl: 3.6rem;

  /* ===== FONT WEIGHTS ===== */
  --fw-light: 300;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  /* ===== SPACING ===== */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 32px;
  --space-8: 40px;
  --space-9: 48px;
  --space-10: 64px;
  --space-11: 80px;
  --space-12: 100px;

  /* ===== CONTAINER ===== */
  --container-width: 1400px;
  --container-padding: 24px;

  /* ===== BORDER RADIUS ===== */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-round: 999px;

  /* ===== SHADOWS ===== */
  --shadow-xs: 0 2px 6px rgba(43, 43, 43, 0.04);
  --shadow-sm: 0 5px 15px rgba(43, 43, 43, 0.06);
  --shadow-md: 0 12px 30px rgba(43, 43, 43, 0.08);
  --shadow-lg: 0 20px 50px rgba(43, 43, 43, 0.12);
  --shadow-xl: 0 35px 75px rgba(43, 43, 43, 0.18);

  /* ===== TRANSITIONS ===== */
  --transition-fast: 0.2s ease;
  --transition: 0.35s ease;
  --transition-slow: 0.55s ease;

  /* ===== HEADER ===== */
  --topbar-height: 42px;
  --navbar-height: 88px;

  /* ===== BUTTONS ===== */
  --btn-height: 54px;
  --btn-radius: 8px;

  /* ===== CARDS ===== */
  --card-radius: 16px;
  --card-padding: 24px;

  /* ===== Z-INDEX ===== */
  --z-dropdown: 100;
  --z-sticky: 500;
  --z-fixed: 800;
  --z-modal: 1000;

  /* ===== SECTION SPACING ===== */
  --section-padding: 90px;
  --section-gap: 60px;
}

/* ==========================================================
   2. RESET & BASE
   ========================================================== */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-secondary);
  font-size: var(--fs-base);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================
   3. TYPOGRAPHY
   ========================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  color: var(--text);
  line-height: 1.2;
  font-weight: var(--fw-bold);
}

h1 {
  font-size: var(--fs-4xl);
}
h2 {
  font-size: var(--fs-3xl);
}
h3 {
  font-size: var(--fs-2xl);
}
h4 {
  font-size: var(--fs-xl);
}
h5 {
  font-size: var(--fs-lg);
}
h6 {
  font-size: var(--fs-md);
}

p {
  color: var(--text-light);
  line-height: 1.7;
  margin-top: var(--space-3);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

/* ==========================================================
   4. CONTAINER & LAYOUT
   ========================================================== */

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--section-padding) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-8);
}

.section-title .tag {
  display: inline-block;
  color: var(--gold);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-2);
}

.section-title h2 {
  margin-bottom: var(--space-2);
}

.section-title .title-divider {
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  margin: var(--space-3) auto;
  border-radius: var(--radius-round);
}

.section-title p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--text-light);
}

/* ==========================================================
   5. UTILITY CLASSES
   ========================================================== */

.text-center {
  text-align: center;
}
.text-primary {
  color: var(--primary);
}
.text-gold {
  color: var(--gold);
}
.text-white {
  color: var(--white);
}
.text-muted {
  color: var(--text-muted);
}

.bg-primary {
  background: var(--primary);
}
.bg-gold {
  background: var(--gold);
}
.bg-ivory {
  background: var(--ivory);
}
.bg-grey {
  background: var(--grey-light);
}
.bg-white {
  background: var(--white);
}

.mt-1 {
  margin-top: var(--space-1);
}
.mt-2 {
  margin-top: var(--space-2);
}
.mt-3 {
  margin-top: var(--space-3);
}
.mt-4 {
  margin-top: var(--space-4);
}
.mt-5 {
  margin-top: var(--space-5);
}
.mt-6 {
  margin-top: var(--space-6);
}
.mt-7 {
  margin-top: var(--space-7);
}
.mt-8 {
  margin-top: var(--space-8);
}

.mb-1 {
  margin-bottom: var(--space-1);
}
.mb-2 {
  margin-bottom: var(--space-2);
}
.mb-3 {
  margin-bottom: var(--space-3);
}
.mb-4 {
  margin-bottom: var(--space-4);
}
.mb-5 {
  margin-bottom: var(--space-5);
}
.mb-6 {
  margin-bottom: var(--space-6);
}
.mb-7 {
  margin-bottom: var(--space-7);
}
.mb-8 {
  margin-bottom: var(--space-8);
}

/* ==========================================================
   6. BUTTONS
   ========================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  height: var(--btn-height);
  padding: 0 var(--space-7);
  border-radius: var(--btn-radius);
  font-family: var(--font-secondary);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  letter-spacing: 0.5px;
}

/* ===== Primary — Gold ===== */
.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}
.btn-primary:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
}

/* ===== Outline — White ===== */
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* ===== Gold Button ===== */
.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
}

/* ===== White Button ===== */
.btn-white {
  background: var(--white);
  color: var(--primary);
}
.btn-white:hover {
  background: var(--ivory);
  transform: translateY(-3px);
}

/* ===== Secondary — Petrol ===== */
.btn-secondary {
  background: var(--feature-petrol);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(26, 74, 90, 0.3);
}
.btn-secondary:hover {
  background: #0d3a4a;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(26, 74, 90, 0.4);
}

/* ===== Dark Button ===== */
.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--charcoal-light);
  transform: translateY(-3px);
}

/* ===== Sizes ===== */
.btn-sm {
  height: 42px;
  padding: 0 var(--space-5);
  font-size: var(--fs-xs);
}
.btn-lg {
  height: 62px;
  padding: 0 var(--space-9);
  font-size: var(--fs-md);
}
.btn-block {
  width: 100%;
  justify-content: center;
}

/* ==========================================================
   7. HEADER SYSTEM — NAVY BLUE THEME
   ========================================================== */

/* ===== TOP BAR — NAVY BLUE (Refactored) ===== */
.top-bar {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--fs-xs);
  padding: var(--space-2) 0;
  border-bottom: 2px solid var(--gold);
}
.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.top-left {
  display: flex;
  gap: var(--space-5);
  flex-wrap: wrap;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.top-bar-item i {
  color: var(--gold);
  font-size: var(--fs-sm);
}
.top-bar-item a {
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
}
.top-bar-item a:hover {
  color: var(--gold);
}
.top-right {
  display: flex;
  gap: var(--space-4);
  align-items: center;
}
.top-social-links {
  display: flex;
  gap: var(--space-3);
}
.top-social-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}
.top-social-links a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

/* Middle Header — Light */
.middle-header {
  background: var(--white);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--border);
}
.middle-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-6);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text .brand {
  font-family: var(--font-primary);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--primary);
  letter-spacing: 0.5px;
}
.logo-text .slogan {
  font-family: var(--font-secondary);
  font-size: var(--fs-xs);
  color: var(--gold);
  font-weight: var(--fw-medium);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Search */
.header-search {
  flex: 1;
  max-width: 480px;
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}
.header-search:focus-within {
  border-color: var(--primary-dark);
  box-shadow: 0 0 0 4px var(--primary-transparent);
}
.header-search input {
  flex: 1;
  height: 44px;
  border: none;
  padding: 0 var(--space-4);
  font-family: var(--font-secondary);
  font-size: var(--fs-sm);
  outline: none;
  color: var(--text);
}
.header-search input::placeholder {
  color: var(--text-muted);
}
.header-search button {
  width: 48px;
  height: 44px;
  background: var(--gold);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.header-search button:hover {
  background: var(--primary-dark);
}

/* Trust Badges */
.header-trust-badges {
  display: flex;
  gap: var(--space-6);
}
.badge-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: var(--fs-lg);
}
.badge-text {
  display: flex;
  flex-direction: column;
}
.badge-text strong {
  font-size: var(--fs-sm);
  color: var(--text);
  font-weight: var(--fw-semibold);
}
.badge-text span {
  font-size: var(--fs-xs);
  color: var(--text-light);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}
.nav-icon-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--text);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  transition: var(--transition);
}
.nav-icon-link i {
  font-size: var(--fs-xl);
  color: var(--charcoal);
  transition: var(--transition);
}
.nav-icon-link:hover {
  color: var(--primary);
}
.nav-icon-link:hover i {
  color: var(--primary);
}
.icon-badge-wrapper {
  position: relative;
  display: inline-block;
}
.icon-badge-wrapper .count {
  position: absolute;
  top: -6px;
  right: -8px;
  width: 18px;
  height: 18px;
  background: var(--gold);
  color: var(--white);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main Navigation — NAVY THEME */
.main-header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  box-shadow: var(--shadow-md);
}
.navbar-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 52px;
}
.main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu > li {
  position: relative;
}
.nav-menu > li > a {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-secondary);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  padding: var(--space-3) 0;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  transition: var(--transition);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--gold);
}
.nav-menu > li > a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  border-radius: var(--radius-round);
}

/* Dropdown */
.nav-menu .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-sm);
  padding: var(--space-3) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: var(--z-dropdown);
  border-top: 3px solid var(--gold);
}
.nav-menu .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-menu .dropdown-menu li a {
  color: var(--text);
  padding: var(--space-3) var(--space-5);
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  transition: var(--transition);
}
.nav-menu .dropdown-menu li a:hover {
  background: var(--ivory);
  color: var(--primary);
  padding-left: var(--space-6);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: var(--fs-xl);
  cursor: pointer;
  padding: var(--space-2);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(43, 43, 43, 0.7);
  backdrop-filter: blur(4px);
  z-index: var(--z-modal);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}
.mobile-nav-container {
  position: absolute;
  top: 0;
  right: -320px;
  width: 100%;
  max-width: 320px;
  height: 100%;
  background: var(--white);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  padding: var(--space-6);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-nav-overlay.active .mobile-nav-container {
  right: 0;
}
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--border);
}
.mobile-nav-close {
  background: none;
  border: none;
  font-size: var(--fs-xl);
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
}
.mobile-nav-close:hover {
  color: var(--primary);
}
.mobile-nav {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-5) 0;
}
.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.mobile-nav-menu > li > a {
  color: var(--text);
  font-size: var(--fs-md);
  font-weight: var(--fw-medium);
  padding: var(--space-2) 0;
  display: block;
  transition: var(--transition);
}
.mobile-nav-menu > li > a:hover {
  color: var(--primary);
}
.mobile-dropdown-menu {
  display: none;
  padding-left: var(--space-5);
  margin-top: var(--space-2);
  border-left: 2px solid var(--border);
}
.mobile-dropdown.open .mobile-dropdown-menu {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.mobile-dropdown-menu li a {
  color: var(--text-light);
  font-size: var(--fs-sm);
  padding: var(--space-2) 0;
  display: block;
}
.mobile-dropdown-menu li a:hover {
  color: var(--primary);
}
.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* ==========================================================
   8. FOOTER SYSTEM — DARK THEME
   ========================================================== */

footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding-top: var(--space-10);
  border-top: 4px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1.1fr;
  gap: var(--space-8);
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  padding-bottom: var(--space-8);
}
.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-4);
}
.footer-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.footer-logo-text .brand {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: var(--fw-bold);
  color: var(--white);
  letter-spacing: 0.5px;
}
.footer-logo-text .slogan {
  font-family: var(--font-secondary);
  font-size: 0.65rem;
  color: var(--gold);
  font-weight: var(--fw-medium);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.footer-column p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-sm);
  line-height: 1.8;
  margin: 0 0 var(--space-4) 0;
}
.footer-title {
  color: var(--white);
  font-family: var(--font-primary);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-4);
  position: relative;
}
.footer-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gold);
  border-radius: var(--radius-round);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-sm);
  transition: var(--transition);
  display: inline-block;
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: var(--space-2);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-sm);
  margin: 0;
}
.footer-contact i {
  color: var(--gold);
  margin-top: 2px;
}
.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}
.footer-contact a:hover {
  color: var(--gold);
}
.social-icons {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}
.social-icons a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}
.footer-newsletter {
  display: flex;
  margin-top: var(--space-4);
  width: 100%;
}
.footer-newsletter input {
  flex: 1;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 0 var(--space-4);
  color: var(--white);
  font-size: var(--fs-sm);
  outline: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-family: var(--font-secondary);
}
.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.footer-newsletter input:focus {
  border-color: var(--gold);
}
.footer-newsletter button {
  width: 48px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  cursor: pointer;
  transition: var(--transition);
}
.footer-newsletter button:hover {
  background: var(--gold-dark);
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: var(--space-4) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--fs-sm);
  margin: 0;
}
.footer-legal-links {
  display: flex;
  gap: var(--space-5);
}
.footer-legal-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--fs-sm);
  transition: var(--transition);
}
.footer-legal-links a:hover {
  color: var(--gold);
}

/* ==========================================================
   9. HERO SECTIONS WITH IMAGES & OVERLAYS
   ========================================================== */

/* ===== MAIN HERO (index.html) ===== */
.hero {
  position: relative;
  padding: 70px 0 90px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary);
}

/* Background Image */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/hero.jpg") center/cover no-repeat;
  opacity: 0.7;
  z-index: 0;
}

/* Dark Overlay for Readability */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 26, 44, 0.75) 0%,
    rgba(26, 58, 92, 0.5) 60%,
    rgba(15, 26, 44, 0.7) 100%
  );
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 620px;
}

.hero-badge {
  display: inline-block;
  color: var(--gold);
  font-family: var(--font-secondary);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-3);
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: var(--white);
  margin-bottom: var(--space-3);
  line-height: 1.1;
}

.hero h1 .highlight {
  color: var(--gold);
}

.hero p {
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: var(--space-5);
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ==========================================================
   PAGE HERO (All Inner Pages)
   ========================================================== */

.page-hero {
  position: relative;
  padding: 80px 0 100px;
  min-height: 40vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

/* Default background image for all page heroes */
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/hero-furniture.jpg") center/cover no-repeat;
  opacity: 0.7;
  z-index: 0;
}

/* Dark Overlay for Readability */
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 26, 44, 0.8) 0%,
    rgba(26, 58, 92, 0.5) 60%,
    rgba(15, 26, 44, 0.75) 100%
  );
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero-content {
  max-width: 620px;
}

.page-hero .hero-badge {
  display: inline-block;
  color: var(--gold);
  font-family: var(--font-secondary);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-4);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: var(--space-3);
}

.page-hero h1 .highlight {
  color: var(--gold);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--fs-md);
  line-height: 1.8;
  max-width: 500px;
}

/* ==========================================================
   SPECIFIC PAGE HERO OVERRIDES
   ========================================================== */

/* About Hero */
.about-hero::before {
  background: url("../assets/images/about-main.jpg") center/cover no-repeat;
}

/* Shop Hero */
.shop-hero::before {
  background: url("../assets/images/hero-tools.jpg") center/cover no-repeat;
}

/* Blog Hero */
.blog-hero::before {
  background: url("../assets/images/hero-furniture.jpg") center/cover no-repeat;
}

/* Contact Hero */
.contact-hero::before {
  background: url("../assets/images/about-main1.jpg") center/cover no-repeat;
}

/* Projects Hero */
.projects-hero::before {
  background: url("../assets/images/hero-tools.jpg") center/cover no-repeat;
}

/* Products Hero */
.products-hero::before {
  background: url("../assets/images/hero-furniture.jpg") center/cover no-repeat;
}

/* Services Hero */
.services-hero::before {
  background: url("../assets/images/about-main.jpg") center/cover no-repeat;
}

/* Custom Furniture Hero */
.custom-hero::before {
  background: url("../assets/images/hero-furniture.jpg") center/cover no-repeat;
}

/* Home Improvement Hero */
.home-improvement-hero::before {
  background: url("../assets/images/hero-tools.jpg") center/cover no-repeat;
}

/* Interior Design Hero */
.interior-hero::before {
  background: url("../assets/images/about-main.jpg") center/cover no-repeat;
}

/* Materials Hero */
.materials-hero::before {
  background: url("../assets/images/hero-tools.jpg") center/cover no-repeat;
}

/* Checkout Hero */
.checkout-hero::before {
  background: url("../assets/images/hero-furniture.jpg") center/cover no-repeat;
}

/* Wishlist Hero */
.wishlist-hero::before {
  background: url("../assets/images/hero.jpg") center/cover no-repeat;
}

/* Project Hero (project.html) */
.project-hero::before {
  background: url("../assets/images/hero-tools.jpg") center/cover no-repeat;
}

/* Search Hero */
.search-hero::before {
  background: url("../assets/images/hero.jpg") center/cover no-repeat;
}

/* Upload Hero */
.upload-hero::before {
  background: url("../assets/images/hero-tools.jpg") center/cover no-repeat;
}

/* Terms Hero */
.terms-hero::before {
  background: url("../assets/images/hero.jpg") center/cover no-repeat;
}

/* ==========================================================
   10. FEATURE STRIP — GOLD THEME
   ========================================================== */

.feature-strip {
  background: var(--primary);
  padding: var(--space-6) 0;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  color: var(--white);
}
.feature-item .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: var(--fs-xl);
  flex-shrink: 0;
}
.feature-item h4 {
  font-family: var(--font-primary);
  font-size: var(--fs-md);
  color: var(--white);
  margin-bottom: 2px;
}
.feature-item p {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* ==========================================================
   11. CATEGORIES SECTION — NAVY THEME
   ========================================================== */

.collections-section {
  padding: var(--section-padding) 0;
  background: var(--white);
}
.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-5);
}
.collection-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-decoration: none;
  display: block;
  border: 1px solid var(--border);
}
.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.collection-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--cream);
}
.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.collection-card:hover .collection-image img {
  transform: scale(1.05);
}
.collection-content {
  padding: var(--space-4);
  text-align: center;
}
.collection-content h4 {
  font-family: var(--font-primary);
  font-size: var(--fs-md);
  color: var(--text);
  margin-bottom: var(--space-1);
}
.collection-content .count {
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

/* ==========================================================
   12. PRODUCTS SECTION — WARM THEME
   ========================================================== */

.products-section {
  padding: var(--section-padding) 0;
  background: var(--white);
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-8);
}
.section-header h2 {
  font-size: var(--fs-2xl);
  margin-bottom: 0;
}
.section-header .view-all {
  color: var(--primary);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  transition: var(--transition);
}
.section-header .view-all:hover {
  gap: var(--space-4);
}

/* ==========================================================
   13. PRODUCT CARDS — WARM THEME
   ========================================================== */

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  padding: 16px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

/* Product Image */
.product-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--bg-alt);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
}
.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-image-wrapper img {
  transform: scale(1.04);
}

/* Badges */
.product-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  color: var(--white);
}
.product-badge.new {
  background: var(--primary);
}
.product-badge.sale {
  background: var(--danger);
}
.product-badge.featured {
  background: var(--gold);
}
.product-badge.best-seller {
  background: var(--charcoal);
}

/* Wishlist Button */
.product-wishlist {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  z-index: 2;
}
.product-wishlist:hover {
  background: var(--ivory);
  color: var(--danger);
  transform: scale(1.08);
}
.product-wishlist.active i {
  color: var(--danger);
}

/* Product Info */
.product-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.product-info h3 {
  font-family: var(--font-primary);
  font-size: 17px;
  color: var(--text);
  margin-bottom: 2px;
  line-height: 1.3;
  font-weight: var(--fw-bold);
}
.product-info h3 a {
  color: inherit;
  transition: var(--transition);
}
.product-info h3 a:hover {
  color: var(--primary);
}
.product-material {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 6px;
}

/* Price */
.product-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}
.product-price .current {
  font-size: 18px;
  font-weight: var(--fw-bold);
  color: var(--text);
}
.product-price .old {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
}

/* Stock Status */
.product-stock {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--success);
  font-weight: 500;
  margin-bottom: 12px;
}
.product-stock .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
}

/* Product Actions */
.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.add-to-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 38px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: var(--fw-semibold);
  cursor: pointer;
  transition: all 0.3s ease;
}
.add-to-cart-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 58, 92, 0.2);
}
.quick-view-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 6px;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: var(--fw-semibold);
  cursor: pointer;
  transition: all 0.3s ease;
}
.quick-view-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.request-quote-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 38px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: var(--fw-semibold);
  cursor: pointer;
  transition: all 0.3s ease;
}
.request-quote-btn:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 162, 39, 0.3);
}

/* ==========================================================
   14. SHOP PAGE — PETROL THEME
   ========================================================== */

.shop-section {
  padding: 40px 0 80px;
  background: var(--bg);
}
.shop-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
}
.shop-sidebar {
  position: sticky;
  top: 120px;
  align-self: start;
}
.shop-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-bottom: 20px;
}
.shop-breadcrumbs a {
  color: var(--text-muted);
  transition: var(--transition);
}
.shop-breadcrumbs a:hover {
  color: var(--primary);
}
.category-header {
  margin-bottom: 30px;
}
.category-header h2 {
  font-size: var(--fs-3xl);
  color: var(--text);
  margin-bottom: var(--space-2);
}
.category-header p {
  font-size: var(--fs-md);
  color: var(--text-light);
  max-width: 700px;
  line-height: 1.7;
  margin: 0;
}

/* Filter Card — PETROL THEME */
.filter-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
}
.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.filter-header h4 {
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  color: var(--text);
  font-family: var(--font-secondary);
}
.filter-header .clear-btn {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.filter-header .clear-btn:hover {
  color: var(--danger);
}
.filter-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.filter-group label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--fs-sm);
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}
.filter-group label:hover {
  color: var(--text);
}
.filter-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
  cursor: pointer;
}
.filter-card select {
  width: 100%;
  height: 44px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-secondary);
  font-size: var(--fs-sm);
  outline: none;
  background: var(--bg-alt);
  cursor: pointer;
  color: var(--text);
}
.filter-card select:focus {
  border-color: var(--primary);
}

/* Search Box */
.search-box {
  position: relative;
}
.search-box input {
  width: 100%;
  height: 44px;
  padding: 0 16px;
  padding-right: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-secondary);
  font-size: var(--fs-sm);
  outline: none;
  transition: var(--transition);
  background: var(--bg-alt);
}
.search-box input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-transparent);
}
.search-box i {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

/* Price Range */
.price-filter {
  padding-top: 4px;
}
.price-filter input[type="range"] {
  width: 100%;
  accent-color: var(--primary);
  cursor: pointer;
}
.price-values {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-sm);
  color: var(--text-light);
  margin-top: 12px;
}

/* Shop Toolbar */
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}
.toolbar-left p {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin: 0;
}
.toolbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.view-toggle {
  display: flex;
  gap: 6px;
}
.view-toggle button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.view-toggle button:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.view-toggle button.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.pagination button {
  min-width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
}
.pagination button:hover:not(:disabled) {
  border-color: var(--primary);
  color: var(--primary);
}
.pagination button.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.pagination button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ==========================================================
   15. PRODUCT DETAILS — DARK THEME
   ========================================================== */

.product-details-section {
  padding: var(--section-padding) 0;
  background: var(--bg);
}
.product-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: 60px;
}

/* Gallery */
.product-gallery {
  position: relative;
}
.main-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-4);
  background: var(--ivory);
}
.main-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.gallery-thumbnails {
  display: flex;
  gap: var(--space-3);
}
.gallery-thumbnails img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-thumbnails img:hover {
  border-color: var(--primary);
}

/* Product Info Details — DARK THEME */
.product-info-details {
  display: flex;
  flex-direction: column;
}
.product-info-details .product-category {
  display: inline-block;
  color: var(--primary);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-2);
}
.product-info-details h1 {
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-4);
}
.product-price-large {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.product-price-large .current {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--primary);
}
.product-price-large .old {
  font-size: var(--fs-xl);
  color: var(--text-muted);
  text-decoration: line-through;
}
.product-description {
  margin-bottom: var(--space-6);
}
.product-description p {
  color: var(--text-light);
  line-height: 1.8;
}
.product-features-list {
  margin-bottom: var(--space-6);
}
.product-features-list h4 {
  font-family: var(--font-secondary);
  font-size: var(--fs-md);
  margin-bottom: var(--space-3);
}
.product-features-list ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.product-features-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--fs-sm);
  color: var(--text-light);
}
.product-features-list li i {
  color: var(--gold);
}

/* Specifications */
.product-specifications {
  margin-bottom: var(--space-6);
}
.product-specifications h4 {
  font-family: var(--font-secondary);
  font-size: var(--fs-md);
  margin-bottom: var(--space-3);
}
.product-specifications dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}
.product-specifications dt {
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  color: var(--text);
}
.product-specifications dd {
  font-size: var(--fs-sm);
  color: var(--text-light);
}
.product-actions-details {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

/* ==========================================================
   16. ABOUT PAGE — CREAM THEME
   ========================================================== */

.about-story {
  padding: 80px 0;
  background: var(--bg);
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.about-content .section-tag {
  display: inline-block;
  color: var(--gold);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: var(--fs-sm);
  margin-bottom: var(--space-2);
}
.about-content h2 {
  margin-bottom: var(--space-4);
}
.about-content h2 .highlight {
  color: var(--primary);
}
.about-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}
.about-highlights {
  display: grid;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.highlight-item i {
  font-size: 24px;
  color: var(--gold);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.highlight-item strong {
  display: block;
  font-size: var(--fs-md);
  color: var(--text);
}
.highlight-item span {
  font-size: var(--fs-sm);
  color: var(--text-light);
}

/* Values — CREAM THEME */
.about-values {
  padding: 80px 0;
  background: var(--bg-alt);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.value-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary-transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  color: var(--primary);
  font-size: 28px;
  transition: var(--transition);
}
.value-card:hover .value-icon {
  background: var(--primary);
  color: var(--white);
}
.value-card h3 {
  font-family: var(--font-secondary);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-2);
}
.value-card p {
  color: var(--text-light);
  font-size: var(--fs-sm);
  line-height: 1.6;
  margin: 0;
}

/* Craftsmanship — CREAM THEME */
.about-craftsmanship {
  padding: 80px 0;
  background: var(--bg);
}
.craftsmanship-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.craftsmanship-content .section-tag {
  display: inline-block;
  color: var(--gold);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: var(--fs-sm);
  margin-bottom: var(--space-2);
}
.craftsmanship-content h2 {
  margin-bottom: var(--space-4);
}
.craftsmanship-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}
.craftsmanship-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.craftsmanship-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--fs-sm);
  color: var(--text-light);
}
.craftsmanship-list li i {
  color: var(--gold);
}
.craftsmanship-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.craftsmanship-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

/* Statistics — DARK THEME */
.about-statistics {
  padding: 80px 0;
  background: var(--primary);
  color: var(--white);
}
.about-statistics .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.about-statistics .stat-card {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}
.about-statistics .stat-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}
.about-statistics .stat-card i {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: var(--space-3);
  display: block;
}
.about-statistics .stat-card .number {
  display: block;
  font-family: var(--font-primary);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--white);
  line-height: 1;
}
.about-statistics .stat-card .label {
  display: block;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.7);
  margin-top: var(--space-2);
}

/* CTA — GOLD THEME */
.about-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  text-align: center;
  color: var(--white);
}
.about-cta .cta-content {
  max-width: 700px;
  margin: 0 auto;
}
.about-cta .cta-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-round);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: var(--fs-sm);
  margin-bottom: var(--space-4);
}
.about-cta h2 {
  color: var(--white);
  margin-bottom: var(--space-4);
}
.about-cta p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 550px;
  margin: 0 auto var(--space-6);
}

/* ==========================================================
   17. CONTACT PAGE — LIGHT THEME
   ========================================================== */

.contact-section {
  padding: 80px 0;
  background: var(--bg-alt);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-3);
  color: var(--text);
}
.contact-subtitle {
  color: var(--text-light);
  font-size: var(--fs-md);
  margin-bottom: var(--space-8);
  line-height: 1.8;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: var(--space-8);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--primary-transparent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
}
.contact-text h4 {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-1);
  font-family: var(--font-body);
  color: var(--text);
}
.contact-text p {
  margin-bottom: 2px;
  color: var(--text-light);
  font-size: 0.95rem;
  margin-top: 0;
}
.contact-text a {
  color: var(--text-light);
  transition: var(--transition);
}
.contact-text a:hover {
  color: var(--primary);
}

/* Social Links — LIGHT THEME */
.social-links {
  margin-top: var(--space-4);
}
.social-links h4 {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-3);
  font-family: var(--font-body);
  color: var(--text);
}
.social-links .social-icons {
  display: flex;
  gap: 12px;
  margin-top: 0;
}
.social-links .social-icons a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-links .social-icons a:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Contact Form — WHITE THEME */
.contact-form-wrapper {
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.contact-form-wrapper h2 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-6);
  color: var(--text);
}
.contact-form .form-group {
  margin-bottom: var(--space-5);
}
.contact-form label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  margin-bottom: 6px;
  color: var(--text);
}
.contact-form .required {
  color: var(--danger);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  transition: var(--transition);
  color: var(--text);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-transparent);
  background: var(--white);
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form .checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.contact-form .checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--primary);
}
.contact-form .checkbox-group label {
  font-weight: var(--fw-normal);
  font-size: var(--fs-sm);
  color: var(--text-light);
  cursor: pointer;
  margin-bottom: 0;
}
.contact-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: var(--space-2);
}

/* Map — CLEAN THEME */
.map-section {
  padding: 0 0 80px 0;
  background: var(--bg-alt);
}
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.map-wrapper iframe {
  display: block;
  width: 100%;
}

/* ==========================================================
   18. FAQ SECTION — WHITE THEME
   ========================================================== */

.faq-section {
  padding: 80px 0;
  background: var(--bg);
}
.faq-section .section-header {
  display: block;
  text-align: center;
  margin-bottom: var(--space-8);
}
.faq-section .section-header .section-subtitle {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-3);
  font-family: var(--font-secondary);
}
.faq-section .section-header h2 {
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-3);
  color: var(--text);
}
.faq-section .section-header h2 .highlight {
  color: var(--gold);
}
.faq-intro {
  max-width: 650px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: var(--fs-md);
  line-height: 1.8;
}
.faq-intro a {
  color: var(--primary);
  font-weight: var(--fw-semibold);
  transition: var(--transition);
}
.faq-intro a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* FAQ Accordion — WHITE THEME */
.faq-accordion {
  max-width: 850px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover {
  border-color: var(--border);
}
.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--text);
  text-align: left;
  transition: var(--transition);
}
.faq-question:hover {
  color: var(--primary);
}
.faq-question i {
  font-size: 0.9rem;
  color: var(--text-light);
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--primary);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.active .faq-answer {
  max-height: 600px;
}
.faq-answer p,
.faq-answer ul {
  padding: 0 24px 24px;
  margin-bottom: 0;
}
.faq-answer p {
  color: var(--text-light);
  line-height: 1.8;
}
.faq-answer ul {
  list-style: disc;
  padding-left: 44px;
  padding-bottom: 8px;
}
.faq-answer ul li {
  color: var(--text-light);
  margin-bottom: 6px;
  line-height: 1.6;
}
.faq-answer ul li strong {
  color: var(--text);
}

/* FAQ CTA — GOLD THEME */
.faq-cta {
  text-align: center;
  margin-top: 60px;
  padding: 48px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}
.faq-cta h3 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-2);
  color: var(--text);
}
.faq-cta p {
  color: var(--text-light);
  margin-bottom: var(--space-6);
  font-size: var(--fs-md);
}
.faq-cta-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}
.faq-cta-buttons .btn-secondary {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.faq-cta-buttons .btn-secondary:hover {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ==========================================================
   19. BLOG PAGE — SAND THEME
   ========================================================== */

.blog-section {
  padding: 80px 0;
  background: var(--bg-alt);
}
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
}

/* Featured Post — SAND THEME */
.featured-post {
  margin-bottom: 48px;
}
.featured-post-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.featured-post-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.featured-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-alt);
}
.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.featured-post-card:hover .featured-image img {
  transform: scale(1.03);
}
.featured-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--white);
  padding: 4px 14px;
  border-radius: var(--radius-xs);
  font-size: 11px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}
.featured-content {
  padding: 32px 32px 32px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-content .post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.featured-content .post-meta .post-category {
  color: var(--primary);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 11px;
}
.featured-content .post-meta .post-date {
  display: flex;
  align-items: center;
  gap: 4px;
}
.featured-content .post-meta .post-date::before {
  content: "•";
  color: var(--text-muted);
}
.featured-content h2 {
  font-size: var(--fs-2xl);
  margin: 0 0 12px 0;
  line-height: 1.2;
}
.featured-content h2 a {
  color: inherit;
  transition: var(--transition);
}
.featured-content h2 a:hover {
  color: var(--primary);
}
.featured-content p {
  color: var(--text-light);
  font-size: var(--fs-md);
  line-height: 1.8;
  margin: 0 0 20px 0;
}
.featured-content .read-more {
  color: var(--primary);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.featured-content .read-more:hover {
  gap: 12px;
  color: var(--primary-dark);
}

/* Blog Grid — SAND THEME */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.blog-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-alt);
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.04);
}
.blog-card-content {
  padding: 20px;
}
.blog-card-content .post-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.blog-card-content .post-meta .post-category {
  color: var(--primary);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 10px;
}
.blog-card-content .post-meta .post-date {
  display: flex;
  align-items: center;
  gap: 4px;
}
.blog-card-content .post-meta .post-date::before {
  content: "•";
  color: var(--text-muted);
}
.blog-card-content h3 {
  font-family: var(--font-primary);
  font-size: var(--fs-lg);
  margin: 0 0 8px 0;
  line-height: 1.3;
}
.blog-card-content h3 a {
  color: inherit;
  transition: var(--transition);
}
.blog-card-content h3 a:hover {
  color: var(--primary);
}
.blog-card-content .post-excerpt {
  color: var(--text-light);
  font-size: var(--fs-sm);
  line-height: 1.6;
  margin: 0 0 16px 0;
}
.blog-card-content .read-more {
  color: var(--primary);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.blog-card-content .read-more:hover {
  gap: 12px;
  color: var(--primary-dark);
}

/* Blog Sidebar — SAND THEME */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.blog-sidebar .sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border);
}
.blog-sidebar .sidebar-widget h4 {
  font-family: var(--font-secondary);
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  margin-bottom: 16px;
  color: var(--text);
  position: relative;
  padding-bottom: 10px;
}
.blog-sidebar .sidebar-widget h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gold);
  border-radius: var(--radius-round);
}

/* Sidebar Search */
.search-widget .search-form {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}
.search-widget .search-form:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-transparent);
}
.search-widget .search-form input {
  flex: 1;
  height: 44px;
  border: none;
  padding: 0 14px;
  font-family: var(--font-secondary);
  font-size: var(--fs-sm);
  outline: none;
  color: var(--text);
  background: transparent;
}
.search-widget .search-form input::placeholder {
  color: var(--text-muted);
}
.search-widget .search-form button {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.search-widget .search-form button:hover {
  background: var(--primary-dark);
}

/* Categories Widget */
.categories-widget .sidebar-categories {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.categories-widget .sidebar-categories li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  color: var(--text-light);
  font-size: var(--fs-sm);
  transition: var(--transition);
  border-bottom: 1px solid var(--border-light);
}
.categories-widget .sidebar-categories li:last-child a {
  border-bottom: none;
}
.categories-widget .sidebar-categories li a:hover,
.categories-widget .sidebar-categories li a.active {
  color: var(--primary);
}
.categories-widget .sidebar-categories li a .count {
  background: var(--bg-alt);
  padding: 2px 10px;
  border-radius: var(--radius-round);
  font-size: 11px;
  color: var(--text-muted);
  transition: var(--transition);
}
.categories-widget .sidebar-categories li a:hover .count {
  background: var(--primary);
  color: var(--white);
}

/* Recent Posts Widget */
.recent-widget .recent-posts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.recent-widget .recent-post {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
}
.recent-widget .recent-post:last-child {
  border-bottom: none;
}
.recent-widget .recent-post .recent-image {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-alt);
  flex-shrink: 0;
}
.recent-widget .recent-post .recent-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recent-widget .recent-post .recent-info h5 {
  font-family: var(--font-secondary);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  margin: 0 0 2px 0;
  line-height: 1.3;
}
.recent-widget .recent-post .recent-info h5 a {
  color: var(--text);
  transition: var(--transition);
}
.recent-widget .recent-post .recent-info h5 a:hover {
  color: var(--primary);
}
.recent-widget .recent-post .recent-info .recent-date {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Tags Widget */
.tags-widget .sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tags-widget .sidebar-tags .tag-link {
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  font-size: 12px;
  color: var(--text-light);
  transition: var(--transition);
}
.tags-widget .sidebar-tags .tag-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-transparent);
}

/* Blog Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  grid-column: 1 / -1;
}
.blog-pagination button {
  min-width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
}
.blog-pagination button:hover:not(:disabled) {
  border-color: var(--primary);
  color: var(--primary);
}
.blog-pagination button.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.blog-pagination button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ==========================================================
   20. PROJECTS PAGE — STONE THEME
   ========================================================== */

.projects-section {
  padding: 40px 0 80px;
  background: var(--bg);
}
.projects-action-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.projects-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.projects-filter .filter-btn {
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-round);
  background: var(--white);
  color: var(--text-light);
  font-family: var(--font-secondary);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  cursor: pointer;
  transition: var(--transition);
}
.projects-filter .filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.projects-filter .filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Projects Grid — STONE THEME */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.project-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.project-card:hover .project-image img {
  transform: scale(1.05);
}
.project-status {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 14px;
  border-radius: var(--radius-xs);
  font-size: 10px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
}
.project-status.pending {
  background: var(--warning);
}
.project-status.in-progress {
  background: var(--info);
}
.project-status.completed {
  background: var(--success);
}
.project-content {
  padding: 20px;
}
.project-content h3 {
  font-size: var(--fs-lg);
  margin-bottom: 4px;
}
.project-content .project-meta {
  display: flex;
  gap: 16px;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-bottom: 8px;
}
.project-content .project-meta i {
  margin-right: 4px;
}
.project-content p {
  color: var(--text-light);
  font-size: var(--fs-sm);
  line-height: 1.6;
  margin: 0 0 12px 0;
}
.project-content .project-link {
  color: var(--primary);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.project-content .project-link:hover {
  gap: 12px;
  color: var(--primary-dark);
}

/* Projects Empty State */
.projects-empty {
  text-align: center;
  padding: 60px 20px;
  grid-column: 1 / -1;
}
.projects-empty i {
  font-size: 48px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.projects-empty h3 {
  font-size: var(--fs-xl);
  color: var(--text);
  margin-bottom: 8px;
}
.projects-empty p {
  color: var(--text-light);
}

/* ==========================================================
   21. CHECKOUT PAGE — CLEAN THEME
   ========================================================== */

.checkout-section {
  padding: 40px 0 80px;
  background: var(--bg);
}
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
}

/* Checkout Steps — CLEAN THEME */
.checkout-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
  position: relative;
}
.checkout-steps::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.checkout-steps .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 1;
  cursor: pointer;
}
.checkout-steps .step .step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-secondary);
  font-weight: var(--fw-bold);
  font-size: var(--fs-md);
  color: var(--text-muted);
  transition: var(--transition);
}
.checkout-steps .step.active .step-number {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.checkout-steps .step .step-label {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  font-weight: var(--fw-medium);
}
.checkout-steps .step.active .step-label {
  color: var(--primary);
  font-weight: var(--fw-semibold);
}

/* Checkout Form — CLEAN THEME */
.checkout-step-content {
  display: none;
}
.checkout-step-content.active {
  display: block;
  animation: fadeInUp 0.4s ease;
}
.checkout-step-content h3 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-2);
}
.checkout-step-content .form-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.checkout-form-column {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid var(--border);
}
.checkout-form-column .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Payment Options — CLEAN THEME */
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.payment-option {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}
.payment-option:hover {
  border-color: var(--primary);
}
.payment-option input[type="radio"] {
  accent-color: var(--primary);
  width: 18px;
  height: 18px;
  margin-right: 12px;
}
.payment-option .payment-details {
  display: flex;
  align-items: center;
  gap: 12px;
}
.payment-option .payment-details i {
  font-size: 24px;
  color: var(--primary);
}

/* Order Summary — CLEAN THEME */
.checkout-summary-column {
  align-self: start;
}
.checkout-summary-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid var(--border);
  position: sticky;
  top: 120px;
}
.checkout-summary-card h3 {
  font-size: var(--fs-xl);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.checkout-summary-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}
.checkout-summary-item img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.checkout-summary-item .item-info {
  flex: 1;
}
.checkout-summary-item .item-info h4 {
  font-family: var(--font-secondary);
  font-size: var(--fs-sm);
  margin-bottom: 2px;
}
.checkout-summary-item .item-info .item-price {
  font-size: var(--fs-sm);
  color: var(--text-light);
}
.checkout-totals {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.checkout-totals .total-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: var(--fs-sm);
  color: var(--text-light);
}
.checkout-totals .total-row.grand-total {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--text);
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding-top: 12px;
}

/* ==========================================================
   22. START PROJECT — MODERN THEME
   ========================================================== */

.project-section {
  padding: 40px 0 80px;
  background: var(--bg);
}
.project-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
}
.project-form-column {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid var(--border);
}

/* Project Steps — MODERN THEME */
.project-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
  position: relative;
}
.project-steps::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 30px;
  right: 30px;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.project-steps .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 1;
  cursor: pointer;
}
.project-steps .step .step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-secondary);
  font-weight: var(--fw-bold);
  font-size: var(--fs-md);
  color: var(--text-muted);
  transition: var(--transition);
}
.project-steps .step.active .step-number {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.project-steps .step .step-label {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  font-weight: var(--fw-medium);
}
.project-steps .step.active .step-label {
  color: var(--gold);
  font-weight: var(--fw-semibold);
}

/* Project Step Content — MODERN THEME */
.project-step-content {
  display: none;
}
.project-step-content.active {
  display: block;
  animation: fadeInUp 0.4s ease;
}
.project-step-content h3 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-2);
}
.project-step-content .form-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* Upload Dropzone — MODERN THEME */
.upload-dropzone {
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}
.upload-dropzone:hover {
  border-color: var(--primary);
  background: var(--bg-alt);
}
.upload-dropzone i {
  font-size: 48px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.upload-dropzone p {
  color: var(--text-light);
  font-size: var(--fs-sm);
  margin: 0;
}
.upload-dropzone p span {
  color: var(--primary);
  font-weight: var(--fw-semibold);
}
.upload-dropzone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

/* Upload Limits — MODERN THEME */
.upload-limits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: var(--fs-xs);
  color: var(--text-muted);
  margin-bottom: 16px;
}
.upload-limits span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.upload-limits i {
  color: var(--gold);
}

/* File List — MODERN THEME */
.file-list {
  margin-top: 12px;
}
.file-actions {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-top: 8px;
}

/* Project Summary — MODERN THEME */
.project-summary-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--border);
  position: sticky;
  top: 120px;
}
.project-summary-card h3 {
  font-size: var(--fs-xl);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.project-review {
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-top: 12px;
}
.project-review .review-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: var(--fs-sm);
}

/* ==========================================================
   23. WISHLIST — ROSE THEME
   ========================================================== */

.wishlist-page-section {
  padding: 40px 0 80px;
  background: var(--bg);
}
.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.wishlist-item {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.wishlist-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.wishlist-item .wishlist-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.wishlist-item .wishlist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.wishlist-item:hover .wishlist-image img {
  transform: scale(1.04);
}
.wishlist-item .wishlist-remove {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wishlist-item .wishlist-remove:hover {
  background: var(--danger);
  color: var(--white);
}
.wishlist-item .wishlist-content {
  padding: 16px;
}
.wishlist-item .wishlist-content h4 {
  font-family: var(--font-secondary);
  font-size: var(--fs-md);
  margin-bottom: 4px;
}
.wishlist-item .wishlist-content .wishlist-price {
  font-weight: var(--fw-bold);
  color: var(--primary);
  font-size: var(--fs-md);
}
.wishlist-item .wishlist-content .wishlist-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.wishlist-item .wishlist-content .wishlist-actions .btn {
  flex: 1;
  padding: 0 var(--space-4);
  height: 38px;
  font-size: var(--fs-xs);
}

/* Wishlist Drawer — ROSE THEME */
.wishlist-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-modal);
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}
.wishlist-drawer.active {
  visibility: visible;
  opacity: 1;
}
.wishlist-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(43, 43, 43, 0.5);
}
.wishlist-drawer-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.wishlist-drawer.active .wishlist-drawer-container {
  transform: translateX(0);
}
.wishlist-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.wishlist-drawer-header h3 {
  font-family: var(--font-secondary);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
}
.wishlist-drawer-close {
  background: none;
  border: none;
  font-size: var(--fs-xl);
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
}
.wishlist-drawer-close:hover {
  color: var(--primary);
  transform: rotate(90deg);
}
.wishlist-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.wishlist-drawer-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
}
.wishlist-drawer-footer .btn {
  width: 100%;
}

/* ==========================================================
   24. CART — CRISP THEME
   ========================================================== */

.cart-section {
  padding: 40px 0 80px;
  background: var(--bg);
}
.cart-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
}

/* Cart Items — CRISP THEME */
.cart-items {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.cart-item {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-light);
  align-items: center;
}
.cart-item:last-child {
  border-bottom: none;
}
.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.cart-item .cart-item-info {
  flex: 1;
}
.cart-item .cart-item-info h4 {
  font-family: var(--font-secondary);
  font-size: var(--fs-md);
  margin-bottom: 2px;
}
.cart-item .cart-item-info .cart-item-price {
  color: var(--primary);
  font-weight: var(--fw-bold);
}
.cart-item .cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-item .cart-item-quantity button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.cart-item .cart-item-quantity button:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.cart-item .cart-item-quantity input {
  width: 44px;
  height: 32px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-secondary);
  font-size: var(--fs-sm);
}
.cart-item .cart-item-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  font-size: var(--fs-lg);
}
.cart-item .cart-item-remove:hover {
  color: var(--danger);
}

/* Cart Summary — CRISP THEME */
.cart-summary {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--border);
  position: sticky;
  top: 120px;
}
.cart-summary h3 {
  font-size: var(--fs-xl);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.cart-summary .cart-total-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: var(--fs-sm);
  color: var(--text-light);
}
.cart-summary .cart-total-row.grand-total {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--text);
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding-top: 12px;
}
.cart-summary .btn {
  width: 100%;
  margin-top: 16px;
}

/* Cart Drawer — CRISP THEME */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-modal);
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}
.cart-drawer.active {
  visibility: visible;
  opacity: 1;
}
.cart-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(43, 43, 43, 0.5);
}
.cart-drawer-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cart-drawer.active .cart-drawer-container {
  transform: translateX(0);
}
.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-drawer-header h3 {
  font-family: var(--font-secondary);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
}
.cart-drawer-close {
  background: none;
  border: none;
  font-size: var(--fs-xl);
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
}
.cart-drawer-close:hover {
  color: var(--primary);
  transform: rotate(90deg);
}
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.cart-drawer-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}
.cart-drawer-item img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.cart-drawer-item .drawer-item-info {
  flex: 1;
}
.cart-drawer-item .drawer-item-info h4 {
  font-family: var(--font-secondary);
  font-size: var(--fs-sm);
  margin-bottom: 2px;
}
.cart-drawer-item .drawer-item-info .drawer-item-price {
  font-size: var(--fs-sm);
  color: var(--text-light);
}
.cart-drawer-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
}
.cart-drawer-footer .cart-drawer-summary {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cart-drawer-footer .cart-drawer-summary .cart-count {
  font-size: var(--fs-sm);
  color: var(--text-light);
}
.cart-drawer-footer .cart-drawer-summary .cart-subtotal {
  font-weight: var(--fw-bold);
  font-size: var(--fs-md);
}
.cart-drawer-footer .btn {
  width: 100%;
}

/* ==========================================================
   25. SEARCH — MINIMAL THEME
   ========================================================== */

.search-section {
  padding: 40px 0 80px;
  background: var(--bg);
}
.search-bar-large {
  display: flex;
  max-width: 700px;
  margin: 0 auto 40px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.search-bar-large:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-transparent);
}
.search-bar-large input {
  flex: 1;
  height: 60px;
  padding: 0 20px;
  border: none;
  font-family: var(--font-secondary);
  font-size: var(--fs-md);
  outline: none;
  color: var(--text);
}
.search-bar-large input::placeholder {
  color: var(--text-muted);
}
.search-bar-large button {
  width: 60px;
  height: 60px;
  background: var(--gold);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-size: var(--fs-xl);
}
.search-bar-large button:hover {
  background: var(--gold-dark);
}

/* Search Results — MINIMAL THEME */
.search-results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.search-result-item {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.search-result-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.search-result-item .result-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.search-result-item .result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.search-result-item:hover .result-image img {
  transform: scale(1.04);
}
.search-result-item .result-content {
  padding: 16px;
}
.search-result-item .result-content h4 {
  font-family: var(--font-secondary);
  font-size: var(--fs-md);
  margin-bottom: 2px;
}
.search-result-item .result-content .result-price {
  font-weight: var(--fw-bold);
  color: var(--primary);
}
.search-result-item .result-content .result-category {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

/* ==========================================================
   26. MEGA MENU
   ========================================================== */

.nav-menu .mega-menu {
  position: static;
}
.mega-menu-container {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: var(--space-6) var(--space-8);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: var(--z-dropdown);
  border-top: 3px solid var(--gold);
}
.nav-menu .mega-menu:hover .mega-menu-container {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.mega-column h4 {
  font-family: var(--font-primary);
  font-size: var(--fs-md);
  color: var(--primary);
  margin-bottom: var(--space-3);
  font-weight: var(--fw-bold);
  border-bottom: 1px solid var(--border);
  padding-bottom: var(--space-2);
}
.mega-column ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.mega-column ul li a {
  color: var(--text-light);
  font-size: var(--fs-sm);
  transition: var(--transition);
}
.mega-column ul li a:hover {
  color: var(--primary);
  padding-left: var(--space-2);
}

/* ==========================================================
   27. ANIMATIONS
   ========================================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-down {
  animation: fadeInDown 0.5s ease forwards;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.scale-in {
  animation: scaleIn 0.5s ease forwards;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.shimmer {
  animation: shimmer 1.5s ease infinite;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.slide-in-right {
  animation: slideInRight 0.6s ease forwards;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.slide-in-left {
  animation: slideInLeft 0.6s ease forwards;
}

/* Spinner */
.fa-spinner {
  animation: spin 1s linear infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--grey-light);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: var(--radius-round);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* ==========================================================
   28. RESPONSIVE DESIGN
   ========================================================== */

/* Large Desktop */
@media (max-width: 1400px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .wishlist-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .search-results {
    grid-template-columns: repeat(3, 1fr);
  }
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Desktop */
@media (max-width: 1200px) {
  .mega-menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .blog-layout {
    grid-template-columns: 1fr 280px;
    gap: 32px;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wishlist-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .search-results {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-statistics .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mega-menu-container {
    display: none;
  }
}

/* Tablet / Small Laptop */
@media (max-width: 992px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .shop-sidebar {
    position: relative;
    top: 0;
  }
  .checkout-layout {
    grid-template-columns: 1fr;
  }
  .project-layout {
    grid-template-columns: 1fr;
  }
  .cart-grid {
    grid-template-columns: 1fr;
  }
  .blog-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .blog-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .blog-sidebar .sidebar-widget {
    margin-bottom: 0;
  }
  .featured-post-card {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .featured-image {
    aspect-ratio: 16 / 10;
  }
  .featured-content {
    padding: 24px;
  }
  .featured-content h2 {
    font-size: var(--fs-xl);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-story-grid,
  .craftsmanship-grid {
    grid-template-columns: 1fr;
  }
  .about-image img {
    height: 320px;
  }
  .craftsmanship-image img {
    height: 300px;
  }
  .checkout-steps,
  .project-steps {
    flex-wrap: wrap;
    gap: 8px;
  }
  .checkout-steps::before,
  .project-steps::before {
    display: none;
  }
  .mobile-filter-toggle {
    display: flex;
  }
  .filter-content {
    display: none;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  .top-bar-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .top-left {
    gap: var(--space-3);
  }
  .top-right {
    width: 100%;
    justify-content: space-between;
  }
  .middle-navbar {
    flex-wrap: wrap;
    gap: var(--space-3);
  }
  .header-search {
    order: 3;
    max-width: 100%;
    flex-basis: 100%;
  }
  .header-trust-badges {
    display: none;
  }
  .nav-actions .action-label {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .nav-menu {
    display: none;
  }
  .main-nav {
    justify-content: flex-end;
  }
  .hero {
    padding: 30px 0 50px;
    min-height: 30vh;
  }
  .hero-content {
    text-align: center;
  }
  .hero p {
    max-width: 100%;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .wishlist-grid {
    grid-template-columns: 1fr 1fr;
  }
  .search-results {
    grid-template-columns: 1fr 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .blog-sidebar {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .about-statistics .stats-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .collections-grid {
    grid-template-columns: 1fr;
  }
  .product-actions {
    grid-template-columns: 1fr;
  }
  .product-actions .add-to-cart-btn,
  .product-actions .quick-view-btn {
    font-size: 12px;
    height: 36px;
  }
  .product-details-grid {
    grid-template-columns: 1fr;
  }
  .main-image img {
    height: 300px;
  }
  .product-specifications dl {
    grid-template-columns: 1fr;
  }
  .product-actions-details {
    flex-direction: column;
  }
  .product-actions-details .btn {
    width: 100%;
    justify-content: center;
  }
  .shop-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }
  .toolbar-right {
    width: 100%;
    justify-content: space-between;
  }
  .checkout-form-column,
  .project-form-column {
    padding: 20px;
  }
  .checkout-form-column .form-row,
  .project-form-column .form-row {
    grid-template-columns: 1fr;
  }
  .wishlist-drawer-container,
  .cart-drawer-container {
    max-width: 100%;
  }
  .page-hero {
    padding: 60px 0 80px;
  }
  .page-hero h1 {
    font-size: var(--fs-3xl);
  }
  .featured-content h2 {
    font-size: var(--fs-lg);
  }
  .featured-content p {
    font-size: var(--fs-base);
  }
  .blog-card-content h3 {
    font-size: var(--fs-md);
  }
  .blog-pagination {
    margin-top: 32px;
  }
  .contact-hero {
    padding: 60px 0 80px;
  }
  .contact-hero .page-hero-content {
    max-width: 100%;
    text-align: center;
  }
  .contact-hero p {
    margin-left: auto;
    margin-right: auto;
  }
  .contact-section {
    padding: 60px 0;
  }
  .contact-grid {
    gap: 32px;
  }
  .contact-info {
    text-align: center;
  }
  .contact-details {
    align-items: center;
  }
  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .contact-item .contact-icon {
    margin-bottom: 4px;
  }
  .social-links .social-icons {
    justify-content: center;
  }
  .contact-form-wrapper {
    padding: 24px;
  }
  .contact-form-wrapper h2 {
    text-align: center;
  }
  .faq-section {
    padding: 60px 0;
  }
  .faq-section .section-header h2 {
    font-size: var(--fs-2xl);
  }
  .faq-intro {
    font-size: var(--fs-base);
    padding: 0 16px;
  }
  .faq-question {
    font-size: 0.9rem;
    padding: 16px 18px;
  }
  .faq-answer p,
  .faq-answer ul {
    padding: 0 18px 18px;
  }
  .faq-answer ul {
    padding-left: 34px;
  }
  .faq-cta {
    padding: 32px 20px;
    margin-top: 40px;
  }
  .faq-cta h3 {
    font-size: var(--fs-xl);
  }
  .faq-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .faq-cta-buttons .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  .map-section {
    padding: 0 0 60px 0;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }
  .hero h1 {
    font-size: var(--fs-2xl);
  }
  .hero-buttons .btn {
    font-size: 0.85rem;
    padding: 0.7rem 1.5rem;
  }
  .products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .wishlist-grid {
    grid-template-columns: 1fr;
  }
  .search-results {
    grid-template-columns: 1fr;
  }
  .product-card {
    padding: 12px;
  }
  .product-info h3 {
    font-size: 15px;
  }
  .product-price .current {
    font-size: 16px;
  }
  .page-hero {
    padding: 80px 0 40px;
  }
  .page-hero h1 {
    font-size: var(--fs-2xl);
  }
  .contact-hero {
    padding: 80px 0 40px;
  }
  .contact-hero h1 {
    font-size: var(--fs-2xl);
  }
  .contact-section {
    padding: 40px 0;
  }
  .contact-info h2 {
    font-size: var(--fs-2xl);
  }
  .contact-subtitle {
    font-size: var(--fs-base);
  }
  .contact-form-wrapper {
    padding: 20px;
  }
  .contact-form-wrapper h2 {
    font-size: var(--fs-xl);
  }
  .contact-form .btn {
    font-size: var(--fs-sm);
    padding: 12px 24px;
  }
  .contact-item {
    gap: 12px;
  }
  .contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 0.9rem;
  }
  .social-links .social-icons a {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
  }
  .faq-section {
    padding: 40px 0;
  }
  .faq-section .section-header h2 {
    font-size: var(--fs-xl);
  }
  .faq-item {
    border-radius: var(--radius-sm);
  }
  .faq-question {
    font-size: var(--fs-sm);
    padding: 14px 16px;
  }
  .faq-answer p,
  .faq-answer ul {
    padding: 0 16px 16px;
    font-size: 0.9rem;
  }
  .faq-answer ul {
    padding-left: 30px;
  }
  .faq-cta {
    padding: 24px 16px;
  }
  .faq-cta h3 {
    font-size: var(--fs-lg);
  }
  .faq-cta p {
    font-size: var(--fs-sm);
  }
  .map-wrapper iframe {
    height: 250px;
  }
  .map-section {
    padding: 0 0 40px 0;
  }
  .checkout-form-column,
  .project-form-column {
    padding: 16px;
  }
  .wishlist-drawer-container,
  .cart-drawer-container {
    max-width: 100%;
  }
  .blog-hero {
    padding: 80px 0 40px;
  }
  .blog-hero h1 {
    font-size: var(--fs-2xl);
  }
  .blog-section {
    padding: 40px 0;
  }
  .featured-content {
    padding: 16px;
  }
  .featured-content h2 {
    font-size: var(--fs-md);
  }
  .featured-content p {
    font-size: var(--fs-sm);
  }
  .featured-content .post-meta {
    font-size: 11px;
    flex-wrap: wrap;
  }
  .blog-card-content {
    padding: 16px;
  }
  .blog-card-content h3 {
    font-size: var(--fs-base);
  }
  .blog-sidebar .sidebar-widget {
    padding: 16px;
  }
  .recent-widget .recent-post .recent-image {
    width: 50px;
    height: 50px;
  }
  .recent-widget .recent-post .recent-info h5 {
    font-size: var(--fs-xs);
  }
  .blog-pagination button {
    min-width: 38px;
    height: 38px;
    font-size: var(--fs-xs);
  }
}

/* ==========================================
   PREMIUM ANIMATIONS - ADD TO furnostyles.css
   ========================================== */

/* ----- REVEAL ON SCROLL ----- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----- FLOATING ----- */
.float {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* ----- PULSE ----- */
.pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

/* ----- TYPING CURSOR ----- */
.typing-text::after {
  content: "|";
  display: inline-block;
  animation: blink 0.8s step-end infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* ----- FADE IN ----- */
.fade-in {
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ----- COUNTER ----- */
.counter {
  transition: all 0.3s ease;
}

/* ----- STAGGERED ITEMS ----- */
.stagger-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 {
  transition-delay: 0.05s;
}
.stagger-2 {
  transition-delay: 0.1s;
}
.stagger-3 {
  transition-delay: 0.15s;
}
.stagger-4 {
  transition-delay: 0.2s;
}
.stagger-5 {
  transition-delay: 0.25s;
}
.stagger-6 {
  transition-delay: 0.3s;
}

/* ==========================================
   HEADER USER MENU STYLES
   ========================================== */

/* User Menu Wrapper */
.user-menu-wrapper {
  position: relative;
}

.user-menu-wrapper .user-toggle {
  cursor: pointer;
}

/* User Avatar */
.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--primary);
  transition: var(--transition);
}

.user-avatar.logged-in {
  background: var(--gold);
  color: var(--white);
}

.user-menu-wrapper .user-toggle:hover .user-avatar {
  background: var(--gold);
  color: var(--white);
}

/* User Dropdown */
.user-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 210px;
  padding: 8px 0;
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.user-menu-wrapper:hover .user-dropdown,
.user-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-dropdown-header {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
}

.user-dropdown-header div:first-child {
  font-weight: 600;
  font-size: 14px;
}

.user-dropdown-header div:last-child {
  font-size: 12px;
  color: var(--text-muted);
}

.user-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: var(--text);
  font-size: 14px;
  transition: var(--transition);
  text-decoration: none;
}

.user-dropdown a:hover {
  background: var(--bg-alt);
  color: var(--primary);
}

.user-dropdown a i {
  width: 18px;
  color: var(--text-muted);
}

.user-dropdown a:hover i {
  color: var(--primary);
}

.user-dropdown .dropdown-divider {
  height: 1px;
  background: var(--border-light);
  margin: 4px 12px;
}

.user-dropdown #logoutBtn {
  color: var(--danger);
}

.user-dropdown #logoutBtn:hover {
  background: #fee2e2;
}

/* Mobile User Info */
#mobileUserInfo a {
  text-decoration: none;
  font-weight: 500;
}

#mobileUserInfo a:hover {
  color: var(--gold);
}

/* ==========================================
   DASHBOARD STYLES
   ========================================== */

.dashboard-grid {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 32px;
}

.dashboard-sidebar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border);
  height: fit-content;
  position: sticky;
  top: 120px;
}

.dashboard-sidebar .user-card {
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 16px;
}

.dashboard-sidebar .user-card .avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  margin: 0 auto 12px;
}

.dashboard-sidebar .user-card .name {
  font-weight: 700;
  font-size: 16px;
}

.dashboard-sidebar .user-card .email {
  font-size: 13px;
  color: var(--text-muted);
}

.dashboard-sidebar .sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dashboard-sidebar .sidebar-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14px;
  transition: var(--transition);
  text-decoration: none;
}

.dashboard-sidebar .sidebar-menu a:hover,
.dashboard-sidebar .sidebar-menu a.active {
  background: var(--gold-transparent);
  color: var(--primary);
}

.dashboard-sidebar .sidebar-menu a i {
  width: 20px;
  color: var(--text-muted);
}

.dashboard-sidebar .sidebar-menu a:hover i {
  color: var(--primary);
}

.dashboard-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
}

.dashboard-content .welcome-banner {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
}

.dashboard-content .welcome-banner h2 {
  font-size: 24px;
  font-family: var(--font-primary);
  margin-bottom: 4px;
}

.dashboard-content .welcome-banner p {
  color: var(--text-light);
  margin: 0;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.dashboard-stats .stat-card {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
}

.dashboard-stats .stat-card .number {
  display: block;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
}

.dashboard-stats .stat-card .label {
  font-size: 13px;
  color: var(--text-muted);
}

/* ==========================================
   RESPONSIVE - USER MENU
   ========================================== */

@media (max-width: 1024px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .dashboard-sidebar {
    position: static;
  }
  .dashboard-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .user-dropdown {
    right: -20px;
    min-width: 180px;
  }
}

@media (max-width: 480px) {
  .dashboard-stats {
    grid-template-columns: 1fr;
  }
  .user-dropdown {
    right: -40px;
    min-width: 160px;
  }
}
