/* ==========================================================================
   DESIGN SYSTEM & GLOBAL STYLES (NEO-MINIMALIST PREMIUM)
   ========================================================================== */

:root {
    --store-ink: #20151c;
    --store-muted: #8e808a;
    --store-line: #f2e6e9;
    --store-bg: #faf7f8;
    --store-panel: #ffffff;
    --store-primary: #2b1b22;
    /* Rich Berry-Black */
    --store-primary-dark: #1f1118;
    --store-accent: #de9da8;
    /* Blush Rose Accent */
    --store-accent-dark: #b66775;
    /* Dusty Berry Rose */
    --store-accent-light: #fbf2f3;
    /* Warm Silk Cream */
    --store-badge-red: #d9383a;
    --store-green: #1a936f;
    --store-shadow-sm: 0 4px 12px rgba(43, 27, 34, 0.03);
    --store-shadow-md: 0 12px 36px rgba(43, 27, 34, 0.05);
    --store-shadow-lg: 0 32px 64px rgba(43, 27, 34, 0.08);
    --store-transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --store-radius-lg: 20px;
    --store-radius-md: 12px;
    --store-radius-sm: 6px;
}

/* Base resets & Typo */
* {
    box-sizing: border-box;
    letter-spacing: -0.02em;
}

body {
    margin: 0;
    background: var(--store-bg);
    color: var(--store-ink);
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--store-transition);
}

/* Custom scrollbars */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--store-bg);
}

::-webkit-scrollbar-thumb {
    background: #d1d1d6;
    border-radius: var(--store-radius-sm);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--store-accent);
}

/* Typography styles */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--store-primary);
    font-weight: 700;
    letter-spacing: -0.03em;
}

/* Buttons */
.btn {
    border-radius: 4px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    padding: 0.75rem 1.75rem;
    font-size: 0.88rem;
    transition: var(--store-transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background: var(--store-primary);
    border-color: var(--store-primary);
    color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--store-accent);
    border-color: var(--store-accent);
    color: var(--store-primary);
    box-shadow: var(--store-shadow-md);
}

.btn-outline-primary {
    color: var(--store-primary);
    border-color: var(--store-primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--store-primary);
    color: #ffffff;
    border-color: var(--store-primary);
}

.btn-outline-secondary {
    color: var(--store-muted);
    border-color: var(--store-line);
    background: transparent;
}

.btn-outline-secondary:hover {
    background: var(--store-primary);
    color: #ffffff;
    border-color: var(--store-primary);
}

.btn-success {
    background: var(--store-green);
    border-color: var(--store-green);
}

.btn-success:hover {
    background: #137557;
    border-color: #137557;
}

/* Breadcrumb */
.breadcrumb-item a {
    color: var(--store-muted);
    font-weight: 500;
}

.breadcrumb-item.active {
    color: var(--store-primary);
    font-weight: 700;
}

/* ==========================================================================
   HEADER & NAVIGATION (LUXURY GLASSMORPHIC)
   ========================================================================== */

.store-header {
    background: transparent;
    z-index: 1020;
    position: relative;
}

.store-topbar {
    background: var(--store-primary-dark);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.store-topbar span {
    display: inline-flex;
    align-items: center;
}

.store-topbar i {
    color: var(--store-accent);
}

.store-navbar {
    background: var(--store-primary);
    border-bottom: none;
    padding: 1.5rem 0;
    position: relative;
    z-index: 1020;
    transition: var(--store-transition);
}

.store-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: #ffffff;
    letter-spacing: -0.04em;
    text-transform: capitalize;
}

.store-brand img {
    height: 34px;
    object-fit: contain;
}

.store-brand span {
    position: relative;
}

.store-brand span::after {
    content: '.';
    color: var(--store-accent);
}

.store-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--store-primary);
    color: var(--store-accent);
    width: 36px;
    height: 36px;
    border-radius: 4px;
    font-weight: 900;
    font-size: 1.15rem;
}

/* Live Search */
.store-search {
    position: relative;
    flex: 1 1 500px;
    max-width: 800px;
    margin: 0 2rem;
}

.store-search input {
    background: #ffffff;
    border: 2px solid transparent;
    border-radius: var(--store-radius-md);
    height: 52px;
    padding: 0 1.5rem;
    width: 100%;
    font-size: 0.95rem;
    transition: var(--store-transition);
}

.store-search input:focus {
    border-color: var(--store-accent);
    outline: none;
}

.store-search button {
    position: absolute;
    right: 8px;
    top: 8px;
    background: var(--store-primary);
    border: none;
    border-radius: var(--store-radius-sm);
    color: #ffffff;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--store-transition);
}

.store-search button:hover {
    background: var(--store-accent);
    color: var(--store-primary);
}

.store-search-results {
    background: #ffffff;
    border: 1px solid var(--store-line);
    border-radius: 4px;
    box-shadow: var(--store-shadow-lg);
    left: 0;
    max-height: 420px;
    overflow-y: auto;
    padding: 0.6rem;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    z-index: 1050;
}

.store-search-result {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.6rem;
    border-radius: 4px;
    text-decoration: none;
    border-bottom: 1px solid #f9f9fb;
}

.store-search-result:hover {
    background: var(--store-bg);
}

.store-search-result img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 4px;
}

.store-search-result strong {
    font-size: 0.85rem;
    color: var(--store-ink);
}

.store-search-result small {
    color: var(--store-muted);
    font-size: 0.75rem;
}

.store-search-result-price {
    margin-left: auto;
    font-weight: 700;
    color: var(--store-primary);
    font-size: 0.88rem;
}

/* Nav Actions */
.store-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.store-actions .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    color: #ffffff;
    padding: 0.5rem 0 !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.store-actions .nav-link:hover {
    color: var(--store-accent);
}

.store-actions .nav-link.active,
.store-actions .nav-link[aria-current="page"] {
    color: var(--store-accent);
}

.store-actions .nav-link i {
    font-size: 1.3rem;
    color: #ffffff;
    transition: var(--store-transition);
}

.store-actions .nav-link:hover i,
.store-actions .nav-link.active i,
.store-actions .nav-link[aria-current="page"] i {
    color: var(--store-accent);
}

.store-cart-link b,
.store-wishlist-link b {
    background: var(--store-primary);
    color: var(--store-accent);
    border-radius: 4px;
    font-size: 0.68rem;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-left: 0.2rem;
}

/* Category Bar (Sleek Minimal) */
.store-category-bar {
    background: #ffffff;
    border-bottom: 1px solid var(--store-line);
    position: relative;
    z-index: 20;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.store-category-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    min-height: 54px;
}

.store-category-menu {
    position: relative;
    height: 100%;
    display: flex;
    align-items: stretch;
}

.store-category-highlight {
    background: var(--store-primary);
    color: #ffffff !important;
    border: none;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    padding: 0 1.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: var(--store-transition);
}

.store-category-highlight:hover {
    background: var(--store-primary-dark);
}

.store-category-highlight i {
    color: var(--store-accent);
    font-size: 1.1rem;
}

.store-category-scroll {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.store-category-scroll::-webkit-scrollbar {
    display: none;
}

.store-category-scroll a {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--store-muted);
    padding: 0.8rem 0;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}

.store-category-scroll a:hover,
.store-category-scroll a.active {
    color: var(--store-primary);
}

.store-category-scroll a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--store-accent-dark);
    border-radius: 999px;
}

.store-category-panel {
    background: #ffffff;
    border: 1px solid var(--store-line);
    border-radius: var(--store-radius-md);
    box-shadow: var(--store-shadow-lg);
    position: absolute;
    z-index: 2;
    top: calc(100% + 5px);
    left: 0;
    width: 320px;
    padding: 1.25rem;
}

.store-category-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--store-line);
    margin-bottom: 0.6rem;
    padding-bottom: 0.5rem;
}

.store-category-panel-head strong {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.store-category-panel-head a {
    font-size: 0.78rem;
    color: var(--store-accent-dark);
    font-weight: 700;
}

.store-category-panel-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.25rem;
}

.store-category-panel-grid a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 0.6rem;
    border-radius: var(--store-radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
}

.store-category-panel-grid a:hover {
    background: var(--store-bg);
    color: var(--store-accent-dark);
}

.store-category-panel-grid a.active {
    background: var(--store-accent-light);
    color: var(--store-accent-dark);
    font-weight: 700;
}

