/* ==============================
   AT WATCHES — Complete Style Sheet
   Colors: light green, blue, white, purple
   ============================== */

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
ul {
    list-style: none;
}
button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}
input,
textarea {
    font-family: inherit;
    font-size: inherit;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-bg-card);
    color: var(--color-text);
    outline: none;
    transition: border-color 0.25s;
}
input:focus,
textarea:focus {
    border-color: var(--color-secondary);
}
::selection {
    background: var(--color-secondary);
    color: var(--color-bg);
}

/* --- CSS Variables --- */
:root {
    /* Light green / sage primary */
    --color-primary: #6b9b7a;
    --color-primary-hover: #5a8a69;
    --color-primary-light: #e8f3eb;
    --color-primary-soft: rgba(107, 155, 122, 0.12);

    /* Blue secondary */
    --color-secondary: #3b82f6;
    --color-secondary-hover: #2563eb;
    --color-secondary-light: #eff6ff;

    /* Purple accent (a little) */
    --color-accent: #9b8ec1;
    --color-accent-light: #f0edf7;

    /* Neutrals */
    --color-bg: #faf9f7;
    --color-bg-card: #ffffff;
    --color-text: #1c1c1e;
    --color-text-secondary: #6b7280;
    --color-text-muted: #9ca3af;
    --color-border: #e5e7eb;
    --color-border-light: #f0f0f0;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 8px 30px rgba(107, 155, 122, 0.25);
    --shadow-blue: 0 8px 30px rgba(79, 123, 174, 0.25);

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #1c1c1e 0%, #2a2a3e 100%);
    --gradient-cta: linear-gradient(135deg, #2a2a3e 0%, #1c1c1e 100%);

    /* Typography */
    --font-display: "Playfair Display", Georgia, serif;
    --font-sans: "Inter", system-ui, sans-serif;

    /* Spacing */
    --radius: 4px;
    --radius-lg: 8px;
    --max-width: 1200px;
    --header-h: 64px;
}

/* --- Site Wrapper --- */
.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.main-content {
    flex: 1;
}

/* --- Header --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-h);
    border-bottom: 1px solid var(--color-accent);
    background: rgba(155, 142, 193, 0.92);
    backdrop-filter: blur(12px);
}
.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}
.logo-mark {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 0.12em;
    color: var(--color-secondary);
}
.logo-text {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-secondary);
    display: inline;
}

/* --- Navigation --- */
.nav-primary {
    display: none;
    align-items: center;
    gap: 32px;
}
@media (min-width: 768px) {
    .nav-primary {
        display: flex;
    }
}
.nav-link {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #fff;
    transition: color 0.2s;
}
.nav-link {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #fff;
    transition: color 0.2s;
}
.nav-link:hover,
.nav-link.active {
    color: #93c5fd;
}

/* --- Cart Button --- */
.cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 36px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #fff;
    transition:
        border-color 0.2s,
        color 0.2s;
    position: relative;
}
.cart-btn:hover {
    border-color: #93c5fd;
    color: #93c5fd;
}
.cart-btn span:nth-child(2) {
    display: none;
}
@media (min-width: 480px) {
    .cart-btn span:nth-child(2) {
        display: inline;
    }
}
.cart-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 10px;
    background: var(--color-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
}

/* --- Mobile Menu Toggle --- */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}
@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}
.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
    border-radius: 1px;
}
.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}
.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile nav */
@media (max-width: 767px) {
    .nav-primary.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: rgba(155, 142, 193, 0.98);
        backdrop-filter: blur(12px);
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: var(--shadow-md);
    }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: var(--radius);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
    transition: all 0.25s;
    white-space: nowrap;
}
.btn-primary {
    background: var(--color-primary);
    color: #fff;
    padding: 12px 28px;
    box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
    background: var(--color-primary-hover);
    opacity: 0.95;
    transform: translateY(-1px);
}
.btn-outline {
    border: 1px solid var(--color-border);
    color: var(--color-text);
    padding: 12px 28px;
}
.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}
.btn-lg {
    padding: 14px 32px;
    font-size: 12px;
}
.btn-sm {
    padding: 10px 20px;
    font-size: 11px;
}
.btn-block {
    width: 100%;
    justify-content: center;
}

/* --- Hero Slideshow --- */
.hero {
    position: relative;
    height: 85vh;
    min-height: 520px;
    max-height: 800px;
    overflow: hidden;
    background: #1c1c1e;
}
.hero-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition:
        opacity 1s ease,
        transform 1.2s ease;
    transform: scale(1.05);
    pointer-events: none;
}
.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}
.hero-bg {
    position: absolute;
    inset: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(28, 28, 30, 0.88) 0%,
        rgba(28, 28, 30, 0.55) 55%,
        rgba(28, 28, 30, 0.3) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-secondary);
    margin-bottom: 24px;
}
.hero-badge::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--color-secondary);
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4.5rem);
    line-height: 1.08;
    color: #fff;
    max-width: 700px;
    margin-bottom: 20px;
}
.hero-title em {
    color: var(--color-secondary);
    font-style: italic;
}
.hero-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 460px;
    line-height: 1.7;
    margin-bottom: 36px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.hero-actions .btn-primary {
    background: var(--color-primary);
    color: #1c1c1e;
}
.hero-actions .btn-outline {
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
}
.hero-actions .btn-outline:hover {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
}

