/**
 * UniMart Store - Fashop-inspired Fashion E-commerce Theme
 */

:root {
    --store-primary: #e65540;
    --store-primary-dark: #c94a38;
    --store-secondary: #2c2c2c;
    --store-header-bg: var(--store-secondary);
    --store-footer-bg: var(--store-secondary);
    --store-text: #1a1a1a;
    --store-text-muted: #5c5c5c;
    --store-border: #e8e8e8;
    --store-bg: #f8f9fa;
    --store-bg-alt: #ffffff;
    --store-button-text: #ffffff;
    --store-radius: 10px;
    --store-sale: #e65540;
    --store-new: #4caf50;
    --store-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --store-header-h: 70px;
    --store-container: 1200px;
}
@media (max-width: 767px) {
    :root {
        --store-header-h: 56px;
    }
}

* { box-sizing: border-box; }

body.store-theme {
    margin: 0;
    font-family: var(--store-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--store-text);
    background: var(--store-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.store-topbar {
    background: var(--store-secondary);
    color: #fff;
    font-size: 12px;
    padding: 8px 0;
}

.store-topbar .store-container { max-width: var(--store-container); margin: 0 auto; padding: 0 16px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.store-topbar a { color: #ddd; text-decoration: none; }
.store-topbar a:hover { color: #fff; }
@media (max-width: 480px) {
    .store-topbar { font-size: 11px; padding: 6px 0; }
    .store-topbar .store-container { padding: 0 12px; }
    .store-topbar span { display: none; }
    .store-topbar > .store-container > div { width: 100%; text-align: center; }
}

/* App wrap */
.store-app-wrap { min-height: 100vh; display: flex; flex-direction: column; }

/* Main header: Logo | Categories | Search | Cart | Account (colored bar) */
.store-header {
    background: var(--store-header-bg);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.store-header-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 60px;
    padding: 0 16px;
}
.store-logo { font-size: 24px; font-weight: 700; color: #fff; text-decoration: none; letter-spacing: -0.5px; display: inline-flex; align-items: center; flex-shrink: 0; }
.store-logo:hover { color: rgba(255,255,255,0.9); }
.store-logo-fallback { color: inherit; }
.store-logo-img { max-height: 48px; width: auto; max-width: 180px; height: 48px; object-fit: contain; display: block; vertical-align: middle; }
@media (max-width: 767px) { .store-logo { font-size: 20px; } .store-logo-img { max-height: 40px; max-width: 140px; height: 40px; } }

/* Categories dropdown button */
.store-nav-categories-wrap { position: relative; flex-shrink: 0; }
.store-nav-categories-btn {
    display: flex; align-items: center; gap: 6px; padding: 10px 16px;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: 10px;
    font-size: 14px; font-weight: 600; color: #fff; cursor: pointer; font-family: inherit;
    transition: border-color 0.2s, background 0.2s;
}
.store-nav-categories-btn:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.18); }
.store-nav-chevron { transition: transform 0.2s; }
.store-nav-categories-wrap:hover .store-nav-chevron,
.store-mega-menu.open ~ * .store-nav-chevron { transform: rotate(180deg); }
.store-mega-menu.open + .store-nav-chevron { transform: rotate(180deg); }
.store-nav-categories-wrap:has(.store-mega-menu.open) .store-nav-chevron { transform: rotate(180deg); }

/* Mega menu */
.store-mega-menu {
    position: absolute; top: 100%; left: 0; margin-top: 6px;
    min-width: 320px; max-width: 90vw; background: #fff;
    border: 1px solid var(--store-border); border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    z-index: 300;
}
.store-nav-categories-wrap:hover .store-mega-menu,
.store-mega-menu.open {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.store-mega-menu-inner {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0; padding: 16px; max-height: 70vh; overflow-y: auto;
}
.store-mega-menu-col { padding: 8px 0; }
.store-mega-menu-title {
    display: block; padding: 8px 12px; font-weight: 600; font-size: 14px; color: var(--store-text);
    text-decoration: none; border-radius: 8px; transition: background 0.2s, color 0.2s;
}
.store-mega-menu-title:hover { background: var(--store-bg-alt); color: var(--store-primary); }
.store-mega-menu-list { list-style: none; margin: 0; padding: 4px 0 0 12px; }
.store-mega-menu-list li { margin: 0; }
.store-mega-menu-list a {
    display: block; padding: 6px 8px; font-size: 13px; color: var(--store-text-muted);
    text-decoration: none; border-radius: 6px; transition: background 0.2s, color 0.2s;
}
.store-mega-menu-list a:hover { background: var(--store-bg-alt); color: var(--store-primary); }

@media (max-width: 1023px) {
    .store-nav-categories-wrap { display: none; }
}

/* Search wrap + suggest (in header) */
.store-search-wrap { flex: 1; max-width: 440px; min-width: 0; position: relative; }
.store-search-form { display: flex; border: 1px solid rgba(255,255,255,0.25); border-radius: 10px; overflow: hidden; background: rgba(255,255,255,0.1); }
.store-search-form input { flex: 1; min-width: 0; padding: 10px 16px; border: none; font-size: 14px; font-family: inherit; background: transparent; color: #fff; }
.store-search-form input:focus { outline: none; }
.store-search-form input::placeholder { color: rgba(255,255,255,0.6); }
.store-search-btn { padding: 10px 18px; background: var(--store-primary); color: var(--store-button-text); border: none; font-weight: 600; font-size: 14px; cursor: pointer; font-family: inherit; }
.store-search-btn:hover { background: var(--store-primary-dark); }
.store-search-suggest {
    position: absolute; top: 100%; left: 0; right: 0; margin-top: 4px;
    background: #fff; border: 1px solid var(--store-border); border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12); max-height: 360px; overflow-y: auto;
    padding: 8px; display: none; z-index: 250;
}
.store-search-suggest.open { display: block; }
.store-search-suggest-item {
    display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 8px;
    text-decoration: none; color: var(--store-text); font-size: 14px; transition: background 0.2s;
}
.store-search-suggest-item:hover { background: var(--store-bg-alt); }
.store-search-suggest-item .suggest-name { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.store-search-suggest-item .suggest-img { width: 40px; height: 40px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.store-search-suggest-item .suggest-price { font-weight: 700; color: var(--store-primary); white-space: nowrap; }
.store-search-suggest-item .suggest-price .suggest-list-price { font-weight: 400; text-decoration: line-through; color: var(--store-text-muted); margin-right: 6px; }
.store-mrp-prefix { font-weight: 600; margin-right: 2px; }
@media (max-width: 767px) {
    .store-search-wrap { order: 3; width: 100%; max-width: none; }
}

/* Header right */
.store-header-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.store-header-right a { color: rgba(255,255,255,0.95); text-decoration: none; display: flex; align-items: center; gap: 6px; font-size: 14px; }
.store-header-right a:hover { color: #fff; }
.store-cart-wrap { position: relative; color: rgba(255,255,255,0.95); }
.store-cart-wrap:hover { color: #fff; }
.store-cart-wrap svg { stroke: currentColor; }
.store-cart-count {
    position: absolute; top: -6px; right: -6px; background: var(--store-primary); color: #fff; font-size: 11px; font-weight: 700;
    min-width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.store-cart-label { }
@media (max-width: 767px) {
    .store-header-right .store-cart-label { display: none; }
    .store-header-right .store-header-link { display: none; }
    .store-btn-sm { padding: 8px 14px !important; font-size: 13px !important; }
}
.store-account { position: relative; }
.store-account-btn {
    background: none; border: none; font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.95);
    cursor: pointer; font-family: inherit; padding: 8px 0;
}
.store-account-btn:hover { color: #fff; }
.store-account-menu {
    position: absolute; top: 100%; right: 0; margin-top: 8px; min-width: 180px; background: #fff;
    border: 1px solid var(--store-border); border-radius: 10px; box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    padding: 8px; opacity: 0; visibility: hidden; transition: opacity 0.2s, visibility 0.2s; z-index: 150;
}
.store-account-menu.open { opacity: 1; visibility: visible; }
.store-account-menu a, .store-account-menu button {
    display: block; width: 100%; text-align: left; padding: 10px 14px; color: var(--store-text); text-decoration: none;
    border: none; background: none; font-size: 14px; font-family: inherit; cursor: pointer; border-radius: 6px;
}
.store-account-menu a:hover, .store-account-menu button:hover { background: var(--store-bg-alt); color: var(--store-primary); }

/* Mobile menu button */
.store-mobile-menu-btn {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 10px; background: none; border: none; cursor: pointer; border-radius: 8px;
}
.store-mobile-menu-btn span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 1px; transition: transform 0.2s, opacity 0.2s; }
.store-mobile-menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.store-mobile-menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.store-mobile-menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 1023px) {
    .store-mobile-menu-btn { display: flex; }
}

/* Drawer overlay */
.store-drawer-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 400;
    opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}
.store-drawer-overlay.open { opacity: 1; visibility: visible; }

/* Slide-in drawer */
.store-drawer {
    position: fixed; top: 0; left: 0; bottom: 0; width: 300px; max-width: 85vw;
    background: #fff; box-shadow: 4px 0 24px rgba(0,0,0,0.15); z-index: 401;
    transform: translateX(-100%); transition: transform 0.3s ease;
    display: flex; flex-direction: column; overflow: hidden;
}
.store-drawer.open { transform: translateX(0); }
.store-drawer-header {
    display: flex; justify-content: space-between; align-items: center; padding: 16px 20px;
    border-bottom: 1px solid var(--store-border); font-weight: 700; font-size: 18px;
}
.store-drawer-close {
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    background: none; border: none; font-size: 28px; cursor: pointer; color: var(--store-text-muted); line-height: 1;
}
.store-drawer-close:hover { color: var(--store-primary); }
.store-drawer-search { padding: 16px; border-bottom: 1px solid var(--store-border); }
.store-drawer-search .store-search-form { border-radius: 8px; }
.store-drawer-nav { padding: 16px; overflow-y: auto; flex: 1; }
.store-drawer-nav > a {
    display: block; padding: 14px 16px; font-weight: 500; color: var(--store-text); text-decoration: none;
    border-radius: 10px; margin-bottom: 4px; transition: background 0.2s;
}
.store-drawer-nav > a:hover { background: var(--store-bg-alt); color: var(--store-primary); }
.store-drawer-accordion-btn {
    width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 14px 16px;
    background: none; border: none; font-size: 15px; font-weight: 600; color: var(--store-text); cursor: pointer;
    font-family: inherit; text-align: left; border-radius: 10px; margin-bottom: 4px;
}
.store-drawer-accordion-btn:hover { background: var(--store-bg-alt); }
.store-drawer-accordion-btn::after { content: '›'; font-size: 20px; transition: transform 0.2s; }
.store-drawer-accordion-btn[aria-expanded="true"]::after { transform: rotate(90deg); }
.store-drawer-accordion-panel { max-height: 0; overflow: hidden; transition: max-height 0.3s; }
.store-drawer-accordion-panel.open { max-height: 500px; }
.store-drawer-link { display: block; padding: 12px 16px 12px 24px; color: var(--store-text); text-decoration: none; font-size: 14px; border-radius: 8px; }
.store-drawer-link:hover { background: var(--store-bg-alt); color: var(--store-primary); }
.store-drawer-link-sub { padding-left: 32px; font-size: 13px; color: var(--store-text-muted); }

/* Topbar */
.store-topbar .store-topbar-inner { max-width: var(--store-container); margin: 0 auto; padding: 0 16px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.store-topbar-links { display: flex; align-items: center; gap: 8px; }
.store-topbar-links a { margin: 0; }
.store-topbar-links a + a::before { content: '|'; margin-right: 8px; color: #888; }

.store-container { max-width: var(--store-container); margin: 0 auto; padding: 0 16px; width: 100%; box-sizing: border-box; }
@media (max-width: 480px) {
    .store-container { padding: 0 12px; }
}
.store-home-content { padding-top: 24px; padding-bottom: 48px; }
@media (max-width: 767px) {
    .store-home-content { padding-top: 16px; padding-bottom: 32px; }
}

.store-hero { position: relative; background: var(--store-bg-alt); margin-bottom: 32px; }
.store-hero-inner { max-width: var(--store-container); margin: 0 auto; padding: 0 16px; position: relative; }
@media (max-width: 767px) { .store-hero-inner { padding: 0 12px; } .store-hero { margin-bottom: 20px; } }
.store-hero-slider { position: relative; overflow: hidden; border-radius: 0 0 8px 8px; }
.store-hero-slides { display: flex; transition: transform 0.5s ease; }
.store-hero-slide { position: relative; min-width: 100%; flex-shrink: 0; display: block; overflow: hidden; }
.store-hero-slide img { width: 100%; height: 380px; object-fit: cover; display: block; }
@media (max-width: 767px) {
    .store-hero-slide img { height: 220px; min-height: 180px; }
}
.store-hero-caption {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.4) 0%, transparent 60%);
    display: flex; align-items: center; padding: 48px;
}
@media (max-width: 767px) {
    .store-hero-caption { padding: 24px 20px; }
    .store-hero-caption h2 { font-size: 20px !important; margin-bottom: 8px !important; }
    .store-hero-caption p { font-size: 14px !important; }
}
.store-hero-caption h2 { margin: 0 0 12px; font-size: 32px; font-weight: 700; color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }
.store-hero-caption p { margin: 0 0 16px; font-size: 18px; color: rgba(255,255,255,0.95); text-shadow: 0 1px 2px rgba(0,0,0,0.4); }
.store-hero-cta {
    display: inline-block; padding: 12px 24px; background: var(--store-primary); color: var(--store-button-text);
    font-weight: 600; font-size: 16px; border-radius: 10px; text-decoration: none; box-shadow: 0 4px 14px rgba(230, 85, 64, 0.4);
    transition: background 0.2s, transform 0.2s;
}
.store-hero-cta:hover { background: var(--store-primary-dark); color: var(--store-button-text); transform: translateY(-2px); }
.store-hero-slider-btn {
    position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px;
    border: none; background: rgba(0,0,0,0.4); color: #fff; border-radius: 50%;
    cursor: pointer; font-size: 24px; line-height: 1; display: flex; align-items: center; justify-content: center;
    z-index: 2; transition: background 0.2s;
}
@media (max-width: 480px) {
    .store-hero-slider-btn { width: 36px; height: 36px; font-size: 18px; }
    .store-hero-slider-btn.prev { left: 8px; }
    .store-hero-slider-btn.next { right: 8px; }
}
.store-hero-slider-btn:hover { background: rgba(0,0,0,0.6); color: #fff; }
.store-hero-slider-btn.prev { left: 16px; }
.store-hero-slider-btn.next { right: 16px; }
.store-hero-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 2; }
@media (max-width: 480px) { .store-hero-dots { bottom: 12px; } .store-hero-dot { width: 10px; height: 10px; } }
.store-hero-dot {
    width: 12px; height: 12px; border-radius: 50%; border: 2px solid #fff; background: transparent;
    cursor: pointer; padding: 0; transition: background 0.2s;
}
.store-hero-dot.active { background: #fff; }
.store-hero-dot:hover { background: rgba(255,255,255,0.5); }

.store-section { margin-bottom: 48px; }
@media (max-width: 767px) { .store-section { margin-bottom: 32px; } }
.store-section-title {
    font-size: 24px; font-weight: 700; color: var(--store-text); margin: 0 0 24px;
    padding-bottom: 12px; border-bottom: 2px solid var(--store-primary); display: inline-block;
    letter-spacing: -0.02em;
}
@media (max-width: 767px) {
    .store-section-title { font-size: 18px; margin-bottom: 16px; padding-bottom: 8px; }
}

.store-category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 20px; }
@media (max-width: 600px) { .store-category-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 380px) { .store-category-grid { gap: 10px; } }
.store-category-card {
    background: #fff; border: 1px solid var(--store-border); border-radius: 12px; overflow: hidden;
    text-decoration: none; color: var(--store-text); display: flex; flex-direction: column;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.store-category-card:hover {
    border-color: var(--store-primary); box-shadow: 0 8px 24px rgba(230, 85, 64, 0.15);
    transform: scale(1.03);
}
.store-category-card-image {
    display: block; width: 100%; padding-top: 100%; position: relative; background: var(--store-bg-alt); overflow: hidden;
}
.store-category-card-image img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: contain; display: block;
}
.store-category-card-image img.no-image { display: none; }
.store-category-card-image.no-image .store-category-card-placeholder,
.store-category-card-placeholder {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--store-bg-alt); display: block;
}
.store-category-card h3 {
    margin: 0; padding: 14px 12px; font-size: 14px; font-weight: 600; text-align: center; flex-shrink: 0;
}

.store-product-grid { display: grid; gap: 20px; grid-template-columns: repeat(2, 1fr); }
@media (max-width: 380px) { .store-product-grid { gap: 12px; } }
@media (min-width: 768px) { .store-product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .store-product-grid { grid-template-columns: repeat(4, 1fr); } }

.store-product-card {
    background: var(--store-bg-alt); border: 1px solid var(--store-border); border-radius: 12px; overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.store-product-card:hover {
    border-color: var(--store-primary); box-shadow: 0 8px 28px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}
.store-product-card a.card-link { text-decoration: none; color: inherit; display: block; }
.store-product-card .store-product-image { position: relative; padding-top: 100%; background: var(--store-bg-alt); overflow: hidden; }
.store-product-card .store-product-image img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease;
}
.store-product-card:hover .store-product-image img { transform: scale(1.06); }
.store-product-card .store-product-badges { position: absolute; top: 12px; left: 12px; z-index: 2; display: flex; flex-direction: column; gap: 6px; }
.store-product-card .store-badge { padding: 4px 10px; font-size: 11px; font-weight: 700; text-transform: uppercase; border-radius: 6px; letter-spacing: 0.02em; }
.store-product-card .store-badge-sale { background: var(--store-sale); color: #fff; }
.store-product-card .store-badge-new { background: var(--store-new); color: #fff; }
.store-product-card .store-badge-hot { background: linear-gradient(135deg, #f59e0b, #d97706); color: #fff; }
.store-product-card .store-product-body { padding: 18px; }
@media (max-width: 480px) {
    .store-product-card .store-product-body { padding: 12px; }
    .store-product-card > .store-product-actions { padding: 0 12px 12px; }
}
.store-product-card .store-product-title {
    font-size: 15px; font-weight: 600; margin: 0 0 8px; line-height: 1.4;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.8em;
}
@media (max-width: 480px) {
    .store-product-card .store-product-title { font-size: 14px; min-height: 2.6em; }
}
.store-product-card .store-product-price { margin-bottom: 12px; }
.store-product-card .store-price-current { font-size: 18px; font-weight: 700; color: var(--store-primary); }
.store-product-card .store-price-old { font-size: 14px; color: var(--store-text-muted); text-decoration: line-through; margin-right: 8px; }
@media (max-width: 480px) {
    .store-product-card .store-price-current { font-size: 16px; }
    .store-product-card .store-price-old { font-size: 12px; }
}
.store-product-card > .store-product-actions { padding: 0 18px 18px; display: flex; gap: 8px; flex-wrap: wrap; align-items: stretch; }
.store-product-card .store-product-actions { display: flex; gap: 8px; flex-wrap: wrap; align-items: stretch; }
.store-product-card .store-product-actions .store-btn,
.store-product-card .store-product-actions form { min-width: 0; }
.store-product-card .store-btn {
    flex: 1; min-width: 0; padding: 10px 14px; font-size: 13px; font-weight: 600; border: none; border-radius: 4px; cursor: pointer;
    font-family: inherit; text-align: center; text-decoration: none; display: inline-block; transition: background 0.2s, color 0.2s;
}
/* View button: outline style, smaller on mobile so both buttons fit with full text */
.store-product-card .store-btn-secondary {
    background: var(--store-bg-alt); color: var(--store-text); border: 1px solid var(--store-border);
}
.store-product-card .store-btn-secondary:hover { background: var(--store-border); }
@media (max-width: 480px) {
    .store-product-card .store-product-actions { gap: 6px; }
    .store-product-card .store-product-actions .store-btn-secondary {
        flex: 0 0 auto; padding: 8px 10px; font-size: 12px; font-weight: 600;
        background: transparent; color: var(--store-primary); border: 1px solid var(--store-primary);
    }
    .store-product-card .store-product-actions .store-btn-secondary:hover {
        background: rgba(230, 85, 64, 0.08); color: var(--store-primary-dark); border-color: var(--store-primary-dark);
    }
    .store-product-card .store-product-actions form { flex: 1; min-width: 0; }
    .store-product-card .store-product-actions .store-btn-primary {
        padding: 8px 10px; font-size: 12px; width: 100%;
    }
}
.store-product-card .store-btn-primary { background: var(--store-primary); color: var(--store-button-text); }
.store-product-card .store-btn-primary:hover:not(:disabled) { background: var(--store-primary-dark); color: var(--store-button-text); }
.store-product-card .store-btn-primary:disabled { background: #ccc; color: #666; cursor: not-allowed; }

.store-btn { padding: 12px 24px; font-size: 15px; font-weight: 600; border-radius: var(--store-radius); cursor: pointer; font-family: inherit; text-decoration: none; display: inline-block; border: none; transition: background 0.2s, color 0.2s; }
.store-btn-primary { background: var(--store-primary); color: var(--store-button-text); }
.store-btn-primary:hover { background: var(--store-primary-dark); color: var(--store-button-text); }
.store-btn-outline { background: transparent; color: var(--store-primary); border: 2px solid var(--store-primary); }
.store-btn-outline:hover { background: var(--store-primary); color: var(--store-button-text); }

.store-main { flex: 1; }

.store-footer { background: var(--store-footer-bg); color: #ddd; margin-top: 56px; padding: 48px 0 0; }
.store-footer .store-container { max-width: var(--store-container); margin: 0 auto; padding: 0 16px; }
.store-footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding-bottom: 32px; }
@media (max-width: 1024px) { .store-footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .store-footer-grid { grid-template-columns: 1fr; gap: 24px; } }
.store-footer-col h4 { color: #fff; font-size: 16px; font-weight: 700; margin: 0 0 16px; }
.store-footer-col p { margin: 0 0 12px; font-size: 13px; color: #aaa; line-height: 1.5; }
.store-footer-col ul { list-style: none; margin: 0; padding: 0; }
.store-footer-col ul li { margin-bottom: 10px; }
.store-footer-col a { color: #aaa; text-decoration: none; font-size: 14px; }
.store-footer-col a:hover { color: #fff; }
.store-footer-newsletter p { margin: 0 0 12px; }
.store-newsletter-form { display: flex; gap: 0; border-radius: 8px; overflow: hidden; }
.store-newsletter-form input { flex: 1; padding: 10px 14px; border: none; font-size: 14px; font-family: inherit; }
.store-newsletter-form button { padding: 10px 18px; background: var(--store-primary); color: var(--store-button-text); border: none; font-weight: 600; cursor: pointer; font-family: inherit; }
.store-newsletter-form button:hover { background: var(--store-primary-dark); }
/* Footer collapsible (mobile): details/summary */
.store-footer-details { margin: 0; }
.store-footer-summary {
    list-style: none; cursor: pointer; font-size: 16px; font-weight: 700; color: #fff;
    margin: 0 0 16px; padding: 12px 0; display: flex; align-items: center; gap: 8px;
    user-select: none;
}
.store-footer-summary::-webkit-details-marker { display: none; }
.store-footer-summary::marker { display: none; }
.store-footer-summary::after { content: '+'; margin-left: auto; font-size: 18px; color: #aaa; transition: transform 0.2s; }
.store-footer-details[open] .store-footer-summary::after { content: '−'; }
.store-footer-icon { font-size: 1em; opacity: 0.9; }
.store-footer-collapse .store-footer-details ul { margin: 0; padding: 0; list-style: none; }
.store-footer-collapse .store-footer-details ul li { margin-bottom: 10px; }
.store-footer-collapse .store-footer-details .store-newsletter-form { margin-top: 12px; }
@media (min-width: 1025px) {
    .store-footer-summary { cursor: default; padding: 0 0 16px; }
    .store-footer-summary::after { display: none; }
}
.store-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.store-footer-bottom p { margin: 0; font-size: 13px; color: #888; }
.store-footer-bottom span { font-size: 12px; color: #888; }

.store-alert { max-width: var(--store-container); margin: 16px auto; padding: 14px 20px; border-radius: 4px; margin-inline: 16px; }
.store-alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.store-alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

.store-page-title { font-size: 28px; font-weight: 700; margin: 0 0 24px; color: var(--store-text); }

.store-layout-with-sidebar { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
@media (max-width: 900px) { .store-layout-with-sidebar { grid-template-columns: 1fr; } }
.store-sidebar {
    background: #fff; border: 1px solid var(--store-border); border-radius: 8px; padding: 20px;
    position: sticky; top: calc(var(--store-header-h) + 24px);
}
.store-sidebar h3 { font-size: 16px; font-weight: 700; margin: 0 0 16px; padding-bottom: 8px; border-bottom: 1px solid var(--store-border); }
.store-sidebar .form-group { margin-bottom: 16px; }
.store-sidebar label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--store-text); }
.store-sidebar input, .store-sidebar select { width: 100%; padding: 8px 12px; border: 1px solid var(--store-border); border-radius: 4px; font-size: 14px; font-family: inherit; }
.store-sidebar input:focus, .store-sidebar select:focus { outline: none; border-color: var(--store-primary); }
.store-toolbar { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; margin-bottom: 24px; }
.store-toolbar .store-sort select { padding: 8px 12px; border: 1px solid var(--store-border); border-radius: 4px; font-size: 14px; font-family: inherit; }

.store-pagination { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.store-pagination a, .store-pagination span { padding: 8px 14px; border: 1px solid var(--store-border); border-radius: 4px; color: var(--store-text); text-decoration: none; font-size: 14px; }
.store-pagination a:hover { background: var(--store-primary); color: var(--store-button-text); border-color: var(--store-primary); }
.store-pagination .active span { background: var(--store-primary); color: var(--store-button-text); border-color: var(--store-primary); }
.store-pagination .pagination { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.store-pagination .page-item .page-link { padding: 8px 14px; border: 1px solid var(--store-border); border-radius: 4px; color: var(--store-text); text-decoration: none; }
.store-pagination .page-item .page-link:hover { background: var(--store-primary); color: var(--store-button-text); border-color: var(--store-primary); }
.store-pagination .page-item.active .page-link { background: var(--store-primary); color: var(--store-button-text); border-color: var(--store-primary); }
.store-pagination .page-item.disabled .page-link { opacity: 0.6; }

.store-product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .store-product-detail { grid-template-columns: 1fr; } }
.store-product-gallery img { width: 100%; height: auto; border-radius: 8px; border: 1px solid var(--store-border); }
.store-product-info h1 { font-size: 28px; font-weight: 700; margin: 0 0 16px; line-height: 1.3; }
.store-product-info .store-price-block { margin-bottom: 24px; }
.store-product-info .store-price-block .store-price-current { font-size: 28px; font-weight: 700; color: var(--store-primary); }
.store-product-info .store-price-block .store-price-old {
    font-size: 18px;
    color: var(--store-text-muted);
    text-decoration: line-through;
    text-decoration-thickness: 1px;
    margin-right: 12px;
}
.store-product-meta { margin-bottom: 24px; font-size: 14px; color: var(--store-text-muted); }
.store-product-meta p { margin: 0 0 8px; }
.store-product-actions-lg .store-btn { padding: 14px 28px; font-size: 16px; margin-right: 12px; margin-bottom: 12px; }

/* Auth pages (Login / Register) */
.store-auth-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 16px;
    background: linear-gradient(180deg, var(--store-bg-alt) 0%, var(--store-bg) 100%);
}
.store-auth-box {
    width: 100%;
    max-width: 440px;
    background: var(--store-bg);
    border: 1px solid var(--store-border);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.store-auth-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--store-text);
    text-align: center;
    margin: 0 0 8px;
}
.store-auth-subtitle {
    font-size: 14px;
    color: var(--store-text-muted);
    text-align: center;
    margin: 0 0 32px;
}
.store-form-group {
    margin-bottom: 20px;
}
.store-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--store-text);
    margin-bottom: 8px;
}
.store-form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--store-border);
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--store-font);
    color: var(--store-text);
    background: var(--store-bg);
    transition: border-color 0.2s;
}
.store-form-input:focus {
    outline: none;
    border-color: var(--store-primary);
    box-shadow: 0 0 0 3px rgba(230, 85, 64, 0.12);
}
.store-form-input::placeholder {
    color: #999;
}
.store-auth-btn {
    width: 100%;
    padding: 14px 24px;
    margin-top: 8px;
    margin-bottom: 24px;
    background: var(--store-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--store-font);
    cursor: pointer;
    transition: background 0.2s;
}
.store-auth-btn:hover {
    background: var(--store-primary-dark);
}
.store-auth-footer {
    text-align: center;
    font-size: 14px;
    color: var(--store-text-muted);
}
.store-auth-footer a {
    color: var(--store-primary);
    font-weight: 600;
    text-decoration: none;
}
.store-auth-footer a:hover {
    text-decoration: underline;
}
.store-form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}
.store-form-row label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--store-text);
    cursor: pointer;
    margin: 0;
}
.store-form-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--store-primary);
}
.store-auth-error {
    font-size: 13px;
    color: #c00;
    margin-top: 4px;
}
.store-auth-divider {
    height: 1px;
    background: var(--store-border);
    margin: 24px 0;
}

/* Cart page */
.store-cart-page { padding: 32px 16px; }
.store-cart-page .store-page-title { margin-bottom: 24px; }
.store-cart-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start;
}
@media (max-width: 900px) {
    .store-cart-layout { grid-template-columns: 1fr; }
}
.store-cart-list { display: flex; flex-direction: column; gap: 16px; }
.store-cart-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--store-bg);
    border: 1px solid var(--store-border);
    border-radius: 8px;
}
.store-cart-item-image {
    width: 120px;
    min-width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--store-bg-alt);
}
.store-cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.store-cart-item-body { flex: 1; min-width: 0; }
.store-cart-item-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px;
}
.store-cart-item-title a { color: var(--store-text); text-decoration: none; }
.store-cart-item-title a:hover { color: var(--store-primary); }
.store-cart-item-meta { font-size: 13px; color: var(--store-text-muted); margin-bottom: 8px; }
.store-cart-item-price { font-size: 18px; font-weight: 700; color: var(--store-primary); margin-bottom: 12px; }
.store-cart-item-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.store-cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}
.store-cart-item-qty input {
    width: 60px;
    padding: 8px 10px;
    border: 1px solid var(--store-border);
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    text-align: center;
}
.store-cart-item-subtotal { font-weight: 600; color: var(--store-text); }
.store-cart-item-remove button {
    background: none;
    border: none;
    color: #c00;
    font-size: 14px;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
}
.store-cart-item-remove button:hover { text-decoration: underline; }
.store-cart-summary {
    background: var(--store-bg);
    border: 1px solid var(--store-border);
    border-radius: 8px;
    padding: 24px;
    position: sticky;
    top: calc(var(--store-header-h) + 24px);
}
.store-cart-summary h2 { font-size: 18px; font-weight: 700; margin: 0 0 20px; }
.store-cart-summary-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 14px; }
.store-cart-summary-row.total { border-top: 1px solid var(--store-border); padding-top: 16px; margin-top: 16px; font-size: 18px; font-weight: 700; }
.store-cart-summary .store-btn { width: 100%; padding: 14px; margin-bottom: 12px; text-align: center; display: block; box-sizing: border-box; }
.store-cart-summary .store-btn-secondary { display: block; text-align: center; }
.store-cart-empty {
    max-width: 480px;
    margin: 0 auto;
    padding: 48px 24px;
    text-align: center;
    background: var(--store-bg);
    border: 1px solid var(--store-border);
    border-radius: 8px;
}
.store-cart-empty-icon { font-size: 48px; color: var(--store-border); margin-bottom: 16px; }
.store-cart-empty h2 { font-size: 22px; font-weight: 700; margin: 0 0 8px; }
.store-cart-empty p { color: var(--store-text-muted); margin: 0 0 24px; }
.store-cart-empty .store-btn { padding: 12px 24px; }