.storefront-page {
    min-height: 60vh;
}

/* ==========================================================================
   HOMEPAGE HERO & EDITORIAL
   ========================================================================== */

.home-hero {
    background: #ffffff;
    padding: 1.5rem 0 2.5rem;
}

.home-carousel {
    border-radius: var(--store-radius-lg);
    overflow: hidden;
    box-shadow: var(--store-shadow-md);
}

.store-banner-img {
    height: clamp(380px, 42vw, 540px);
    object-fit: cover;
    width: 100%;
}

.home-hero-fallback {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 2.5rem;
    background: #0d0d0f;
    border-radius: var(--store-radius-lg);
    color: #ffffff;
    min-height: clamp(380px, 42vw, 540px);
    padding: 4.5rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.home-hero-fallback::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(207, 168, 96, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.home-hero-copy h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.05;
    margin: 0.75rem 0 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
}

.home-hero-copy p {
    color: #a1a1a9;
    font-size: 1.05rem;
    max-width: 520px;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.home-hero-actions {
    display: flex;
    gap: 1rem;
}

.home-hero-actions .btn-primary {
    background: var(--store-accent);
    border-color: var(--store-accent);
    color: var(--store-primary);
}

.home-hero-actions .btn-primary:hover {
    background: #ffffff;
    border-color: #ffffff;
}

.home-hero-actions .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.3);
}

.home-hero-actions .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.eyebrow {
    font-family: 'Outfit', sans-serif;
    color: var(--store-accent);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
}

.home-hero-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: var(--store-radius-lg);
    z-index: 2;
}

.home-hero-badge span {
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--store-accent);
    margin-bottom: 0.5rem;
    display: block;
    letter-spacing: 0.05em;
}

.home-hero-badge strong {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    color: #e4e4e7;
    display: block;
}

/* ==========================================================================
   EDITORIAL & BENEFITS
   ========================================================================== */

.store-benefits {
    background: #ffffff;
    border-bottom: 1px solid var(--store-line);
    padding: 1.5rem 0;
}

.store-benefit-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--store-bg);
    border-radius: var(--store-radius-md);
    transition: var(--store-transition);
}

.store-benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--store-shadow-sm);
}

.store-benefit-card i {
    color: var(--store-accent-dark);
    font-size: 1.35rem;
}

.store-benefit-card span {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--store-ink);
}

.fashion-editorial {
    background: #ffffff;
    padding: 3rem 0;
}

.fashion-editorial-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 1.5rem;
}

.fashion-editorial-grid.fashion-editorial-grid-half {
    grid-template-columns: 1fr 1fr;
}

.fashion-feature {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-size: cover;
    background-position: center;
    border-radius: var(--store-radius-lg);
    padding: 2rem;
    min-height: 240px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--store-shadow-sm);
}

.fashion-feature::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
    transition: var(--store-transition);
}

.fashion-feature:hover::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 15%, rgba(0, 0, 0, 0.95) 100%);
}

.fashion-feature span,
.fashion-feature strong {
    z-index: 2;
    position: relative;
}

.fashion-feature span {
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--store-accent);
}

.fashion-feature strong {
    font-size: 1.35rem;
    font-weight: 800;
    margin-top: 0.3rem;
    font-family: 'Outfit', sans-serif;
}

.fashion-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--store-shadow-md);
}

/* ==========================================================================
   PRODUCT VITRINES & CATEGORIES
   ========================================================================== */

.store-section {
    padding: 3.5rem 0;
}

.store-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--store-line);
    padding-bottom: 0.75rem;
}

.store-section-heading h2 {
    font-size: 1.75rem;
    margin: 0;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.store-section-heading span {
    display: none;
}

.store-section-heading a {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--store-accent-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.store-section-heading a:hover {
    color: var(--store-primary);
}

/* Category Grid */
.category-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 0.5rem 0;
    scrollbar-width: none;
}

.category-grid::-webkit-scrollbar {
    display: none;
}

.category-grid a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    flex: 0 0 110px;
}

.category-grid img,
.category-grid i {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    background: #ffffff;
    box-shadow: var(--store-shadow-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    transition: var(--store-transition);
}

.category-grid i {
    font-size: 1.85rem;
    color: var(--store-primary);
    background: var(--store-bg);
}

.category-grid a:hover img,
.category-grid a:hover i {
    border-color: var(--store-accent);
    transform: scale(1.05);
    box-shadow: var(--store-shadow-md);
}

.category-grid span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--store-ink);
}

/* Product Card (Borderless Luxury Style) */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: #ffffff;
    border: none;
    border-radius: var(--store-radius-lg);
    box-shadow: var(--store-shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--store-transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--store-shadow-lg);
}

.product-card-media {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #fcfcfd;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card-media-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.product-card-media img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: var(--store-transition);
}

.product-card:hover .product-card-media img {
    transform: scale(1.05);
}

.product-card-media span {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--store-primary);
    color: var(--store-accent);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 2px;
    z-index: 10;
    letter-spacing: 0.05em;
}

.product-cart-control-wrapper {
    position: absolute;
    right: 12px;
    bottom: 8px;
    /* AJUSTE MANUAL DA POSIÇÃO VERTICAL DA CAIXA AQUI (ex: bottom: 12px para subir mais, bottom: 4px para descer mais) */
    z-index: 12;
    transition: var(--store-transition);
}

.product-quick-add-btn {
    align-items: center;
    background: var(--store-primary);
    border: none;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(43, 27, 34, 0.15);
    color: #ffffff;
    display: inline-flex;
    font-size: 1.05rem;
    height: 38px;
    justify-content: center;
    transition: var(--store-transition);
    width: 38px;
    cursor: pointer;
}

.product-quick-add-btn:hover {
    background: var(--store-accent);
    color: var(--store-primary);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(43, 27, 34, 0.25);
}

.product-quick-add-btn:active {
    transform: scale(0.95);
}

.product-qty-selector {
    display: flex;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center;
    justify-content: space-between;
    background: var(--store-primary);
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(43, 27, 34, 0.15);
    height: 38px;
    width: 100px;
    padding: 0 4px;
    transition: var(--store-transition);
    color: #ffffff;
    box-sizing: border-box;
    overflow: hidden !important;
}

.product-qty-selector .qty-btn {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #ffffff !important;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--store-transition);
    flex-shrink: 0;
    line-height: 1;
}

.product-qty-selector .qty-btn:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    color: var(--store-accent) !important;
}

.product-qty-selector .qty-btn:active {
    transform: scale(0.9);
}

.product-qty-selector .qty-value {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--store-accent) !important;
    flex-grow: 1;
    text-align: center;
    user-select: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    transform: translateX(22px) translateY(-12px);
    /* AJUSTE MANUAL DO NÚMERO AQUI: Altere o translateX(0px) para mover horizontalmente (ex: 2px para a direita, -2px para a esquerda) e o translateY(-12px) para mover verticalmente (ex: -12px para subir, 0px para padrão) */
}

/* Custom Premium Toast Notification */
.store-toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.store-toast {
    pointer-events: auto;
    background: rgba(43, 27, 34, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 0.95rem 1.4rem;
    border-radius: var(--store-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--store-shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    min-width: 280px;
    max-width: 380px;
    opacity: 0;
    transform: translateY(-24px) scale(0.95);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.store-toast.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.store-toast-icon {
    color: var(--store-accent);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-toast-body {
    flex-grow: 1;
}

.product-wishlist-button {
    align-items: center;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12);
    color: var(--store-primary);
    display: inline-flex;
    font-size: 1rem;
    height: 38px;
    justify-content: center;
    position: absolute;
    right: 12px;
    top: 12px;
    transition: var(--store-transition);
    width: 38px;
    z-index: 12;
}

.product-wishlist-button:hover,
.product-wishlist-button.is-active {
    background: #fff1f3;
    border-color: rgba(220, 38, 38, 0.18);
    color: #dc2626;
}

.product-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-brand {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--store-accent-dark);
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
}

.product-card h3 {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0 0 0.85rem 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    min-height: 2.5rem;
}

.product-card h3 a {
    color: var(--store-ink);
}

.product-card h3 a:hover {
    color: var(--store-accent-dark);
}

.product-price {
    margin-top: auto;
    margin-bottom: 0;
}

.product-price small {
    display: block;
    color: var(--store-muted);
    text-decoration: line-through;
    font-size: 0.75rem;
    margin-bottom: 0.1rem;
}

.product-price strong {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--store-ink);
    font-family: 'Outfit', sans-serif;
}

.product-price-label {
    color: var(--store-badge-red);
    display: block;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    line-height: 1.1;
    margin-bottom: 0.15rem;
    text-transform: uppercase;
}

.product-price em {
    display: block;
    color: var(--store-green);
    font-style: normal;
    font-weight: 700;
    font-size: 0.75rem;
    margin-top: 0.2rem;
}

.product-card-actions {
    align-items: stretch;
    display: grid;
    gap: 0.5rem;
    grid-template-columns: minmax(0, 1fr);
    margin-top: 1rem;
}

.product-card-actions.has-share {
    grid-template-columns: minmax(0, 1fr) 46px;
}

.product-card-buttons-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.4rem;
}