/* Hero controls */
.hero-controls {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 24px;
    z-index: 5;
}
.hero-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.25s;
}
.hero-arrow:hover {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
    background: rgba(79, 123, 174, 0.1);
}
.hero-dots {
    display: flex;
    gap: 10px;
}
.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}
.hero-dot.active {
    background: var(--color-secondary);
    transform: scale(1.3);
}

/* Progress bar */
.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 5;
}
.hero-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--color-secondary);
    transition: width 6s linear;
}

/* --- Trust Bar --- */
.trust-bar {
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
    background: var(--color-bg-card);
}
.trust-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 32px 24px;
    display: grid;
    gap: 24px;
}
@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.trust-icon {
    flex-shrink: 0;
    color: var(--color-secondary);
    margin-top: 2px;
}
.trust-title {
    font-family: var(--font-display);
    font-size: 17px;
    color: var(--color-text);
    margin-bottom: 4px;
}
.trust-text {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* --- Sections --- */
.section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 80px 24px;
}
.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
}
.section-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-secondary);
    display: block;
    margin-bottom: 8px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    color: var(--color-text);
}
.section-link {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
    transition: color 0.2s;
    display: none;
}
@media (min-width: 768px) {
    .section-link {
        display: inline;
    }
}
.section-link:hover {
    color: var(--color-secondary);
}

/* --- Product Grid --- */
.product-grid {
    display: grid;
    gap: 32px;
}
@media (min-width: 640px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- Product Card --- */
.product-card {
    display: block;
    transition: transform 0.3s ease;
}
.product-card:hover {
    transform: translateY(-4px);
}
.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--color-bg-card);
    box-shadow: var(--shadow-sm);
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.product-card:hover .product-image img {
    transform: scale(1.05);
}
.product-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28, 28, 30, 0.4) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
}
.product-card:hover .product-image::after {
    opacity: 1;
}
.product-category {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    padding: 4px 12px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-secondary);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(79, 123, 174, 0.3);
    border-radius: var(--radius);
}
.product-info {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}
.product-name {
    font-family: var(--font-display);
    font-size: 19px;
    color: var(--color-text);
    transition: color 0.2s;
}
.product-card:hover .product-name {
    color: var(--color-secondary);
}
.product-ref {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--color-text-muted);
    margin-top: 4px;
}
.product-price {
    font-size: 14px;
    color: var(--color-secondary);
    font-weight: 500;
    white-space: nowrap;
}

/* --- CTA Section --- */
.cta-section {
    padding-bottom: 80px;
}
.cta-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-primary);
    padding: 56px 32px;
    text-align: center;
    background: var(--gradient-cta);
}
@media (min-width: 768px) {
    .cta-card {
        padding: 72px 48px;
    }
}
.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    color: #fff;
}
.cta-text {
    margin: 16px auto 0;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.7;
}
.cta-card .btn {
    margin-top: 32px;
}
.cta-card .btn-primary {
    color: #1c1c1e;
    background: var(--color-primary);
}

/* --- Shop Page --- */
.shop-page {
    text-align: center;
}
.shop-header {
    margin-bottom: 48px;
}
.shop-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--color-text);
    margin-top: 12px;
}
.shop-desc {
    color: var(--color-text-secondary);
    max-width: 480px;
    margin: 12px auto 0;
}
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
}
.filter-btn {
    padding: 10px 22px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    color: var(--color-text-muted);
    transition: all 0.2s;
    background: transparent;
}
.filter-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}
.filter-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}
.shop-page .product-grid {
    text-align: left;
}

/* --- Product Detail Page --- */
.product-page {
    padding-top: 32px;
}
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
    transition: color 0.2s;
}
.back-link:hover {
    color: var(--color-primary);
}
.product-detail {
    display: grid;
    gap: 48px;
    margin-top: 40px;
}
@media (min-width: 768px) {
    .product-detail {
        grid-template-columns: 1fr 1fr;
    }
}
.image-frame {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--color-bg-card);
    box-shadow: var(--shadow-lg);
}
.image-frame img {
    width: 100%;
}
.detail-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: var(--color-text);
    margin-top: 12px;
}
.detail-ref {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
    margin-top: 6px;
}
.detail-price {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--color-secondary);
    margin-top: 24px;
}
.detail-desc {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-top: 20px;
}
.specs-list {
    display: grid;
    gap: 10px;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 24px 0;
    margin-top: 28px;
}
.spec-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 14px;
}
.spec-row dt {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--color-text-muted);
    font-size: 12px;
}
.spec-row dd {
    color: var(--color-text);
}
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}
.detail-concierge {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-top: 12px;
}
.related-section {
    margin-top: 80px;
}
.related-title {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--color-text);
    margin-bottom: 32px;
}

/* --- About Page --- */
.about-page {
    max-width: 720px;
}
.about-content {
    padding: 48px 0;
}
.about-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--color-text);
    margin-top: 12px;
}
.about-text {
    margin-top: 40px;
    display: grid;
    gap: 24px;
}
.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

