/**
 * LC Photography Gear Landing Page
 * Served at /photography-gear/
 * @since 2.27.1
 */

:root {
    --gc-black:   #0a0a0a;
    --gc-dark:    #111111;
    --gc-white:   #ffffff;
    --gc-grey-bg: #f5f5f7;
    --gc-border:  #e0e0e5;
    --gc-text:    #1d1d1f;
    --gc-muted:   #6e6e73;
    --gc-camera:  #6f42c1;
    --gc-lens:    #17a2b8;
    --gc-mobile:  #e83e8c;
    --gc-green:   #34c759;
    --gc-amber:   #ff9500;
    --gc-red:     #ff3b30;
    --gc-blue:    #0071e3;
}

.gc-page { scroll-behavior: smooth; }

/* ── HERO ──────────────────────────────────────────────────────────────────── */
.gc-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 56vh;
    background: var(--gc-black);
}
.gc-hero-text {
    background: #000;
    display: flex;
    align-items: safe center;
    justify-content: center;
    padding: 72px 56px;
}
.gc-hero-content {
    width: 100%;
    max-width: 520px;
    text-align: center;
    color: #fff;
}
.gc-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #888;
    margin: 0 0 20px;
}
.gc-headline {
    font-size: clamp(28px, 3.2vw, 50px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 28px;
}
.gc-hero-sub {
    font-size: clamp(13px, 1.2vw, 15px);
    color: #888;
    line-height: 1.65;
    margin: 0 0 36px;
    font-weight: 400;
}
.gc-cta {
    display: inline-block;
    padding: 14px 32px;
    background: #fff;
    color: #000;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}
.gc-cta:hover { opacity: 0.85; text-decoration: none; color: #000; }

.gc-hero-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    background: #000;
    overflow: hidden;
}
.gc-collage-cell {
    background-size: cover;
    background-position: center;
    background-color: #1a1a1a;
    min-height: 200px;
    transition: transform 0.6s ease;
}
.gc-collage-cell:hover { transform: scale(1.04); }

/* ── STATS BAND ─────────────────────────────────────────────────────────────── */
.gc-stats-band {
    background: var(--gc-grey-bg);
    border-bottom: 1px solid var(--gc-border);
    padding: 20px 40px;
}
.gc-stats-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.gc-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.gc-stat strong {
    font-size: 22px;
    font-weight: 700;
    color: var(--gc-text);
    line-height: 1;
}
.gc-stat span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gc-muted);
}
.gc-stat--cameras strong { color: var(--gc-camera); }
.gc-stat--lenses  strong { color: var(--gc-lens); }
.gc-stat--mobile  strong { color: var(--gc-mobile); }
.gc-stat-sep { color: #ccc; font-size: 18px; line-height: 1; }

/* ── SUB-NAV ─────────────────────────────────────────────────────────────────── */
.gc-subnav {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gc-border);
    position: sticky;
    top: 0;
    z-index: 100;
}
.gc-subnav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 52px;
    display: flex;
    gap: 0;
    align-items: stretch;
}
.gc-subnav-link {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gc-muted);
    text-decoration: none;
    padding: 16px 22px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
}
.gc-subnav-link:hover,
.gc-subnav-link.active {
    color: var(--gc-text);
    border-bottom-color: var(--gc-text);
    text-decoration: none;
}

/* ── CONTAINER ───────────────────────────────────────────────────────────────── */
.gc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 52px;
}

/* ── INTRO ───────────────────────────────────────────────────────────────────── */
.gc-section-intro {
    padding: 52px 0 44px;
    border-bottom: 1px solid var(--gc-border);
}
.gc-intro-text {
    font-size: clamp(17px, 1.55vw, 22px);
    line-height: 1.7;
    margin: 0;
}
.gc-bold       { font-weight: 700; color: var(--gc-text); }
.gc-muted-text { color: var(--gc-muted); font-weight: 400; }

