/* ================================
   BLUM CAFÉ — BRUTAL SOFT 2026
   ================================ */

@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --bg: #f8f5f2;
    --bg-warm: #f3ede7;
    --bg-card: #ffffff;
    --bg-dark: #1a1815;

    --terracotta: #c4704b;
    --terracotta-light: #e8a07a;
    --terracotta-dark: #a85a3a;
    --sage: #8fa387;
    --sage-light: #b8c9b3;
    --sand: #d4c4b0;
    --blush: #e8c4c4;
    --cream: #faf7f4;

    --black: #1a1815;
    --dark: #2d2926;
    --gray: #6b6560;
    --gray-light: #a39e99;
    --gray-muted: #c9c4bf;

    --shadow-sm: 0 2px 8px rgba(26, 24, 21, 0.04);
    --shadow: 0 8px 30px rgba(26, 24, 21, 0.08);
    --shadow-lg: 0 20px 50px rgba(26, 24, 21, 0.12);
    --shadow-xl: 0 30px 70px rgba(26, 24, 21, 0.15);

    --font-display: 'Unbounded', cursive;
    --font-body: 'Inter', sans-serif;

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --radius: 24px;
    --radius-lg: 32px;
    --radius-full: 9999px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 17px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    background: var(--bg);
    color: var(--dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button, input, textarea {
    font-family: inherit;
    border: none;
    outline: none;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1;
    color: var(--black);
    letter-spacing: -0.03em;
}

h1 { font-size: clamp(3rem, 10vw, 6rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.15rem; }

p {
    color: var(--gray);
    line-height: 1.7;
}

/* LAYOUT */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.section {
    padding: clamp(3rem, 6vw, 5rem) 0;
}

/* ANIMATIONS */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    background: rgba(248, 245, 242, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.05em;
    transition: all 0.3s var(--ease);
}

.logo:hover {
    color: var(--terracotta);
}

.nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    padding: 0.7rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray);
    border-radius: var(--radius-full);
    transition: all 0.3s var(--ease);
}

.nav-link:hover {
    background: var(--bg-warm);
    color: var(--black);
}

.cart-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--black);
    color: white;
    padding: 0.8rem 1.6rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s var(--ease);
}

.cart-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.cart-btn .count {
    background: var(--terracotta);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-warm);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, var(--sand) 1px, transparent 0);
    background-size: 35px 35px;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 8rem 0 5rem;
    max-width: 750px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: white;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    animation: fadeUp 0.8s var(--ease) both;
}

.hero-tag-dot {
    width: 8px;
    height: 8px;
    background: var(--sage);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    margin-bottom: 1.5rem;
    line-height: 0.95;
    animation: fadeUp 0.8s var(--ease) 0.1s both;
}

.hero-title span {
    display: block;
    color: var(--terracotta);
}

.hero-desc {
    font-size: 1.3rem;
    color: var(--gray);
    max-width: 550px;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    animation: fadeUp 0.8s var(--ease) 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp 0.8s var(--ease) 0.3s both;
}

.hero-img {
    position: absolute;
    right: 1%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 680px;
    z-index: 1;
}

.hero-img img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.hero-float-1, .hero-float-2, .hero-float-3 {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.hero-float-1 {
    width: 400px;
    height: 400px;
    background: var(--blush);
    opacity: 0.4;
    filter: blur(80px);
    top: 15%;
    right: 15%;
    animation: float 8s ease-in-out infinite;
}

.hero-float-2 {
    width: 250px;
    height: 250px;
    background: var(--sage-light);
    opacity: 0.3;
    filter: blur(60px);
    bottom: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite reverse;
}

.hero-float-3 {
    width: 180px;
    height: 180px;
    background: var(--terracotta-light);
    opacity: 0.3;
    filter: blur(50px);
    top: 35%;
    left: 25%;
    animation: float 10s ease-in-out infinite;
}

/* MARQUEE */
.marquee-section {
    background: var(--black);
    padding: 1.25rem 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    animation: marquee 25s linear infinite;
}

.marquee-content {
    display: flex;
    gap: 3rem;
    padding: 0 1.5rem;
    white-space: nowrap;
}

.marquee-item {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.marquee-item span {
    color: var(--terracotta);
}

/* FEATURES */
.features-section {
    background: var(--cream);
    padding: clamp(2rem, 5vw, 3rem) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: var(--radius);
    transition: all 0.4s var(--ease);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--gray-light);
}

/* SECTION HEADERS */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.section-header-center {
    text-align: center;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.section-header-center .section-title-group {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--terracotta);
    margin-bottom: 0.75rem;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.4s var(--ease);
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--black);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(26, 24, 21, 0.2);
}

