@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #7c5cbf;
    --primary-light: #a688d8;
    --primary-dark: #5a3d9a;
    --secondary: #f0eaf8;
    --accent: #e8b4d8;
    --accent2: #b4d8e8;
    --bg: #faf8fd;
    --bg-card: #ffffff;
    --bg-section: #f4effe;
    --text: #2d1f4a;
    --text-muted: #7a6a9a;
    --border: #e8dff5;
    --white: #ffffff;
    --shadow: 0 4px 24px rgba(124, 92, 191, 0.10);
    --shadow-hover: 0 12px 40px rgba(124, 92, 191, 0.20);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s ease;
    --header-h: 74px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ── HEADER ── */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(250, 248, 253, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    height: var(--header-h);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    font-weight: 400;
}

.logo-text {
    font-family: 'DM Serif Display', serif;
    font-size: 21px;
    color: var(--primary-dark);
}

.logo-sub {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-light);
    margin-top: -4px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav a {
    padding: 9px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}

.nav a:hover,
.nav a.active {
    color: var(--primary);
    background: var(--secondary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-btn {
    position: relative;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 22px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.cart-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(124, 92, 191, 0.35);
}

.cart-count {
    background: var(--accent);
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ── HERO ── */
.hero {
    min-height: 90vh;
    background: linear-gradient(135deg, #f8f0ff 0%, #efe8fb 30%, #e8dff8 60%, #ddd4f5 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '✦';
    position: absolute;
    top: 10%;
    right: 8%;
    font-size: 200px;
    color: rgba(124, 92, 191, 0.06);
    pointer-events: none;
}

.hero::after {
    content: '✦';
    position: absolute;
    bottom: 10%;
    left: 5%;
    font-size: 140px;
    color: rgba(232, 180, 216, 0.1);
    pointer-events: none;
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(232, 180, 216, 0.3);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(124, 92, 191, 0.2);
}

.hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(40px, 5vw, 66px);
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 24px;
}

.hero h1 em {
    font-style: italic;
    color: var(--primary);
}

.hero p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 50px;
    padding: 16px 36px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(124, 92, 191, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(124, 92, 191, 0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.hero-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hero-img-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.hero-img-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.hero-img-card.tall {
    grid-row: span 2;
}

.hero-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-card.tall img {
    height: 100%;
    min-height: 400px;
}

.hero-img-card:not(.tall) img {
    height: 200px;
}

/* ── SECTIONS ── */
.section {
    padding: 80px 24px;
}

.section-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-header h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(30px, 4vw, 46px);
    color: var(--text);
}

.section-header p {
    font-size: 16px;
    color: var(--text-muted);
    margin-top: 12px;
    max-width: 560px;
    margin: 12px auto 0;
}

/* ── PRODUCT CARDS ── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
    border: 1px solid var(--border);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.product-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--bg-section);
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-img img {
    transform: scale(1.07);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

.product-card-body {
    padding: 18px 20px;
}

.product-card-title {
    font-family: 'DM Serif Display', serif;
    font-size: 18px;
    margin-bottom: 6px;
}

.product-card-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.price-old {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 6px;
}

.add-btn {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

/* ── FEATURES ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.feature-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ── PROMO BANNER ── */
.promo-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #a855d4 100%);
    padding: 72px 24px;
    text-align: center;
    color: white;
}

.promo-banner h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(28px, 4vw, 48px);
    margin-bottom: 16px;
}

.promo-banner p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.btn-white {
    background: white;
    color: var(--primary-dark);
    border: none;
    border-radius: 50px;
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ── NEWSLETTER ── */
.newsletter {
    background: var(--bg-section);
    padding: 72px 24px;
    text-align: center;
}

.newsletter-inner {
    max-width: 560px;
    margin: 0 auto;
}

.newsletter h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 36px;
    margin-bottom: 12px;
}

.newsletter p {
    color: var(--text-muted);
    margin-bottom: 28px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    font-size: 15px;
    background: white;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--primary);
}

/* ── FOOTER ── */
.footer {
    background: #1a0f2e;
    color: rgba(255, 255, 255, 0.8);
    padding: 64px 24px 32px;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand .logo-text {
    color: white;
}

.footer-brand p {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    color: white;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 12px;
}

/* ── PRODUCT DETAIL ── */
.product-detail {
    padding: 60px 24px;
}

.product-detail-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-gallery .main-img {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: var(--shadow);
}

.product-gallery .main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info-title {
    font-family: 'DM Serif Display', serif;
    font-size: 36px;
    margin-bottom: 12px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.stars {
    color: #f0a500;
    font-size: 18px;
}

.rating-count {
    font-size: 14px;
    color: var(--text-muted);
}

.product-price-large {
    font-family: 'DM Serif Display', serif;
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 24px;
}

.product-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

.variant-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: var(--text);
}

.size-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.size-btn {
    padding: 8px 18px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    background: white;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.size-btn:hover,
.size-btn.active {
    border-color: var(--primary);
    background: var(--secondary);
    color: var(--primary-dark);
}

.color-grid {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
}

.color-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.color-dot:hover,
.color-dot.active {
    border-color: var(--primary);
    transform: scale(1.15);
}

.qty-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.qty-btn {
    width: 42px;
    height: 42px;
    border: none;
    background: white;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
}

.qty-btn:hover {
    background: var(--bg-section);
}

.qty-input {
    width: 50px;
    height: 42px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    outline: none;
}

.add-to-cart-btn {
    width: 100%;
    padding: 18px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(124, 92, 191, 0.35);
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(124, 92, 191, 0.45);
}

.product-meta {
    margin-top: 24px;
    font-size: 13px;
    color: var(--text-muted);
}

/* ── BREADCRUMB ── */
.breadcrumb {
    padding: 20px 24px;
    max-width: 1280px;
    margin: 0 auto;
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    gap: 8px;
    align-items: center;
}

.breadcrumb a {
    color: var(--primary);
}

.breadcrumb span {
    opacity: 0.5;
}

/* ── CART ── */
.page-title {
    font-family: 'DM Serif Display', serif;
    font-size: 40px;
    text-align: center;
    margin-bottom: 8px;
}

.page-sub {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 48px;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 20px;
    align-items: center;
    background: white;
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.cart-item-img {
    width: 100px;
    height: 120px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-title {
    font-family: 'DM Serif Display', serif;
    font-size: 18px;
    margin-bottom: 6px;
}

.cart-item-variant {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.cart-item-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.remove-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 20px;
    transition: var(--transition);
}

.remove-btn:hover {
    color: #e53e3e;
}

.order-summary {
    background: white;
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    position: sticky;
    top: 90px;
}

.order-summary h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    margin-bottom: 24px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
}

.summary-row.total {
    border-bottom: none;
    font-size: 19px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 8px;
}

.checkout-btn {
    width: 100%;
    padding: 18px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(124, 92, 191, 0.35);
}

.checkout-btn:hover {
    transform: translateY(-2px);
}

.empty-cart {
    text-align: center;
    padding: 80px 20px;
}

.empty-cart h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 28px;
    margin: 20px 0 12px;
}

/* ── CHECKOUT ── */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

.checkout-form-section {
    background: white;
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--border);
}

.checkout-form-section h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: var(--transition);
    background: var(--bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: white;
}

.payment-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 24px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.payment-tab {
    flex: 1;
    padding: 14px;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    border: none;
    background: white;
    color: var(--text-muted);
}

.payment-tab.active {
    background: var(--primary);
    color: white;
}

.payment-content {
    display: none;
}

.payment-content.active {
    display: block;
}

.cod-info {
    background: var(--bg-section);
    border-radius: var(--radius-sm);
    padding: 20px;
    border: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-muted);
}

.cod-info p {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 8px;
}

.place-order-btn {
    width: 100%;
    padding: 20px;
    margin-top: 24px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(124, 92, 191, 0.35);
}

.place-order-btn:hover {
    transform: translateY(-2px);
}

/* ── FILTERS ── */
.filter-bar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    align-items: center;
}

