/* ============================================================
   MOME - Fotoğraf Baskı E-Ticaret - Global Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@300;400;500;600;700&display=swap');

:root {
    --color-bg: #ffffff;
    --color-text: #000000;
    --color-text-2: #333333;
    --color-text-3: #666666;
    --color-text-muted: #999999;
    --color-cta: #272c25;
    --color-cta-text: #f7f2f1;
    --color-accent: #f97316;
    --color-blue: #3b82f6;
    --color-green: #22c55e;
    --color-border: #e6e6e6;
    --color-border-soft: rgba(0, 0, 0, 0.05);
    --color-bg-soft: #f7f7f7;
    --color-bg-login: #e8edef;
    --container-max: 1200px;
    --header-h: 70px;
    --header-h-xl: 90px;
    --radius-card: 18px;
    --radius-btn: 20px;
    --font: 'Be Vietnam Pro', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

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

html,
body {
    margin: 0;
    padding: 0;
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    letter-spacing: -0.01em;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

a:hover {
    opacity: 0.75;
}

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

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

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 600;
}

p {
    margin: 0;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

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

/* ============================================================
   CONTAINER / LAYOUT HELPERS
   ============================================================ */

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

.main-content {
    flex: 1;
}

.section {
    padding: 70px 0;
}

.section-sm {
    padding: 40px 0;
}

.text-center { text-align: center; }
.text-muted { color: var(--color-text-3); }
.font-light { font-weight: 300; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-10 { margin-top: 40px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-10 { margin-bottom: 40px; }

.section-title {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    letter-spacing: -0.5px;
}

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

.section-sub {
    max-width: 600px;
    margin: 16px auto 0;
    text-align: center;
    font-weight: 300;
    font-size: 17px;
    color: var(--color-text-2);
    line-height: 1.6;
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-h);
    background: #fff;
    border-bottom: 1px solid var(--color-border-soft);
}

.site-header__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.site-header__logo {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 3px;
}

.site-nav {
    display: none;
    gap: 24px;
    align-items: center;
    flex-wrap: nowrap;
}

.site-nav .nav-item__link {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.2px;
    color: var(--color-text);
    transition: opacity 0.2s;
    white-space: nowrap;
}

.nav-item {
    position: relative;
}

.nav-item__toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.2px;
    color: var(--color-text);
    padding: 8px 0;
    cursor: pointer;
    background: transparent;
    white-space: nowrap;
}

.nav-item__toggle svg {
    transition: transform 0.2s;
}

.nav-item:hover .nav-item__toggle svg {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 240px;
    background: #fff;
    border: 1px solid var(--color-border-soft);
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
    z-index: 200;
}

.nav-item:hover .nav-dropdown,
.nav-item.open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
}

.nav-dropdown a {
    display: block;
    padding: 11px 16px;
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text);
    border-radius: 8px;
    white-space: nowrap;
    transition: background 0.15s;
}