.btn-secondary {
    background: white;
    color: var(--black);
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.btn-terracotta {
    background: var(--terracotta);
    color: white;
}

.btn-terracotta:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(196, 112, 75, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gray-muted);
    color: var(--dark);
}

.btn-outline:hover {
    border-color: var(--black);
    background: var(--black);
    color: white;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
}

.btn-outline-light:hover {
    background: white;
    border-color: white;
    color: var(--black);
}

.btn-ghost {
    background: var(--bg-warm);
    color: var(--dark);
}

.btn-ghost:hover {
    background: var(--sand);
}

.btn-block { width: 100%; }
.btn-sm { padding: 0.65rem 1.3rem; font-size: 0.8rem; }
.btn-lg { padding: 1.15rem 2.5rem; font-size: 0.95rem; }

/* FILTERS */
.filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s var(--ease);
    box-shadow: var(--shadow-sm);
}

.filter-btn:hover {
    background: var(--bg-warm);
    color: var(--dark);
    transform: translateY(-2px);
}

.filter-btn--active {
    background: var(--black);
    color: white;
    box-shadow: var(--shadow);
}

/* PRODUCTS GRID */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

/* PRODUCT CARD */
.product-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.5s var(--ease);
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.product-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--bg-warm);
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.product-card:hover .product-img img {
    transform: scale(1.08);
}

.product-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--terracotta);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-body {
    padding: 1.5rem;
}

.product-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sage);
    margin-bottom: 0.4rem;
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.product-card:hover .product-name {
    color: var(--terracotta);
}

.product-desc {
    font-size: 0.9rem;
    color: var(--gray-light);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
}

.product-price small {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--gray-light);
}

.product-weight {
    font-size: 0.85rem;
    color: var(--gray-light);
    background: var(--bg-warm);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-full);
}

.product-actions {
    margin-top: 1.25rem;
}

/* ABOUT SECTION */
.about-section {
    background: var(--bg-dark);
    color: white;
    position: relative;
    overflow: hidden;
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img-main img {
    width: 100%;
    aspect-ratio: 10/5;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 55%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 5px solid var(--bg-dark);
}

.about-img-secondary img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.about-content {
    padding: 1rem 0;
}

.about-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--terracotta);
    margin-bottom: 1rem;
}

.about-content h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.about-stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--terracotta);
    display: block;
    margin-bottom: 0.25rem;
}

.about-stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* PROMO */
.promo-section {
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

.promo-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.1) 1px, transparent 0);
    background-size: 25px 25px;
}

.promo-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.promo-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 0.4rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.promo-title {
    color: white;
    margin-bottom: 1rem;
}

.promo-desc {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
}

/* TESTIMONIALS */
.testimonials-section {
    background: var(--cream);
    padding: clamp(3rem, 6vw, 4rem) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: var(--terracotta);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.testimonial-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
}

.testimonial-date {
    font-size: 0.8rem;
    color: var(--gray-light);
}

/* SINGLE PRODUCT */
.product-page {
    padding-top: 6rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--gray);
}

.breadcrumb a:hover { color: var(--terracotta); }
.breadcrumb-sep { color: var(--gray-muted); }