.store-hidden { display: none !important; }

/* Account / Addresses page */
.store-account-page { padding: 32px 16px; }
.store-account-page .store-page-title { margin-bottom: 24px; }
.store-account-toolbar { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; margin-bottom: 24px; }
.store-card {
    background: var(--store-bg);
    border: 1px solid var(--store-border);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 20px;
}
.store-card h2 { font-size: 18px; font-weight: 700; margin: 0 0 20px; }
.store-address-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .store-address-grid { grid-template-columns: 1fr; } }
.store-address-card {
    background: var(--store-bg);
    border: 1px solid var(--store-border);
    border-radius: 8px;
    padding: 20px;
}
.store-address-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.store-address-card-head h3 { font-size: 16px; font-weight: 600; margin: 0; }
.store-badge-default { font-size: 11px; padding: 4px 8px; border-radius: 4px; background: rgba(230, 85, 64, 0.15); color: var(--store-primary); font-weight: 600; }
.store-address-card p { margin: 0 0 6px; font-size: 14px; color: var(--store-text-muted); }
.store-address-card-actions { margin-top: 16px; display: flex; gap: 12px; }
.store-address-card-actions a, .store-address-card-actions button { font-size: 14px; cursor: pointer; font-family: inherit; background: none; border: none; padding: 0; }
.store-address-card-actions a { color: var(--store-primary); text-decoration: none; }
.store-address-card-actions a:hover { text-decoration: underline; }
.store-address-card-actions .store-link-danger { color: #c00; }
.store-address-card-actions .store-link-danger:hover { text-decoration: underline; }
.store-form-actions { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }

/* Orders list & detail */
.store-orders-list { display: flex; flex-direction: column; gap: 16px; }
.store-order-card {
    background: var(--store-bg);
    border: 1px solid var(--store-border);
    border-radius: 8px;
    padding: 24px;
}
.store-order-card-head { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 16px; margin-bottom: 20px; }
.store-order-card-meta { font-size: 14px; color: var(--store-text-muted); margin-top: 4px; }
.store-status-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}
.store-status-badge.delivered { background: #d4edda; color: #155724; }
.store-status-badge.cancelled { background: #f8d7da; color: #721c24; }
.store-status-badge.pending { background: #fff3cd; color: #856404; }
.store-order-total { font-size: 18px; font-weight: 700; color: var(--store-primary); margin-top: 8px; }
.store-order-items-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-bottom: 20px; }
.store-order-item-preview { display: flex; gap: 12px; align-items: center; }
.store-order-item-preview img { width: 56px; height: 56px; object-fit: cover; border-radius: 6px; background: var(--store-bg-alt); }
.store-order-item-preview div { flex: 1; min-width: 0; }
.store-order-item-preview .name { font-size: 14px; font-weight: 600; margin: 0 0 2px; }
.store-order-item-preview .qty { font-size: 12px; color: var(--store-text-muted); margin: 0; }
.store-order-item-preview .price { font-size: 14px; font-weight: 600; color: var(--store-primary); margin: 0; }
.store-order-card-footer { border-top: 1px solid var(--store-border); padding-top: 16px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.store-order-card-footer .store-btn { padding: 10px 20px; }

.store-order-detail-back { margin-bottom: 24px; }
.store-order-detail-back a { color: var(--store-primary); font-weight: 500; text-decoration: none; }
.store-order-detail-back a:hover { text-decoration: underline; }
.store-order-detail-head { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 16px; margin-bottom: 24px; }
.store-order-detail-section { margin-bottom: 28px; }
.store-order-detail-section h2 { font-size: 18px; font-weight: 700; margin: 0 0 16px; }
.store-order-detail-items .store-order-item-preview { margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--store-border); }
.store-order-detail-items .store-order-item-preview:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.store-order-detail-items .store-order-item-preview img { width: 72px; height: 72px; }
.store-info-block {
    background: var(--store-bg-alt);
    border: 1px solid var(--store-border);
    border-radius: 8px;
    padding: 20px;
}
.store-info-block p { margin: 0 0 8px; font-size: 14px; color: var(--store-text); }
.store-info-block p:last-child { margin-bottom: 0; }
.store-order-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 768px) { .store-order-detail-grid { grid-template-columns: 1fr; } }
.store-order-summary-row { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 14px; }
.store-order-summary-row.total-row { border-top: 1px solid var(--store-border); padding-top: 12px; margin-top: 12px; font-size: 18px; font-weight: 700; }

/* Checkout page */
.store-checkout-page { padding: 32px 16px; }
.store-checkout-page .store-page-title { margin-bottom: 24px; }
.store-checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
@media (max-width: 900px) { .store-checkout-layout { grid-template-columns: 1fr; } }
.store-checkout-main { display: flex; flex-direction: column; gap: 24px; }
.store-address-radio {
    display: block;
    padding: 16px 20px;
    border: 1px solid var(--store-border);
    border-radius: 8px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}
.store-address-radio:hover { background: var(--store-bg-alt); }
.store-address-radio.selected { border-color: var(--store-primary); background: rgba(230, 85, 64, 0.06); }
.store-address-radio input { margin-right: 12px; vertical-align: middle; accent-color: var(--store-primary); }
.store-address-radio .addr-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.store-address-radio .addr-body p { margin: 0 0 4px; font-size: 14px; color: var(--store-text-muted); }
.store-payment-option {
    display: block;
    padding: 16px 20px;
    border: 1px solid var(--store-border);
    border-radius: 8px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}
.store-payment-option:hover { background: var(--store-bg-alt); }
.store-payment-option input { margin-right: 12px; vertical-align: middle; accent-color: var(--store-primary); }
.store-payment-option .pay-title { font-weight: 600; margin-bottom: 4px; }
.store-payment-option .pay-desc { font-size: 13px; color: var(--store-text-muted); margin: 0; }
.store-coupon-row { display: flex; gap: 12px; margin-top: 12px; }
.store-coupon-row input { flex: 1; padding: 12px 16px; border: 1px solid var(--store-border); border-radius: 8px; font-size: 14px; font-family: inherit; }
.store-coupon-row .store-btn-secondary { padding: 12px 20px; }
.store-checkout-sidebar {
    background: var(--store-bg);
    border: 1px solid var(--store-border);
    border-radius: 8px;
    padding: 24px;
    position: sticky;
    top: calc(var(--store-header-h) + 24px);
}
.store-checkout-sidebar h2 { font-size: 18px; font-weight: 700; margin: 0 0 20px; }
.store-checkout-sidebar .store-cart-summary-row { margin-bottom: 10px; }
.store-checkout-sidebar .store-cart-summary-row.total { margin-top: 16px; padding-top: 16px; }
.store-checkout-sidebar .store-auth-btn { margin-top: 24px; margin-bottom: 0; }

/* Empty state (orders, addresses) */
.store-empty-state {
    max-width: 480px;
    margin: 0 auto;
    padding: 48px 24px;
    text-align: center;
    background: var(--store-bg);
    border: 1px solid var(--store-border);
    border-radius: 8px;
}
.store-empty-state-icon { font-size: 48px; margin-bottom: 16px; opacity: 0.6; }
.store-empty-state h2 { font-size: 22px; font-weight: 700; margin: 0 0 8px; }
.store-empty-state p { color: var(--store-text-muted); margin: 0 0 24px; }
.store-empty-state .store-btn { padding: 12px 24px; }

/* ============================================
   ABOUT US PAGE
   ============================================ */
.store-about-page { padding-bottom: 48px; }
.store-about-hero {
    background: linear-gradient(180deg, var(--store-bg-alt) 0%, var(--store-bg) 100%);
    padding: 48px 0 40px;
    text-align: center;
    border-bottom: 1px solid var(--store-border);
}
.store-about-hero-title {
    margin: 0 0 12px;
    font-size: 32px;
    font-weight: 700;
    color: var(--store-text);
}
.store-about-hero-tagline {
    margin: 0;
    font-size: 18px;
    color: var(--store-text-muted);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.store-about-section {
    padding: 40px 0;
    border-bottom: 1px solid var(--store-border);
}
.store-about-section:last-of-type { border-bottom: none; }
.store-about-section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--store-text);
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--store-primary);
    display: inline-block;
}
.store-about-section-desc { margin: 0 0 24px; color: var(--store-text-muted); }
.store-about-lead {
    font-size: 17px;
    line-height: 1.6;
    color: var(--store-text);
    margin: 0 0 16px;
}
.store-about-intro p { margin: 0 0 12px; line-height: 1.7; color: var(--store-text); }
.store-about-intro p:last-child { margin-bottom: 0; }