.nav-dropdown a:hover {
    background: var(--color-bg-soft);
    opacity: 1;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.site-header__actions a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.site-header__actions a:hover {
    background: var(--color-bg-soft);
    opacity: 1;
}

.icon-btn svg {
    width: 22px;
    height: 22px;
}

/* Header search */
.header-search {
    display: flex;
    align-items: center;
    background: #f3f4f6;
    border: 1px solid #f3f4f6;
    border-radius: 999px;
    padding: 4px 10px 4px 4px;
    transition: border-color 0.15s, background 0.15s;
    width: 220px;
    max-width: 100%;
}
.header-search:focus-within {
    background: #fff;
    border-color: #d1d5db;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.08);
}
.header-search__btn {
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 4px 6px;
    color: #6b7280;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.header-search__btn:hover { color: #111827; }
.header-search__btn svg { width: 18px; height: 18px; }
.header-search input {
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 13px;
    color: #111827;
    flex: 1;
    min-width: 0;
    padding: 4px 0;
    font-family: inherit;
}
.header-search input::placeholder { color: #9ca3af; }
@media (max-width: 768px) {
    .header-search { display: none; }
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    background: #dc2626;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    box-shadow: 0 0 0 2px #fff;
    pointer-events: none;
    animation: cartBadgePop 0.3s ease-out;
}
@keyframes cartBadgePop {
    0% { transform: scale(0); }
    60% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* Toast notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 380px;
    pointer-events: none;
}
.toast {
    pointer-events: auto;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: toastSlideIn 0.25s ease-out;
    display: flex;
    align-items: center;
    gap: 10px;
}
.toast--success { background: #16a34a; }
.toast--error { background: #dc2626; }
.toast--info { background: #0ea5e9; }
.toast--hiding { animation: toastSlideOut 0.25s ease-in forwards; }
@keyframes toastSlideIn {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes toastSlideOut {
    to { opacity: 0; transform: translateX(30px); }
}
.toast__close {
    background: none;
    border: 0;
    color: #fff;
    opacity: 0.7;
    cursor: pointer;
    padding: 0 0 0 8px;
    font-size: 18px;
    line-height: 1;
}
.toast__close:hover { opacity: 1; }

/* Cookie consent banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: #111827;
    color: #f3f4f6;
    padding: 16px 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    display: none;
    animation: cookieSlideUp 0.3s ease-out;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-banner__text {
    flex: 1;
    min-width: 260px;
    font-size: 14px;
    line-height: 1.5;
}
.cookie-banner__text a {
    color: #93c5fd;
    text-decoration: underline;
}
.cookie-banner__actions {
    display: flex;
    gap: 8px;
}
.cookie-banner__btn {
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: 0;
    white-space: nowrap;
}
.cookie-banner__btn--primary { background: #fff; color: #111827; }
.cookie-banner__btn--primary:hover { background: #e5e7eb; }
.cookie-banner__btn--secondary {
    background: transparent;
    color: #d1d5db;
    border: 1px solid #4b5563;
}
.cookie-banner__btn--secondary:hover { background: #1f2937; color: #fff; }
@keyframes cookieSlideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

/* Top promo bar */
.promo-bar {
    background: #111827;
    color: #f3f4f6;
    font-size: 13px;
    text-align: center;
    padding: 8px 16px;
    letter-spacing: 0.2px;
}
.promo-bar a {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 500;
    margin-left: 10px;
}
.promo-bar a:hover { text-decoration: underline; }
.promo-bar__contact {
    display: inline-flex;
    gap: 16px;
    margin-left: 18px;
    opacity: 0.85;
}
.promo-bar__contact a { color: #f3f4f6; font-weight: 400; margin-left: 0; }
@media (max-width: 640px) {
    .promo-bar__contact { display: none; }
}

/* WhatsApp floating button */
.whatsapp-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 997;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}
.whatsapp-fab:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
    color: #fff;
}
.whatsapp-fab svg { width: 28px; height: 28px; }
@media (max-width: 640px) {
    .whatsapp-fab {
        bottom: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
    }
    .whatsapp-fab svg { width: 24px; height: 24px; }
}

.hamburger {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: #000;
    border-radius: 2px;
}

@media (min-width: 1024px) {
    .site-header {
        height: var(--header-h-xl);
    }
    .site-nav {
        display: flex;
    }
    .hamburger {
        display: none;
    }
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: #fff;
    z-index: 99;
    padding: 20px;
    flex-direction: column;
    gap: 2px;
    overflow-y: auto;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu__link {
    display: block;
    padding: 16px 4px;
    font-size: 17px;
    font-weight: 500;
    border-bottom: 1px solid var(--color-border);
}

.mobile-menu__group {
    border-bottom: 1px solid var(--color-border);
}

.mobile-menu__parent {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 4px;
    font-size: 17px;
    font-weight: 500;
    text-align: left;
}

.mobile-menu__parent svg {
    transition: transform 0.2s;
}

.mobile-menu__group.open .mobile-menu__parent svg {
    transform: rotate(180deg);
}

.mobile-menu__children {
    display: none;
    padding: 0 0 12px 16px;
}

.mobile-menu__group.open .mobile-menu__children {
    display: block;
}

.mobile-menu__children a {
    display: block;
    padding: 10px 4px;
    font-size: 15px;
    font-weight: 400;
    color: var(--color-text-2);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    line-height: 1;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: var(--color-cta);
    color: var(--color-cta-text);
    border-radius: var(--radius-btn);
    padding: 12px 24px;
}

.btn-primary:hover {
    background: #000;
    opacity: 1;
}

.btn-dark {
    background: #000;
    color: #fff;
    width: 100%;
    padding: 16px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.btn-dark:hover {
    background: #1a1a1a;
    opacity: 1;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-blue {
    background: var(--color-blue);
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
}

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

.btn-outline:hover {
    background: var(--color-bg-soft);
    opacity: 1;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
    position: relative;
    padding-top: calc(var(--header-h) + 48px);
    padding-bottom: 80px;
    margin-top: calc(var(--header-h) * -1);
    text-align: center;
    background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
    overflow: hidden;
}

.hero__badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0,0,0,0.05);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-2);
    letter-spacing: 0.3px;
    margin-bottom: 20px;
}

.hero__title {
    font-size: 34px;
    font-weight: 700;
    max-width: 740px;
    margin: 0 auto 20px;
    letter-spacing: -1.5px;
    line-height: 1.15;
}

.hero__subtitle {
    font-size: 18px;
    font-weight: 300;
    color: var(--color-text-3);
    max-width: 540px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.hero__actions {
    margin-bottom: 56px;
}

.hero__cta {
    display: inline-flex;
    padding: 16px 36px;
    font-size: 16px;
    border-radius: 50px;
}

.hero__frames {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 0;
}

.hero__frame {
    width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.3s;
    transform: perspective(800px) rotateY(-8deg);
}

.hero__frame:nth-child(2) { transform: perspective(800px) rotateY(-4deg) translateY(-8px); }
.hero__frame:nth-child(3) { transform: perspective(800px) rotateY(0deg); }
.hero__frame:nth-child(4) { transform: perspective(800px) rotateY(4deg) translateY(-8px); }
.hero__frame:nth-child(5) { transform: perspective(800px) rotateY(8deg); }

.hero__frame:hover {
    transform: perspective(800px) rotateY(0deg) translateY(-4px) !important;
    opacity: 1;
}

.hero__frame img {
    width: 150px;
    height: 190px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    background: var(--color-bg-soft);
}

.hero__frame-placeholder {
    width: 150px;
    height: 190px;
    background: linear-gradient(145deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
}

.hero__frame-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-2);
}

@media (min-width: 1024px) {
    .hero {
        padding-top: calc(var(--header-h-xl) + 72px);
        padding-bottom: 100px;
        margin-top: calc(var(--header-h-xl) * -1);
    }
    .hero__title {
        font-size: 52px;
        letter-spacing: -2px;
    }
    .hero__subtitle {
        font-size: 20px;
    }
    .hero__frames {
        gap: 28px;
    }
    .hero__frame { width: 170px; }
    .hero__frame img,
    .hero__frame-placeholder { width: 170px; height: 215px; }
}

@media (max-width: 640px) {
    .hero__frames { gap: 12px; }
    .hero__frame { width: 100px; }
    .hero__frame img,
    .hero__frame-placeholder { width: 100px; height: 130px; }
    .hero__frame-label { font-size: 11px; }
    .hero__frame,
    .hero__frame:nth-child(2),
    .hero__frame:nth-child(3),
    .hero__frame:nth-child(4),
    .hero__frame:nth-child(5) {
        transform: none;
    }
}

/* ============================================================
   CATEGORY TILES
   ============================================================ */

.category-tiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 40px;
}

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

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

.category-tile {
    display: block;
    text-decoration: none;
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    background: var(--color-bg-soft);
}

.category-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    opacity: 1;
}

.category-tile__image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(145deg, #f3f4f6 0%, #e5e7eb 100%);
}

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

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

.category-tile__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
}

.category-tile__label {
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
    letter-spacing: -0.01em;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */

.trust-strip {
    padding: 40px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: var(--color-bg-soft);
}

.trust-strip__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

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

.trust-strip__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.trust-strip__item svg {
    flex-shrink: 0;
    color: var(--color-text);
    margin-top: 2px;
}

.trust-strip__item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 2px;
}

.trust-strip__item span {
    font-size: 13px;
    color: var(--color-text-3);
    font-weight: 300;
}

/* ============================================================
   PRODUCT CARD
   ============================================================ */

.product-card {
    display: block;
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    cursor: pointer;
    background: transparent;
    transition: transform 0.3s;
}

.product-card:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.product-card__image-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    background: var(--color-bg-soft);
    border-radius: var(--radius-card);
    overflow: hidden;
}

.product-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 40px;
    transition: opacity 0.4s;
}

.product-card__image--hover {
    opacity: 0;
}

.product-card:hover .product-card__image--main {
    opacity: 0;
}

.product-card:hover .product-card__image--hover {
    opacity: 1;
}

.product-card__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 14px;
    font-weight: 500;
}

