@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Work+Sans:wght@300;400;500;600;700&display=swap');

/* ===== Color Variables ===== */
:root {
    --gs-primary: #162d50;
    --gs-primary-dark: #0a1628;
    --gs-primary-light: #1a365d;
    --gs-accent: #c9a227;
    --gs-accent-light: #d4b445;
    --gs-ink: #0f172a;
    --gs-muted: #64748b;
    --gs-bg: #f0f4f8;
    --gs-bg-light: #f8fafc;
    --gs-border: #e2e8f0;
    --gs-white: #ffffff;
}

.gs-product,
.gs-archive,
.gs-home {
    font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif;
}

/* ===== Body & Container ===== */
body.gs-theme {
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 8px,
            rgba(22, 45, 80, 0.04) 8px,
            rgba(22, 45, 80, 0.04) 9px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 8px,
            rgba(22, 45, 80, 0.04) 8px,
            rgba(22, 45, 80, 0.04) 9px
        ),
        linear-gradient(180deg, #e3eaf3 0%, #edf2f7 50%, #f8fafc 100%);
    background-attachment: fixed;
    color: var(--gs-ink);
}

body.gs-theme .site-content,
body.gs-theme .content-area,
body.gs-theme .site-main,
body.gs-theme .ast-container,
body.gs-theme .entry-content {
    background: transparent;
    color: var(--gs-ink);
}

body.gs-theme .entry-content a {
    color: var(--gs-primary);
}

body.gs-theme .entry-title,
body.gs-theme .entry-header,
body.gs-theme .entry-header * {
    color: var(--gs-primary-dark);
}

body.gs-homepage .site-content,
body.gs-homepage .content-area,
body.gs-homepage .site-main {
    background: transparent;
}

body.gs-homepage .entry-title {
    display: none;
}

/* ===== Product Detail Page ===== */
.gs-product {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.25rem 4rem;
    color: var(--gs-ink);
}

/* ===== Language Bar ===== */
.gs-langbar {
    background: var(--gs-primary-dark);
    color: var(--gs-white);
    font-size: 12px;
}

.gs-langbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.45rem 1.25rem;
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

.gs-lang-link {
    color: var(--gs-white);
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.2s ease;
}

.gs-lang-link:hover {
    color: var(--gs-accent);
    opacity: 1;
}

.gs-lang-link.is-active {
    opacity: 1;
    font-weight: 600;
    color: var(--gs-accent);
}

/* ===== Home Page Hero ===== */
.gs-home-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2.5rem;
    align-items: center;
    padding: 3.5rem 0 2.5rem;
    position: relative;
}

.gs-home {
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 8px,
            rgba(22, 45, 80, 0.04) 8px,
            rgba(22, 45, 80, 0.04) 9px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 8px,
            rgba(22, 45, 80, 0.04) 8px,
            rgba(22, 45, 80, 0.04) 9px
        ),
        linear-gradient(180deg, #e3eaf3 0%, #edf2f7 50%, #f8fafc 100%);
    padding: 1.25rem 0 4rem;
    color: var(--gs-ink);
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.gs-home-section,
.gs-home-hero,
.gs-home-cta {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.gs-home::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -200px;
    top: -200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0) 70%);
    pointer-events: none;
}

.gs-home::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    left: -300px;
    bottom: -300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22, 45, 80, 0.08) 0%, rgba(22, 45, 80, 0) 70%);
    pointer-events: none;
}

.gs-hero-content {
    display: grid;
    gap: 1rem;
}

.gs-hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 11px;
    font-weight: 600;
    color: var(--gs-accent);
}

.gs-hero-title {
    font-family: "Bebas Neue", "Work Sans", sans-serif;
    font-size: clamp(3rem, 5vw, 4.6rem);
    letter-spacing: 0.04em;
    margin: 0;
    color: var(--gs-primary-dark);
    background: linear-gradient(135deg, var(--gs-primary-dark) 0%, var(--gs-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gs-hero-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gs-muted);
    margin: 0;
}

.gs-hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.gs-hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.gs-stat {
    display: grid;
    gap: 0.2rem;
    font-size: 12px;
    color: var(--gs-muted);
}

.gs-stat strong {
    font-size: 1.4rem;
    color: var(--gs-primary);
    font-weight: 700;
}

/* ===== Hero Visual Card ===== */
.gs-hero-visual {
    position: relative;
    min-height: 360px;
    border-radius: 24px;
    background: linear-gradient(140deg, var(--gs-primary-dark) 0%, var(--gs-primary) 50%, var(--gs-primary-light) 100%);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(10, 22, 40, 0.35);
}

.gs-hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 20%, rgba(201, 162, 39, 0.4), transparent 55%);
    opacity: 0.8;
}