.store-about-category-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}
.store-about-category-card {
    background: var(--store-bg);
    border: 1px solid var(--store-border);
    border-radius: 8px;
    padding: 24px 20px;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.store-about-category-card:hover {
    border-color: var(--store-primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.store-about-category-icon {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 12px;
}
.store-about-category-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--store-text);
}
.store-about-category-card p { margin: 0; font-size: 14px; color: var(--store-text-muted); line-height: 1.5; }

.store-about-mission { background: var(--store-bg-alt); }
.store-about-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}
.store-about-mission-card {
    background: var(--store-bg);
    border: 1px solid var(--store-border);
    border-radius: 8px;
    padding: 28px 24px;
}
.store-about-mission-card .store-about-section-title { margin-bottom: 16px; }
.store-about-mission-card p { margin: 0; line-height: 1.7; color: var(--store-text); }

.store-about-why-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 520px;
}
.store-about-why-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 16px;
    color: var(--store-text);
    line-height: 1.5;
    border-bottom: 1px solid var(--store-border);
}
.store-about-why-list li:last-child { border-bottom: none; }
.store-about-why-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background: var(--store-primary);
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
}

.store-about-cta {
    text-align: center;
    background: var(--store-bg-alt);
    padding: 48px 0;
}
.store-about-cta-title { font-size: 24px; font-weight: 700; margin: 0 0 8px; color: var(--store-text); }
.store-about-cta-text { margin: 0 0 24px; color: var(--store-text-muted); font-size: 16px; }
.store-about-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}
.store-about-cta-buttons .store-btn { padding: 14px 28px; font-size: 16px; }

