/* ==========================================================================
   Siloam Edishare — Design System & Styles
   ========================================================================== */

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

:root {
    --radius: 0.75rem;
    --background: oklch(0.99 0.005 180);
    --foreground: oklch(0.2 0.03 200);
    --card: oklch(1 0 0);
    --card-foreground: oklch(0.2 0.03 200);
    --primary: oklch(0.55 0.11 185);
    --primary-foreground: oklch(0.99 0 0);
    --primary-glow: oklch(0.7 0.13 180);
    --secondary: oklch(0.96 0.02 180);
    --secondary-foreground: oklch(0.3 0.05 200);
    --muted: oklch(0.96 0.015 190);
    --muted-foreground: oklch(0.5 0.03 200);
    --accent: oklch(0.85 0.12 90);
    --accent-foreground: oklch(0.25 0.05 90);
    --border: oklch(0.929 0.013 255.508);
    --input: oklch(0.929 0.013 255.508);
    --ring: oklch(0.704 0.04 256.788);
    --destructive: oklch(0.577 0.245 27.325);
    --destructive-foreground: oklch(0.984 0.003 247.858);
    --gradient-hero: linear-gradient(135deg, oklch(0.55 0.11 185), oklch(0.7 0.13 170));
    --gradient-soft: linear-gradient(180deg, oklch(0.98 0.01 185), oklch(0.94 0.03 180));
    --shadow-soft: 0 10px 40px -15px oklch(0.55 0.11 185 / 0.25);
    --shadow-card: 0 4px 20px -8px oklch(0.4 0.05 200 / 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-display {
    font-family: "Fraunces", serif;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

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

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

button {
    cursor: pointer;
    font-family: inherit;
}

input,
textarea {
    font-family: inherit;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.min-h-screen {
    min-height: 100vh;
}
.flex {
    display: flex;
}
.flex-col {
    flex-direction: column;
}
.flex-1 {
    flex: 1;
}
.bg-background {
    background-color: var(--background);
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: oklch(0.99 0.005 180 / 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
}

.logo-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary-foreground);
}

.logo-text {
    line-height: 1.2;
}

.logo-name {
    font-family: "Fraunces", serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
}

.logo-sub {
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted-foreground);
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-desktop a {
    font-size: 0.875rem;
    font-weight: 500;
    color: oklch(0.2 0.03 200 / 0.7);
    transition: color 0.2s;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--primary);
}

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

.cart-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--foreground);
    transition: background 0.2s;
}

.cart-btn:hover {
    background: var(--secondary);
}

.cart-badge {
    position: absolute;
    top: -0.125rem;
    right: -0.125rem;
    background: var(--accent);
    color: var(--accent-foreground);
    font-size: 0.625rem;
    font-weight: 700;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.cart-badge.show {
    display: flex;
}

.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    background: transparent;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    border-top: 1px solid var(--border);
    background: var(--background);
}

.mobile-nav.open {
    display: block;
}

.mobile-nav-inner {
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-nav-inner a {
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 0;
    color: var(--foreground);
}

.mobile-nav-inner a:hover {
    color: var(--primary);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    position: relative;
    overflow: hidden;
    background: var(--gradient-soft);
}

.hero-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        padding: 7rem 1.5rem;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: oklch(1 0 0 / 0.6);
    border: 1px solid var(--border);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.hero-badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.hero-title {
    font-family: "Fraunces", serif;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.05;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-title em {
    font-style: italic;
    color: var(--primary);
}

.hero-text {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    max-width: 28rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 9999px;
    background: var(--primary);
    color: var(--primary-foreground);
    font-weight: 500;
    border: none;
    font-size: 0.9375rem;
    transition: opacity 0.2s;
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 9999px;
    border: 1px solid var(--border);
    background: oklch(1 0 0 / 0.6);
    color: var(--foreground);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: background 0.2s;
}

.btn-outline:hover {
    background: var(--background);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2.5rem;
    font-size: 0.875rem;
}

.stat-value {
    font-family: "Fraunces", serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
}

.stat-label {
    color: var(--muted-foreground);
    font-size: 0.75rem;
}

.stat-divider {
    width: 1px;
    height: 2.5rem;
    background: var(--border);
}

.hero-image-wrap {
    position: relative;
}

.hero-glow {
    position: absolute;
    inset: -1.5rem;
    border-radius: 2rem;
    opacity: 0.3;
    filter: blur(48px);
    background: var(--gradient-hero);
}

.hero-image {
    position: relative;
    border-radius: 2rem;
    box-shadow: 0 25px 50px -12px oklch(0 0 0 / 0.25);
    object-fit: cover;
    width: 100%;
    aspect-ratio: 4 / 5;
}

/* ==========================================================================
   Trust Strip
   ========================================================================== */

.trust-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--background);
}