.gs-hero-plate {
    position: absolute;
    inset: 18% 14%;
    border-radius: 32px;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.2);
}

.gs-hero-card {
    position: absolute;
    padding: 0.75rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--gs-primary-dark);
    font-size: 12px;
    display: grid;
    gap: 0.25rem;
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
    border-left: 3px solid var(--gs-accent);
}

.gs-hero-card strong {
    font-size: 14px;
    color: var(--gs-primary);
}

.gs-card-a {
    top: 16%;
    left: 10%;
}

.gs-card-b {
    bottom: 18%;
    left: 12%;
}

.gs-card-c {
    top: 38%;
    right: 12%;
}

/* ===== Section Headers ===== */
.gs-home-section {
    margin-top: 3rem;
    position: relative;
}

.gs-section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gs-border);
}

.gs-section-head h2 {
    font-family: "Bebas Neue", "Work Sans", sans-serif;
    letter-spacing: 0.04em;
    font-size: 2.1rem;
    margin: 0;
    color: var(--gs-primary-dark);
    position: relative;
}

.gs-section-head h2::after {
    content: "";
    position: absolute;
    bottom: -0.75rem;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gs-accent);
    border-radius: 2px;
}

.gs-link {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gs-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.gs-link:hover {
    color: var(--gs-accent);
}

/* ===== CTA Section ===== */
.gs-home-cta {
    margin-top: 3.5rem;
    background: linear-gradient(135deg, var(--gs-primary-dark) 0%, var(--gs-primary) 100%);
    color: var(--gs-white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 25px 50px rgba(10, 22, 40, 0.4);
    position: relative;
    overflow: hidden;
}

.gs-home-cta::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -100px;
    top: -100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.gs-home-cta-inner {
    display: grid;
    gap: 0.75rem;
    max-width: 700px;
    position: relative;
    z-index: 1;
}

.gs-home-cta h2 {
    color: var(--gs-white);
    font-size: 1.75rem;
}

.gs-home-cta p {
    color: rgba(255, 255, 255, 0.85);
}

/* ===== Buttons ===== */
.gs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.gs-btn-primary {
    background: var(--gs-primary);
    color: var(--gs-white);
    border-color: var(--gs-primary);
}

.gs-btn-primary:hover {
    background: var(--gs-accent);
    border-color: var(--gs-accent);
    color: var(--gs-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 162, 39, 0.3);
}

.gs-btn-outline {
    border: 2px solid var(--gs-primary);
    color: var(--gs-primary);
    background: var(--gs-white);
}

.gs-btn-outline:hover {
    background: var(--gs-primary);
    color: var(--gs-white);
    transform: translateY(-2px);
}

.gs-home-cta .gs-btn-primary {
    background: var(--gs-accent);
    color: var(--gs-primary-dark);
    border-color: var(--gs-accent);
}

.gs-home-cta .gs-btn-primary:hover {
    background: var(--gs-white);
    border-color: var(--gs-white);
    color: var(--gs-primary);
}

/* ===== Product Gallery ===== */
.gs-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 2.5rem;
    align-items: start;
}

.gs-gallery .gs-main {
    background: var(--gs-white);
    border: 1px solid var(--gs-border);
    border-radius: 16px;
    padding: 1.5rem;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(10, 22, 40, 0.06);
}

.gs-main img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.gs-placeholder {
    color: var(--gs-muted);
    font-size: 14px;
}

.gs-thumbs {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.gs-thumb {
    border: 2px solid var(--gs-border);
    background: var(--gs-white);
    border-radius: 10px;
    padding: 4px;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gs-thumb:hover {
    border-color: var(--gs-primary);
}

.gs-thumb[aria-pressed="true"] {
    border-color: var(--gs-accent);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

.gs-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

/* ===== Product Summary ===== */
.gs-summary {
    position: sticky;
    top: 24px;
    background: var(--gs-white);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--gs-border);
    box-shadow: 0 4px 20px rgba(10, 22, 40, 0.06);
}

.gs-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.gs-badge {
    background: var(--gs-primary);
    color: var(--gs-white);
    padding: 0.3rem 0.75rem;
    font-size: 11px;
    border-radius: 999px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 600;
}

.gs-title {
    font-size: 1.75rem;
    margin: 0 0 0.5rem 0;
    color: var(--gs-primary-dark);
    font-weight: 700;
}

.gs-summary-text {
    margin: 0 0 1rem 0;
    color: var(--gs-muted);
    line-height: 1.6;
}

.gs-price {
    font-size: 1.5rem;
    color: var(--gs-accent);
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gs-price::before {
    content: "";
    width: 4px;
    height: 24px;
    background: var(--gs-accent);
    border-radius: 2px;
}

.gs-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.gs-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: grid;
    gap: 0.5rem;
}

.gs-highlights li {
    position: relative;
    padding-left: 1.75rem;
    color: var(--gs-ink);
}

.gs-highlights li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gs-accent);
    font-weight: 700;
}

.gs-meta {
    display: grid;
    gap: 0.5rem;
    font-size: 14px;
    color: var(--gs-muted);
    padding-top: 1rem;
    border-top: 1px solid var(--gs-border);
}

.gs-meta span {
    color: var(--gs-primary);
    font-weight: 600;
}

/* ===== Product Sections ===== */
.gs-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gs-border);
}

