

/* Front Page */

body {
    background: var(--ss-dark);
}

.store-page .products::before,
.store-page .products::after {
    content: none !important;
    display: none !important;
}

:root {
    --ss-dark: #0d0d0f;
    --ss-dark-soft: #16161a;
    --ss-light: #ffffff;
    --ss-muted: rgba(255, 255, 255, 0.65);
    --ss-accent: #ffffff;         
    --ss-accent-dark: #ffffff;
    --ss-font-display: 'Anton', sans-serif;
    --ss-font-body: 'Inter', sans-serif;
}

body.home {
    font-family: var(--ss-font-body);
    background: var(--ss-dark);
    color: var(--ss-light);
}

/* ---------- Shared section pieces ---------- */

.hero-section,
.features-section,
.gallery-section,
.stats-section,
.cta-section {
    padding: 90px 0;
    overflow: hidden;
}

.section-head { margin-bottom: 20px; }

.section-eyebrow,
.hero-eyebrow,
.cta-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ss-accent);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--ss-font-display);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--ss-light);
    margin: 0;
}

.section-description {
    color: var(--ss-muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* ---------- Buttons ---------- */

.theme-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.25s ease;
    font-family: var(--ss-font-body);
}

.theme-btn.primary-btn {
    background: var(--ss-light);
    border: 1px solid var(--ss-accent);
    color: var(--ss-dark);
}
.theme-btn.primary-btn:hover {
    background: var(--ss-dark);
    border-color: var(--ss-accent-dark);
    color: var(--ss-light);
}

.theme-btn.outline-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--ss-light);
}
.theme-btn.outline-btn:hover {
    border-color: var(--ss-dark);
    background: var(--ss-light);
    color: var(--ss-dark);
}

.theme-btn .bi { transition: transform 0.25s ease; }
.theme-btn:hover .bi { transform: translateX(4px); }


/* ---------- Hero Section ---------- */

.hero-section {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    height: 100vh;          
    height: 100dvh;         
    overflow: hidden;
    margin-top: -100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section > .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-photo-grid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 4px;
    z-index: 0;
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.6);
}

.hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(13, 13, 15, 0.55) 0%,
        rgba(13, 13, 15, 0.75) 60%,
        var(--ss-dark) 100%
    );
}

.hero-section .container { position: relative; z-index: 2; }

.hero-logo {
    max-width: 260px;
    height: auto;
    margin: 0 auto 24px;
    display: block;
}

.hero-tagline {
    font-family: var(--ss-font-display);
    font-size: clamp(54px, 8vw, 80px);
    line-height: 0.95;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--ss-light);
}

.hero-subtext {
    color: var(--ss-muted);
    font-size: 18px;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ss-muted);
    animation: ss-bob 2s ease-in-out infinite;
}

@keyframes ss-bob {
    0%, 100% { transform: translate(-50%, 0); }
    50%      { transform: translate(-50%, 8px); }
}

/* ---------- Partner Ticker Section ---------- */

.partner-ticker-section {
    padding: 22px 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    white-space: nowrap;
}

.partner-ticker-track {
    display: inline-flex;
    align-items: center;
    animation: ss-ticker 30s linear infinite;
}

.partner-ticker-item {
    display: inline-flex;
    align-items: center;
    font-family: var(--ss-font-display);
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ss-muted);
}

.partner-ticker-divider {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ss-accent);
    margin: 0 32px;
}

@keyframes ss-ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ---------- Features Section ---------- */

.feature-card {
    height: 100%;
    padding: 32px 26px;
    margin-bottom: 24px;
    background: var(--ss-dark-soft);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.feature-number {
    display: block;
    font-family: var(--ss-font-display);
    font-size: 15px;
    color: var(--ss-accent);
    margin-bottom: 18px;
}

.feature-title {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--ss-light);
}

.feature-text {
    color: var(--ss-muted);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* ---------- Gallery Section ---------- */

.gallery-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 24px;
}

.gallery-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.gallery-card:hover .gallery-image {
    filter: grayscale(0%);
    transform: scale(1.04);
}

.gallery-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 40px 18px 16px;
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(180deg, transparent, rgba(13, 13, 15, 0.9));
}

.gallery-credit {
    color: var(--ss-muted);
    font-size: 13px;
    margin: 8px 0 0;
}

/* ---------- Stats Section ---------- */

