/* ==========================================================================
   Harmony Gift Shop — Main Stylesheet
   Premium clergy wear retailer, Nairobi, Kenya
   Brand colours: Deep Royal Purple, Rich Gold, Soft Gold, Dark Charcoal, White
   No gradients. Solid colours only.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens
   -------------------------------------------------------------------------- */

:root {
    /* Brand colours */
    --purple: #42204D;
    --purple-light: #5a3068;
    --purple-dark: #331a3b;
    --gold: #B98B2C;
    --gold-light: #D3B067;
    --gold-dark: #9a7320;
    --charcoal: #2F2B33;
    --white: #FFFFFF;
    --off-white: #FAF8F5;
    --purple-tint: #F5F2F7;
    --gold-tint: #FBF7EE;
    --border: #E5E0E8;
    --text-muted: #6B6571;
    --success: #2D8659;
    --danger: #C44545;

    /* Typography */
    --font-heading: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;

    /* Layout */
    --container-max: 1200px;
    --header-height: 72px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    /* Transitions */
    --transition: 0.25s ease;
    --transition-slow: 0.4s ease;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(47, 43, 51, 0.08);
    --shadow-md: 0 4px 12px rgba(47, 43, 51, 0.1);
    --shadow-lg: 0 8px 30px rgba(47, 43, 51, 0.12);
}

/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--gold);
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--purple);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: var(--space-sm);
}

.text-muted {
    color: var(--text-muted);
}

.text-gold {
    color: var(--gold);
}

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

/* --------------------------------------------------------------------------
   4. Layout Utilities
   -------------------------------------------------------------------------- */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

.section {
    padding: var(--space-xl) 0;
}

.section-sm {
    padding: var(--space-lg) 0;
}

.section-purple {
    background: var(--purple);
    color: var(--white);
}

.section-purple h1,
.section-purple h2,
.section-purple h3,
.section-purple h4 {
    color: var(--white);
}

.section-off-white {
    background: var(--off-white);
}

.section-purple-tint {
    background: var(--purple-tint);
}

.section-gold-tint {
    background: var(--gold-tint);
}

/* Gold accent line */
.accent-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: var(--space-sm) 0;
    border: none;
}

.accent-line-center {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: var(--space-sm) auto;
    border: none;
}

.accent-line-long {
    width: 120px;
    height: 2px;
    background: var(--gold);
    border: none;
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    line-height: 1.4;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    border: 2px solid var(--gold);
}

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

.btn-secondary {
    background: transparent;
    color: var(--purple);
    border: 2px solid var(--purple);
}

.btn-secondary:hover {
    background: var(--purple);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-white {
    background: var(--white);
    color: var(--purple);
    border: 2px solid var(--white);
}

.btn-white:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-1px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--purple);
    transform: translateY(-1px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border: 2px solid #25D366;
}

.btn-whatsapp:hover {
    background: #1da851;
    border-color: #1da851;
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

/* --------------------------------------------------------------------------
   6. Header & Navigation
   -------------------------------------------------------------------------- */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--purple);
    z-index: 1000;
    transition: box-shadow var(--transition);
    display: flex;
    align-items: center;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    height: 100%;
    max-width: 220px;
    text-decoration: none;
}

.logo:hover {
    opacity: 0.9;
}

.logo-img {
    max-height: 100%;
    max-width: 100%;
    height: auto;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-logo {
    height: auto;
    margin-bottom: var(--space-sm);
}

.footer-logo .logo-img {
    height: auto;
    max-height: 64px;
    width: auto;
    max-width: 100%;
}

/* Desktop nav */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-links a {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold-light);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0;
    cursor: pointer;
}

.nav-dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-dropdown-toggle:hover {
    color: var(--gold-light);
}