.gs-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--gs-primary-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.gs-section h2::before {
    content: "";
    width: 4px;
    height: 24px;
    background: var(--gs-accent);
    border-radius: 2px;
}

.gs-feature-list {
    columns: 2;
    column-gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.gs-feature-list li {
    break-inside: avoid;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gs-ink);
}

.gs-feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--gs-accent);
    font-weight: 700;
    font-size: 1.2em;
}

/* ===== Spec Table ===== */
.gs-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--gs-border);
    border-radius: 12px;
    background: var(--gs-white);
}

.gs-spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.gs-spec-table th,
.gs-spec-table td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--gs-border);
    text-align: left;
}

.gs-spec-table thead th {
    background: linear-gradient(135deg, var(--gs-primary-dark) 0%, var(--gs-primary) 100%);
    color: var(--gs-white);
    font-weight: 600;
}

.gs-spec-table tbody tr:hover {
    background: rgba(201, 162, 39, 0.05);
}

.gs-spec-table tbody tr:last-child td {
    border-bottom: none;
}

/* ===== Documents ===== */
.gs-docs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.gs-doc {
    border: 1px solid var(--gs-border);
    border-radius: 12px;
    padding: 1.25rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: var(--gs-ink);
    background: var(--gs-white);
    transition: all 0.2s ease;
    border-left: 3px solid var(--gs-primary);
}

.gs-doc:hover {
    border-left-color: var(--gs-accent);
    box-shadow: 0 8px 24px rgba(10, 22, 40, 0.1);
    transform: translateY(-2px);
}

.gs-doc-name {
    font-weight: 600;
    color: var(--gs-primary-dark);
}

.gs-doc-action {
    font-size: 13px;
    color: var(--gs-accent);
    font-weight: 600;
}

.gs-muted {
    color: var(--gs-muted);
}

/* ===== Archive Page ===== */
.gs-archive {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.25rem 4rem;
    color: var(--gs-ink);
}

.gs-archive-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gs-border);
}

.gs-archive-title {
    font-size: 2.25rem;
    margin: 0 0 0.25rem 0;
    color: var(--gs-primary-dark);
    font-weight: 700;
}

.gs-archive-subtitle {
    margin: 0;
    color: var(--gs-muted);
    font-size: 14px;
}

.gs-archive-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.gs-sort {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gs-sort label {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gs-muted);
    font-weight: 600;
}

.gs-sort select {
    border: 1px solid var(--gs-border);
    border-radius: 10px;
    padding: 0.45rem 0.75rem;
    font-size: 14px;
    background: var(--gs-white);
    color: var(--gs-primary-dark);
    min-width: 180px;
}

/* ===== Product Grid ===== */
.gs-archive-grid,
.gs-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.75rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* ===== Product Cards ===== */
.gs-card {
    border: 1px solid rgba(22, 45, 80, 0.1);
    border-radius: 12px;
    overflow: hidden;
    background: var(--gs-white);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: all 0.35s ease;
    box-shadow:
        0 1px 3px rgba(22, 45, 80, 0.06),
        0 4px 12px rgba(22, 45, 80, 0.04);
    position: relative;
}