.product-single {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 6rem;
}

.product-main-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-warm);
    box-shadow: var(--shadow-lg);
}

.product-main-img img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.product-details {
    padding: 1rem 0;
}

.product-details .product-category {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.product-details .product-name {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.product-rating-stars {
    color: var(--terracotta);
    font-size: 1rem;
}

.product-rating-text {
    font-size: 0.85rem;
    color: var(--gray);
}

.product-meta {
    display: flex;
    gap: 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--gray-muted);
    border-bottom: 1px solid var(--gray-muted);
    margin-bottom: 1.5rem;
}

.product-meta-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--terracotta);
    margin-bottom: 0.2rem;
}

.product-meta-item span {
    font-size: 0.8rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-description {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.product-feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem;
    background: var(--bg-warm);
    border-radius: 14px;
    font-size: 0.9rem;
    font-weight: 500;
}

.product-feature-icon { font-size: 1.1rem; }

.quantity-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.quantity-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray);
}

.quantity-input {
    width: 80px;
    padding: 0.9rem;
    background: var(--bg-warm);
    border: none;
    border-radius: 16px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    color: var(--black);
    transition: all 0.3s;
}

.quantity-input:focus {
    background: white;
    box-shadow: var(--shadow);
}

.add-btn {
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
}

.product-guarantee {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--sage-light);
    border-radius: 14px;
    color: var(--dark);
    font-size: 0.9rem;
}

.product-guarantee-icon { font-size: 1.25rem; }

.related-section {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 1px solid var(--gray-muted);
}

/* CART */
.cart-page {
    padding-top: 6rem;
    min-height: 100vh;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2.5rem;
    align-items: start;
}

.cart-box {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.cart-header {
    padding: 1.25rem 1.75rem;
    background: var(--bg-warm);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto auto auto auto;
    gap: 1.25rem;
    align-items: center;
    padding: 1.25rem 1.75rem;
    border-bottom: 1px solid var(--bg-warm);
    transition: background 0.3s;
}

.cart-item:hover { background: var(--bg); }
.cart-item:last-child { border-bottom: none; }

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 16px;
    background: var(--bg-warm);
}

.cart-item-info h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.cart-item-info h4 a { transition: color 0.3s; }
.cart-item-info h4 a:hover { color: var(--terracotta); }
.cart-item-info small { font-size: 0.85rem; color: var(--gray-light); }

.cart-item-price {
    color: var(--gray);
    font-weight: 500;
}

.cart-item-qty {
    display: flex;
    gap: 0.5rem;
}

.cart-item-qty input {
    width: 55px;
    padding: 0.6rem;
    background: var(--bg-warm);
    border: none;
    border-radius: 12px;
    font-family: var(--font-display);
    font-weight: 600;
    text-align: center;
    color: var(--black);
}

.cart-item-qty input:focus {
    background: white;
    box-shadow: var(--shadow-sm);
}

.cart-item-total {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    min-width: 80px;
    text-align: right;
}

.cart-item-remove {
    width: 40px;
    height: 40px;
    background: var(--bg-warm);
    border: none;
    border-radius: 50%;
    color: var(--gray-light);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s;
}

.cart-item-remove:hover {
    background: #fecaca;
    color: #dc2626;
    transform: scale(1.1);
}

.cart-summary {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 6rem;
}

.cart-summary-header {
    padding: 1.5rem 2rem;
    background: var(--black);
    color: white;
}

.cart-summary-header h3 {
    font-size: 1.1rem;
    color: white;
}

.cart-summary-body {
    padding: 2rem;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    color: var(--gray);
}

.cart-summary-total {
    display: flex;
    justify-content: space-between;
    padding: 1.25rem 0;
    margin-top: 0.75rem;
    border-top: 2px solid var(--bg-warm);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
}

.cart-summary .btn { margin-top: 1rem; }