.product-card__badge {
    position: absolute;
    left: 20px;
    top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.product-card__badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-green);
}

.product-card__name {
    margin-top: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.product-card__price {
    margin-top: 5px;
    font-size: 15px;
    color: var(--color-text-3);
    font-weight: 400;
}

@media (max-width: 640px) {
    .product-card {
        background: var(--color-bg-soft);
        border-top: 1px solid var(--color-border);
    }
}

/* ============================================================
   PRODUCT GRID / CAROUSEL
   ============================================================ */

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 36px;
}

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

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

.product-grid--3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

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

.product-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 16px 20px 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.product-carousel::-webkit-scrollbar {
    display: none;
}

.product-carousel .product-card {
    flex: 0 0 80%;
    scroll-snap-align: start;
}

@media (min-width: 768px) {
    .product-carousel .product-card {
        flex: 0 0 32%;
    }
}

/* ============================================================
   CATEGORY TABS
   ============================================================ */

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 30px 0 40px;
}

.category-tabs a {
    display: inline-flex;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--color-border);
    background: transparent;
    color: var(--color-text);
    transition: all 0.2s;
}

.category-tabs a:hover {
    background: var(--color-bg-soft);
    opacity: 1;
}

.category-tabs a.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    padding: 20px 0 10px;
    font-size: 14px;
    color: var(--color-text-3);
}

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