.gs-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gs-primary), var(--gs-primary-light), var(--gs-accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gs-card:hover {
    box-shadow:
        0 4px 12px rgba(22, 45, 80, 0.1),
        0 12px 32px rgba(22, 45, 80, 0.12);
    transform: translateY(-4px);
    border-color: rgba(22, 45, 80, 0.15);
}

.gs-card:hover::before {
    opacity: 1;
}

.gs-card-media {
    background:
        radial-gradient(circle at 50% 50%, rgba(22, 45, 80, 0.02) 0%, transparent 70%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 6px,
            rgba(22, 45, 80, 0.015) 6px,
            rgba(22, 45, 80, 0.015) 7px
        ),
        linear-gradient(180deg, #f5f8fb 0%, #eef3f8 100%);
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0.5rem;
}

.gs-card-media img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.08));
}

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

.gs-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
    background:
        linear-gradient(180deg, rgba(248, 250, 252, 0.5) 0%, var(--gs-white) 100%);
    position: relative;
}

.gs-card-body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, rgba(22, 45, 80, 0.08) 50%, transparent 90%);
}

.gs-card-title {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gs-primary-dark);
    line-height: 1.45;
    transition: color 0.2s ease;
}

.gs-card:hover .gs-card-title {
    color: var(--gs-primary);
}

.gs-card-price {
    color: var(--gs-accent);
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 0 1px rgba(201, 162, 39, 0.3);
}

.gs-card-meta {
    font-size: 12px;
    color: var(--gs-muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.gs-card-meta::before {
    content: "";
    width: 4px;
    height: 4px;
    background: var(--gs-accent);
    border-radius: 50%;
    opacity: 0.7;
}

.gs-card-cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.25rem;
    border-radius: 8px;
    border: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--gs-white);
    background: linear-gradient(135deg, var(--gs-primary) 0%, var(--gs-primary-light) 100%);
    box-shadow:
        0 2px 4px rgba(22, 45, 80, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.25s ease;
    text-transform: uppercase;
}

.gs-card-cta:hover,
.gs-card:hover .gs-card-cta {
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 6px,
            rgba(255, 255, 255, 0.08) 6px,
            rgba(255, 255, 255, 0.08) 7px
        ),
        linear-gradient(135deg, #c9a227 0%, #d9bc4a 50%, #c9a227 100%) !important;
    color: var(--gs-primary-dark) !important;
    box-shadow:
        0 4px 12px rgba(201, 162, 39, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-1px);
}

.gs-pagination {
    margin-top: 2.5rem;
}

/* ===== Category Pills ===== */
.gs-category-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.gs-category-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 2px solid var(--gs-border);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    color: var(--gs-primary);
    background: var(--gs-white);
    transition: all 0.2s ease;
}

.gs-category-pill:hover {
    border-color: var(--gs-accent);
    background: var(--gs-accent);
    color: var(--gs-primary-dark);
}

.gs-category-card .gs-card-cta {
    border-color: var(--gs-primary);
}

.ast-header-break-point .gs-archive-grid,
.ast-header-break-point .gs-category-grid {
    grid-template-columns: 1fr !important;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
    .gs-hero {
        grid-template-columns: 1fr;
    }

    .gs-home-hero {
        grid-template-columns: 1fr;
    }

    .gs-summary {
        position: static;
    }

    .gs-feature-list {
        columns: 1;
    }

    .gs-archive-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .gs-archive-actions,
    .gs-sort {
        width: 100%;
    }

    .gs-sort select {
        width: 100%;
    }

    .gs-archive-grid,
    .gs-category-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1.25rem;
    }

    .gs-archive-grid .gs-card,
    .gs-category-grid .gs-card {
        width: 100%;
        max-width: none;
        margin: 0;
    }

    .gs-archive-grid .gs-card-media,
    .gs-category-grid .gs-card-media {
        aspect-ratio: 4 / 3;
        min-height: 180px;
    }

    .gs-archive-grid .gs-card-media img,
    .gs-category-grid .gs-card-media img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

@media (max-width: 640px) {
    .gs-archive-grid,
    .gs-category-grid {
        grid-template-columns: 1fr;
    }

    .gs-home-cta {
        padding: 2rem 1.5rem;
    }
}
