/* Base styles with futuristic theme */
:root {
    --gold-primary: #D4AF37;
    --gold-secondary: #CFB53B;
    --gold-light: #F5E9C1;
    --gold-dark: #9C7C38;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F2D35B 50%, #D4AF37 100%);
    --dark: #111111;
    --dark-secondary: #222222;
    --white: #FFFFFF;
    --accent: #00C2FF;
    --accent-dark: #0088CC;
    --success: #00E676;
    --error: #FF3D00;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 20%),
        linear-gradient(to bottom, var(--dark) 0%, var(--dark-secondary) 100%);
    background-attachment: fixed;
}

/* Animated background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-animation span {
    position: absolute;
    display: block;
    width: 1px;
    height: 1px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    animation: move 8s linear infinite;
}

@keyframes move {
    0% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-1000px) scale(3);
        opacity: 0;
    }
}

/* Container with glass morphism */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header with animated logo */
header {
    text-align: center;
    padding: 30px 0;
    position: relative;
}

.logo-container {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    perspective: 1000px;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotateY(0);
        filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.4));
    }
    50% {
        transform: translateY(-15px) rotateY(10deg);
        filter: drop-shadow(0 25px 15px rgba(212, 175, 55, 0.2));
    }
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
}

/* Main content with glass morphism panels */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 0;
    position: relative;
}

.glass-panel {
    background: rgba(17, 17, 17, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 40px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.glass-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.1),
        transparent
    );
    transition: 0.5s;
}

.glass-panel:hover::before {
    left: 100%;
}

.panel-border {
    position: absolute;
    background: var(--gold-primary);
}

.border-top {
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s;
}

.border-right {
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s 0.25s;
}

.border-bottom {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s 0.5s;
}

.border-left {
    bottom: 0;
    left: 0;
    width: 1px;
    height: 100%;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s 0.75s;
}

.glass-panel:hover .border-top,
.glass-panel:hover .border-right,
.glass-panel:hover .border-bottom,
.glass-panel:hover .border-left {
    transform: scale(1);
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    margin-bottom: 20px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

h1::after {
    content: 'COMING SOON';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: blur(8px);
    opacity: 0.5;
    z-index: -1;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: var(--white);
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.tagline::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 20px auto 0;
}

/* Advanced countdown timer */
.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    perspective: 1000px;
}

.countdown-item {
    background: var(--dark-secondary);
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    min-width: 100px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transform-style: preserve-3d;
    transition: transform 0.3s;
}

.countdown-item:hover {
    transform: translateZ(10px);
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, transparent 100%);
    z-index: 1;
}

.countdown-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.countdown-item:hover::after {
    opacity: 1;
}

.countdown-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    position: relative;
    z-index: 2;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    color: var(--gold-light);
    font-weight: 300;
}

/* Newsletter form with advanced styling */
.newsletter {
    max-width: 600px;
    width: 100%;
    margin: 0 auto 40px;
}

.newsletter h2 {
    margin-bottom: 20px;
    color: var(--gold-secondary);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.form-group {
    display: flex;
    margin-bottom: 10px;
    position: relative;
}

.form-control {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: rgba(17, 17, 17, 0.7);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--white);
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

.btn {
    background: var(--gold-gradient);
    color: var(--dark);
    border: none;
    padding: 16px 30px;
    margin-left: 10px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn:hover::before {
    left: 100%;
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

#form-message {
    margin-top: 15px;
    font-size: 0.9rem;
    min-height: 20px;
    transition: all 0.3s;
}

.success-message {
    color: var(--success);
    animation: fadeIn 0.5s;
}

.error-message {
    color: var(--error);
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Social media with hover effects */
.social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: var(--dark-secondary);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    z-index: -1;
    transform: scale(0);
    transition: transform 0.5s;
    border-radius: 50%;
}

.social-icon:hover {
    color: var(--dark);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.social-icon:hover::before {
    transform: scale(1);
}

/* Features section */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    width: 100%;
    max-width: 1200px;
}

.feature-item {
    background: rgba(17, 17, 17, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.feature-item:hover .feature-icon {
    transform: scale(1.2);
}

.feature-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--gold-light);
}

.feature-desc {
    font-size: 0.95rem;
    color: var(--white);
    font-weight: 300;
}

/* Footer with futuristic design */
footer {
    text-align: center;
    padding: 40px 0;
    color: var(--white);
    font-size: 0.9rem;
    position: relative;
    z-index: 10;
}

.footer-content {
    position: relative;
    padding: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-logo {
    width: 60px;
    height: auto;
    margin-bottom: 15px;
    opacity: 0.7;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.footer-link {
    color: var(--gold-light);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s;
}

.footer-link:hover {
    color: var(--gold-primary);
}

.footer-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.copyright {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.6);
}

/* Chat widget container with animation */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    position: relative;
}

.chat-button:hover {
    transform: scale(1.1);
}

.chat-button i {
    font-size: 1.5rem;
    color: var(--dark);
}

.chat-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gold-primary);
    opacity: 0.7;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Notification system */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--gold-primary);
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    transform: translateX(120%);
    transition: transform 0.5s;
    z-index: 1000;
}