.breadcrumb .sep {
    color: var(--color-border);
}

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */

.product-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 20px 0 60px;
}

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

.product-gallery {
    display: flex;
    gap: 16px;
}

.product-gallery__thumbs {
    display: none;
    flex-direction: column;
    gap: 10px;
    width: 72px;
}

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

.product-gallery__thumb {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    background: var(--color-bg-soft);
    border: 2px solid transparent;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-size: 10px;
}

.product-gallery__thumb.active {
    border-color: #000;
}

.product-gallery__main {
    flex: 1;
    position: relative;
}

.product-gallery__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--color-bg-soft);
    border-radius: var(--radius-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-size: 16px;
    overflow: hidden;
}

.product-gallery__nav {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
}

.product-gallery__nav button {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    background: #fff;
}

/* Right column info */
.product-info h1 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.product-info__desc {
    font-size: 16px;
    font-weight: 300;
    color: var(--color-text-3);
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-info__price {
    font-size: 36px;
    font-weight: 700;
    margin: 18px 0 10px;
    letter-spacing: -0.03em;
}

.product-info__badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.3px;
}

.product-info__note {
    font-size: 14px;
    color: var(--color-text-3);
    margin: 12px 0 20px;
    line-height: 1.6;
}

.variant-group {
    margin: 22px 0;
}