/* --- Contact Page --- */
.contact-page {
    padding-bottom: 80px;
}
.contact-header {
    text-align: center;
}
.contact-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--color-text);
    margin-top: 12px;
}
.contact-desc {
    color: var(--color-text-secondary);
    max-width: 480px;
    margin: 12px auto 0;
}
.contact-grid {
    display: grid;
    gap: 16px;
    margin-top: 48px;
}
@media (min-width: 640px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.contact-card {
    padding: 28px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-bg-card);
    transition: box-shadow 0.2s;
}
.contact-card:hover {
    box-shadow: var(--shadow-md);
}
.contact-card svg {
    color: var(--color-primary);
}
.contact-card-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
    margin-top: 16px;
}
.contact-card-value {
    display: block;
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--color-text);
    margin-top: 4px;
}
.contact-wa {
    text-align: center;
    margin-top: 48px;
}

/* --- Cart Page --- */
.cart-empty {
    text-align: center;
    padding: 80px 24px;
}
.cart-empty svg {
    color: var(--color-secondary);
    margin: 0 auto;
}
.cart-empty-title {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--color-text);
    margin-top: 24px;
}
.cart-empty-text {
    color: var(--color-text-secondary);
    margin-top: 8px;
    margin-bottom: 32px;
}
.cart-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    color: var(--color-text);
}
.cart-subtitle {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-top: 6px;
}
.cart-layout {
    display: grid;
    gap: 48px;
    margin-top: 40px;
}
@media (min-width: 900px) {
    .cart-layout {
        grid-template-columns: 1.6fr 1fr;
    }
}
.cart-items {
    list-style: none;
}
.cart-item {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--color-border-light);
}
.cart-item:first-child {
    padding-top: 0;
}
.cart-item-image {
    flex-shrink: 0;
}
.cart-item-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius);
}
@media (min-width: 480px) {
    .cart-item-image img {
        width: 120px;
        height: 120px;
    }
}
.cart-item-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.cart-item-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}
.cart-item-name {
    font-family: var(--font-display);
    font-size: 17px;
    color: var(--color-text);
    transition: color 0.2s;
}
.cart-item-name:hover {
    color: var(--color-primary);
}
.cart-item-ref {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--color-text-muted);
    margin-top: 4px;
}
.cart-item-price {
    color: var(--color-primary);
    white-space: nowrap;
    font-weight: 500;
}
.cart-item-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 16px;
}
.qty-controls {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
}
.qty-btn {
    padding: 8px 14px;
    color: var(--color-text-muted);
    transition: color 0.2s;
    display: flex;
    align-items: center;
}
.qty-btn:hover {
    color: var(--color-primary);
}
.qty-value {
    min-width: 28px;
    text-align: center;
    font-size: 14px;
}
.remove-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--color-text-muted);
    transition: color 0.2s;
}
.remove-btn:hover {
    color: #dc2626;
}

/* --- Cart Summary --- */
.cart-summary {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    background: var(--color-bg-card);
    position: sticky;
    top: calc(var(--header-h) + 24px);
}
.summary-title {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--color-text);
}
.summary-rows {
    margin-top: 24px;
    display: grid;
    gap: 12px;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}
.summary-row span:first-child {
    color: var(--color-text-muted);
}
.text-muted {
    color: var(--color-text-muted);
    font-size: 13px;
}
.summary-total {
    border-top: 1px solid var(--color-border);
    padding-top: 12px;
    font-size: 16px;
}
.total-amount {
    color: var(--color-primary);
    font-weight: 600;
}
.checkout-fields {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}
.checkout-fields input,
.checkout-fields textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    border-radius: var(--radius);
    background: var(--color-bg);
}
.checkout-fields textarea {
    resize: vertical;
}
.checkout-note {
    text-align: center;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--color-text-muted);
    margin-top: 12px;
}

/* --- Footer --- */
.site-footer {
    border-top: 1px solid var(--color-accent);
    background: rgba(155, 142, 193, 0.92);
}
.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 56px 24px;
    display: grid;
    gap: 40px;
}
@media (min-width: 768px) {
    .footer-inner {
        grid-template-columns: repeat(4, 1fr);
    }
}
.footer-col .logo-mark {
    font-size: 28px;
    margin-bottom: 8px;
}
.footer-desc {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    max-width: 260px;
}
.footer-heading {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-primary);
    margin-bottom: 16px;
}
.footer-links {
    display: grid;
    gap: 10px;
}
.footer-links li {
    font-size: 13px;
    color: var(--color-text-secondary);
}
.footer-links a {
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--color-primary);
}
.footer-bottom {
    text-align: center;
    padding: 20px 24px;
    border-top: 1px solid var(--color-border-light);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-text-muted);
}

/* --- Responsive --- */
@media (max-width: 480px) {
    .hero {
        min-height: 420px;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .hero-controls {
        gap: 16px;
    }
    .detail-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .cart-item {
        flex-direction: column;
    }
    .cart-item-image img {
        width: 100%;
        height: 180px;
    }
}

/* --- Animations --- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