.nav-dropdown-toggle:hover::after {
    width: 100%;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: -1rem;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.625rem 1rem;
    color: var(--charcoal);
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-dropdown-menu a:hover {
    background: var(--purple-tint);
    color: var(--purple);
}

.nav-dropdown-menu a::after {
    display: none;
}

/* Search bar in header */
.header-search {
    position: relative;
    width: 200px;
}

.header-search input {
    width: 100%;
    padding: 0.5rem 2.25rem 0.5rem 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    outline: none;
    transition: all var(--transition);
}

.header-search input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.header-search input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gold);
}

.header-search svg {
    position: absolute;
    right: 0.625rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.6);
    pointer-events: none;
}

.search-results {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    max-height: 320px;
    overflow-y: auto;
    display: none;
    z-index: 1001;
}

.search-results.active {
    display: block;
}

.search-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: var(--purple-tint);
}

.search-result-item .name {
    font-size: 0.875rem;
    color: var(--charcoal);
    font-weight: 500;
}

.search-result-item .price {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    white-space: nowrap;
    margin-left: 1rem;
}

.search-result-item .cat {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
}

.search-no-results {
    padding: 1rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.nav-mobile {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--purple);
    padding: var(--space-md);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    z-index: 999;
}

.nav-mobile.active {
    transform: translateX(0);
}

.nav-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nav-mobile-links a {
    display: block;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-mobile-links a:hover,
.nav-mobile-links a.active {
    color: var(--gold-light);
}

.nav-mobile-section-title {
    color: var(--gold-light);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: var(--space-md);
    margin-bottom: 0.5rem;
}

.nav-mobile-search {
    margin-bottom: var(--space-md);
}

.nav-mobile-search input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    outline: none;
}

.nav-mobile-search input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* --------------------------------------------------------------------------
   7. Hero Section
   -------------------------------------------------------------------------- */

.hero {
    background: var(--purple);
    color: var(--white);
    padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-xl);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--purple-light);
    border-radius: 50%;
    transform: translate(100px, -100px);
    opacity: 0.3;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: var(--purple-dark);
    border-radius: 50%;
    transform: translate(-50px, 50px);
    opacity: 0.4;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.hero-content .hero-tagline {
    font-size: 1.15rem;
    color: var(--gold-light);
    margin-bottom: var(--space-md);
    font-style: italic;
    font-family: var(--font-heading);
}

.hero-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-lg);
    max-width: 480px;
}

.hero-cta {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-visual-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    max-width: 380px;
    width: 100%;
}

.hero-visual-card .hero-card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    margin: 0 auto var(--space-md);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--purple-tint);
}

.hero-visual-card .hero-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-slide {
    display: none;
    animation: heroFadeIn 0.5s ease;
}

.hero-slide.active {
    display: block;
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: var(--space-md);
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.hero-dot.active {
    background: var(--gold);
    transform: scale(1.25);
}

.hero-dot:hover {
    background: var(--gold-light);
}

.hero-visual-card .icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--purple-tint);
    border-radius: 50%;
}

.hero-visual-card .icon-wrapper svg {
    width: 64px;
    height: 64px;
    color: var(--purple);
}

.hero-visual-card h3 {
    margin-bottom: 0.5rem;
}

.hero-visual-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
}

.hero-visual-card .price-tag {
    display: inline-block;
    background: var(--gold-tint);
    color: var(--gold-dark);
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   8. Trust Bar
   -------------------------------------------------------------------------- */

.trust-bar {
    background: var(--charcoal);
    padding: var(--space-md) 0;
}

.trust-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
}

.trust-item svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
    flex-shrink: 0;
}

.trust-item .trust-text {
    font-size: 0.85rem;
    line-height: 1.3;
}

.trust-item .trust-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--gold-light);
}

/* --------------------------------------------------------------------------
   9. Section Headers
   -------------------------------------------------------------------------- */

.custom-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.cta-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.section-header h2 {
    margin-bottom: 0;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-header .eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

/* --------------------------------------------------------------------------
   10. Category Grid
   -------------------------------------------------------------------------- */

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-md);
}

.category-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    text-align: center;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.category-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.category-card .cat-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--purple-tint);
    border-radius: 50%;
    transition: background var(--transition);
}

