/* Store UI — TR market style */

:root {
    --mobile-bar-h: 64px;
    --accent: #EA580C;
    --accent-dark: #C2410C;
    --deal: #DC2626;
    --deal-dark: #B91C1C;
    --success: #16A34A;
    --stone-900: #1C1917;
}

body.has-mobile-bar { padding-bottom: var(--mobile-bar-h); }

/* Logo */
.logo-mark { display: flex; flex-direction: column; line-height: 1.1; }
.logo-mark__brand { font-weight: 700; letter-spacing: -0.02em; color: var(--stone-900); }
.logo-mark__sub { font-size: 0.55em; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 1px; }
footer .logo-mark__brand { color: #fff; }
footer .logo-mark__sub { color: rgba(255,255,255,0.5); }

/* Announcement */
.announcement-bar {
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    background: linear-gradient(90deg, #C2410C 0%, #EA580C 50%, #DC2626 100%);
    color: #fff;
    font-size: 0.75rem; font-weight: 600; padding: 0.5625rem 1rem; letter-spacing: 0.01em;
}
.announcement-bar__dot {
    width: 7px; height: 7px; border-radius: 50%; background: #FEF08A; flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(254, 240, 138, 0.35);
    animation: pulseDot 1.8s ease-in-out infinite;
}
@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.85; }
}