.filter-btn {
    padding: 10px 22px;
    border-radius: 25px;
    border: 1.5px solid var(--border);
    background: white;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--primary);
    background: var(--secondary);
    color: var(--primary-dark);
}

.filter-count {
    font-size: 14px;
    color: var(--text-muted);
    margin-left: auto;
}

.search-box {
    padding: 10px 20px;
    border-radius: 25px;
    border: 1.5px solid var(--border);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
    min-width: 220px;
    background: white;
}

.search-box:focus {
    border-color: var(--primary);
}

/* ── ABOUT ── */
.about-hero {
    background: linear-gradient(135deg, var(--bg-section), var(--secondary));
    padding: 100px 24px;
    text-align: center;
}

.about-hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(36px, 5vw, 60px);
    margin-bottom: 16px;
}

.about-hero p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-img-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-img-wrap img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.about-text h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 36px;
    margin-bottom: 16px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.stats-row {
    display: flex;
    gap: 32px;
    margin-top: 32px;
}

.stat h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 36px;
    color: var(--primary);
}

.stat p {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── CONTACT ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.8;
}

.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-form-box {
    background: white;
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.contact-form-box h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 24px;
    margin-bottom: 24px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

/* ── TOAST ── */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--text);
    color: white;
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(.34, 1.56, .64, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast.success {
    background: #2d7a4f;
}

/* ── SUCCESS ── */
.success-page {
    text-align: center;
    padding: 100px 24px;
}

.success-icon {
    font-size: 80px;
    margin-bottom: 24px;
}

.success-page h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 42px;
    margin-bottom: 16px;
}

.success-page p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 36px;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cart-layout,
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .product-detail-inner {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .nav {
        display: none;
    }

    .nav.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: var(--bg);
        padding: 20px 24px;
        border-bottom: 1px solid var(--border);
        z-index: 999;
    }

    .hamburger {
        display: flex;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .stats-row {
        flex-wrap: wrap;
    }
}

/* ── CARD RATINGS (featured products) ── */
.card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.stars-sm {
    color: #b8a0e0;
    font-size: 13px;
    letter-spacing: 1px;
}

.rev-count {
    font-size: 12px;
    color: var(--text-muted);
}