.category-card:hover .cat-icon {
    background: var(--gold-tint);
}

.category-card .cat-icon svg {
    width: 28px;
    height: 28px;
    color: var(--purple);
    transition: color var(--transition);
}

.category-card:hover .cat-icon svg {
    color: var(--gold);
}

.category-card h4 {
    font-size: 1rem;
    margin: 0;
}

.category-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

/* --------------------------------------------------------------------------
   11. Product Grid & Cards
   -------------------------------------------------------------------------- */

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--space-md);
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.product-card-visual {
    aspect-ratio: 1 / 1;
    background: var(--purple-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-card-visual svg {
    width: 80px;
    height: 80px;
    color: var(--purple);
    opacity: 0.8;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-card-visual svg {
    transform: scale(1.1);
}

.product-card-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--gold);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.625rem;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-card-badge.custom {
    background: var(--purple);
}

.product-card-body {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-category {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.375rem;
}

.product-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
    font-family: var(--font-body);
    font-weight: 600;
    line-height: 1.3;
}

.product-card h4 a {
    color: inherit;
}

.product-card h4 a:hover {
    color: var(--purple);
}

.product-card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}

.product-card-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--purple);
    white-space: nowrap;
}

.product-card-actions {
    display: flex;
    gap: 0.5rem;
}

.product-card-colors {
    display: flex;
    gap: 0.375rem;
    margin-bottom: var(--space-sm);
}

.color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 0 0 1px var(--border);
}

/* --------------------------------------------------------------------------
   12. Testimonials
   -------------------------------------------------------------------------- */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-md);
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    position: relative;
}

.testimonial-card .quote-mark {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-size: 3rem;
    color: var(--gold-light);
    opacity: 0.3;
    font-family: var(--font-heading);
    line-height: 1;
}

.testimonial-card .stars {
    display: flex;
    gap: 2px;
    margin-bottom: 0.75rem;
}

.testimonial-card .stars svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
}

.testimonial-card p {
    font-size: 0.9rem;
    color: var(--charcoal);
    line-height: 1.6;
    margin-bottom: var(--space-md);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-author .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--purple);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-author .info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--charcoal);
}

.testimonial-author .info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   13. Footer
   -------------------------------------------------------------------------- */

.footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-brand .logo {
    margin-bottom: var(--space-sm);
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-md);
    max-width: 320px;
}

.footer-col h5 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-col ul a:hover {
    color: var(--gold-light);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
    color: var(--gold-light);
}

/* --------------------------------------------------------------------------
   14. WhatsApp Floating Button
   -------------------------------------------------------------------------- */

.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: all var(--transition);
    animation: pulse-whatsapp 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

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

/* --------------------------------------------------------------------------
   15. Back to Top
   -------------------------------------------------------------------------- */

.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    width: 44px;
    height: 44px;
    background: var(--purple);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

.back-to-top svg {
    width: 22px;
    height: 22px;
}

/* --------------------------------------------------------------------------
   16. Page Hero (inner pages)
   -------------------------------------------------------------------------- */

.page-hero {
    background: var(--purple);
    color: var(--white);
    padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: 250px;
    background: var(--purple-light);
    border-radius: 50%;
    transform: translate(80px, -80px);
    opacity: 0.3;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: var(--space-sm);
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: var(--gold-light);
}

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

.breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
}

/* --------------------------------------------------------------------------
   17. Shop Page
   -------------------------------------------------------------------------- */

.shop-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.shop-sidebar {
    position: sticky;
    top: calc(var(--header-height) + var(--space-sm));
}

.shop-sidebar h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold);
}

.shop-filter-list {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    margin-bottom: var(--space-lg);
}

.shop-filter-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--charcoal);
    transition: all var(--transition);
}

.shop-filter-list a:hover {
    background: var(--purple-tint);
    color: var(--purple);
}

.shop-filter-list a.active {
    background: var(--purple);
    color: var(--white);
}