.notification.show {
    transform: translateX(0);
}

.notification-icon {
    margin-right: 15px;
    font-size: 1.5rem;
    color: var(--gold-primary);
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.notification-message {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.notification-close {
    color: rgba(255, 255, 255, 0.5);
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 15px;
    transition: color 0.3s;
}

.notification-close:hover {
    color: var(--white);
}

/* Loading indicator */
.loading {
    display: inline-block;
    position: relative;
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.loading div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    animation: loading 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: var(--gold-primary) transparent transparent transparent;
}

.loading div:nth-child(1) {
    animation-delay: -0.45s;
}

.loading div:nth-child(2) {
    animation-delay: -0.3s;
}

.loading div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Cursor effect */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.5);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s, height 0.3s, background 0.3s;
    display: none;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: 0.1s;
    display: none;
}

/* Responsive design */
@media (min-width: 1024px) {
    .cursor, .cursor-follower {
        display: block;
    }
}

@media (max-width: 1024px) {
    h1 {
        font-size: 3.5rem;
    }
    
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    .tagline {
        font-size: 1.3rem;
    }
    
    .countdown {
        flex-wrap: wrap;
    }
    
    .countdown-item {
        min-width: 80px;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .logo-container {
        width: 120px;
        height: 120px;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .form-control {
        border-radius: 8px;
        margin-bottom: 15px;
    }
    
    .btn {
        border-radius: 8px;
        width: 100%;
        margin-left: 0;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 15px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .glass-panel {
        padding: 30px 20px;
    }
}


/* ============================================================
   Peazzy Storefront Expansion - 2026-06-25
   ============================================================ */
.skip-link,
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
.skip-link:focus {
    width: auto;
    height: auto;
    clip: auto;
    z-index: 1000;
    left: 16px;
    top: 16px;
    padding: 12px 16px;
    background: var(--gold-primary);
    color: var(--dark);
    border-radius: 8px;
}
.store-body {
    min-height: 100vh;
}
.store-main {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 38px 0 80px;
}
.store-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.84);
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
    backdrop-filter: blur(14px);
}
.store-header-inner {
    width: min(1220px, calc(100% - 28px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 82px;
}
.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    text-decoration: none;
}
.brand-logo {
    width: 54px;
    height: 54px;
    object-fit: contain;
    filter: drop-shadow(0 0 14px rgba(212,175,55,.25));
}
.brand-text {
    display: grid;
    line-height: 1.05;
    letter-spacing: .4px;
}
.brand-text strong {
    font-family: 'Orbitron', sans-serif;
    color: var(--gold-secondary);
    font-size: 1.02rem;
}
.brand-text span {
    font-size: .85rem;
    color: rgba(255,255,255,.72);
}
.store-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}
.store-nav a,
.cart-pill,
.reset-link,
.back-link,
.mini-link,
.section-link,
.sidebar-note a {
    color: var(--gold-light);
    text-decoration: none;
}
.store-nav a {
    padding: 10px 11px;
    border-radius: 999px;
    color: rgba(255,255,255,.82);
    font-size: .92rem;
    transition: .2s ease;
}
.store-nav a:hover,
.store-nav a:focus {
    color: var(--dark);
    background: var(--gold-gradient);
}
.cart-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(212,175,55,.35);
    border-radius: 999px;
    padding: 10px 14px;
    background: rgba(255,255,255,.05);
}
.cart-pill strong {
    display: inline-grid;
    place-items: center;
    min-width: 22px;
    height: 22px;
    border-radius: 999px;
    background: var(--gold-primary);
    color: var(--dark);
    font-size: .78rem;
}
.mobile-nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(212,175,55,.35);
    background: rgba(255,255,255,.05);
    border-radius: 10px;
    padding: 9px;
}
.mobile-nav-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    background: var(--gold-primary);
    margin: 5px 0;
}
.store-alert {
    padding: 14px 18px;
    border-radius: 14px;
    margin-bottom: 22px;
    border: 1px solid rgba(212,175,55,.3);
    background: rgba(0,230,118,.12);
    color: #b8ffd8;
}
.store-alert-error {
    background: rgba(255,61,0,.12);
    color: #ffd1c4;
}
.store-hero,
.product-detail,
.cart-layout,
.checkout-layout,
.shop-layout {
    display: grid;
    gap: 28px;
    align-items: start;
}
.store-hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    align-items: center;
    min-height: 650px;
}
.store-hero-content {
    padding: 40px 0;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-secondary);
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-size: .78rem;
    font-weight: 800;
    margin-bottom: 16px;
}
.store-title {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.3rem, 6vw, 5.6rem);
    line-height: .98;
    margin: 0 0 24px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -1.5px;
}
.store-title::after,
.store-body h1::after {
    content: none !important;
}
.store-lead {
    font-size: clamp(1.04rem, 2vw, 1.24rem);
    color: rgba(255,255,255,.78);
    max-width: 720px;
    margin-bottom: 28px;
}
.hero-actions,
.cart-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.hero-actions.centered {
    justify-content: center;
}
.btn.no-margin {
    margin-left: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    gap: 8px;
}
.btn-ghost {
    background: rgba(255,255,255,.04);
    color: var(--gold-light);
    border: 1px solid rgba(212,175,55,.38);
}
.btn.full-width {
    width: 100%;
}
.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
    color: rgba(255,255,255,.72);
}
.trust-row span {
    border: 1px solid rgba(212,175,55,.2);
    background: rgba(255,255,255,.04);
    border-radius: 999px;
    padding: 9px 12px;
}
.store-hero-card {
    max-width: 520px;
    margin: 0 0 0 auto;
    padding: 18px;
}
.store-hero-card img,
.product-media img,
.product-card-image img,
.cart-row img {
    width: 100%;
    display: block;
    border-radius: 18px;
}
.hero-card-info {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    text-align: left;
    padding: 16px 8px 4px;
}
.hero-card-info span,
.product-category {
    color: var(--gold-secondary);
    text-transform: uppercase;
    font-weight: 800;
    font-size: .74rem;
    letter-spacing: 1.4px;
}
.section-block {
    margin-top: 70px;
}
.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}
.section-heading h2,
.shop-sidebar h2,
.cart-summary h2,
.checkout-form h2,
.empty-state h2,
.service-card h3,
.product-card h3,
.admin-order-card h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--gold-light);
}
.section-heading h2 {
    max-width: 760px;
    font-size: clamp(1.7rem, 3vw, 3rem);
    line-height: 1.05;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.product-card,
.service-card,
.cart-summary,
.checkout-form,
.shop-sidebar,
.product-info,
.product-media,
.empty-state,
.admin-order-card {
    background: rgba(17,17,17,.72);
    border: 1px solid rgba(212,175,55,.24);
    border-radius: 20px;
    box-shadow: 0 12px 34px rgba(0,0,0,.24);
}
.product-card {
    overflow: hidden;
    text-align: left;
    transition: transform .25s ease, border-color .25s ease;
}
.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212,175,55,.55);
}
.product-card-image {
    position: relative;
    display: block;
    padding: 12px;
    background: rgba(255,255,255,.03);
}
.product-badge {
    position: absolute;
    top: 22px;
    left: 22px;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--gold-gradient);
    color: var(--dark);
    font-weight: 800;
    font-size: .72rem;
    text-transform: uppercase;
}
.product-card-body {
    padding: 20px;
}
.product-card h3 {
    margin: 8px 0 10px;
    font-size: 1.1rem;
}
.product-card h3 a,
.cart-row h3 a {
    color: inherit;
    text-decoration: none;
}
.product-card p,
.service-card p,
.muted,
.sidebar-note p,
.cart-row p,
.checkout-form label,
.product-info .lead-time {
    color: rgba(255,255,255,.72);
}
.product-card-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
}
.product-card-foot strong,
.product-price,
.summary-total strong {
    color: var(--gold-primary);
}
.mini-btn,
.link-button {
    border: 1px solid rgba(212,175,55,.35);
    background: rgba(255,255,255,.04);
    color: var(--gold-light);
    padding: 9px 12px;
    border-radius: 999px;
    text-decoration: none;
    cursor: pointer;
}
.store-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.service-card {
    padding: 28px;
    text-align: left;
}
.service-card i {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(212,175,55,.12);
    color: var(--gold-primary);
    margin-bottom: 18px;
}
.store-newsletter-panel {
    max-width: none;
    text-align: left;
    padding: 34px;
}
.inline-form {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}
.inline-form .form-control {
    min-width: 220px;
}
.store-page-hero.compact {
    text-align: center;
    max-width: 900px;
    margin: 16px auto 46px;
}
.store-page-hero.compact .store-lead {
    margin-left: auto;
    margin-right: auto;
}
.shop-layout {
    grid-template-columns: 290px 1fr;
}
.shop-sidebar {
    padding: 24px;
    position: sticky;
    top: 108px;
}
.filter-form,
.checkout-form,
.add-cart-form {
    display: grid;
    gap: 16px;
}
.filter-form label,
.checkout-form label,
.add-cart-form label {
    display: grid;
    gap: 8px;
    font-weight: 700;
    color: rgba(255,255,255,.86);
}
.filter-form .form-control,
.checkout-form .form-control,
.add-cart-form .form-control {
    width: 100%;
}
.filter-form select,
.add-cart-form select {
    appearance: none;
}
.sidebar-note {
    margin-top: 24px;
    border-top: 1px solid rgba(212,175,55,.18);
    padding-top: 20px;
}
.results-bar {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: rgba(255,255,255,.72);
    margin-bottom: 18px;
}
.results-bar strong {
    color: var(--gold-light);
}
.product-detail {
    grid-template-columns: minmax(320px, .92fr) minmax(0, 1.08fr);
}
.product-media,
.product-info {
    padding: 24px;
    position: relative;
    text-align: left;
}
.detail-badge {
    top: 34px;
    left: 34px;
}
.product-price {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin: 12px 0;
}
.option-grid,
.field-grid.two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.option-grid label:last-child {
    grid-column: span 2;
}
.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}
.feature-list span {
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(0,230,118,.08);
    color: #b8ffd8;
    border: 1px solid rgba(0,230,118,.18);
}
.cart-layout,
.checkout-layout {
    grid-template-columns: minmax(0, 1fr) 360px;
}
.cart-table,
.cart-summary,
.checkout-form {
    padding: 24px;
}
.cart-row {
    display: grid;
    grid-template-columns: 92px 1fr 110px 110px 90px;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(212,175,55,.16);
}
.cart-row:last-of-type {
    border-bottom: 0;
}
.qty-input {
    padding: 11px 10px;
}
.summary-line,
.summary-total,
.mini-summary-line {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(212,175,55,.16);
}
.summary-total {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.18rem;
    border-bottom: 0;
    margin: 14px 0 20px;
}
.mini-summary-line small {
    display: block;
    color: rgba(255,255,255,.55);
}
.consent-check {
    display: flex !important;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 10px !important;
}
.consent-check input {
    margin-top: 5px;
}
.empty-state {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    padding: 44px;
}
.success-icon {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    border-radius: 999px;
    background: rgba(0,230,118,.12);
    color: var(--success);
    border: 1px solid rgba(0,230,118,.22);
    font-size: 1.6rem;
}
.store-footer {
    background: rgba(8,8,8,.92);
    border-top: 1px solid rgba(212,175,55,.2);
    padding: 46px 0 20px;
}
.store-footer-grid,
.store-footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}
.store-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 28px;
}
.store-footer h3 {
    color: var(--gold-light);
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 12px;
}
.store-footer a {
    display: block;
    color: rgba(255,255,255,.72);
    text-decoration: none;
    margin: 8px 0;
}
.store-footer p {
    color: rgba(255,255,255,.68);
}
.store-footer-bottom {
    border-top: 1px solid rgba(212,175,55,.14);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255,255,255,.55);
    margin-top: 34px;
    padding-top: 18px;
}
.admin-orders {
    padding: 24px;
}
.admin-order-card {
    padding: 20px;
    margin-bottom: 16px;
}
.admin-order-card h2 {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 1.1rem;
}
.admin-order-card h2 span {
    color: rgba(255,255,255,.55);
    font-family: 'Montserrat', sans-serif;
    font-size: .8rem;
}
.admin-order-card ul {
    margin: 12px 0 0 18px;
}
@media (max-width: 1060px) {
    .store-hero,
    .product-detail,
    .cart-layout,
    .checkout-layout,
    .shop-layout {
        grid-template-columns: 1fr;
    }
    .store-hero {
        min-height: auto;
    }
    .store-hero-card {
        margin: 0;
        max-width: none;
    }
    .shop-sidebar {
        position: static;
    }
    .product-grid,
    .store-service-grid,
    .store-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 860px) {
    .mobile-nav-toggle {
        display: block;
    }
    .store-nav {
        position: absolute;
        top: 82px;
        left: 14px;
        right: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        background: rgba(10,10,10,.97);
        border: 1px solid rgba(212,175,55,.24);
        border-radius: 18px;
    }
    .store-nav.is-open {
        display: flex;
    }
    .cart-pill span {
        display: none;
    }
    .store-header-inner {
        gap: 10px;
    }
    .cart-row {
        grid-template-columns: 82px 1fr;
        align-items: start;
    }
    .cart-row label,
    .cart-row strong,
    .cart-row .link-button {
        grid-column: 2;
    }
    .inline-form,
    .results-bar,
    .section-heading,
    .store-footer-bottom {
        flex-direction: column;
        align-items: stretch;
    }
}
@media (max-width: 620px) {
    .store-main {
        width: min(100% - 22px, 1180px);
        padding-top: 24px;
    }
    .product-grid,
    .store-service-grid,
    .store-footer-grid,
    .field-grid.two,
    .option-grid {
        grid-template-columns: 1fr;
    }
    .option-grid label:last-child {
        grid-column: auto;
    }
    .brand-text {
        display: none;
    }
    .store-title {
        font-size: clamp(2.1rem, 15vw, 3.4rem);
    }
    .cart-table,
    .cart-summary,
    .checkout-form,
    .product-info,
    .product-media,
    .empty-state,
    .store-newsletter-panel {
        padding: 20px;
    }
    .btn {
        width: 100%;
        margin-left: 0;
    }
    .hero-actions,
    .cart-actions {
        align-items: stretch;
    }
}