/* Buttons */
.btn-primary {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    font-weight: 600; font-size: 0.8125rem; padding: 0.6875rem 1.25rem; border-radius: 9999px;
    background: var(--accent); color: #fff; transition: all 0.2s;
}
.btn-primary:hover { background: var(--accent-dark); }
.btn-primary--light { background: #fff; color: var(--stone-900); }
.btn-primary--light:hover { background: #f5f5f4; }

.btn-outline-light {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    font-weight: 600; font-size: 0.8125rem; padding: 0.6875rem 1.25rem; border-radius: 9999px;
    border: 1.5px solid rgba(255,255,255,0.45); color: #fff; transition: all 0.2s;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-ghost {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    font-weight: 600; font-size: 0.8125rem; padding: 0.6875rem 1.25rem; border-radius: 9999px;
    background: #f5f5f4; color: var(--stone-900); transition: all 0.2s;
}
.btn-ghost:hover { background: #e7e5e4; }

.btn-whatsapp {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    font-weight: 600; font-size: 0.8125rem; padding: 0.6875rem 1.25rem; border-radius: 9999px;
    background: #16A34A; color: #fff; transition: all 0.2s; text-decoration: none;
}
.btn-whatsapp:hover { background: #15803D; color: #fff; }
.btn-whatsapp--block { width: 100%; margin-bottom: 1rem; }
.btn-whatsapp--icon {
    width: 2.75rem; height: 2.75rem; padding: 0; border-radius: 9999px; flex-shrink: 0;
    font-size: 1.125rem;
}
.product-mobile-bar__actions {
    display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0;
}

/* Nav */
.nav-pill {
    display: inline-flex; align-items: center; gap: 0.25rem;
    padding: 0.375rem 0.75rem; border-radius: 9999px;
    font-size: 0.75rem; font-weight: 500; color: #78716c;
    white-space: nowrap; transition: all 0.15s;
}
.nav-pill:hover { color: var(--stone-900); background: #f5f5f4; }
.nav-pill--active { background: var(--stone-900); color: #fff; }
.nav-pill--hot {
    background: #FEF2F2; color: var(--deal); border: 1px solid #FECACA; font-weight: 600;
}
.nav-pill--hot:hover { background: var(--deal); color: #fff; border-color: var(--deal); }
.nav-pill--new {
    background: #ECFDF5; color: var(--success); border: 1px solid #BBF7D0; font-weight: 600;
}
.nav-pill--new:hover { background: var(--success); color: #fff; border-color: var(--success); }

.search-input {
    border: 1.5px solid #e7e5e4;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.search-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.12); }

.filter-chip {
    display: inline-flex; align-items: center; padding: 0.4375rem 0.875rem;
    border-radius: 9999px; font-size: 0.75rem; font-weight: 500;
    border: 1px solid #e7e5e4; background: #fff; color: #78716c; transition: all 0.15s;
}
.filter-chip:hover, .filter-chip.is-active { background: var(--stone-900); border-color: var(--stone-900); color: #fff; }

/* Layout */
.page-wrap {
    width: 100%;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}
@media (min-width: 768px) {
    .page-wrap { padding-left: 1.5rem; padding-right: 1.5rem; }
}

.smart-img { background: #f5f5f4; }

/* Hero */
.hero-section { padding: 0.75rem 0 0; }
@media (min-width: 768px) { .hero-section { padding: 1.25rem 0 0; } }

.hero-shell {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    background: #d6d3d1;
    box-shadow: 0 12px 40px rgba(28, 25, 23, 0.1);
    min-height: 360px;
}
@media (min-width: 768px) {
    .hero-shell { min-height: 420px; border-radius: 1.25rem; }
}
@media (min-width: 1024px) {
    .hero-shell { min-height: 500px; border-radius: 1.5rem; }
}

.hero-slide {
    position: absolute; inset: 0; opacity: 0; pointer-events: none;
    transition: opacity 0.6s ease;
}
.hero-slide.is-active { opacity: 1; pointer-events: auto; }

.hero-slide__img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-slide__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.15) 100%);
}
@media (min-width: 1024px) {
    .hero-slide__overlay {
        background: linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.08) 100%);
    }
}
.hero-slide__content {
    position: absolute; inset: 0; z-index: 2;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 1.5rem 1.25rem 3.25rem; max-width: 28rem;
}
@media (min-width: 768px) {
    .hero-slide__content { padding: 2.5rem 2rem 3.5rem; max-width: 34rem; }
}
@media (min-width: 1024px) {
    .hero-slide__content {
        justify-content: center;
        align-items: flex-start;
        padding: 3rem 3.5rem;
        max-width: 38rem;
    }
}
.hero-slide__badge {
    display: inline-block; width: fit-content;
    background: var(--deal); color: #fff;
    font-size: 0.6875rem; font-weight: 700; padding: 0.35rem 0.875rem;
    border-radius: 9999px; margin-bottom: 0.75rem;
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.35);
}
.hero-slide__title {
    font-size: 1.5rem; font-weight: 700; color: #fff; line-height: 1.2;
    letter-spacing: -0.02em;
}
@media (min-width: 768px) { .hero-slide__title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .hero-slide__title { font-size: 2.75rem; } }
.hero-slide__sub {
    font-size: 0.875rem; color: rgba(255,255,255,0.88); margin-top: 0.625rem; line-height: 1.6;
}
@media (min-width: 1024px) { .hero-slide__sub { font-size: 1rem; max-width: 32rem; } }

.hero-dots {
    position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
    display: flex; gap: 0.375rem; z-index: 10;
}
.hero-dot {
    width: 6px; height: 6px; border-radius: 9999px;
    background: rgba(255,255,255,0.35); transition: all 0.3s; border: none; padding: 0;
}
.hero-dot.is-active { width: 20px; background: #fff; }

/* Trust pills */
.trust-section { padding: 1rem 0; }
.trust-scroll {
    display: flex; gap: 0.5rem; overflow-x: auto;
    scrollbar-width: none; -ms-overflow-style: none; padding-bottom: 2px;
}
.trust-scroll::-webkit-scrollbar { display: none; }
@media (min-width: 768px) {
    .trust-scroll {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
        overflow: visible;
    }
}
.trust-pill {
    display: inline-flex; align-items: center; gap: 0.625rem; flex-shrink: 0;
    background: #fff; border: 1px solid #e7e5e4; border-radius: 0.875rem;
    padding: 0.75rem 1rem; font-size: 0.8125rem; font-weight: 600; color: #44403c;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.trust-pill__icon {
    width: 2rem; height: 2rem; border-radius: 0.625rem;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.8125rem;
}
.trust-pill__icon--ship { background: #ECFDF5; color: #16A34A; }
.trust-pill__icon--return { background: #EFF6FF; color: #2563EB; }
.trust-pill__icon--secure { background: #FFF7ED; color: var(--accent); }
.trust-pill__icon--support { background: #F0FDF4; color: #15803D; }
@media (min-width: 768px) {
    .trust-pill { justify-content: center; }
}

/* Promo banners */
.promo-row {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.625rem;
    padding: 0.75rem 0 0.25rem;
}
@media (max-width: 639px) {
    .promo-row { grid-template-columns: 1fr; gap: 0.5rem; }
}
.promo-card {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.875rem 1rem; border-radius: 0.875rem;
    text-decoration: none; color: #fff; transition: transform 0.2s, box-shadow 0.2s;
    min-height: 4.25rem;
}
.promo-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); color: #fff; }
.promo-card--deal { background: linear-gradient(135deg, #DC2626, #EA580C); }
.promo-card--new { background: linear-gradient(135deg, #059669, #16A34A); }
.promo-card--ship { background: linear-gradient(135deg, #2563EB, #7C3AED); }
.promo-card__icon {
    width: 2.25rem; height: 2.25rem; border-radius: 0.625rem;
    background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center;
    font-size: 1rem; flex-shrink: 0;
}
.promo-card__title { font-size: 0.8125rem; font-weight: 700; line-height: 1.2; }
.promo-card__sub { font-size: 0.6875rem; opacity: 0.9; margin-top: 0.125rem; }

/* Section title accent */
.section-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 1.25rem; }
.section-head__title-row { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.section-head__title {
    font-size: 1.125rem; font-weight: 700; color: var(--stone-900); letter-spacing: -0.02em;
}
@media (min-width: 768px) { .section-head__title { font-size: 1.375rem; } }
.section-head__badge {
    display: inline-flex; align-items: center; gap: 0.25rem;
    font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
    padding: 0.25rem 0.5rem; border-radius: 9999px;
}
.section-head__badge--deal { background: #FEF2F2; color: var(--deal); }
.section-head__badge--hot { background: #FFF7ED; color: var(--accent); }
.section-head__sub { font-size: 0.8125rem; color: #78716c; margin-top: 0.25rem; }
.section-head__link {
    font-size: 0.75rem; font-weight: 700; color: var(--accent); white-space: nowrap;
    display: inline-flex; align-items: center; gap: 0.25rem; margin-top: 0.25rem;
}
.section-head__link:hover { color: var(--accent-dark); }

/* Product card — TR market */
.product-card { border-color: #e7e5e4 !important; }
.product-card:hover { border-color: #fed7aa !important; }
.product-badge-discount {
    position: absolute; top: 0.5rem; left: 0.5rem; z-index: 10;
    background: var(--deal); color: #fff;
    font-size: 0.6875rem; font-weight: 800; padding: 0.25rem 0.5rem;
    border-radius: 0.375rem; line-height: 1.2;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.35);
}
.product-badge-new {
    position: absolute; top: 0.5rem; right: 0.5rem; z-index: 10;
    background: var(--success); color: #fff;
    font-size: 0.625rem; font-weight: 700; padding: 0.2rem 0.45rem; border-radius: 0.375rem;
}
.product-badge-ship {
    display: inline-block; font-size: 0.5625rem; font-weight: 700; color: var(--success);
    background: #ECFDF5; border: 1px solid #BBF7D0;
    padding: 0.125rem 0.375rem; border-radius: 0.25rem; margin-bottom: 0.375rem;
}
.product-card__price {
    font-size: 1rem; font-weight: 800; color: var(--deal); line-height: 1.2;
}
.product-card__price-old {
    font-size: 0.6875rem; color: #a8a29e; text-decoration: line-through; display: block;
}
.btn-add-cart {
    display: flex; align-items: center; justify-content: center; gap: 0.375rem;
    width: 100%; margin-top: 0.5rem; padding: 0.5rem 0.625rem;
    background: var(--accent); color: #fff; border: none; border-radius: 0.625rem;
    font-size: 0.6875rem; font-weight: 700; cursor: pointer; transition: background 0.2s;
}
.btn-add-cart:hover { background: var(--accent-dark); }
.btn-add-cart i { font-size: 0.625rem; }

/* Flash deal */
.flash-deal-card {
    display: grid;
    grid-template-columns: 1fr;
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid #FECACA;
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.08);
}
.flash-deal-card__body .flash-deal-tag {
    display: inline-flex; align-items: center; gap: 0.375rem;
    background: var(--deal); color: #fff;
    font-size: 0.6875rem; font-weight: 700; padding: 0.3rem 0.75rem;
    border-radius: 9999px; margin-bottom: 0.75rem;
}
.flash-deal-price { font-size: 1.75rem; font-weight: 800; color: var(--deal); }
@media (min-width: 640px) {
    .flash-deal-card { grid-template-columns: 220px 1fr; }
}
@media (min-width: 768px) {
    .flash-deal-card { grid-template-columns: 300px 1fr; border-radius: 1.25rem; }
}
@media (min-width: 1024px) {
    .flash-deal-card { grid-template-columns: 380px 1fr; }
}
.flash-deal-card__media {
    background: #f5f5f4;
    overflow: hidden;
    min-height: 200px;
}
@media (min-width: 640px) {
    .flash-deal-card__media { min-height: 100%; }
}
.flash-deal-card__img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
    display: block;
}
@media (min-width: 640px) {
    .flash-deal-card__img { min-height: 260px; }
}
.flash-deal-card__body {
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (min-width: 768px) {
    .flash-deal-card__body { padding: 2rem 2.5rem; }
}

/* Tier cards */
.tier-card {
    display: flex; align-items: center; gap: 0.875rem;
    background: #fff; border: 1px solid #e7e5e4; border-radius: 1rem;
    padding: 1rem 1.125rem; transition: all 0.2s;
}
.tier-card:hover { border-color: #d6d3d1; box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
.tier-card__icon {
    width: 2.5rem; height: 2.5rem; border-radius: 0.75rem;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.875rem;
}
.tier-card.ekonomik .tier-card__icon { background: #ECFDF5; color: #059669; }
.tier-card.standart .tier-card__icon { background: #FFF7ED; color: #EA580C; }
.tier-card.premium .tier-card__icon { background: #F5F3FF; color: #7C3AED; }

/* Badges */
.badge-ekonomik { background: #ECFDF5; color: #059669; }
.badge-standart { background: #FFF7ED; color: #EA580C; }
.badge-premium { background: #F5F3FF; color: #7C3AED; }

.text-accent { color: var(--accent); }
.bg-accent { background: var(--accent); }
.hover\:text-accent-dark:hover { color: var(--accent-dark); }

/* Mobile menu — base in cici-theme.css */
.mobile-menu { position: fixed; inset: 0; z-index: 200; pointer-events: none; visibility: hidden; }
.mobile-menu.is-open { pointer-events: auto; visibility: visible; }

.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }
.scrollbar-hide::-webkit-scrollbar { display: none; }

.product-card-title {
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden; min-height: 2.6em; line-height: 1.35;
}

.toast {
    position: fixed; z-index: 300; display: flex; align-items: center; gap: 0.75rem;
    background: #fff; border: 1px solid #e7e5e4;
    padding: 0.875rem 1rem; border-radius: 14px; box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    left: 1rem; right: 1rem; bottom: calc(var(--mobile-bar-h) + 0.75rem); max-width: 22rem; margin: 0 auto;
    font-size: 0.875rem; opacity: 0; transform: translateY(12px) scale(0.96);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.toast.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.toast--success { border-left: 3px solid #22C55E; }
.toast--error { border-left: 3px solid #EF4444; }
.toast--info { border-left: 3px solid #3B82F6; }
.toast__icon { width: 1.75rem; height: 1.75rem; border-radius: 9999px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.toast--success .toast__icon { background: #ECFDF5; color: #16A34A; }
.toast--error .toast__icon { background: #FEF2F2; color: #DC2626; }
.toast__text { color: #1c1917; font-weight: 500; }
@media (min-width: 768px) { .toast { left: auto; right: 1.5rem; bottom: 1.5rem; margin: 0; } }

.cart-badge--pop { animation: badgePop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes badgePop {
    0% { transform: scale(1); }
    40% { transform: scale(1.35); }
    100% { transform: scale(1); }
}

/* Modal */
.shop-modal {
    position: fixed; inset: 0; z-index: 400;
    display: flex; align-items: center; justify-content: center; padding: 1rem;
    opacity: 0; pointer-events: none; transition: opacity 0.28s ease;
}
.shop-modal.is-visible { opacity: 1; pointer-events: auto; }
.shop-modal__backdrop {
    position: absolute; inset: 0; background: rgba(0,0,0,0.45);
    backdrop-filter: blur(4px);
}
.shop-modal__panel {
    position: relative; z-index: 1; width: min(100%, 22rem);
    background: #fff; border-radius: 1.25rem; padding: 1.75rem 1.5rem;
    text-align: center; box-shadow: 0 24px 60px rgba(0,0,0,0.18);
    transform: translateY(16px) scale(0.95);
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.shop-modal.is-visible .shop-modal__panel { transform: translateY(0) scale(1); }
.shop-modal__icon {
    width: 3.5rem; height: 3.5rem; border-radius: 9999px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.25rem; margin-bottom: 1rem;
}
.shop-modal__icon--error { background: #FFF7ED; color: var(--accent); }
.shop-modal__icon--success { background: #ECFDF5; color: #16A34A; }
.shop-modal__icon--info { background: #EFF6FF; color: #2563EB; }
.shop-modal__title { font-size: 1.125rem; font-weight: 700; color: #1c1917; margin-bottom: 0.5rem; }
.shop-modal__message { font-size: 0.8125rem; color: #57534e; line-height: 1.6; margin-bottom: 1.25rem; }
.shop-modal__actions { display: flex; flex-direction: column; gap: 0.5rem; }
.shop-modal__actions .btn-primary, .shop-modal__actions .btn-ghost { width: 100%; }

.btn-primary--disabled { opacity: 0.55; cursor: not-allowed; }
.btn-primary--disabled:hover { background: var(--accent); }

/* Cart page */
.cart-loading { color: #a8a29e; font-size: 0.875rem; }
.cart-empty {
    text-align: center; padding: 4rem 1.5rem;
    background: #fff; border: 1px solid #e7e5e4; border-radius: 1.25rem;
}
.cart-empty__icon { font-size: 3rem; color: #e7e5e4; margin-bottom: 1rem; }

.cart-layout { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 1024px) { .cart-layout { grid-template-columns: 1.6fr 1fr; } }
.cart-layout__items { display: flex; flex-direction: column; gap: 0.75rem; }

.cart-item {
    display: flex; gap: 1rem; padding: 1rem;
    background: #fff; border: 1px solid #e7e5e4; border-radius: 1rem;
    transition: box-shadow 0.2s, transform 0.2s;
}
.cart-item:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.05); }
.cart-item__img { width: 5rem; height: 5rem; object-fit: cover; border-radius: 0.75rem; flex-shrink: 0; background: #f5f5f4; }
.cart-item__body { flex: 1; min-width: 0; }
.cart-item__title { display: block; font-size: 0.875rem; font-weight: 600; color: #1c1917; margin-bottom: 0.25rem; text-decoration: none; }
.cart-item__title:hover { color: var(--accent); }
.cart-item__price { font-size: 0.9375rem; font-weight: 700; color: var(--accent); margin-bottom: 0.625rem; display: block; }
.cart-item__footer {
    display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
    margin-top: 0.25rem; flex-wrap: wrap;
}
.cart-item__qty { display: inline-flex; align-items: center; gap: 0.5rem; background: #f5f5f4; border-radius: 9999px; padding: 0.125rem; }
.cart-item__qty button {
    width: 1.75rem; height: 1.75rem; border-radius: 9999px; border: none;
    background: #fff; font-weight: 700; cursor: pointer; color: #1c1917;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.cart-item__qty span { min-width: 1.25rem; text-align: center; font-size: 0.8125rem; font-weight: 600; }
.cart-item__remove {
    display: inline-flex; align-items: center; gap: 0.375rem;
    font-size: 0.75rem; font-weight: 600; color: #dc2626;
    background: #fef2f2; border: 1px solid #fecaca;
    cursor: pointer; padding: 0.4375rem 0.75rem; border-radius: 9999px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.cart-item__remove i { font-size: 0.75rem; }
.cart-item__remove:hover { background: #fee2e2; border-color: #fca5a5; color: #b91c1c; }

.cart-summary {
    background: #fff; border: 1px solid #e7e5e4; border-radius: 1.25rem;
    padding: 1.5rem; height: fit-content; position: sticky; top: 5.5rem;
}
.cart-summary__title { font-size: 1.125rem; font-weight: 700; color: #1c1917; margin-bottom: 1rem; }
.cart-summary__shipping {
    display: flex; gap: 0.75rem; align-items: flex-start;
    background: #ECFDF5; border: 1px solid #BBF7D0; border-radius: 0.875rem;
    padding: 0.875rem; margin-bottom: 1rem;
}
.cart-summary__shipping i { color: #16A34A; font-size: 1.125rem; margin-top: 0.125rem; }
.cart-summary__shipping strong { display: block; font-size: 0.8125rem; color: #166534; }
.cart-summary__shipping span { display: block; font-size: 0.6875rem; color: #15803D; margin-top: 0.125rem; }
.cart-summary__progress { margin-bottom: 1rem; }
.cart-summary__progress-head { display: flex; justify-content: space-between; font-size: 0.6875rem; color: #78716c; margin-bottom: 0.375rem; }
.cart-summary__ready {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.8125rem; font-weight: 600; color: #16A34A;
    background: #ECFDF5; border-radius: 0.75rem; padding: 0.625rem 0.875rem; margin-bottom: 1rem;
}
.cart-summary__row { display: flex; justify-content: space-between; font-size: 0.8125rem; margin-bottom: 0.5rem; color: #57534e; }
.cart-summary__row--free strong { color: #16A34A; }
.cart-summary__total {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 1.125rem; font-weight: 700; color: #1c1917;
    border-top: 1px solid #e7e5e4; padding-top: 1rem; margin: 0.75rem 0 1.25rem;
}

.animate-in {
    animation: slideUp 0.45s ease both;
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.shipping-progress { height: 4px; background: #e7e5e4; border-radius: 9999px; overflow: hidden; margin-top: 0.5rem; }
.shipping-progress-fill { height: 100%; background: #22C55E; border-radius: 9999px; transition: width 0.5s; }

.cart-badge {
    position: absolute; top: 2px; right: 2px; min-width: 15px; height: 15px;
    background: var(--accent); color: #fff; font-size: 9px; font-weight: 700;
    border-radius: 9999px; display: none; align-items: center; justify-content: center;
}
.cart-badge.is-visible { display: flex; }

/* Mobile bar */
.mobile-bar-inner {
    background: #fff; border-top: 1px solid #e7e5e4;
    padding: 0.625rem 1rem calc(0.625rem + env(safe-area-inset-bottom, 0));
    box-shadow: 0 -4px 20px rgba(0,0,0,0.04);
}
.mobile-bar-inner .btn-primary { width: 100%; padding-top: 0.75rem; padding-bottom: 0.75rem; }

/* Quick categories */
.quick-cats { padding: 0.75rem 0 0.25rem; }
.quick-cats__scroll {
    display: flex; gap: 0.625rem; overflow-x: auto;
    scrollbar-width: none; -ms-overflow-style: none; padding-bottom: 0.25rem;
}
.quick-cats__scroll::-webkit-scrollbar { display: none; }
.quick-cat {
    display: flex; flex-direction: column; align-items: center; gap: 0.375rem;
    flex-shrink: 0; min-width: 4.75rem; text-decoration: none;
}
.quick-cat__icon {
    width: 3.25rem; height: 3.25rem; border-radius: 9999px;
    background: linear-gradient(145deg, #FFF7ED, #FFEDD5);
    border: 2px solid #FED7AA;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 1rem;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.12);
}
.quick-cat:hover .quick-cat__icon {
    border-color: var(--accent); background: linear-gradient(145deg, #EA580C, #C2410C);
    color: #fff; transform: scale(1.05);
}
.quick-cat__label {
    font-size: 0.6875rem; font-weight: 600; color: #44403c;
    text-align: center; max-width: 5.5rem; line-height: 1.2;
}
@media (min-width: 768px) {
    .quick-cats__scroll { justify-content: center; flex-wrap: wrap; overflow: visible; }
    .quick-cat { min-width: 5.5rem; }
    .quick-cat__icon { width: 3.5rem; height: 3.5rem; }
    .quick-cat__label { font-size: 0.6875rem; }
}

/* Category showcase */
.cat-showcase-card {
    position: relative; border-radius: 1rem; overflow: hidden;
    aspect-ratio: 4/3; display: block;
}
.cat-showcase-card__img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s ease;
}
.cat-showcase-card:hover .cat-showcase-card__img { transform: scale(1.05); }
.cat-showcase-card__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 60%);
}
.cat-showcase-card__body {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 1rem 1.125rem; z-index: 2;
}
.cat-showcase-card__title { font-size: 0.9375rem; font-weight: 600; color: #fff; }
.cat-showcase-card__meta { font-size: 0.6875rem; color: rgba(255,255,255,0.75); margin-top: 0.125rem; }

/* Horizontal product scroll */
.product-scroll {
    display: flex; gap: 0.75rem; overflow-x: auto;
    scrollbar-width: none; -ms-overflow-style: none;
    padding-bottom: 0.5rem; margin: 0 -0.25rem;
}
.product-scroll::-webkit-scrollbar { display: none; }
.product-scroll__item { flex: 0 0 10.5rem; min-width: 10.5rem; }
@media (min-width: 640px) { .product-scroll__item { flex: 0 0 12rem; min-width: 12rem; } }
@media (min-width: 1024px) { .product-scroll__item { flex: 0 0 14rem; min-width: 14rem; } }

/* Product trust panel */
.product-trust {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0.625rem;
    padding: 1rem; background: #fafaf9; border-radius: 0.875rem;
    border: 1px solid #e7e5e4; margin-bottom: 0.25rem;
}
@media (max-width: 479px) {
    .product-trust { grid-template-columns: 1fr; }
}
.product-trust__item { display: flex; gap: 0.625rem; align-items: flex-start; }
.product-trust__icon {
    width: 2rem; height: 2rem; border-radius: 0.5rem;
    background: #fff; border: 1px solid #e7e5e4;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 0.75rem; flex-shrink: 0;
}
.product-trust__title { display: block; font-size: 0.6875rem; font-weight: 600; color: #1c1917; line-height: 1.3; }
.product-trust__desc { display: block; font-size: 0.625rem; color: #78716c; line-height: 1.3; margin-top: 0.125rem; }

/* Delivery box */
.delivery-box {
    background: #fff; border: 1px solid #e7e5e4; border-radius: 0.875rem;
    padding: 0.875rem 1rem; display: flex; flex-direction: column; gap: 0.75rem;
}
.delivery-box__row { display: flex; gap: 0.75rem; align-items: flex-start; }
.delivery-box__row i { font-size: 1.125rem; margin-top: 0.125rem; flex-shrink: 0; }
.delivery-box__row strong { display: block; font-size: 0.8125rem; color: #1c1917; }
.delivery-box__row span { display: block; font-size: 0.6875rem; color: #78716c; margin-top: 0.125rem; }

/* Product info tabs */
.product-info-tabs { border-top: 1px solid #e7e5e4; }
.product-info-tabs__item { border-bottom: 1px solid #e7e5e4; }
.product-info-tabs__item summary {
    padding: 0.875rem 0; font-size: 0.875rem; font-weight: 600;
    color: #1c1917; cursor: pointer; list-style: none;
    display: flex; align-items: center; justify-content: space-between;
}
.product-info-tabs__item summary::-webkit-details-marker { display: none; }
.product-info-tabs__item summary::after { content: '+'; font-size: 1.125rem; color: #a8a29e; }
.product-info-tabs__item[open] summary::after { content: '−'; }
.product-info-tabs__body {
    padding-bottom: 1rem; font-size: 0.8125rem; color: #57534e; line-height: 1.6;
}
.product-info-list { list-style: none; padding: 0; margin: 0; }
.product-info-list li { padding: 0.375rem 0; border-bottom: 1px solid #f5f5f4; }
.product-info-list li:last-child { border-bottom: none; }

/* Why us cards */
.why-card {
    background: #fff; border: 1px solid #e7e5e4; border-radius: 1rem;
    padding: 1.25rem; text-align: center;
}
.why-card__icon {
    width: 2.5rem; height: 2.5rem; border-radius: 0.75rem;
    background: #FFF7ED; color: var(--accent);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.875rem; margin-bottom: 0.75rem;
}
.why-card__title { font-size: 0.8125rem; font-weight: 600; color: #1c1917; margin-bottom: 0.25rem; }
.why-card__desc { font-size: 0.6875rem; color: #78716c; line-height: 1.4; }

/* CTA banner */
.cta-banner {
    background: linear-gradient(135deg, #1c1917 0%, #292524 100%);
    border-radius: 1.25rem; padding: 2.5rem 2rem;
    text-align: center;
}
@media (min-width: 768px) {
    .cta-banner { text-align: left; padding: 3rem; display: flex; align-items: center; }
    .cta-banner__content { max-width: 32rem; }
}

/* Product detail */
body.product-page.has-mobile-bar {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0));
}

.product-detail {
    padding: 0.75rem 0 1.5rem;
}
@media (min-width: 768px) {
    .product-detail { padding: 1.5rem 0 2.5rem; }
}

.product-crumb {
    display: flex; flex-wrap: wrap; align-items: center; gap: 0.25rem;
    font-size: 0.6875rem; color: #a8a29e; margin-bottom: 0.875rem;
    line-height: 1.4;
}
.product-crumb a { color: #78716c; }
.product-crumb a:hover { color: var(--accent); }
.product-crumb__sep { color: #d6d3d1; }
.product-crumb__current {
    color: #57534e; display: -webkit-box; -webkit-line-clamp: 1;
    -webkit-box-orient: vertical; overflow: hidden;
}

.product-detail__grid {
    display: grid; grid-template-columns: 1fr; gap: 1.25rem;
}
@media (min-width: 1024px) {
    .product-detail__grid { grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
}

.product-detail__media {
    width: 100%; border-radius: 1rem; overflow: hidden;
    background: #f5f5f4; aspect-ratio: 1 / 1;
}
@media (max-width: 767px) {
    .product-detail__media { aspect-ratio: 4 / 3; max-height: 320px; }
}
@media (min-width: 1024px) {
    .product-detail__media {
        position: sticky; top: 5.5rem; border-radius: 1.25rem;
    }
}
.product-detail__img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}

.product-detail__category {
    display: inline-block; font-size: 0.6875rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent);
    margin-bottom: 0.375rem;
}
.product-detail__title {
    font-size: 1.25rem; font-weight: 700; color: #1c1917;
    line-height: 1.35; letter-spacing: -0.02em; margin-bottom: 0.625rem;
}
@media (min-width: 768px) {
    .product-detail__title { font-size: 1.75rem; }
}

.product-detail__meta {
    display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem;
    margin-bottom: 0.875rem; font-size: 0.75rem; color: #78716c;
}
.product-detail__badge {
    font-size: 0.625rem; font-weight: 700; text-transform: uppercase;
    background: var(--accent); color: #fff; padding: 0.125rem 0.375rem; border-radius: 0.25rem;
}
.product-detail__discount {
    font-size: 0.625rem; font-weight: 700; color: #16A34A;
    background: #ECFDF5; padding: 0.125rem 0.375rem; border-radius: 0.25rem;
}

.product-detail__price-row {
    display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.5rem;
    margin-bottom: 0.625rem;
}
.product-detail__price {
    font-size: 1.75rem; font-weight: 800; color: #1c1917; letter-spacing: -0.02em;
}
@media (min-width: 768px) {
    .product-detail__price { font-size: 2.25rem; }
}
.product-detail__old-price { font-size: 1rem; color: #a8a29e; }

.product-detail__shipping-tag {
    display: inline-flex; align-items: center; gap: 0.375rem;
    font-size: 0.75rem; font-weight: 600; color: #15803D;
    background: #ECFDF5; border: 1px solid #BBF7D0;
    padding: 0.375rem 0.625rem; border-radius: 9999px; margin-bottom: 1rem;
}

.product-detail .product-trust {
    grid-template-columns: 1fr; gap: 0.5rem; margin-bottom: 1rem;
}
@media (min-width: 480px) {
    .product-detail .product-trust { grid-template-columns: 1fr 1fr; }
}

.product-detail__desc {
    font-size: 0.875rem; color: #57534e; line-height: 1.65; margin-bottom: 1rem;
}

.product-detail__qty {
    display: flex; align-items: center; justify-content: space-between;
    margin: 1rem 0; padding: 0.75rem 0; border-top: 1px solid #f5f5f4;
}
.product-detail__qty-label { font-size: 0.875rem; font-weight: 600; color: #44403c; }
.product-detail__qty-controls {
    display: inline-flex; align-items: center; gap: 0.75rem;
    background: #f5f5f4; border-radius: 9999px; padding: 0.25rem;
}
.product-detail__qty-controls button {
    width: 2.25rem; height: 2.25rem; border: none; border-radius: 9999px;
    background: #fff; font-size: 1rem; font-weight: 700; color: #1c1917; cursor: pointer;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.product-detail__qty-controls span {
    min-width: 1.5rem; text-align: center; font-weight: 700; font-size: 0.9375rem;
}

.product-detail__actions { gap: 0.75rem; margin-bottom: 1rem; }

.product-detail__related { padding-bottom: 1rem !important; }

/* Mobile product bar */
.product-mobile-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    display: flex; align-items: center; gap: 0.625rem;
    background: #fff; border-top: 1px solid #e7e5e4;
    padding: 0.625rem 0.875rem calc(0.625rem + env(safe-area-inset-bottom, 0));
    box-shadow: 0 -8px 30px rgba(0,0,0,0.08);
    min-width: 0;
}
.product-mobile-bar__price { flex: 1 1 auto; min-width: 0; line-height: 1.2; }
.product-mobile-bar__label {
    display: block; font-size: 0.625rem; color: #a8a29e; text-transform: uppercase;
    letter-spacing: 0.04em;
}
.product-mobile-bar__amount {
    display: block; font-size: 1.0625rem; font-weight: 800; color: #1c1917;
    white-space: nowrap;
}
.product-mobile-bar__ship {
    display: block; font-size: 0.625rem; color: #78716c; font-weight: 500;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.product-mobile-bar__btn {
    flex: 0 0 auto;
    min-width: 8.75rem;
    max-width: 48%;
    padding: 0.6875rem 1rem;
    font-size: 0.75rem;
    white-space: nowrap;
}

/* Floating WhatsApp */
.fab-whatsapp {
    position: fixed; z-index: 120;
    right: 1rem; bottom: calc(var(--mobile-bar-h) + 0.75rem);
    width: 3.25rem; height: 3.25rem; border-radius: 9999px;
    background: #16A34A; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; box-shadow: 0 8px 24px rgba(22, 163, 74, 0.45);
    transition: transform 0.2s, box-shadow 0.2s;
}
.fab-whatsapp:hover {
    transform: scale(1.06); color: #fff;
    box-shadow: 0 12px 32px rgba(22, 163, 74, 0.5);
}
@media (min-width: 768px) {
    .fab-whatsapp { bottom: 1.5rem; width: 3.5rem; height: 3.5rem; }
}
@media (max-width: 767px) {
    body.has-mobile-bar .fab-whatsapp { display: none; }
}
body:not(.has-mobile-bar) .fab-whatsapp { bottom: 1.5rem; }

/* Admin panel */
.nav-active { background: rgba(22, 56, 40, 0.08); color: #163828; font-weight: 600; }
.form-input {
    width: 100%; padding: 0.625rem 0.875rem; border: 1px solid #e7e5e4; border-radius: 0.75rem;
    font-size: 0.875rem; color: #1c1917; background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus {
    outline: none; border-color: rgba(22, 56, 40, 0.4);
    box-shadow: 0 0 0 3px rgba(22, 56, 40, 0.1);
}
.data-table td { padding: 0.875rem 1.25rem; font-size: 0.875rem; vertical-align: middle; }
.card-hover { transition: transform 0.2s, box-shadow 0.2s; }
.card-hover:hover { transform: translateY(-2px); box-shadow: 0 8px 30px -8px rgba(28, 25, 23, 0.12); }
.admin-main { max-width: 1400px; margin: 0 auto; width: 100%; }