.product-card-buttons-group.has-both-buttons {
    grid-template-columns: repeat(2, 1fr);
}

.product-card-actions .btn {
    min-height: 48px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    font-size: 0.76rem;
    width: 100%;
}

.product-card-icon-action,
.product-card-share {
    align-items: center;
    background: #f7f7f8;
    border: 1px solid #ececf0;
    border-radius: 4px;
    color: var(--store-primary);
    display: inline-flex;
    font-size: 1.2rem;
    height: 48px;
    justify-content: center;
    width: 46px;
}

.product-card-icon-action:hover,
.product-card-icon-action.is-active {
    background: #fff1f3;
    border-color: rgba(220, 38, 38, 0.18);
    color: #dc2626;
}

.product-card-share:hover,
.product-card-share.show {
    background: var(--store-primary);
    border-color: var(--store-primary);
    color: #ffffff;
}

.product-detail-wishlist {
    align-items: center;
    display: inline-flex;
    gap: 0.55rem;
    justify-content: center;
    margin-top: 0.75rem;
}

.product-detail-wishlist.is-active {
    background: #fff1f3;
    border-color: rgba(220, 38, 38, 0.32);
    color: #dc2626;
}

.wishlist-page {
    padding: 2rem 0 4rem;
}

.wishlist-toolbar {
    margin-bottom: 1.5rem;
}

.wishlist-empty-state i {
    color: #dc2626;
    font-size: 2.5rem;
    margin-bottom: 0.85rem;
}

.account-auth-page {
    padding: 2.5rem 0 4rem;
}

.account-auth-shell {
    align-items: stretch;
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
    margin-top: 1.25rem;
}

.account-auth-copy {
    align-self: center;
    max-width: 620px;
}

.account-auth-copy span {
    color: var(--store-accent-dark);
    display: inline-flex;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 0.65rem;
    text-transform: uppercase;
}

.account-auth-copy h1 {
    font-size: clamp(2rem, 4vw, 3.8rem);
    font-weight: 900;
    line-height: 1;
    margin: 0 0 1rem;
    text-transform: uppercase;
}

.account-auth-copy p {
    color: var(--store-muted);
    font-size: 1.05rem;
    margin: 0;
    max-width: 520px;
}

.account-auth-card {
    background: #ffffff;
    border: 1px solid var(--store-line);
    border-radius: var(--store-radius-lg);
    box-shadow: var(--store-shadow-sm);
    padding: 2rem;
}

.product-card-share-menu {
    border: 1px solid var(--store-line);
    border-radius: var(--store-radius-md);
    box-shadow: var(--store-shadow-md);
    padding: 0.45rem;
}

.product-card-share-menu .dropdown-item {
    align-items: center;
    border-radius: 4px;
    display: flex;
    font-weight: 700;
    gap: 0.65rem;
    padding: 0.65rem 0.8rem;
}

/* Product Rails */
.product-rail-wrap {
    position: relative;
}

.product-rail {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0.5rem 0.1rem 1.25rem;
    scrollbar-width: none;
}

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

.product-rail .product-card {
    flex: 0 0 270px;
}

.product-rail-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    box-shadow: var(--store-shadow-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--store-primary);
    z-index: 10;
    transition: var(--store-transition);
}

.product-rail-arrow:hover {
    background: var(--store-primary);
    color: #ffffff;
}

.product-rail-prev {
    left: -22px;
}

.product-rail-next {
    right: -22px;
}

.flash-offer-section {
    background: linear-gradient(180deg, #fff7f4 0%, #ffffff 100%);
    border-bottom: 1px solid #f0e6e2;
    border-top: 1px solid #f0e6e2;
    color: var(--store-ink);
    padding: 2.5rem 0 3rem;
}

.flash-offer-section .store-section-heading {
    border-bottom-color: #f0d9d2;
}

.flash-offer-section .store-section-heading h2 {
    color: var(--store-primary);
}

.flash-offer-section .store-section-heading span {
    color: var(--store-badge-red);
    display: block;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.flash-offer-section .store-section-heading a {
    color: var(--store-badge-red);
}

.flash-offer-section .product-card-media span {
    background: #d9383a;
    color: #ffffff;
}

.flash-offer-section .product-rail-arrow {
    background: #ffffff;
    border: 1px solid #f0d9d2;
    color: var(--store-primary);
}

.flash-offer-section .product-rail-arrow:hover {
    background: var(--store-badge-red);
    color: #ffffff;
}

/* Bottom Banners */
.home-bottom-banners .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.home-bottom-banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-size: cover;
    background-position: center;
    border-radius: var(--store-radius-lg);
    padding: 2.5rem;
    min-height: 200px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.home-bottom-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13, 13, 15, 0.9) 0%, rgba(13, 13, 15, 0.25) 100%);
    z-index: 1;
}

.home-bottom-banner span,
.home-bottom-banner strong {
    z-index: 2;
    position: relative;
}

.home-bottom-banner span {
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--store-accent);
    letter-spacing: 0.1rem;
}

.home-bottom-banner strong {
    font-size: 1.6rem;
    font-weight: 800;
    margin-top: 0.5rem;
    max-width: 80%;
    font-family: 'Outfit', sans-serif;
    line-height: 1.25;
    text-transform: uppercase;
}

.brand-strip {
    background: #ffffff;
    border-radius: var(--store-radius-lg);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scrollbar-width: none;
    align-items: center;
    box-shadow: var(--store-shadow-sm);
}

.brand-strip::-webkit-scrollbar {
    display: none;
}

.brand-strip a {
    color: var(--store-ink);
    font-weight: 700;
    font-size: 0.85rem;
    background: var(--store-bg);
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.brand-strip a:hover {
    background: var(--store-primary);
    color: #ffffff;
}

/* ==========================================================================
   CATALOG PAGE LAYOUT
   ========================================================================== */

.catalog-page {
    padding: 2.5rem 0;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 2rem;
}

.catalog-filter {
    background: #ffffff;
    border: none;
    border-radius: var(--store-radius-lg);
    padding: 1.5rem;
    height: fit-content;
    position: sticky;
    top: 100px;
    box-shadow: var(--store-shadow-sm);
}

.catalog-filter-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--store-line);
    padding-bottom: 0.75rem;
    margin-bottom: 1.25rem;
}

.catalog-filter-head strong {
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.catalog-filter-head a {
    color: var(--store-accent-dark);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.catalog-filter .form-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--store-ink);
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
}

.catalog-filter .form-control,
.catalog-filter .form-select {
    border-radius: 4px;
    border-color: var(--store-line);
    font-size: 0.88rem;
    padding: 0.6rem 0.8rem;
}

.catalog-filter .form-control:focus,
.catalog-filter .form-select:focus {
    border-color: var(--store-accent);
    box-shadow: 0 0 0 3px rgba(207, 168, 96, 0.15);
}

.catalog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--store-line);
    padding-bottom: 0.75rem;
}

.catalog-toolbar h1 {
    font-size: 1.65rem;
    margin: 0;
    text-transform: uppercase;
    font-weight: 800;
}

.catalog-toolbar span {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--store-accent-dark);
    font-weight: 800;
    letter-spacing: 0.05em;
}

.catalog-count {
    color: var(--store-muted);
    font-size: 0.85rem;
    font-weight: 700;
}