.cart-empty {
    text-align: center;
    padding: 5rem 2rem;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.cart-empty-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.25;
}

.cart-empty h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.cart-empty p { margin-bottom: 2rem; }

/* ORDER */
.order-page {
    padding-top: 6rem;
    min-height: 100vh;
}

.order-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2.5rem;
    align-items: start;
}

.order-form {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.form-section { margin-bottom: 2rem; }

.form-section-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-warm);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.form-section-icon { font-size: 1.25rem; }

.form-group { margin-bottom: 1rem; }

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 0.4rem;
}

.form-required::after {
    content: ' *';
    color: var(--terracotta);
}

.form-input, .form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--bg-warm);
    border: 2px solid transparent;
    border-radius: 14px;
    font-size: 1rem;
    color: var(--black);
    transition: all 0.3s;
}

.form-input:focus, .form-textarea:focus {
    background: white;
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(196, 112, 75, 0.1);
}

.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-light); }

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-checkbox {
    display: flex;
    gap: 0.75rem;
    padding: 1.25rem;
    background: var(--bg-warm);
    border-radius: 14px;
}

.form-checkbox input {
    width: 22px;
    height: 22px;
    accent-color: var(--terracotta);
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
    cursor: pointer;
}

.form-checkbox a {
    color: var(--terracotta);
    font-weight: 600;
}

.order-sidebar {
    position: sticky;
    top: 6rem;
}

.order-summary {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.order-summary-header {
    padding: 1.5rem 2rem;
    background: var(--terracotta);
    color: white;
}

.order-summary-header h3 {
    font-size: 1rem;
    color: white;
}

.order-summary-body {
    padding: 1.5rem 2rem;
    max-height: 280px;
    overflow-y: auto;
}

.order-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--bg-warm);
}

.order-summary-item:last-child { border-bottom: none; }
.order-summary-item-name { font-weight: 600; }
.order-summary-item-qty { font-size: 0.85rem; color: var(--gray-light); }
.order-summary-item-price { font-weight: 600; }

.order-summary-footer {
    padding: 1.5rem 2rem;
    background: var(--bg-warm);
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
}

/* SUCCESS */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background: var(--bg-warm);
}

.success-card {
    max-width: 500px;
    background: white;
    padding: 3.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--sage), var(--sage-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    animation: scaleIn 0.6s var(--ease-bounce) both;
}

.success-card h1 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.success-order {
    display: inline-block;
    background: var(--bg-warm);
    padding: 0.75rem 2rem;
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--terracotta);
    margin-bottom: 1.5rem;
}

.success-card p { margin-bottom: 2rem; }

.success-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* AUTH */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    background: var(--bg-warm);
}

.auth-card {
    width: 100%;
    max-width: 440px;
    background: white;
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.auth-title {
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
}

.auth-subtitle { color: var(--gray); }

.auth-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--bg-warm);
    color: var(--gray);
}

.auth-footer a {
    color: var(--terracotta);
    font-weight: 600;
}

/* PROFILE */
.profile-page {
    padding-top: 6rem;
    min-height: 100vh;
}

.profile-header {
    background: var(--black);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-bottom: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.profile-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: var(--terracotta);
    opacity: 0.1;
    border-radius: 50%;
}

.profile-greeting {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.profile-name {
    font-size: 2.25rem;
    color: white;
}

.profile-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2rem;
}

.profile-nav {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: fit-content;
}

.profile-nav-link {
    display: block;
    padding: 1.25rem 1.5rem;
    font-weight: 500;
    color: var(--gray);
    border-left: 3px solid transparent;
    transition: all 0.3s;
}

.profile-nav-link:hover {
    background: var(--bg-warm);
    color: var(--dark);
}

.profile-nav-link--active {
    background: var(--bg-warm);
    color: var(--terracotta);
    border-left-color: var(--terracotta);
    font-weight: 600;
}

.profile-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.profile-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-warm);
}