/* ── SCROLLING STRIPS ────────────────────────────────────────────────────────── */
.gc-strips-wrap {
    display: flex;
    flex-direction: column;
    gap: 3px;
    background: var(--gc-dark);
    overflow: hidden;
}
.gc-strip {
    height: 200px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gc-strip::before,
.gc-strip::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}
.gc-strip::before {
    left: 0;
    background: linear-gradient(to right, rgba(17,17,17,0.9) 0%, transparent 100%);
}
.gc-strip::after {
    right: 0;
    background: linear-gradient(to left, rgba(17,17,17,0.9) 0%, transparent 100%);
}
.gc-track {
    display: flex;
    gap: 3px;
    height: 100%;
    width: max-content;
    will-change: transform;
}
.gc-track:hover { animation-play-state: paused; }
.gc-track-rtl { animation: gc-scroll-rtl 180s linear infinite; }
.gc-track-ltr { animation: gc-scroll-ltr 200s linear infinite; }
@keyframes gc-scroll-rtl {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@keyframes gc-scroll-ltr {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}
.gc-strip-item {
    flex: 0 0 auto;
    height: 100%;
    width: 290px;
    background-size: cover;
    background-position: center;
    background-color: #1a1a1a;
    position: relative;
}
.gc-strip-label {
    position: absolute;
    bottom: 10px;
    left: 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    background: rgba(0,0,0,0.5);
    padding: 3px 8px;
    border-radius: 3px;
}

/* ── GRID SECTION ────────────────────────────────────────────────────────────── */
.gc-section-grid { padding: 64px 0 80px; }

.gc-type-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.gc-type-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 24px;
    border: 1.5px solid var(--gc-border);
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    color: var(--gc-muted);
    cursor: pointer;
    transition: all 0.2s ease;
}
.gc-type-tab:hover { border-color: #999; color: var(--gc-text); }
.gc-type-tab.active {
    background: var(--gc-text);
    border-color: var(--gc-text);
    color: #fff;
}
.gc-tab-count { font-size: 11px; font-weight: 700; opacity: 0.7; }

.gc-brand-pills {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.gc-brand-pill {
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid var(--gc-border);
    background: #fff;
    font-size: 12px;
    font-weight: 500;
    color: var(--gc-muted);
    cursor: pointer;
    transition: all 0.15s ease;
}
.gc-brand-pill:hover { border-color: #999; color: var(--gc-text); }
.gc-brand-pill.active {
    background: var(--gc-text);
    border-color: var(--gc-text);
    color: #fff;
}

.gc-grid-count { font-size: 13px; color: var(--gc-muted); margin: 0 0 28px; }
.gc-grid-count strong { color: var(--gc-text); }

.gc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Card */
.gc-card {
    background: #fff;
    border: 1px solid var(--gc-border);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
    text-decoration: none;
    color: inherit;
}
.gc-card-img {
    position: relative;
    height: 180px;
    background-size: cover;
    background-position: center;
    background-color: #f0f0f5;
    overflow: hidden;
}
.gc-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.25) 100%);
}
.gc-type-badge {
    position: absolute;
    top: 10px; left: 10px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    padding: 3px 9px;
    border-radius: 10px;
}
.gc-type-badge--camera { background: var(--gc-camera); }
.gc-type-badge--lens   { background: var(--gc-lens); }
.gc-type-badge--mobile { background: var(--gc-mobile); }