.catalog-results {
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.catalog-results.is-loading {
    opacity: 0.4;
    pointer-events: none;
}

/* Pagination */
.pagination {
    gap: 0.3rem;
}

.pagination .page-item .page-link {
    border-radius: 4px;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--store-ink);
    border-color: var(--store-line);
}

.pagination .page-item.active .page-link {
    background: var(--store-primary);
    border-color: var(--store-primary);
    color: #ffffff;
}

.pagination .page-item:not(.active) .page-link:hover {
    background: var(--store-accent-light);
    color: var(--store-primary);
    border-color: var(--store-accent);
}

.empty-store-state {
    text-align: center;
    padding: 5rem 2rem;
    background: #ffffff;
    border-radius: var(--store-radius-lg);
    box-shadow: var(--store-shadow-sm);
}

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

.product-detail-page {
    background: #f3f3f5;
    padding: 1.75rem 0 3rem;
}

.product-detail-shell {
    align-items: start;
    background: #ffffff;
    border-radius: var(--store-radius-lg);
    box-shadow: var(--store-shadow-sm);
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.9fr) 360px;
    padding: 1.5rem;
}

.product-detail-gallery {
    min-width: 0;
}

.product-detail-top-actions {
    align-items: center;
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.product-share-link {
    align-items: center;
    background: transparent;
    border: 0;
    color: #63636c;
    display: inline-flex;
    font-weight: 700;
    gap: 0.45rem;
    padding: 0;
    text-decoration: underline;
}

.product-share-link:hover {
    color: var(--store-primary);
}

.product-share-menu {
    border: 1px solid var(--store-line);
    border-radius: var(--store-radius-md);
    box-shadow: var(--store-shadow-md);
    padding: 0.45rem;
}

.product-share-menu .dropdown-item {
    align-items: center;
    border-radius: 4px;
    display: flex;
    font-weight: 700;
    gap: 0.65rem;
    padding: 0.65rem 0.8rem;
}

.product-detail-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: #ffffff;
    border: 1px solid #f0f0f3;
    border-radius: var(--store-radius-md) !important;
    padding: 1.5rem;
    box-shadow: none;
}

.product-thumb-strip {
    display: flex;
    gap: 0.6rem;
    margin-top: 1rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
}

.product-thumb-button {
    background: #ffffff;
    border: 1px solid #d8d8de;
    border-radius: 4px;
    height: 72px;
    padding: 0.25rem;
    width: 72px;
}

.product-thumb-button.active,
.product-thumb-button:hover {
    border-color: var(--store-primary);
}

.product-thumb-button img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.thumb-change {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    background: #ffffff;
    padding: 2px;
    box-shadow: var(--store-shadow-sm);
}

.thumb-change:hover,
.thumb-change.active {
    border-color: var(--store-primary);
}

.offer-countdown {
    align-items: center;
    background: #fff5f2;
    color: var(--store-badge-red);
    border: 1px solid rgba(217, 56, 58, 0.28);
    border-radius: 4px;
    box-shadow: inset 4px 0 0 var(--store-badge-red);
    display: flex !important;
    gap: 0.55rem;
    justify-content: space-between;
    line-height: 1.1;
    margin-top: 0.55rem !important;
    min-height: 44px;
    padding: 0.65rem 0.8rem 0.65rem 0.95rem;
    width: 100%;
}

.offer-countdown::before {
    color: var(--store-badge-red);
    content: "\f0e7";
    flex: 0 0 auto;
    font-family: "Font Awesome 6 Free";
    font-size: 0.9rem;
    font-weight: 900;
}