.trust-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.trust-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

.trust-title {
    font-weight: 500;
    color: var(--foreground);
    font-size: 0.875rem;
}

.trust-desc {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* ==========================================================================
   Section Headings
   ========================================================================== */

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.section-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: "Fraunces", serif;
    font-size: 2.25rem;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-link {
    display: none;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    transition: gap 0.2s;
}

@media (min-width: 768px) {
    .section-link {
        display: inline-flex;
    }
}

.section-link:hover {
    gap: 0.75rem;
}

/* ==========================================================================
   Service Card Grid
   ========================================================================== */

.service-grid {
    display: grid;
    gap: 1.5rem;
}

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

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

.service-card {
    display: flex;
    flex-direction: column;
    padding: 1.75rem;
    border-radius: 1.25rem;
    background: var(--card);
    border: 1px solid var(--border);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    box-shadow: var(--shadow-card);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.service-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.875rem;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}

.service-card-icon svg {
    width: 1.375rem;
    height: 1.375rem;
    color: var(--primary);
}

.service-card-title {
    font-family: "Fraunces", serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.service-card-summary {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1.25rem;
}

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

.service-card-price {
    font-family: "Fraunces", serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
}

.service-card-duration {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Service Detail */
.service-detail {
    max-width: 48rem;
    margin: 2rem auto 0;
}

.service-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.service-detail-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-detail-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--primary);
}

.service-detail-title {
    font-family: "Fraunces", serif;
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .service-detail-title {
        font-size: 3rem;
    }
}

.service-detail-price {
    font-family: "Fraunces", serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

.service-detail-desc {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.8;
}

/* ==========================================================================
   Product Grid
   ========================================================================== */

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

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

/* Product Card */
.product-card {
    position: relative;
}

.product-card-image {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 1rem;
    overflow: hidden;
    background: var(--secondary);
    margin-bottom: 1rem;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

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

.product-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--accent);
    color: var(--accent-foreground);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.add-to-cart-btn {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(0.5rem);
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px oklch(0 0 0 / 0.1);
}

.product-card:hover .add-to-cart-btn {
    opacity: 1;
    transform: translateY(0);
}

.product-category {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
}

.product-name {
    font-weight: 500;
    color: var(--foreground);
    transition: color 0.2s;
}

.product-name:hover {
    color: var(--primary);
}

.product-price {
    margin-top: 0.25rem;
    font-family: "Fraunces", serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
}

/* ==========================================================================
   Category Cards
   ========================================================================== */

.category-grid {
    display: grid;
    gap: 1.5rem;
}

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

.category-card {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 1rem;
    overflow: hidden;
    display: block;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        oklch(0.2 0.03 200 / 0.8),
        oklch(0.2 0.03 200 / 0.2),
        transparent
    );
}

.category-content {
    position: absolute;
    bottom: 0;
    padding: 1.5rem;
    color: var(--primary-foreground);
}

.category-title {
    font-family: "Fraunces", serif;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.category-desc {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */

.cta-banner {
    border-radius: 1.5rem;
    padding: 2.5rem 1.5rem;
    text-align: center;
    color: var(--primary-foreground);
    background: var(--gradient-hero);
}

@media (min-width: 768px) {
    .cta-banner {
        padding: 4rem;
    }
}

.cta-title {
    font-family: "Fraunces", serif;
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-text {
    opacity: 0.9;
    max-width: 36rem;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.cta-btn-solid {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    background: var(--background);
    color: var(--foreground);
    font-weight: 500;
    border: none;
    font-size: 0.9375rem;
    transition: opacity 0.2s;
}

.cta-btn-solid:hover {
    opacity: 0.9;
}

.cta-btn-outline {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: 1px solid oklch(1 0 0 / 0.3);
    color: var(--primary-foreground);
    font-weight: 500;
    background: transparent;
    font-size: 0.9375rem;
    transition: background 0.2s;
}

.cta-btn-outline:hover {
    background: oklch(1 0 0 / 0.1);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: var(--foreground);
    color: var(--background);
    margin-top: 5rem;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    display: grid;
    gap: 2.5rem;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-brand-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
}

.footer-brand-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary-foreground);
}

.footer-brand-name {
    font-family: "Fraunces", serif;
    font-size: 1.125rem;
}

.footer-about {
    font-size: 0.875rem;
    color: oklch(1 0 0 / 0.7);
    line-height: 1.7;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: oklch(1 0 0 / 0.7);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--background);
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact li {
    display: flex;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: oklch(1 0 0 / 0.7);
}

.footer-contact svg {
    width: 1rem;
    height: 1rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid oklch(1 0 0 / 0.1);
}

.footer-bottom-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem;
    font-size: 0.75rem;
    color: oklch(1 0 0 / 0.5);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

/* ==========================================================================
   Page Header (Subpages)
   ========================================================================== */

.page-header {
    border-bottom: 1px solid var(--border);
    background: var(--gradient-soft);
}

.page-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

@media (min-width: 768px) {
    .page-header-inner {
        padding: 5rem 1.5rem;
    }
}

.page-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.page-title {
    font-family: "Fraunces", serif;
    font-size: 3rem;
    color: var(--foreground);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .page-title {
        font-size: 3.75rem;
    }
}

.page-subtitle {
    color: var(--muted-foreground);
    max-width: 36rem;
    line-height: 1.7;
}

/* ==========================================================================
   Shop Filters
   ========================================================================== */

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.filter-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    transition: all 0.2s;
    background: var(--secondary);
    color: var(--foreground);
}

.filter-btn:hover {
    background: oklch(0.96 0.02 180 / 0.7);
}

.filter-btn.active {
    background: var(--primary);
    color: var(--primary-foreground);
}

/* ==========================================================================
   Product Detail
   ========================================================================== */

.back-link {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--primary);
}

.product-detail-grid {
    display: grid;
    gap: 3rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.product-image-wrap {
    aspect-ratio: 1 / 1;
    border-radius: 1.5rem;
    overflow: hidden;
    background: var(--secondary);
}

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

.product-category-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.product-detail-name {
    font-family: "Fraunces", serif;
    font-size: 2.25rem;
    color: var(--foreground);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .product-detail-name {
        font-size: 3rem;
    }
}

.product-detail-price {
    font-family: "Fraunces", serif;
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.product-detail-desc {
    color: var(--muted-foreground);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.qty-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.qty-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 9999px;
}

.qty-btn {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: var(--foreground);
    font-size: 1.125rem;
}

.qty-value {
    width: 2.5rem;
    text-align: center;
    font-weight: 500;
}

.add-to-cart-large {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    background: var(--primary);
    color: var(--primary-foreground);
    font-weight: 500;
    border: none;
    font-size: 0.9375rem;
    transition: opacity 0.2s;
}

.add-to-cart-large:hover {
    opacity: 0.9;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

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

.product-feature svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
    margin: 0 auto 0.5rem;
}

.product-feature-title {
    font-size: 0.875rem;
    font-weight: 500;
}

.product-feature-sub {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* ==========================================================================
   Cart Page
   ========================================================================== */

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

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

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

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    background: var(--secondary);
}

.cart-item-image {
    width: 6rem;
    height: 6rem;
    border-radius: 0.75rem;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-category {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cart-item-name {
    font-weight: 500;
    color: var(--foreground);
}

.cart-item-price {
    font-family: "Fraunces", serif;
    font-weight: 600;
    margin-top: 0.25rem;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.cart-remove-btn {
    border: none;
    background: transparent;
    color: var(--muted-foreground);
    transition: color 0.2s;
}

.cart-remove-btn:hover {
    color: var(--destructive);
}

.cart-qty-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 9999px;
    background: var(--background);
}

.cart-qty-btn {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: var(--foreground);
}

.cart-qty-value {
    width: 2rem;
    text-align: center;
    font-size: 0.875rem;
}

.clear-cart-btn {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    background: none;
    border: none;
    align-self: flex-start;
    transition: color 0.2s;
}

.clear-cart-btn:hover {
    color: var(--destructive);
}

/* Cart Summary */
.cart-summary {
    padding: 1.5rem;
    border-radius: 1rem;
    background: var(--foreground);
    color: var(--background);
    position: sticky;
    top: 6rem;
}

.cart-summary-title {
    font-family: "Fraunces", serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.summary-label {
    color: oklch(1 0 0 / 0.7);
}

.summary-divider {
    border: none;
    border-top: 1px solid oklch(1 0 0 / 0.2);
    margin: 0.75rem 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-family: "Fraunces", serif;
    font-size: 1.25rem;
    padding-top: 0.75rem;
}

.checkout-btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    background: var(--primary);
    color: var(--primary-foreground);
    font-weight: 500;
    border: none;
    font-size: 0.9375rem;
    margin-top: 1.5rem;
    transition: opacity 0.2s;
}

.checkout-btn:hover {
    opacity: 0.9;
}

.checkout-note {
    font-size: 0.75rem;
    color: oklch(1 0 0 / 0.6);
    text-align: center;
    margin-top: 1rem;
}

/* Empty Cart */
.empty-state {
    max-width: 36rem;
    margin: 0 auto;
    padding: 8rem 1.5rem;
    text-align: center;
}

.empty-icon {
    width: 3rem;
    height: 3rem;
    color: var(--muted-foreground);
    margin: 0 auto 1.5rem;
}

.empty-title {
    font-family: "Fraunces", serif;
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.empty-text {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

/* Checkout Success */
.checkout-success {
    max-width: 36rem;
    margin: 0 auto;
    padding: 8rem 1.5rem;
    text-align: center;
}

.success-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--primary);
    color: var(--primary-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.success-title {
    font-family: "Fraunces", serif;
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.success-text {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

/* ==========================================================================
   About Page
   ========================================================================== */

.about-header {
    max-width: 56rem;
    margin: 0 auto;
    padding: 5rem 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .about-header {
        padding: 7rem 1.5rem;
    }
}

.about-header-title {
    font-family: "Fraunces", serif;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .about-header-title {
        font-size: 4.5rem;
    }
}

.about-header-title em {
    font-style: italic;
    color: var(--primary);
}

.about-header-text {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 36rem;
    margin: 0 auto;
    line-height: 1.7;
}

.about-story-grid {
    max-width: 64rem;
    margin: 0 auto;
    padding: 5rem 1.5rem;
    display: grid;
    gap: 4rem;
}

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

.about-story-title {
    font-family: "Fraunces", serif;
    font-size: 1.875rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.about-story-text {
    color: var(--muted-foreground);
    line-height: 1.8;
}

.values-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem 5rem;
    display: grid;
    gap: 1.5rem;
}

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

.value-card {
    padding: 1.5rem;
    border-radius: 1rem;
    background: var(--secondary);
}

.value-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.value-title {
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.value-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ==========================================================================
   Contact Page
   ========================================================================== */

.contact-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
    display: grid;
    gap: 4rem;
}

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

.contact-info-title {
    font-family: "Fraunces", serif;
    font-size: 1.875rem;
    margin-bottom: 2rem;
    color: var(--foreground);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
}

.contact-info-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

.contact-info-label {
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.contact-info-value {
    color: var(--muted-foreground);
    white-space: pre-line;
    line-height: 1.5;
}

.contact-info-value a {
    transition: color 0.2s;
}

.contact-info-value a:hover {
    color: var(--primary);
}

/* Contact Form */
.contact-form-wrap {
    padding: 2rem;
    border-radius: 1.5rem;
    background: var(--secondary);
}

@media (min-width: 768px) {
    .contact-form-wrap {
        padding: 2.5rem;
    }
}

.contact-form-title {
    font-family: "Fraunces", serif;
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

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

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    background: var(--background);
    color: var(--foreground);
    font-size: 0.9375rem;
    outline: none;
    transition: border-color 0.2s;
}

.form-input:focus {
    border-color: var(--primary);
}

.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    background: var(--background);
    color: var(--foreground);
    font-size: 0.9375rem;
    outline: none;
    resize: none;
    transition: border-color 0.2s;
}

.form-textarea:focus {
    border-color: var(--primary);
}

select.form-input {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-submit {
    width: 100%;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    background: var(--primary);
    color: var(--primary-foreground);
    font-weight: 500;
    border: none;
    font-size: 0.9375rem;
    transition: opacity 0.2s;
}

.form-submit:hover {
    opacity: 0.9;
}

.form-success {
    padding: 3rem 0;
    text-align: center;
}

.form-success-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--primary);
    color: var(--primary-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.form-success-text {
    font-weight: 500;
    color: var(--foreground);
}

/* ==========================================================================
   404 Page
   ========================================================================== */

.error-page {
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
}

.error-content {
    max-width: 28rem;
    text-align: center;
}

.error-code {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--foreground);
}

.error-title {
    margin-top: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
}

.error-text {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.error-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    background: var(--primary);
    color: var(--primary-foreground);
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    transition: opacity 0.2s;
}

.error-btn:hover {
    opacity: 0.9;
}

/* ==========================================================================
   Hero Product Slideshow
   ========================================================================== */

.hero-showcase {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px oklch(0 0 0 / 0.25);
}

.hero-showcase-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-showcase-slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.hero-showcase-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-showcase-link {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero-showcase-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: none;
    background: oklch(1 0 0 / 0.2);
    backdrop-filter: blur(8px);
    color: oklch(1 0 0);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        background 0.2s,
        opacity 0.3s;
    opacity: 0;
}

.hero-image-wrap:hover .hero-showcase-btn {
    opacity: 1;
}

.hero-showcase-btn:hover {
    background: oklch(1 0 0 / 0.35);
}

.hero-showcase-btn-prev {
    left: 0.75rem;
}
.hero-showcase-btn-next {
    right: 0.75rem;
}

@media (max-width: 640px) {
    .hero-showcase-btn {
        display: none;
    }
}

.hero-showcase-dots {
    position: absolute;
    bottom: 0.75rem;
    right: 1rem;
    z-index: 5;
    display: flex;
    gap: 0.375rem;
}

.hero-showcase-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    border: none;
    background: oklch(1 0 0 / 0.4);
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.hero-showcase-dot.active {
    background: oklch(1 0 0);
    width: 1.25rem;
    border-radius: 9999px;
}

.hero-showcase-dot:hover {
    background: oklch(1 0 0 / 0.7);
}

/* ==========================================================================
   Responsive Helpers
   ========================================================================== */

.section-pad {
    padding: 5rem 0;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.mt-20 {
    margin-top: 5rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

/* --- Floating WhatsApp Button --- */
.whatsapp-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}
.whatsapp-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}
@media (max-width: 600px) {
    .whatsapp-btn {
        width: 3rem;
        height: 3rem;
        bottom: 1rem;
        right: 1rem;
    }
    .whatsapp-btn svg {
        width: 1.25rem;
        height: 1.25rem;
    }
}