.variant-group__label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--color-text-2);
}

.variant-sizes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.variant-sizes button {
    aspect-ratio: 1 / 1;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: #fff;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.15s;
}

.variant-sizes button.active,
.variant-sizes button:hover {
    border-color: #000;
}

.variant-colors {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.variant-colors button {
    padding: 10px 16px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: #fff;
    font-size: 13px;
    min-width: 80px;
}

.variant-colors button.active,
.variant-colors button:hover {
    border-color: #000;
}

.variant-papers {
    display: flex;
    gap: 8px;
}

.variant-papers button {
    padding: 10px 20px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: #fff;
    font-size: 13px;
}

.variant-papers button.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

.shipping-note {
    font-size: 14px;
    color: var(--color-text-3);
    margin-top: 16px;
    line-height: 1.6;
}

/* Accordion */
.accordion {
    border-top: 1px solid var(--color-border);
    margin-top: 50px;
}

.accordion__item {
    border-bottom: 1px solid var(--color-border);
}

.accordion__btn {
    width: 100%;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    background: transparent;
    letter-spacing: -0.01em;
}

.accordion__btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.2s;
}

.accordion__item.open .accordion__btn svg {
    transform: rotate(180deg);
}

.accordion__content {
    display: none;
    padding: 0 0 22px;
    font-size: 15px;
    font-weight: 300;
    color: var(--color-text-3);
    line-height: 1.7;
}

.accordion__item.open .accordion__content {
    display: block;
}

/* Fixed mobile CTA */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 20px;
    background: #fff;
    border-top: 1px solid var(--color-border);
    z-index: 50;
}

@media (max-width: 768px) {
    .mobile-cta {
        display: block;
    }
}

/* ============================================================
   REVIEWS
   ============================================================ */

.reviews {
    padding: 60px 0;
    text-align: center;
}

.reviews__stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    color: #fbbf24;
    font-size: 20px;
    margin-bottom: 14px;
}

.reviews__name {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.reviews__text {
    max-width: 640px;
    margin: 0 auto;
    font-size: 16px;
    font-weight: 300;
    font-style: italic;
    color: var(--color-text-2);
    line-height: 1.6;
}

.reviews__nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.reviews__nav button {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews__link {
    display: inline-block;
    margin-top: 24px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
    color: var(--color-text-2);
}

/* ============================================================
   EDITOR PREVIEW
   ============================================================ */

.editor-preview {
    padding: 80px 0;
    background: var(--color-bg-soft);
}

.editor-preview__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 1024px) {
    .editor-preview__grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.editor-preview__copy h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.editor-preview__copy p {
    font-size: 16px;
    font-weight: 300;
    color: var(--color-text-2);
    line-height: 1.6;
    margin-bottom: 24px;
}

.editor-preview__mockup {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */

.feature-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 60px 0;
}

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

.feature-card {
    padding: 32px 24px;
    background: var(--color-bg-soft);
    border-radius: 16px;
    text-align: center;
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    font-size: 20px;
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 13px;
    font-weight: 300;
    color: var(--color-text-3);
    line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
    background: #fff;
    border-top: 1px solid var(--color-border);
    padding: 60px 0 40px;
    margin-top: 40px;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

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

.site-footer__col h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.site-footer__col ul li {
    margin-bottom: 10px;
}

.site-footer__col a {
    font-size: 15px;
    font-weight: 300;
    color: var(--color-text-2);
}

.site-footer__brand {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.site-footer__desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--color-text-3);
    line-height: 1.7;
    max-width: 340px;
}

.site-footer__bottom {
    margin-top: 50px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
    font-size: 12px;
    color: var(--color-text-3);
    text-align: center;
}

.site-footer__social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.site-footer__social a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: 50%;
}

/* ============================================================
   LOGIN PAGE
   ============================================================ */

.minimal-header {
    padding: 24px 32px;
    background: transparent;
}

.minimal-header__logo {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #000;
}

.login-page {
    min-height: 100vh;
    background: var(--color-bg-login);
    display: flex;
    flex-direction: column;
}

.login-page__main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 16px;
    padding: 40px 36px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.06);
}