.offer-countdown span {
    color: #8f3d35;
    flex: 1 1 auto;
    font-size: 0.68rem;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.offer-countdown strong {
    color: var(--store-badge-red);
    flex: 0 0 auto;
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 900;
    letter-spacing: 0;
    white-space: nowrap;
}

.offer-countdown.is-ended {
    background: #f2f2f4;
    border-color: #d8d8de;
    box-shadow: inset 4px 0 0 #a0a0a8;
    color: #777780;
}

.offer-countdown.is-ended::before,
.offer-countdown.is-ended span,
.offer-countdown.is-ended strong {
    color: #777780;
}

.product-specs-card {
    border-radius: var(--store-radius-md);
    border: none;
}

.product-detail-info h1 {
    color: #303036;
    font-size: 1.45rem;
    line-height: 1.22;
    margin-bottom: 0.65rem;
}

.product-rating-row {
    align-items: center;
    color: #5f5f68;
    display: flex;
    flex-wrap: wrap;
    font-size: 0.82rem;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.product-stars {
    color: #e5ad18;
    font-size: 1rem;
    letter-spacing: 0;
}

.product-meta-row {
    align-items: center;
    color: #6b6b74;
    display: flex;
    flex-wrap: wrap;
    font-size: 0.86rem;
    gap: 0.65rem;
    margin-bottom: 1.25rem;
}

.product-type-badge {
    background: #6d7580;
    border-radius: 4px;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 900;
    padding: 0.22rem 0.55rem;
    text-transform: uppercase;
}

.product-short-description {
    color: #676770;
    line-height: 1.55;
    margin-bottom: 1rem;
}

.product-more-link {
    color: #5f5f68;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-decoration: underline;
}

.product-quick-benefits {
    border-top: 1px solid #ededf1;
    display: grid;
    gap: 0.9rem;
    padding-top: 1.25rem;
}

.product-quick-benefits div {
    align-items: center;
    color: #565660;
    display: flex;
    font-weight: 700;
    gap: 0.65rem;
}

.product-quick-benefits i {
    color: var(--store-accent-dark);
    font-size: 1.25rem;
}

.product-buy-card {
    background: #ffffff;
    border: 1px solid #ececf0;
    border-radius: var(--store-radius-lg);
    box-shadow: var(--store-shadow-md);
    padding: 1.25rem;
    position: sticky;
    top: 1rem;
}

.product-old-price {
    align-items: center;
    color: #777780;
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
    text-decoration: line-through;
}

.product-old-price span {
    background: var(--store-green);
    border-radius: 999px;
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 900;
    padding: 0.18rem 0.55rem;
    text-decoration: none;
}

.product-current-price {
    color: #2d2d32;
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.1;
}

.product-unit-price {
    color: #888890;
    font-size: 0.78rem;
    font-weight: 700;
    margin-top: 0.25rem;
    text-transform: uppercase;
}

.product-installments {
    color: #5f5f68;
    font-size: 0.88rem;
    margin-top: 0.55rem;
}

.product-flash-offer {
    background: #fff4f4;
    border: 1px dashed #d9383a;
    border-radius: var(--store-radius-md);
    color: #a52224;
    display: grid;
    gap: 0.4rem;
    margin-top: 1rem;
    padding: 0.85rem;
}

.product-flash-offer strong {
    align-items: center;
    display: flex;
    gap: 0.45rem;
}

.product-purchase-notes {
    border-bottom: 1px solid #ececf0;
    border-top: 1px solid #ececf0;
    display: grid;
    gap: 0.7rem;
    margin: 1.2rem 0;
    padding: 1rem 0;
}

.product-purchase-notes span {
    align-items: center;
    color: #5f5f68;
    display: flex;
    gap: 0.55rem;
}

.product-purchase-notes i {
    color: var(--store-accent-dark);
    font-size: 1.2rem;
}

.product-quantity-box {
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.product-quantity-box label {
    color: #565660;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.product-quantity-stepper {
    align-items: center;
    border: 1px solid #d9d9df;
    border-radius: 4px;
    display: grid;
    grid-template-columns: 42px 58px 42px;
    height: 46px;
    overflow: hidden;
}

.product-quantity-stepper button {
    background: #ffffff;
    border: 0;
    color: var(--store-primary);
    font-size: 1.15rem;
    font-weight: 800;
    height: 44px;
}

.product-quantity-stepper button:hover {
    background: var(--store-primary);
    color: #ffffff;
}

.product-quantity-stepper input {
    border: 0;
    border-left: 1px solid #e6e6eb;
    border-right: 1px solid #e6e6eb;
    color: #303036;
    font-weight: 800;
    height: 44px;
    text-align: center;
    width: 58px;
}

.product-quantity-stepper input:focus {
    outline: none;
}

.product-quantity-stepper input::-webkit-outer-spin-button,
.product-quantity-stepper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-total-preview {
    align-items: center;
    background: #f7f7f8;
    border: 1px solid #ececf0;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.85rem 1rem;
}

.product-total-preview span {
    color: #62626b;
    font-size: 0.86rem;
}

.product-total-preview strong {
    color: #2d2d32;
}

.product-total-preview>strong {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    white-space: nowrap;
}

.product-buy-button {
    min-height: 56px;
}

.product-share-grid {
    display: grid;
    gap: 0.5rem;
    grid-template-columns: repeat(5, 1fr);
    margin-top: 0.9rem;
}

.product-share-grid a,
.product-share-grid button {
    align-items: center;
    background: #f7f7f8;
    border: 1px solid #ececf0;
    border-radius: 4px;
    color: #303036;
    display: inline-flex;
    height: 42px;
    justify-content: center;
}

.product-share-grid a:hover,
.product-share-grid button:hover {
    background: var(--store-primary);
    color: #ffffff;
}

.product-confidence-strip {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 1.5rem;
}

.product-confidence-strip div,
.product-content-card {
    background: #ffffff;
    border: 1px solid #ececf0;
    border-radius: var(--store-radius-lg);
    box-shadow: var(--store-shadow-sm);
}

.product-confidence-strip div {
    align-items: center;
    display: grid;
    gap: 0.15rem 0.85rem;
    grid-template-columns: auto 1fr;
    padding: 1.1rem;
}

.product-confidence-strip i {
    color: var(--store-accent-dark);
    font-size: 1.8rem;
    grid-row: span 2;
}

.product-confidence-strip strong {
    color: #303036;
}

.product-confidence-strip span {
    color: #696972;
    font-size: 0.84rem;
}

.product-content-card {
    margin-top: 1.5rem;
    padding: 1.5rem;
}

.product-content-card h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.product-content-card div {
    color: #5f5f68;
    line-height: 1.7;
}

.product-detail-rail-section {
    padding-bottom: 0;
}

/* ==========================================================================
   CARRINHO & FORMS
   ========================================================================== */

.table {
    --bs-table-bg: transparent;
    font-size: 0.92rem;
}

.table th {
    font-family: 'Outfit', sans-serif;
    color: var(--store-ink);
    font-weight: 800;
    border-bottom: 2px solid var(--store-line);
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
}

.table td {
    padding: 1.25rem 0.75rem;
    color: var(--store-ink);
    vertical-align: middle;
}

.form-control,
.form-select {
    border-color: var(--store-line);
    border-radius: 4px;
    padding: 0.6rem 0.9rem;
    font-size: 0.88rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--store-accent);
    box-shadow: 0 0 0 3px rgba(207, 168, 96, 0.15);
}

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

.store-footer {
    background: linear-gradient(135deg, #0d0d0f 0%, #050507 100%);
    color: #a1a1aa;
    padding: 5.5rem 0 2rem;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.store-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(207, 168, 96, 0.5), transparent);
}

.store-footer h2,
.store-footer h3 {
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
}

.store-footer h2 {
    font-size: 1.85rem;
    margin-bottom: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.store-footer h2 span {
    background: linear-gradient(135deg, var(--store-accent), #fff3d6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.store-footer h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    color: #ffffff;
    position: relative;
    display: inline-block;
}

.store-footer h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 24px;
    height: 2px;
    background: var(--store-accent);
    border-radius: 2px;
}

.store-footer p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.store-footer a {
    color: #a1a1aa;
    display: inline-block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.store-footer a:hover {
    color: var(--store-accent);
    transform: translateX(4px);
}

.store-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.store-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.store-social a:hover {
    background: var(--store-accent);
    color: #0d0d0f;
    border-color: var(--store-accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(207, 168, 96, 0.2);
}

.store-footer-seals {
    display: grid;
    gap: 0.6rem;
}

.store-footer-seals span {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1.15rem;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: transform 0.3s ease, background 0.3s ease;
}

.store-footer-seals span:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.store-footer-seals span i {
    font-size: 1.1rem;
}

.store-footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.store-footer-payments span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.5rem 0.9rem;
    border-radius: 6px;
    font-size: 0.75rem;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: transform 0.3s ease, background 0.3s ease;
}

.store-footer-payments span:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.05);
}

.store-footer-payments span i {
    font-size: 1.1rem;
}

.store-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 3.5rem;
    padding-top: 1.75rem;
    font-size: 0.8rem;
    color: #71717a;
    text-align: center;
}

.store-back-to-top {
    align-items: center;
    background: var(--store-primary);
    border: none;
    border-radius: 50%;
    bottom: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    display: inline-flex;
    height: 52px;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    right: 24px;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 52px;
    z-index: 1070;
    font-size: 1.15rem;
}

.store-back-to-top:hover {
    background: var(--store-accent);
    color: #0d0d0f;
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(207, 168, 96, 0.35);
}

.store-back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 991.98px) {
    .store-navbar {
        padding: 0.75rem 0;
    }

    .product-detail-shell {
        grid-template-columns: 1fr;
    }

    .product-buy-card {
        position: static;
    }

    .product-confidence-strip {
        grid-template-columns: 1fr;
    }

    .store-search {
        max-width: 100%;
        margin: 0.5rem 0;
    }

    .catalog-layout {
        grid-template-columns: 1fr;
    }

    .catalog-filter {
        position: static;
    }

    .store-category-nav {
        gap: 1rem;
    }

    .store-category-highlight {
        padding: 0 1rem;
        font-size: 0.8rem;
    }

    .fashion-editorial-grid,
    .fashion-editorial-grid.fashion-editorial-grid-half {
        grid-template-columns: 1fr;
    }

    .home-hero-fallback {
        grid-template-columns: 1fr;
        padding: 3rem;
    }

    .home-hero-badge {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .store-topbar {
        display: none;
    }

    .product-detail-page {
        padding-top: 1rem;
    }

    .product-detail-shell {
        border-radius: var(--store-radius-md);
        gap: 1.25rem;
        padding: 1rem;
    }

    .product-current-price {
        font-size: 1.65rem;
    }

    .product-thumb-button {
        height: 64px;
        width: 64px;
    }

    .product-rail .product-card {
        flex-basis: 230px;
    }

    .product-rail-prev {
        left: 0;
    }

    .product-rail-next {
        right: 0;
    }

    .store-brand-mark {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }

    .store-brand {
        font-size: 1.3rem;
    }

    .store-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        padding-top: 1.5rem;
        padding-bottom: 1rem;
        width: 100%;
    }

    .store-actions .nav-item {
        width: 100%;
    }

    .store-actions .nav-link {
        display: flex;
        width: 100%;
        justify-content: center;
        padding: 0.8rem 0 !important;
        font-size: 1rem;
    }

    .account-auth-shell {
        grid-template-columns: 1fr;
    }

    .account-auth-copy {
        text-align: center;
        max-width: none;
    }

    .account-auth-copy p {
        margin-inline: auto;
    }

    .store-category-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 1rem 0;
    }

    .store-category-menu {
        width: 100%;
        height: auto;
        flex-direction: column;
    }

    .store-category-panel {
        position: static;
        width: 100%;
        margin-bottom: 1rem;
        box-sizing: border-box;
        box-shadow: none;
    }

    .store-category-panel-grid a {
        min-height: 44px;
    }

    .store-category-panel-grid a span {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .store-category-highlight {
        width: 100%;
        justify-content: center;
        border-radius: var(--store-radius-md);
        margin-bottom: 1.5rem;
        height: 52px;
        font-size: 0.9rem;
    }

    .store-category-scroll {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.25rem;
    }

    .home-hero-fallback h1 {
        font-size: 1.85rem;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
    }

    .product-card-body {
        padding: 0.85rem;
    }

    .product-card h3 {
        font-size: 0.82rem;
        min-height: 2.2rem;
    }

    .product-price strong {
        font-size: 1rem;
    }

    .store-benefit-card {
        flex-direction: column;
        text-align: center;
        padding: 0.75rem 0.5rem;
    }

    .store-benefit-card i {
        font-size: 1.2rem;
    }

    .store-benefit-card span {
        font-size: 0.75rem;
    }

    .store-section {
        padding: 2rem 0;
    }

    .store-section-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .category-grid img,
    .category-grid i {
        width: 80px;
        height: 80px;
    }

    .category-grid a {
        flex-basis: 85px;
    }
}