@media (max-width: 768px) {
    .store-about-hero { padding: 32px 0 28px; }
    .store-about-hero-title { font-size: 26px; }
    .store-about-hero-tagline { font-size: 16px; }
    .store-about-section { padding: 28px 0; }
    .store-about-section-title { font-size: 20px; margin-bottom: 16px; }
    .store-about-lead { font-size: 16px; }
    .store-about-category-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .store-about-category-card { padding: 20px 16px; }
    .store-about-category-card h3 { font-size: 14px; }
    .store-about-category-card p { font-size: 13px; }
    .store-about-mission-grid { grid-template-columns: 1fr; gap: 20px; }
    .store-about-mission-card { padding: 22px 20px; }
    .store-about-why-list li { font-size: 15px; padding: 10px 0; }
    .store-about-cta { padding: 36px 0; }
    .store-about-cta-title { font-size: 22px; }
    .store-about-cta-buttons { flex-direction: column; align-items: center; }
    .store-about-cta-buttons .store-btn { width: 100%; max-width: 280px; }
}
@media (max-width: 480px) {
    .store-about-category-grid { grid-template-columns: 1fr; }
}

/* ============================================
   CONTACT US PAGE
   ============================================ */
.store-contact-page { padding-bottom: 48px; }
.store-contact-hero {
    background: linear-gradient(180deg, var(--store-bg-alt) 0%, var(--store-bg) 100%);
    padding: 48px 0 40px;
    text-align: center;
    border-bottom: 1px solid var(--store-border);
}
.store-contact-hero-title { margin: 0 0 12px; font-size: 32px; font-weight: 700; color: var(--store-text); }
.store-contact-hero-tagline { margin: 0; font-size: 18px; color: var(--store-text-muted); }
.store-contact-section { padding: 40px 0; border-bottom: 1px solid var(--store-border); }
.store-contact-section:last-of-type { border-bottom: none; }
.store-contact-section-title {
    font-size: 22px; font-weight: 700; color: var(--store-text);
    margin: 0 0 20px; padding-bottom: 10px; border-bottom: 2px solid var(--store-primary); display: inline-block;
}
.store-contact-section-desc { margin: 0 0 24px; color: var(--store-text-muted); }