.shop-filter-list a .count {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: var(--purple-tint);
    padding: 0.125rem 0.5rem;
    border-radius: 10px;
}

.shop-filter-list a.active .count {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.shop-toolbar .result-count {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.shop-toolbar .result-count strong {
    color: var(--charcoal);
}

.shop-search {
    position: relative;
    width: 100%;
    max-width: 300px;
}

.shop-search input {
    width: 100%;
    padding: 0.5rem 2.25rem 0.5rem 0.875rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    outline: none;
    transition: border-color var(--transition);
}

.shop-search input:focus {
    border-color: var(--gold);
}

.shop-search svg {
    position: absolute;
    right: 0.625rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--text-muted);
}

.no-products {
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    color: var(--text-muted);
}

.no-products svg {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
    color: var(--border);
}

.no-products h3 {
    margin-bottom: 0.5rem;
}

/* --------------------------------------------------------------------------
   18. Product Detail Page
   -------------------------------------------------------------------------- */

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.product-detail-visual-wrap {
    position: sticky;
    top: calc(var(--header-height) + var(--space-sm));
}

.product-detail-visual {
    aspect-ratio: 1 / 1;
    background: var(--purple-tint);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-detail-visual svg {
    width: 200px;
    height: 200px;
    color: var(--purple);
    opacity: 0.85;
}

.product-thumbnails {
    display: flex;
    gap: 0.625rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.product-thumbnail {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid var(--border);
    background: var(--purple-tint);
    cursor: pointer;
    padding: 0;
    transition: border-color var(--transition);
    flex-shrink: 0;
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-thumbnail:hover {
    border-color: var(--gold-light);
}

.product-thumbnail.active {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold);
}

.product-detail-info .product-category {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.product-detail-info h1 {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.product-detail-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: var(--space-md);
}

.product-detail-desc {
    font-size: 1rem;
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.product-detail-meta {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: var(--off-white);
    border-radius: var(--radius-md);
}

.product-detail-meta-row {
    display: flex;
    gap: var(--space-sm);
    font-size: 0.9rem;
}

.product-detail-meta-row .label {
    font-weight: 600;
    color: var(--charcoal);
    min-width: 100px;
    flex-shrink: 0;
}

.product-detail-meta-row .value {
    color: var(--text-muted);
}

.product-detail-meta-row .color-dots {
    display: flex;
    gap: 0.375rem;
    align-items: center;
    flex-wrap: wrap;
}

.product-detail-cta {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: nowrap;
    margin-bottom: var(--space-md);
    align-items: center;
}

.product-detail-cta .btn {
    flex: 1 1 0;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    justify-content: center;
}

.product-detail-cta .btn-icon {
    flex: 0 0 48px;
}

.product-detail-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: var(--charcoal);
}

.feature-item svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   18b. Cart & Checkout
   -------------------------------------------------------------------------- */

.header-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    color: var(--charcoal);
    transition: all var(--transition);
}

.header-cart:hover {
    background: var(--purple-tint);
    color: var(--purple);
}

.header-cart svg {
    width: 22px;
    height: 22px;
}

.cart-count-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    box-shadow: 0 0 0 2px var(--white);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--purple);
    background: var(--white);
    transition: all var(--transition);
}

.btn-icon:hover {
    border-color: var(--purple);
    background: var(--purple-tint);
    color: var(--purple);
}

.btn-success {
    background: var(--success) !important;
    border-color: var(--success) !important;
    color: var(--white) !important;
}

.product-inquiry {
    margin-top: var(--space-md);
    padding: var(--space-md);
    background: var(--off-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.product-inquiry .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.product-inquiry .form-group {
    margin-bottom: 0.75rem;
}

.product-inquiry label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.product-inquiry input,
.product-inquiry textarea {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    outline: none;
}

.product-inquiry input:focus,
.product-inquiry textarea:focus {
    border-color: var(--gold);
}

.product-inquiry textarea {
    min-height: 80px;
    resize: vertical;
}

/* Cart page */
.cart-empty {
    text-align: center;
    padding: var(--space-2xl) var(--space-md);
    color: var(--text-muted);
}

.cart-empty svg {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
    color: var(--border);
}

.cart-empty h3 {
    margin-bottom: 0.5rem;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: var(--space-lg);
    align-items: start;
}

.cart-items-header {
    display: grid;
    grid-template-columns: 1fr 120px 120px 40px;
    gap: 1rem;
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    border-bottom: 2px solid var(--border);
}

.cart-item {
    display: grid;
    grid-template-columns: 1fr 120px 120px 40px;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    align-items: center;
}

.cart-item-visual {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--purple-tint);
    flex-shrink: 0;
    display: inline-flex;
}

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

.cart-item-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    opacity: 0.5;
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.cart-item-info h4 {
    font-size: 1rem;
    margin: 0;
}

.cart-item-info h4 a {
    color: var(--charcoal);
}

.cart-item-info h4 a:hover {
    color: var(--purple);
}

.cart-item-category {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.cart-item-price {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--charcoal);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    line-height: 1;
}

.qty-btn:hover {
    border-color: var(--purple);
    background: var(--purple-tint);
    color: var(--purple);
}

.qty-value {
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}

.cart-item-subtotal {
    font-weight: 700;
    color: var(--purple);
}

.cart-item-remove {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    cursor: pointer;
}

.cart-item-remove:hover {
    color: var(--danger);
    background: #FDEAEA;
}

.cart-summary {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-bottom: var(--space-md);
}

.cart-summary h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.375rem 0;
    font-size: 0.9rem;
}

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

.cart-summary-total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--purple);
}