@media (max-width: 575.98px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   CART DRAWER, CART PAGE & CHECKOUT
   ========================================================================== */

.cart-drawer-open {
    overflow: hidden;
}

.cart-drawer-overlay {
    background: rgba(13, 13, 15, 0.58);
    inset: 0;
    position: fixed;
    z-index: 1080;
}

.cart-drawer {
    background: #ffffff;
    bottom: 0;
    box-shadow: -18px 0 44px rgba(0, 0, 0, 0.16);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: transform 0.24s ease;
    width: min(430px, 100vw);
    z-index: 1090;
}

.cart-drawer.is-open {
    transform: translateX(0);
}

.cart-drawer-head {
    align-items: center;
    background: var(--store-primary);
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    min-height: 72px;
    padding: 0 1.25rem;
}

.cart-drawer-head div {
    align-items: center;
    display: flex;
    gap: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
}

.cart-drawer-head i {
    color: var(--store-accent);
}

.cart-drawer-close {
    align-items: center;
    background: transparent;
    border: 0;
    color: #ffffff;
    display: inline-flex;
    font-size: 1.8rem;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.cart-drawer-close:hover {
    color: var(--store-accent);
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-drawer-empty {
    align-items: center;
    color: #5d5d66;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 320px;
    justify-content: center;
    text-align: center;
}

.cart-drawer-empty i {
    color: var(--store-accent-dark);
    font-size: 2.4rem;
}

.cart-drawer-item {
    align-items: center;
    border: 1px solid #ececf0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    display: grid;
    gap: 0.85rem;
    grid-template-columns: 58px 1fr auto;
    margin-bottom: 0.85rem;
    padding: 1rem;
}

.cart-drawer-item-img img,
.cart-full-product img,
.cart-reco-card img,
.checkout-summary-img img {
    height: 58px;
    object-fit: contain;
    width: 58px;
}

.cart-drawer-item-title {
    color: #111114;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 0.8rem;
}

.cart-drawer-item-actions {
    align-items: center;
    display: flex;
    gap: 0.7rem;
}

.qty-stepper {
    align-items: center;
    border: 1px solid #cfcfd6;
    display: inline-grid;
    grid-template-columns: 38px 42px 38px;
    height: 46px;
}

.qty-stepper button {
    background: transparent;
    border: 0;
    color: var(--store-primary);
    font-size: 1.25rem;
    height: 44px;
}

.qty-stepper button:disabled {
    color: #c4c4ca;
}

.qty-stepper span {
    color: #111114;
    font-weight: 700;
    text-align: center;
}

.cart-drawer-remove,
.cart-full-remove {
    color: var(--store-accent-dark);
    font-size: 1.15rem;
}

.cart-drawer-price {
    color: #111114;
    font-weight: 900;
    white-space: nowrap;
}

.cart-drawer-summary {
    border-top: 1px solid #e5e5ea;
    box-shadow: 0 -8px 18px rgba(0, 0, 0, 0.04);
    padding: 1rem;
}

.cart-drawer-summary div,
.cart-order-lines div,
.checkout-summary-lines div {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.45rem;
}

.cart-drawer-total,
.cart-order-total,
.checkout-summary-total {
    font-size: 1.2rem;
    font-weight: 900;
}

.cart-drawer-keep-buying,
.cart-add-more {
    color: #5d5d66;
    display: block;
    font-weight: 700;
    margin-top: 0.85rem;
    text-align: center;
    text-decoration: underline;
}

.cart-page,
.checkout-final-page {
    background: #ffffff;
    min-height: 70vh;
}

.cart-secure-bar {
    background: var(--store-primary);
    color: #ffffff;
    margin-bottom: 2.5rem;
}

.cart-secure-bar .container {
    align-items: center;
    display: flex;
    justify-content: space-between;
    min-height: 64px;
}

.cart-secure-logo {
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.55rem;
    font-weight: 900;
    text-decoration: underline;
}

.cart-secure-logo::first-letter {
    color: var(--store-accent);
}

.cart-secure-bar span {
    align-items: center;
    display: inline-flex;
    font-weight: 800;
    gap: 0.45rem;
}

.cart-empty-page {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 5rem 1rem;
    text-align: center;
}

.cart-empty-page i {
    color: var(--store-accent-dark);
    font-size: 3rem;
}

.cart-recommendations {
    border-bottom: 1px solid #d8d8de;
    margin-bottom: 2rem;
    padding-bottom: 1.8rem;
}

.cart-recommendations h2 {
    color: #5d5d66;
    font-size: 1.2rem;
    margin-bottom: 1.4rem;
}

.cart-reco-strip {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cart-reco-card {
    align-items: center;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    display: grid;
    gap: 0.8rem;
    grid-template-columns: 72px 1fr;
    min-height: 132px;
    padding: 1rem;
}

.cart-reco-card span {
    color: #35353a;
    display: block;
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1.25;
}

.cart-reco-card strong {
    color: #5d5d66;
}

.cart-full-layout {
    align-items: start;
    display: grid;
    gap: 3.5rem;
    grid-template-columns: minmax(0, 1fr) 360px;
    padding-bottom: 3rem;
}

.cart-full-main h1 {
    font-size: 1.65rem;
    margin-bottom: 2rem;
}

.cart-table-labels {
    color: #6b6b74;
    display: grid;
    font-size: 0.88rem;
    grid-template-columns: 1fr 160px 170px 28px;
    margin-bottom: 0.8rem;
    padding: 0 1rem;
}

.cart-full-item {
    align-items: center;
    background: #ffffff;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 160px 170px 28px;
    margin-bottom: 1rem;
    padding: 1.25rem;
}

.cart-full-product {
    align-items: center;
    display: flex;
    gap: 1rem;
}

.cart-full-product strong {
    color: #202025;
    display: block;
    font-size: 0.9rem;
    line-height: 1.35;
}

.cart-full-product small {
    color: #6b6b74;
}

.cart-full-price {
    font-weight: 900;
}

.cart-delivery-box,
.cart-order-box,
.checkout-step-card,
.checkout-summary-box {
    border: 1px solid #d7d7dd;
    background: #ffffff;
}

.cart-delivery-box {
    margin-top: 2.2rem;
    padding: 1.5rem;
}

.cart-delivery-box h2 {
    font-size: 1.25rem;
}

.cart-order-box {
    padding: 1.5rem;
    position: sticky;
    top: 1rem;
}

.cart-coupon-form {
    border-bottom: 1px solid #d7d7dd;
    margin-bottom: 1.3rem;
    padding-bottom: 1.3rem;
}

.cart-coupon-form label {
    color: #5d5d66;
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.cart-coupon-form div {
    display: flex;
    gap: 0.7rem;
}

.cart-coupon-form input:disabled,
.cart-coupon-form button:disabled {
    opacity: 0.65;
}

.cart-coupon-remove {
    color: var(--store-accent-dark);
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 800;
    margin-top: 0.75rem;
    text-decoration: underline;
}

.cart-order-box small,
.checkout-summary-box small {
    color: #6b6b74;
    display: block;
    margin-top: 1rem;
    text-align: center;
}

.checkout-final-page {
    padding: 0 0 4rem;
}

.checkout-final-top {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 0 0 2.5rem;
    padding-top: 2rem;
}

.checkout-final-top h1 {
    font-size: 1.35rem;
}

.checkout-final-top a {
    color: var(--store-accent-dark);
    font-weight: 800;
}

.checkout-final-layout {
    align-items: start;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: minmax(0, 1fr) 400px;
    margin: 0 auto;
    max-width: 1030px;
}

.checkout-step-card {
    margin-bottom: 1rem;
}

.checkout-step-card h2 {
    align-items: center;
    border-bottom: 1px solid #d7d7dd;
    color: var(--store-primary);
    display: flex;
    font-size: 1.25rem;
    gap: 1rem;
    margin: 0;
    padding: 1rem 1.5rem;
}

.checkout-step-card h2 span {
    align-items: center;
    background: var(--store-primary);
    color: #ffffff;
    display: inline-flex;
    font-size: 0.9rem;
    height: 24px;
    justify-content: center;
    width: 24px;
}

.checkout-step-body {
    padding: 1.5rem;
}

.checkout-final-form label {
    color: #52525b;
    font-size: 0.88rem;
}

.checkout-large-input {
    font-size: 1.05rem;
    font-weight: 800;
    height: 48px;
}

.checkout-privacy-options {
    margin-top: 2rem;
}

.checkout-privacy-options h3 {
    font-size: 1rem;
    margin: 1.4rem 0 0.25rem;
}

.checkout-privacy-options p,
.checkout-privacy-note {
    color: #7a7a84;
    font-size: 0.86rem;
}

.checkout-privacy-options label {
    align-items: flex-start;
    display: flex;
    gap: 0.6rem;
    margin-top: 0.75rem;
}

.checkout-payment-grid {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.checkout-payment-grid label {
    border: 1px solid #d7d7dd;
    cursor: pointer;
    font-weight: 800;
    padding: 0.9rem;
}

.checkout-card-token {
    margin-top: 1rem;
}

.checkout-submit {
    font-size: 1rem;
    width: 100%;
}

.checkout-summary-box {
    padding: 1.5rem;
    position: sticky;
    top: 1rem;
}

.checkout-summary-box h2 {
    font-size: 1.3rem;
    margin-bottom: 1.3rem;
}

.checkout-summary-items {
    border-bottom: 1px solid #d7d7dd;
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
}

.checkout-summary-item {
    display: grid;
    gap: 0.8rem;
    grid-template-columns: 58px 1fr;
}

.checkout-summary-img {
    position: relative;
}

.checkout-summary-img b {
    align-items: center;
    background: var(--store-primary);
    color: #ffffff;
    display: inline-flex;
    font-size: 0.8rem;
    height: 24px;
    justify-content: center;
    position: absolute;
    right: -7px;
    top: -7px;
    width: 24px;
}

.checkout-summary-item p {
    font-size: 0.88rem;
    line-height: 1.35;
    margin: 0 0 0.35rem;
}

@media (max-width: 991.98px) {

    .cart-reco-strip,
    .cart-full-layout,
    .checkout-final-layout {
        grid-template-columns: 1fr;
    }

    .cart-order-box,
    .checkout-summary-box {
        position: static;
    }

    .cart-table-labels {
        display: none;
    }

    .cart-full-item {
        grid-template-columns: 1fr;
    }

    .cart-full-qty,
    .cart-full-price,
    .cart-full-remove {
        justify-self: start;
    }
}

@media (max-width: 767.98px) {

    .cart-secure-bar .container,
    .checkout-final-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.75rem;
    }

    .cart-reco-strip,
    .checkout-payment-grid {
        grid-template-columns: 1fr;
    }

    .cart-drawer-item {
        grid-template-columns: 52px 1fr;
    }

    .cart-drawer-price {
        grid-column: 2;
    }
}

.blog-page,
.blog-post-page {
    padding: 2rem 0 4rem;
}

.blog-heading {
    background: #ffffff;
    border-bottom: 1px solid #ececf1;
    margin-bottom: 2rem;
    padding: 2rem 0;
}

.blog-heading-grid {
    align-items: end;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
}

.blog-heading span,
.blog-post-header>span {
    color: var(--store-accent-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.blog-heading h1,
.blog-post-header h1 {
    color: var(--store-primary);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin: 0.35rem 0 0.65rem;
}

.blog-heading p,
.blog-post-header p {
    color: #676774;
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 0;
    max-width: 680px;
}

.blog-search {
    align-items: center;
    background: #f7f7fa;
    border: 1px solid #dedee6;
    display: flex;
    min-height: 52px;
}

.blog-search input {
    background: transparent;
    border: 0;
    flex: 1;
    min-width: 0;
    outline: 0;
    padding: 0 1rem;
}

.blog-search button {
    align-items: center;
    background: var(--store-primary);
    border: 0;
    color: #ffffff;
    display: inline-flex;
    font-size: 1.2rem;
    height: 52px;
    justify-content: center;
    width: 56px;
}

.blog-layout {
    align-items: start;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 260px minmax(0, 1fr);
}

.blog-sidebar,
.blog-post-side {
    position: sticky;
    top: 1rem;
}

.blog-sidebar-block,
.blog-share-box {
    background: #ffffff;
    border: 1px solid #e3e3ea;
    padding: 1rem;
}

.blog-sidebar-block h2,
.blog-share-box h2 {
    color: var(--store-primary);
    font-size: 1rem;
    font-weight: 900;
    margin: 0 0 0.85rem;
}

.blog-sidebar-block a,
.blog-share-box a {
    align-items: center;
    border-top: 1px solid #eeeeF3;
    color: #30303a;
    display: flex;
    font-weight: 800;
    gap: 0.65rem;
    justify-content: space-between;
    padding: 0.78rem 0;
    text-decoration: none;
}

.blog-sidebar-block a:first-of-type,
.blog-share-box a:first-of-type {
    border-top: 0;
}

.blog-sidebar-block a.active,
.blog-sidebar-block a:hover,
.blog-share-box a:hover {
    color: var(--store-accent-dark);
}

.blog-sidebar-block b {
    color: #8a8a96;
    font-size: 0.85rem;
}

.blog-card-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card {
    background: #ffffff;
    border: 1px solid #e3e3ea;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
}

.blog-card-media {
    aspect-ratio: 16 / 10;
    background: #f1f1f5;
    display: block;
    overflow: hidden;
}

.blog-card-media img {
    height: 100%;
    object-fit: cover;
    transition: transform .22s ease;
    width: 100%;
}

.blog-card:hover .blog-card-media img {
    transform: scale(1.035);
}

.blog-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1rem;
}

.blog-card-meta {
    color: #7d7d89;
    display: flex;
    flex-wrap: wrap;
    font-size: 0.78rem;
    font-weight: 800;
    gap: 0.65rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.blog-card h2 {
    font-size: 1.12rem;
    font-weight: 900;
    line-height: 1.25;
    margin: 0 0 0.65rem;
}

.blog-card h2 a {
    color: var(--store-primary);
    text-decoration: none;
}

.blog-card p {
    color: #666674;
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0 0 1rem;
}

.blog-read-link {
    align-items: center;
    color: var(--store-accent-dark);
    display: inline-flex;
    font-weight: 900;
    gap: 0.4rem;
    margin-top: auto;
    text-decoration: none;
}

.blog-pagination {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.blog-pagination a,
.blog-pagination span {
    background: #ffffff;
    border: 1px solid #dfdfe7;
    color: #353540;
    font-weight: 900;
    padding: 0.75rem 1rem;
    text-decoration: none;
}

.blog-empty {
    background: #ffffff;
    border: 1px solid #e3e3ea;
    padding: 2rem;
    text-align: center;
}

.blog-empty h1,
.blog-empty h2 {
    color: var(--store-primary);
    font-weight: 900;
}

.blog-post-shell {
    margin: 0 auto;
    max-width: 1120px;
}

.blog-post-header {
    margin: 0 auto 1.5rem;
    max-width: 860px;
    text-align: center;
}

.blog-post-meta {
    color: #777784;
    display: flex;
    flex-wrap: wrap;
    font-weight: 800;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.blog-post-cover {
    aspect-ratio: 16 / 7;
    background: #f1f1f5;
    display: block;
    margin-bottom: 2rem;
    object-fit: cover;
    width: 100%;
}

.blog-post-grid {
    align-items: start;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: minmax(0, 1fr) 280px;
}

.blog-post-main {
    min-width: 0;
}

.blog-post-content {
    background: #ffffff;
    border: 1px solid #e3e3ea;
    color: #34343d;
    font-size: 1.04rem;
    line-height: 1.8;
    padding: 2rem;
}

.blog-post-content h2,
.blog-post-content h3 {
    color: var(--store-primary);
    font-weight: 900;
    line-height: 1.2;
    margin: 1.6rem 0 0.75rem;
}

.blog-post-content p:last-child {
    margin-bottom: 0;
}

.blog-post-content a {
    color: var(--store-accent-dark);
    font-weight: 800;
}

.blog-post-gallery {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1rem;
}

.blog-post-gallery figure {
    background: #ffffff;
    border: 1px solid #e3e3ea;
    margin: 0;
    overflow: hidden;
}

.blog-post-gallery img {
    aspect-ratio: 4 / 3;
    display: block;
    object-fit: cover;
    width: 100%;
}

.blog-post-gallery figcaption {
    color: #676774;
    font-size: 0.9rem;
    padding: 0.75rem;
}

.blog-post-videos {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.blog-post-videos .ratio {
    background: #111;
}

.blog-related {
    margin-top: 2.5rem;
}

.blog-card-grid-related {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 991.98px) {

    .blog-heading-grid,
    .blog-layout,
    .blog-post-grid {
        grid-template-columns: 1fr;
    }

    .blog-sidebar,
    .blog-post-side {
        position: static;
    }

    .blog-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {

    .blog-card-grid,
    .blog-card-grid-related,
    .blog-post-gallery {
        grid-template-columns: 1fr;
    }

    .blog-post-content {
        padding: 1.25rem;
    }

    .blog-post-cover {
        aspect-ratio: 4 / 3;
    }
}

/* Cart Drawer & Helper Styles */
[hidden] {
    display: none !important;
}

.cart-drawer-overlay {
    background: rgba(13, 13, 15, 0.58);
    inset: 0;
    position: fixed;
    z-index: 1080;
}

.cart-drawer {
    background: #fff;
    bottom: 0;
    box-shadow: -18px 0 44px rgba(0, 0, 0, .16);
    max-width: 100%;
    overflow: hidden;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: transform .24s ease;
    width: min(430px, 100vw);
    z-index: 1090;
}

.cart-drawer.is-open {
    transform: translateX(0);
}

.cart-drawer-open {
    overflow: hidden;
}

/* BRAND STRIP (INFINITE MARQUEE LOOP) */
.brand-strip-section {
    padding: 2rem 0;
    background: var(--store-bg);
    border-top: 1px solid var(--store-line);
    border-bottom: 1px solid var(--store-line);
    overflow: hidden;
}

.brand-marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 1.5rem;
    position: relative;
    width: 100%;
}

.brand-strip {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    min-width: 100%;
    gap: 1.5rem;
    animation: scroll-marquee 30s linear infinite;
}

/* Pause marquee on hover */
.brand-marquee:hover .brand-strip {
    animation-play-state: paused;
}

@keyframes scroll-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - 1.5rem));
    }
}

.brand-strip a {
    background: #ffffff;
    border: 1px solid var(--store-line);
    border-radius: var(--store-radius-sm);
    color: var(--store-primary);
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.65rem 1.75rem;
    text-transform: uppercase;
    transition: var(--store-transition);
    box-shadow: var(--store-shadow-sm);
}

.brand-strip a:hover {
    background: var(--store-primary);
    color: #ffffff;
    border-color: var(--store-primary);
    transform: translateY(-3px);
    box-shadow: var(--store-shadow-md);
}

/* ==========================================================================
   SYSTEM SHOWCASE PAGE
   ========================================================================== */

.system-showcase-page {
    background: #faf7f8;
    overflow-x: hidden;
}

.system-showcase-hero,
.system-showcase-section,
.system-showcase-sophia {
    padding: 4rem 0;
}

.system-showcase-hero-grid,
.system-band-grid,
.system-insight-grid,
.system-sophia-grid {
    align-items: center;
    display: grid;
    gap: 3rem;
}

.system-showcase-hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.system-band-grid,
.system-insight-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
}

.system-sophia-grid {
    grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
}

.system-eyebrow {
    color: var(--store-accent-dark);
    display: inline-flex;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.system-showcase-copy h1 {
    color: var(--store-ink);
    font-size: clamp(2.4rem, 5vw, 5rem);
    font-weight: 900;
    line-height: 0.98;
    margin: 0 0 1.25rem;
    max-width: 980px;
    text-transform: uppercase;
}

.system-showcase-copy p,
.system-showcase-band p,
.system-showcase-sophia p,
.system-impact p {
    color: var(--store-muted);
    font-size: 1.04rem;
    line-height: 1.75;
    margin: 0;
}

.system-showcase-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

.system-showcase-panel,
.system-feature,
.system-card-row article,
.system-insight-main,
.system-impact {
    background: #ffffff;
    border: 1px solid var(--store-line);
    border-radius: 8px;
    box-shadow: var(--store-shadow-sm);
}

.system-showcase-panel {
    display: grid;
    gap: 0.75rem;
    padding: 1rem;
}

.system-metric {
    border: 1px solid var(--store-line);
    border-radius: 8px;
    padding: 1rem;
}

.system-metric span {
    color: var(--store-accent-dark);
    display: block;
    font-size: 0.72rem;
    font-weight: 900;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.system-metric strong {
    color: var(--store-ink);
    display: block;
    font-size: 1.1rem;
}

.system-metric-highlight {
    background: var(--store-primary);
    border-color: var(--store-primary);
}

.system-metric-highlight span,
.system-metric-highlight strong {
    color: #ffffff;
}

.system-section-heading {
    margin-bottom: 2rem;
    max-width: 820px;
}

.system-section-heading h2,
.system-showcase-band h2,
.system-showcase-sophia h2,
.system-impact h2 {
    color: var(--store-ink);
    font-size: clamp(2rem, 3.4vw, 3.4rem);
    font-weight: 900;
    line-height: 1.04;
    margin: 0;
    text-transform: uppercase;
}

.system-feature-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.system-feature,
.system-card-row article,
.system-insight-main {
    padding: 1.5rem;
}

.system-feature i,
.system-card-row article i {
    align-items: center;
    background: var(--store-accent-light);
    border-radius: 8px;
    color: var(--store-primary);
    display: inline-flex;
    font-size: 1.6rem;
    height: 46px;
    justify-content: center;
    margin-bottom: 1rem;
    width: 46px;
}

.system-feature h3,
.system-card-row h3,
.system-insight-main h3 {
    color: var(--store-ink);
    font-size: 1.1rem;
    font-weight: 900;
    margin-bottom: 0.65rem;
}

.system-feature p,
.system-card-row p {
    color: var(--store-muted);
    line-height: 1.7;
    margin: 0;
}

.system-showcase-band {
    background: var(--store-primary);
    color: #ffffff;
    padding: 4rem 0;
}

.system-showcase-band .system-eyebrow,
.system-showcase-band h2,
.system-showcase-band p {
    color: #ffffff;
}

.system-stack-list {
    display: grid;
    gap: 0.8rem;
}

.system-stack-list div {
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    display: flex;
    gap: 0.9rem;
    padding: 1rem;
}

.system-stack-list i {
    color: var(--store-accent);
    font-size: 1.45rem;
}

.system-stack-list span {
    color: #ffffff;
    font-weight: 800;
}

.system-card-row {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.system-intelligence-section {
    background: #ffffff;
}

.system-check-list {
    display: grid;
    gap: 0.8rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.system-check-list li {
    align-items: center;
    background: #faf7f8;
    border: 1px solid var(--store-line);
    border-radius: 8px;
    color: var(--store-ink);
    display: flex;
    font-weight: 800;
    gap: 0.75rem;
    padding: 1rem;
}

.system-check-list i {
    color: #16a34a;
    font-size: 1.35rem;
}

.system-sophia-photo {
    align-items: end;
    background: #f0d5dc;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    min-height: 430px;
    overflow: hidden;
}

.system-sophia-photo img {
    display: block;
    max-height: 500px;
    max-width: 112%;
    object-fit: contain;
}

.system-prompt-list {
    display: grid;
    gap: 0.7rem;
    margin-top: 1.5rem;
}

.system-prompt-list span {
    background: #ffffff;
    border-left: 4px solid var(--store-primary);
    border-radius: 8px;
    box-shadow: var(--store-shadow-sm);
    color: var(--store-ink);
    font-weight: 800;
    padding: 0.9rem 1rem;
}

.system-impact {
    align-items: center;
    box-shadow: var(--store-shadow-md);
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    padding: 2rem;
}

@media (max-width: 991.98px) {
    .system-showcase-hero-grid,
    .system-band-grid,
    .system-insight-grid,
    .system-sophia-grid {
        grid-template-columns: 1fr;
    }

    .system-feature-grid,
    .system-card-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .system-showcase-hero,
    .system-showcase-section,
    .system-showcase-band,
    .system-showcase-sophia {
        padding: 3rem 0;
    }

    .system-feature-grid,
    .system-card-row {
        grid-template-columns: 1fr;
    }

    .system-impact {
        align-items: stretch;
        flex-direction: column;
    }

    .system-showcase-actions .btn,
    .system-impact .btn {
        width: 100%;
    }

    .system-sophia-photo {
        min-height: 320px;
    }
}