/* Printful / CSV storefront expansion */
.product-sync-pill,
.printful-note,
.printful-status-box {
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.07);
    border-radius: 999px;
    padding: .35rem .7rem;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .02em;
    margin: .35rem 0;
}
.printful-note { border-radius: 14px; padding: .7rem .9rem; }
.printful-status-box {
    display: block;
    border-radius: 18px;
    padding: 1rem;
    margin: 1rem 0;
}
.printful-status-box p { margin: .35rem 0 0; opacity: .82; }
.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin: 2rem 0;
}
.admin-tool-card { padding: 1.5rem; }
.admin-tool-card h2 { margin-top: 0; }
.stacked-form { display: grid; gap: 1rem; }
.admin-help { padding: 1.5rem; }
.table-scroll { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; min-width: 720px; }
.admin-table th,
.admin-table td { border-bottom: 1px solid rgba(255,255,255,.12); padding: .85rem; text-align: left; vertical-align: top; }
.admin-table code,
.admin-tool-card code { background: rgba(0,0,0,.25); border-radius: 6px; padding: .15rem .35rem; }
.admin-pre {
    max-height: 420px;
    overflow: auto;
    white-space: pre-wrap;
    background: rgba(0,0,0,.35);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    padding: 1rem;
    font-size: .84rem;
}
.admin-pre.compact { max-height: 150px; }
.inline-admin-form { margin-top: 1rem; }
.field-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 720px) {
    .field-grid.two { grid-template-columns: 1fr; }
    .admin-grid { grid-template-columns: 1fr; }
}