.stats-section {
    padding: 70px 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card { margin-bottom: 24px; }

.stat-number {
    display: block;
    font-family: var(--ss-font-display);
    font-size: clamp(40px, 5vw, 64px);
    color: var(--ss-light);
    line-height: 1;
}

.stat-label {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ss-muted);
}

/* ---------- CTA Section ---------- */

.cta-section {
    background:
        radial-gradient(ellipse at center, rgba(145, 144, 144, 0.15), transparent 70%),
        var(--ss-dark);
    padding: 110px 15px;
}

.cta-title {
    font-family: var(--ss-font-display);
    font-size: clamp(36px, 5vw, 64px);
    text-transform: uppercase;
    margin-bottom: 32px;
    color: var(--ss-light);
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- WooCommerce ---------- */

p+h2, p+header h2, p+h3, p+h4, ul+h2, ul+header h2, ul+h3, ul+h4, ol+h2, ol+header h2, ol+h3, ol+h4, table+h2, table+header h2, table+h3, table+h4, blockquote+h2, blockquote+header h2, blockquote+h3, blockquote+h4, form+h2, form+header h2, form+h3, form+h4 {
    margin-top: 0em !important;
}

ul.products li.product a .woocommerce-Price-amount,
ul.products li.product a .woocommerce-Price-currencySymbol,
ul.products li.product a .price,
ul.products li.product a .price * {
    color: #6d6d6d !important;
}

.home {
    ul, ol {
        margin: 0 0 0em 0em !important;
    }
}

.woocommerce-Price-amount .amount{
    color: #fff;
}

.home .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: 0rem;
}

/* ---------- Store Page ---------- */

.store-page .products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.store-page .products .product {
    width: 100% !important;
    margin: 0 !important;
}


/* ---------- Footer Section ---------- */

.site-footer-section {
    padding: 20px 15px 20px;
}

.home .site-footer {
    display: none !important;
}
.site-footer-brand{
    max-width: 90%;
}

.site-footer-section .site-footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer-section .site-footer-brand .site-footer-logo-wrap .site-footer-logo {
    height: 24px;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
}

.site-footer-section .site-footer-brand .site-footer-blurb {
    padding-top: 15px;
    font-size: 14px;
    color: #8a8a8a;
    max-width: 260px;
}

.site-footer-section .site-footer-column .site-footer-column-heading {
    font-family: "Inter", -apple-system, "Segoe UI", sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 18px;
}

.site-footer-section .site-footer-column .site-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-footer-section .site-footer-column .site-footer-links a {
    font-size: 14px;
    color: #b8b8b8;
    transition: color 0.2s ease;
}

.site-footer-section .site-footer-column .site-footer-links a:hover {
    color: #ffffff;
}

.site-footer-section .site-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 26px;
    font-size: 12px;
    color: #3a3a3a;
    flex-wrap: wrap;
    gap: 12px;
}

/* ---------- Responsive ---------- */

@media (max-width: 991px) {
    .hero-photo-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 1fr); }
    .section-description { margin-top: 12px; }
    .hero-content { margin-top: 100px; }
    .hero-section { margin-top: -63px; }
    .hero-scroll-indicator { display: none; }
    .features-section .col-sm-12 { margin-top: 20px; }
    .hero-section, .features-section, .gallery-section, .stats-section, .cta-section { padding: 60px 15px; }
    .site-footer-section .site-footer-top { gap: 20px; padding-bottom: 15px; }
}

@media (max-width: 767px) {
    .hero-logo { display: none; }
    .site-footer-section .site-footer-top {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        padding: 0px 15px;
    }
    .site-footer-section .site-footer-top { border-bottom: none; }
    .site-footer-section .site-footer-column .site-footer-column-heading { margin-bottom: 5px; }
    .site-footer-brand, .site-footer-column { width: 100% !important; max-width: 100% !important; }
    .site-footer-section .site-footer-column .site-footer-links { gap: 0px; }
    .site-footer-brand { width: 70% !important; }
    p { margin: 0 0 0.5em; }
    .site-footer-section .site-footer-brand .site-footer-blurb { padding-top: 10px; }
}

@media (max-width: 575px) {
    .hero-actions , .cta-actions{ max-width: 50%; margin: 0 auto; }
    .hero-subtext { font-size: 15px; line-height: 1.5; max-width: 420px; }
    .navbar .container { padding: 10px 15px 8px !important; }
    .theme-btn { padding: 14px 18px; }
}