.gc-score-ring {
    position: absolute;
    top: 10px; right: 10px;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.gc-score-num {
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.5px;
}
.gc-score-label {
    font-size: 7px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-top: 1px;
}
.gc-score-high .gc-score-num { color: var(--gc-green); }
.gc-score-mid  .gc-score-num { color: var(--gc-amber); }
.gc-score-low  .gc-score-num { color: var(--gc-red); }

.gc-card-body {
    padding: 16px 18px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.gc-card-brand {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gc-muted);
    margin: 0 0 5px;
}
.gc-card-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--gc-text);
    margin: 0 0 5px;
    line-height: 1.3;
}
.gc-card-tagline {
    font-size: 12px;
    color: var(--gc-muted);
    margin: 0 0 14px;
    line-height: 1.4;
    flex: 1;
}
.gc-score-bars { display: flex; flex-direction: column; gap: 5px; }
.gc-score-row {
    display: grid;
    grid-template-columns: 68px 1fr 28px;
    align-items: center;
    gap: 6px;
}
.gc-score-row-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--gc-muted);
}
.gc-bar-track {
    height: 5px;
    background: #eee;
    border-radius: 3px;
    overflow: hidden;
}
.gc-bar-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.4s ease;
}
.gc-bar-fill--features    { background: #0071e3; }
.gc-bar-fill--performance { background: #34c759; }
.gc-bar-fill--durability  { background: #ff9500; }
.gc-bar-fill--price       { background: #af52de; }
.gc-bar-fill--usability   { background: #32ade6; }
.gc-score-row-val {
    font-size: 10px;
    font-weight: 700;
    color: var(--gc-text);
    text-align: right;
}
.gc-awards-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 12px;
    font-size: 10px;
    font-weight: 600;
    color: var(--gc-muted);
}
.gc-awards-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gc-amber);
    flex-shrink: 0;
}

/* ── SPOTLIGHT ───────────────────────────────────────────────────────────────── */
.gc-section-spotlight {
    padding: 72px 0 80px;
    background: var(--gc-grey-bg);
    border-top: 1px solid var(--gc-border);
}
.gc-spotlight-heading {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 800;
    text-align: center;
    margin: 0 0 14px;
    letter-spacing: -0.025em;
    color: var(--gc-text);
}
.gc-spotlight-sub {
    font-size: clamp(14px, 1.3vw, 17px);
    color: var(--gc-muted);
    text-align: center;
    margin: 0 auto 52px;
    max-width: 580px;
    line-height: 1.6;
}
.gc-spotlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.gc-spotlight-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--gc-border);
    display: flex;
    flex-direction: column;
}
.gc-spotlight-img {
    height: 240px;
    background-size: cover;
    background-position: center;
    background-color: #1a1a1a;
    position: relative;
}
.gc-spotlight-award-badge {
    position: absolute;
    bottom: 14px; left: 14px;
    background: var(--gc-amber);
    color: #000;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: 12px;
}
.gc-spotlight-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.gc-spotlight-brand {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gc-muted);
    margin: 0 0 6px;
}
.gc-spotlight-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--gc-text);
    margin: 0 0 6px;
    line-height: 1.2;
}
.gc-spotlight-tagline {
    font-size: 13px;
    color: var(--gc-muted);
    margin: 0 0 20px;
}
.gc-spotlight-score {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.gc-spotlight-score-ring {
    width: 68px; height: 68px;
    border-radius: 50%;
    border: 3px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-shrink: 0;
}
.gc-spotlight-score-ring--high { border-color: var(--gc-green); }
.gc-spotlight-score-ring--mid  { border-color: var(--gc-amber); }
.gc-spotlight-score-ring--low  { border-color: var(--gc-red); }
.gc-spotlight-score-num {
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
}
.gc-spotlight-score-ring--high .gc-spotlight-score-num { color: var(--gc-green); }
.gc-spotlight-score-ring--mid  .gc-spotlight-score-num { color: var(--gc-amber); }
.gc-spotlight-score-ring--low  .gc-spotlight-score-num { color: var(--gc-red); }
.gc-spotlight-score-sub {
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--gc-muted);
    margin-top: 2px;
}
.gc-spotlight-score-label { font-size: 12px; color: var(--gc-muted); line-height: 1.5; }
.gc-spotlight-score-label strong { display: block; font-size: 14px; color: var(--gc-text); margin-bottom: 2px; }
.gc-features-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.gc-features-list li {
    font-size: 12px;
    color: var(--gc-text);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}
.gc-features-list li::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--gc-blue);
    margin-top: 5px;
    flex-shrink: 0;
}

/* ── FOOTER BAND ─────────────────────────────────────────────────────────────── */
.gc-footer-band {
    background: var(--gc-black);
    padding: 80px 0;
    text-align: center;
}
.gc-footer-band .gc-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.gc-footer-quote {
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.6);
    max-width: 640px;
    line-height: 1.6;
    margin: 0 0 32px;
}
.gc-footer-cta {
    display: inline-block;
    padding: 16px 40px;
    background: #fff;
    color: #000;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.2s ease;
}
.gc-footer-cta:hover { opacity: 0.85; text-decoration: none; color: #000; }

/* ── PAGINATION ──────────────────────────────────────────────────────────────── */
.gc-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    padding: 40px 0 0;
}
.gc-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 8px;
    border: 1.5px solid var(--gc-border);
    background: #fff;
    color: var(--gc-muted);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s ease;
    white-space: nowrap;
}
.gc-page-btn:hover { border-color: #999; color: var(--gc-text); text-decoration: none; }
.gc-page-btn.gc-page-current {
    background: var(--gc-text);
    border-color: var(--gc-text);
    color: #fff;
    cursor: default;
}
.gc-page-prev, .gc-page-next { padding: 0 16px; }
.gc-page-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    font-size: 13px;
    color: var(--gc-muted);
}

/* ── EMPTY STATE ─────────────────────────────────────────────────────────────── */
.gc-empty-state {
    padding: 80px 0;
    text-align: center;
    color: var(--gc-muted);
    font-size: 16px;
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .gc-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .gc-hero { grid-template-columns: 1fr; }
    .gc-hero-collage { display: none; }
    .gc-hero-text { padding: 52px 32px; }
    .gc-grid { grid-template-columns: repeat(2, 1fr); }
    .gc-spotlight-grid { grid-template-columns: 1fr 1fr; }
    .gc-container { padding: 0 24px; }
    .gc-subnav-inner { padding: 0 24px; }
}
@media (max-width: 600px) {
    .gc-grid { grid-template-columns: 1fr; }
    .gc-spotlight-grid { grid-template-columns: 1fr; }
}