.cart-checkout-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-bottom: var(--space-md);
}

.cart-checkout-form h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.cart-checkout-form .form-group {
    margin-bottom: 0.75rem;
}

.cart-checkout-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.cart-checkout-form input,
.cart-checkout-form textarea {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    outline: none;
}

.cart-checkout-form input:focus,
.cart-checkout-form textarea:focus {
    border-color: var(--gold);
}

.cart-checkout-form textarea {
    min-height: 70px;
    resize: vertical;
}

.cart-whatsapp-note {
    text-align: center;
}

.cart-whatsapp-note p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

/* --------------------------------------------------------------------------
   19. About Page
   -------------------------------------------------------------------------- */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-visual {
    background: var(--purple);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    color: var(--white);
}

.about-visual svg {
    width: 120px;
    height: 120px;
    color: var(--gold);
    margin: 0 auto var(--space-md);
}

.about-visual h3 {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.about-visual p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: var(--space-md);
}

.value-card {
    text-align: center;
    padding: var(--space-md);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.value-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.value-card .icon-circle {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--purple-tint);
    border-radius: 50%;
}

.value-card .icon-circle svg {
    width: 32px;
    height: 32px;
    color: var(--purple);
}

.value-card h4 {
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* --------------------------------------------------------------------------
   20. Contact Page
   -------------------------------------------------------------------------- */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-lg);
    align-items: start;
}

.contact-info-card {
    background: var(--purple);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.contact-info-card h3 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: var(--space-md);
}

.contact-info-item svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-item .label {
    font-size: 0.75rem;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.25rem;
}

.contact-info-item .value {
    font-size: 0.95rem;
    color: var(--white);
}

.contact-info-item .value a {
    color: var(--white);
}

.contact-info-item .value a:hover {
    color: var(--gold-light);
}

.contact-form-wrapper {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.375rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--charcoal);
    outline: none;
    transition: border-color var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(185, 139, 44, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.form-success {
    background: var(--success);
    color: var(--white);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    font-size: 0.9rem;
    display: none;
}

.form-success.active {
    display: block;
}

.map-embed {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: var(--space-lg);
    border: 1px solid var(--border);
}

.map-embed iframe {
    width: 100%;
    height: 350px;
    border: 0;
    display: block;
}

/* --------------------------------------------------------------------------
   21. Custom Orders Page
   -------------------------------------------------------------------------- */

.custom-steps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: var(--space-md);
}