.login-card h1 {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 28px;
}

.social-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    transition: background 0.15s;
}

.social-btn:hover {
    background: var(--color-bg-soft);
    opacity: 1;
}

.divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    color: var(--color-text-3);
    font-size: 12px;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--color-border);
}

.login-card input[type="email"],
.login-card input[type="password"],
.login-card input[type="text"] {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    background: #fff;
    outline: none;
    transition: border-color 0.15s;
}

.login-card input:focus {
    border-color: #000;
}

.login-card .btn-dark {
    margin-top: 10px;
}

.login-links {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-size: 12px;
    color: var(--color-text-3);
}

.login-links a:hover {
    color: #000;
}

/* ============================================================
   CART PAGE
   ============================================================ */

.cart-header {
    border-bottom: 1px solid var(--color-border-soft);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-header__title {
    font-size: 16px;
    font-weight: 600;
}

.cart-empty {
    padding: 120px 20px;
    text-align: center;
}

.cart-empty__icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    color: var(--color-text-3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-empty__icon svg {
    width: 100%;
    height: 100%;
}

.cart-empty__title {
    font-size: 22px;
    font-weight: 500;
    color: var(--color-text-2);
    margin-bottom: 30px;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 0;
}

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

.cart-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border);
}

.cart-item__image {
    width: 100px;
    height: 100px;
    background: var(--color-bg-soft);
    border-radius: 10px;
}

.cart-item__info {
    flex: 1;
}

.cart-item__name {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 6px;
}

.cart-item__variants {
    font-size: 12px;
    color: var(--color-text-3);
    margin-bottom: 8px;
}

.cart-item__price {
    font-weight: 600;
}

.cart-summary {
    background: var(--color-bg-soft);
    border-radius: 16px;
    padding: 28px;
    height: fit-content;
}

.cart-summary h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.cart-summary__row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 14px;
    color: var(--color-text-2);
    border-bottom: 1px solid var(--color-border);
}

.cart-summary__row.total {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    border: none;
    margin-top: 10px;
}

/* ============================================================
   FAQ PAGE
   ============================================================ */

.faq-page {
    padding: 60px 0;
    text-align: center;
}

.faq-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    font-size: 32px;
    color: var(--color-text-3);
}

.faq-item {
    max-width: 700px;
    margin: 0 auto 40px;
}

.faq-item__q {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.faq-item__a {
    font-size: 14px;
    font-weight: 300;
    color: var(--color-text-3);
    line-height: 1.7;
}

/* ============================================================
   STATIC PAGES
   ============================================================ */

.static-page {
    max-width: 780px;
    margin: 0 auto;
    padding: 60px 20px;
}

.static-page h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}

.static-page h2 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 36px;
    margin-bottom: 12px;
}

.static-page p {
    font-size: 15px;
    font-weight: 300;
    color: var(--color-text-2);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* ============================================================
   UTILITY
   ============================================================ */

.section-divider {
    border-top: 1px solid #ececec;
}

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

/* SEO article */
.seo-article {
    max-width: 800px;
    margin: 60px auto 0;
    padding: 40px 0;
    border-top: 1px solid var(--color-border);
}

.seo-article h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 24px 0 10px;
}

.seo-article p {
    font-size: 14px;
    font-weight: 300;
    color: var(--color-text-2);
    line-height: 1.7;
}