.profile-info-item {
    display: flex;
    padding: 1rem 1.25rem;
    background: var(--bg-warm);
    border-radius: 12px;
    margin-bottom: 0.75rem;
}

.profile-info-label {
    width: 130px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-light);
}

.profile-info-value { font-weight: 500; }

/* ORDERS */
.orders-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: var(--radius);
}

.orders-empty-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    opacity: 0.2;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.order-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.order-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: var(--bg-warm);
    flex-wrap: wrap;
    gap: 1rem;
}

.order-number {
    font-family: var(--font-display);
    font-weight: 700;
}

.order-date {
    font-size: 0.9rem;
    color: var(--gray);
}

.order-status {
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.order-status--new { background: var(--terracotta); color: white; }
.order-status--processing { background: #fef3c7; color: #92400e; }
.order-status--completed { background: var(--sage-light); color: #166534; }
.order-status--cancelled { background: var(--gray-muted); color: var(--gray); }

.order-card-body { padding: 1.5rem; }

.order-items-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    color: var(--gray);
}

.order-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--bg-warm);
}

.order-address {
    font-size: 0.9rem;
    color: var(--gray);
}

.order-total {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--terracotta);
}

/* PRIVACY */
.privacy-page { padding-top: 6rem; }

.privacy-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow);
}

.privacy-section { margin-bottom: 2rem; }
.privacy-section:last-child { margin-bottom: 0; }

.privacy-section h3 {
    font-size: 1.1rem;
    color: var(--terracotta);
    margin-bottom: 1rem;
}

.privacy-section p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.privacy-section ul {
    margin: 1rem 0 1rem 1.25rem;
    color: var(--gray);
}

.privacy-section li { margin-bottom: 0.4rem; }

.privacy-date {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--bg-warm);
    color: var(--gray-light);
}

/* FLASH */
.flash-messages {
    position: fixed;
    top: 5rem;
    right: 1.5rem;
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.flash {
    background: white;
    color: var(--dark);
    padding: 1rem 1.5rem;
    border-radius: 14px;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--sage);
    animation: slideIn 0.5s var(--ease) both;
}

@keyframes slideIn {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* FOOTER */
.footer {
    background: var(--black);
    color: white;
    padding: 3.5rem 0 1.5rem;
    margin-top: 0;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 320px;
}

.footer-newsletter { max-width: 350px; }

.footer-newsletter h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: white;
}

.footer-newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.footer-newsletter-form input {
    flex: 1;
    padding: 0.85rem 1.25rem;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: var(--radius-full);
    color: white;
    font-size: 0.95rem;
}

.footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--terracotta);
    margin-bottom: 1.25rem;
}

.footer-links a {
    display: block;
    padding: 0.4rem 0;
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: white;
    padding-left: 0.5rem;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

.footer-bottom a {
    color: rgba(255,255,255,0.4);
    transition: color 0.3s;
}

.footer-bottom a:hover { color: var(--terracotta); }

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-social {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.footer-social:hover {
    background: var(--terracotta);
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-img { display: none; }
    .hero-content { max-width: 100%; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-img-secondary {
        position: static;
        width: 100%;
        margin-top: 1rem;
    }

    .testimonials-grid { grid-template-columns: 1fr; }

    .product-single, .cart-layout, .order-layout {
        grid-template-columns: 1fr;
    }

    .product-gallery, .cart-summary, .order-sidebar { position: static; }
    .profile-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    html { font-size: 16px; }

    .header-inner {
        flex-direction: column;
        gap: 0.75rem;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .features-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr; text-align: center; }
    .products-grid { grid-template-columns: 1fr; }

    .cart-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .cart-item-img { margin: 0 auto; }
    .cart-item-qty { justify-content: center; }
    .cart-item-total { text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .product-features { grid-template-columns: 1fr; }
    .footer-top { flex-direction: column; }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--sand); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--terracotta); }

::selection {
    background: var(--terracotta);
    color: white;
}