.custom-step {
    text-align: center;
    padding: var(--space-md);
    position: relative;
}

.custom-step .step-number {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--purple);
    color: var(--white);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.custom-step h4 {
    margin-bottom: 0.5rem;
}

.custom-step p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

.custom-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--space-md);
}

.custom-option-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    transition: all var(--transition);
}

.custom-option-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.custom-option-card .icon-circle {
    width: 56px;
    height: 56px;
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-tint);
    border-radius: 50%;
}

.custom-option-card .icon-circle svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
}

.custom-option-card h4 {
    margin-bottom: 0.5rem;
}

.custom-option-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* --------------------------------------------------------------------------
   22. FAQ Page
   -------------------------------------------------------------------------- */

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item.active {
    border-color: var(--gold);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md);
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--charcoal);
    background: var(--white);
    transition: background var(--transition);
}

.faq-question:hover {
    background: var(--off-white);
}

.faq-item.active .faq-question {
    color: var(--purple);
}

.faq-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    transition: transform var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

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

.faq-answer-inner {
    padding: 0 var(--space-md) var(--space-md);
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   23. 404 Page
   -------------------------------------------------------------------------- */

.error-page {
    text-align: center;
    padding: calc(var(--header-height) + var(--space-2xl)) var(--space-md) var(--space-2xl);
}

.error-page .error-code {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 700;
    color: var(--purple);
    line-height: 1;
}

.error-page h2 {
    margin-bottom: var(--space-sm);
}

.error-page p {
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

/* --------------------------------------------------------------------------
   24. Animations
   -------------------------------------------------------------------------- */

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fade-in-up 0.6s ease forwards;
}

/* --------------------------------------------------------------------------
   25. Responsive — Tablet
   -------------------------------------------------------------------------- */

@media (max-width: 968px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
        margin-bottom: var(--space-md);
    }

    .hero-visual-card {
        max-width: 320px;
    }

    .trust-bar-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: static;
    }

    .shop-filter-list {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 0.25rem;
    }

    .product-detail {
        grid-template-columns: 1fr;
    }

    .product-detail-visual-wrap {
        position: static;
    }

    .product-detail-visual {
        max-width: 400px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

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

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-items-header {
        display: none;
    }

    .cart-item {
        grid-template-columns: 64px 1fr auto;
        gap: 0.75rem;
    }

    .cart-item-qty {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }

    .cart-item-subtotal {
        grid-column: 1 / -1;
        text-align: right;
    }

    .cart-item-remove {
        grid-column: 3;
        grid-row: 1;
    }

    .custom-cta-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .custom-cta-grid > div:last-child {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   26. Responsive — Mobile
   -------------------------------------------------------------------------- */

@media (max-width: 640px) {
    :root {
        --header-height: 60px;
        --space-xl: 2.5rem;
        --space-2xl: 4rem;
    }

    /* Hide desktop nav, show mobile */
    .nav-desktop {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .header-search {
        display: none;
    }

    .logo {
        max-width: 50%;
        overflow: hidden;
    }

    .logo-img {
        max-width: 100%;
        object-fit: contain;
    }

    .hero {
        padding-top: calc(var(--header-height) + var(--space-lg));
    }

    .hero-visual-card {
        padding: var(--space-sm);
        max-width: 300px;
    }

    .hero-visual-card .icon-wrapper {
        width: 90px;
        height: 90px;
    }

    .hero-visual-card .icon-wrapper svg {
        width: 48px;
        height: 48px;
    }

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

    .trust-item {
        justify-content: flex-start;
    }

    .trust-item .trust-text {
        text-align: left;
    }

    .trust-item .trust-text strong {
        font-size: 0.85rem;
    }

    .trust-item .trust-text {
        font-size: 0.75rem;
    }

    .trust-item svg {
        width: 22px;
        height: 22px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .category-card {
        padding: var(--space-sm);
    }

    .category-card .cat-icon {
        width: 44px;
        height: 44px;
    }

    .category-card .cat-icon svg {
        width: 22px;
        height: 22px;
    }

    .category-card h4 {
        font-size: 0.875rem;
    }

    .category-card p {
        font-size: 0.75rem;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .product-card-body {
        padding: 0.625rem;
    }

    .product-card-visual {
        aspect-ratio: auto;
        height: 160px;
    }

    .product-card h4 {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }

    .product-card-desc {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .product-card-category {
        font-size: 0.65rem;
        margin-bottom: 0.25rem;
    }

    .product-card-price {
        font-size: 0.9rem;
    }

    .product-card-actions .btn {
        padding: 0.35rem 0.625rem;
        font-size: 0.7rem;
    }

    .product-card-colors {
        margin-bottom: 0.5rem;
    }

    .product-card-footer {
        gap: 0.25rem;
    }

    .testimonial-grid {
        display: flex;
        gap: 0.75rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
        margin: 0 -0.75rem;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .testimonial-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
        padding: var(--space-sm);
    }

    .testimonial-card p {
        font-size: 0.85rem;
    }

    .product-detail-info h1 {
        font-size: 1.5rem;
    }

    .product-detail-price {
        font-size: 1.35rem;
        margin-bottom: var(--space-sm);
    }

    .product-detail-desc {
        font-size: 0.9rem;
        margin-bottom: var(--space-sm);
    }

    .product-detail-meta {
        gap: 0.5rem;
        padding: var(--space-sm);
        margin-bottom: var(--space-md);
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .footer-brand {
        grid-column: auto;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .product-detail-features {
        grid-template-columns: 1fr;
    }

    .product-detail-cta {
        gap: 0.375rem;
    }

    .product-detail-cta .btn {
        padding: 0.5rem 0.5rem;
        font-size: 0.8rem;
    }

    .product-detail-cta .btn-icon {
        flex: 0 0 40px;
        height: 40px;
    }

    .custom-steps {
        grid-template-columns: 1fr;
    }

    .shop-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .shop-search {
        max-width: 100%;
    }

    .hero-cta {
        flex-direction: row;
        gap: 0.5rem;
    }

    .hero-cta .btn {
        flex: 1 1 0;
        min-width: 0;
        font-size: 0.8rem;
        padding: 0.625rem 0.5rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        justify-content: center;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: var(--space-md);
    }

    .hero-content .hero-tagline {
        font-size: 1rem;
        margin-bottom: var(--space-sm);
    }

    .section {
        padding: var(--space-lg) 0;
    }

    .section-header {
        margin-bottom: var(--space-md);
    }

    .section-header p {
        font-size: 0.85rem;
    }

    .cta-row {
        flex-direction: row;
        gap: 0.5rem;
    }

    .cta-row .btn {
        flex: 1 1 0;
        min-width: 0;
        font-size: 0.8rem;
        padding: 0.625rem 0.5rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        justify-content: center;
    }

    .custom-cta-grid p {
        font-size: 0.9rem;
        margin-bottom: var(--space-sm);
    }

    .custom-cta-grid .cta-row {
        gap: 0.5rem;
    }

    .custom-cta-grid .cta-row .btn {
        flex: 1 1 0;
        min-width: 0;
        font-size: 0.8rem;
        padding: 0.625rem 0.5rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        justify-content: center;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 1rem;
        right: 1rem;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    .back-to-top {
        bottom: 1rem;
        left: 1rem;
    }
}

/* --------------------------------------------------------------------------
   27. Responsive — Small mobile
   -------------------------------------------------------------------------- */

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

    .category-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 0.75rem;
    }
}

/* --------------------------------------------------------------------------
   28. Print
   -------------------------------------------------------------------------- */

@media print {
    .header,
    .whatsapp-float,
    .back-to-top,
    .nav-mobile,
    .menu-toggle {
        display: none !important;
    }

    body {
        color: #000;
    }
}