.store-contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.store-contact-info-card {
    background: var(--store-bg);
    border: 1px solid var(--store-border);
    border-radius: 8px;
    padding: 28px 24px;
}
.store-contact-info-icon { display: block; font-size: 2rem; margin-bottom: 12px; }
.store-contact-info-card h3 { font-size: 18px; font-weight: 600; margin: 0 0 12px; color: var(--store-text); }
.store-contact-address {
    margin: 0; font-style: normal; font-size: 15px; line-height: 1.6; color: var(--store-text-muted);
}
.store-contact-phone { margin: 0; font-size: 18px; font-weight: 600; }
.store-contact-phone a { color: var(--store-primary); text-decoration: none; }
.store-contact-phone a:hover { text-decoration: underline; }

.store-contact-form { max-width: 640px; }
.store-contact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.store-contact-form .store-form-group { margin-bottom: 20px; }
.store-contact-form .store-form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--store-text); margin-bottom: 8px; }
.store-contact-form .store-form-input {
    width: 100%; padding: 12px 16px; border: 1px solid var(--store-border); border-radius: 8px;
    font-size: 15px; font-family: var(--store-font); color: var(--store-text); background: var(--store-bg);
}
.store-contact-form .store-form-input:focus {
    outline: none; border-color: var(--store-primary); box-shadow: 0 0 0 3px rgba(230, 85, 64, 0.12);
}
.store-contact-form .store-form-textarea { resize: vertical; min-height: 120px; }
.store-contact-form .required { color: var(--store-primary); }
.store-contact-form .store-form-error { display: block; font-size: 13px; color: #c00; margin-top: 4px; }
.store-contact-submit { padding: 14px 28px; font-size: 16px; margin-top: 8px; }

.store-contact-map-wrap {
    position: relative; width: 100%; padding-bottom: 56.25%; height: 0; overflow: hidden;
    border-radius: 8px; border: 1px solid var(--store-border); margin-bottom: 16px;
}
.store-contact-map-iframe {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0;
}
.store-contact-map-note { margin: 0 0 16px; font-size: 14px; color: var(--store-text-muted); }
.store-contact-map-btn { display: inline-block; }

.store-contact-cta { text-align: center; background: var(--store-bg-alt); padding: 48px 0; }
.store-contact-cta-title { font-size: 24px; font-weight: 700; margin: 0 0 8px; color: var(--store-text); }
.store-contact-cta-text { margin: 0 0 24px; color: var(--store-text-muted); font-size: 16px; }
.store-contact-cta-buttons { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.store-contact-cta-buttons .store-btn { padding: 14px 28px; font-size: 16px; }

@media (max-width: 768px) {
    .store-contact-hero { padding: 32px 0 28px; }
    .store-contact-hero-title { font-size: 26px; }
    .store-contact-hero-tagline { font-size: 16px; }
    .store-contact-section { padding: 28px 0; }
    .store-contact-section-title { font-size: 20px; margin-bottom: 16px; }
    .store-contact-form-grid { grid-template-columns: 1fr; }
    .store-contact-cta { padding: 36px 0; }
    .store-contact-cta-title { font-size: 22px; }
    .store-contact-cta-buttons { flex-direction: column; align-items: center; }
    .store-contact-cta-buttons .store-btn { width: 100%; max-width: 280px; }
}

/* FAQ page */
.store-faq-page { padding-bottom: 48px; }
.store-faq-hero {
    background: linear-gradient(180deg, var(--store-bg-alt) 0%, var(--store-bg) 100%);
    padding: 40px 0 32px;
    text-align: center;
}
.store-faq-breadcrumb { font-size: 13px; color: var(--store-text-muted); margin-bottom: 16px; }
.store-faq-breadcrumb a { color: var(--store-primary); text-decoration: none; }
.store-faq-breadcrumb a:hover { text-decoration: underline; }
.store-faq-breadcrumb-sep { margin: 0 6px; }
.store-faq-hero-title { margin: 0 0 8px; font-size: 28px; font-weight: 700; color: var(--store-text); }
.store-faq-hero-tagline { margin: 0; font-size: 16px; color: var(--store-text-muted); }
.store-faq-content { margin-top: 32px; }
.store-faq-empty { text-align: center; padding: 48px 16px; color: var(--store-text-muted); }
.store-faq-empty a { color: var(--store-primary); }
.store-faq-tabs {
    display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px;
    border-bottom: 2px solid var(--store-border); padding-bottom: 0;
}
.store-faq-tab {
    padding: 12px 20px; font-size: 14px; font-weight: 600; color: var(--store-text-muted);
    background: none; border: none; border-bottom: 3px solid transparent; margin-bottom: -2px;
    cursor: pointer; font-family: inherit; transition: color 0.2s, border-color 0.2s;
}
.store-faq-tab:hover { color: var(--store-text); }
.store-faq-tab.active { color: var(--store-primary); border-bottom-color: var(--store-primary); }
.store-faq-panel { display: none; }
.store-faq-panel.active { display: block; }
.store-faq-panel-title { font-size: 20px; font-weight: 700; margin: 0 0 20px; color: var(--store-text); }
.store-faq-accordion { display: flex; flex-direction: column; gap: 0; }
.store-faq-item {
    border: 1px solid var(--store-border); border-bottom: none;
    border-radius: 0; overflow: hidden;
}
.store-faq-item:first-child { border-radius: 10px 10px 0 0; }
.store-faq-item:last-child { border-bottom: 1px solid var(--store-border); border-radius: 0 0 10px 10px; }
.store-faq-question {
    width: 100%; padding: 16px 20px; text-align: left; font-size: 15px; font-weight: 600; color: var(--store-text);
    background: #fff; border: none; cursor: pointer; font-family: inherit; display: flex; justify-content: space-between; align-items: center; gap: 16px;
    transition: background 0.2s;
}
.store-faq-question:hover { background: var(--store-bg-alt); }
.store-faq-question[aria-expanded="true"] { background: var(--store-bg-alt); color: var(--store-primary); }
.store-faq-icon { font-size: 20px; color: var(--store-text-muted); flex-shrink: 0; transition: transform 0.2s; }
.store-faq-answer { background: var(--store-bg-alt); overflow: hidden; }
.store-faq-answer-inner { padding: 16px 20px; font-size: 14px; line-height: 1.7; color: var(--store-text); }
.store-faq-answer-inner p { margin: 0 0 8px; }
.store-faq-answer-inner p:last-child { margin-bottom: 0; }
@media (max-width: 768px) {
    .store-faq-hero { padding: 28px 0 24px; }
    .store-faq-hero-title { font-size: 24px; }
    .store-faq-hero-tagline { font-size: 15px; }
    .store-faq-tabs { gap: 4px; margin-bottom: 20px; }
    .store-faq-tab { padding: 10px 14px; font-size: 13px; }
    .store-faq-question { padding: 14px 16px; font-size: 14px; }
    .store-faq-answer-inner { padding: 14px 16px; }
}

/* Static pages (Privacy Policy, etc.) */
.store-static-page { padding-bottom: 48px; }
.store-static-updated { margin: 12px 0 0; font-size: 13px; color: var(--store-text-muted); }
.store-static-content { margin-top: 32px; max-width: 800px; margin-left: auto; margin-right: auto; }
.store-static-body {
    font-size: 15px; line-height: 1.75; color: var(--store-text);
}
.store-static-body h2 { font-size: 20px; font-weight: 700; margin: 28px 0 12px; color: var(--store-text); }
.store-static-body h2:first-child { margin-top: 0; }
.store-static-body h3 { font-size: 17px; font-weight: 600; margin: 20px 0 8px; color: var(--store-text); }
.store-static-body h4 { font-size: 15px; font-weight: 600; margin: 16px 0 6px; }
.store-static-body p { margin: 0 0 12px; }
.store-static-body ul, .store-static-body ol { margin: 0 0 12px; padding-left: 24px; }
.store-static-body li { margin-bottom: 6px; }
.store-static-body a { color: var(--store-primary); text-decoration: none; }
.store-static-body a:hover { text-decoration: underline; }
.store-static-body strong { font-weight: 700; }
@media (max-width: 768px) {
    .store-static-body { font-size: 14px; }
    .store-static-body h2 { font-size: 18px; margin-top: 24px; }
    .store-static-body h3 { font-size: 16px; }
}
