/* Pixel Perfect Styling following Screenshot 1 */

:root {
    --bg-dark: #000000;
    --bg-gray: #555651;
    --accent-red: #d32f2f;
    --text-light: #f2f2eb;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
}

.fw-black { font-weight: 900; }

/* Navbar */
.navbar {
    background-color: transparent;
    transition: background 0.3s;
    padding: 1.5rem 0;
}
.navbar.scrolled {
    background-color: rgba(0,0,0,0.9);
    padding: 0.8rem 0;
}
.nav-link {
    color: white !important;
    font-size: 0.75rem;
    font-weight: 700;
    margin: 0 10px;
    letter-spacing: 1px;
}

/* Hero */
.hero-section {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7));
}
.hero-content h1 {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -2px;
    z-index: 2;
    position: relative;
}
.hero-sub {
    z-index: 2;
    position: relative;
    margin-top: 3rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.hero-divider {
    width: 40px;
    height: 1px;
    background: white;
}

/* Grid System (Screenshot 1 Layout) */
.custom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    padding: 4px;
}
.grid-item {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.grid-item:hover img { transform: scale(1.05); }
.grid-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.grid-item.tall { grid-row: span 2; aspect-ratio: auto; }
.grid-item.wide { grid-column: span 2; }

/* Sections */
.section-title {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.5rem;
}
.arsenal-style-section { background: var(--bg-gray); }
.bg-light-gray { background: #f2f2eb; }

.news-heading {
    font-weight: 900;
    font-size: 1.8rem;
    line-height: 1.1;
}
.grayscale { filter: grayscale(100%); transition: 0.3s; }
.grayscale:hover { filter: grayscale(0%); }

/* Split Section */
.split-left { 
    background-color: #383934; 
    flex: 1; min-width: 300px; min-height: 500px;
}
.split-right { 
    background-color: #6a6b65; 
    flex: 1; min-width: 300px; min-height: 500px;
}
.form-control {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    border-radius: 0;
}
.form-control:focus {
    background: rgba(255,255,255,0.1);
    border-color: white;
    color: white;
}

/* Animations */
.reveal { opacity: 0; }

/* Responsive */
@media (max-width: 992px) {
    .custom-grid { grid-template-columns: 1fr; }
    .grid-item.wide { grid-column: span 1; }
    .grid-item.tall { grid-row: span 1; height: 300px; }
}

/* Inner page baseline */
.inner-page-main {
    padding-top: 110px;
}

/* About page */
.section-dark {
    background: #060606;
    color: var(--text-light);
}

.section-light {
    background: #f2f2eb;
    color: #111;
}

.about-hero,
.about-logos,
.about-pillars,
.about-awards {
    padding: 5rem 0;
}

.about-kicker {
    color: #d87474;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12rem;
}

.about-hero h1 {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.05;
    max-width: 980px;
}

.about-hero-image {
    min-height: 420px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-hero-image:hover img {
    transform: scale(1.04);
}

.about-copy p {
    margin-bottom: 1.2rem;
    color: rgba(242, 242, 235, 0.86);
    line-height: 1.8;
    font-size: 0.95rem;
}

.section-head h2 {
    font-size: clamp(1.6rem, 3.4vw, 2.7rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0.65rem;
}

.section-subtitle {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(17, 17, 17, 0.65);
}

.logo-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(120px, 1fr));
    gap: 1rem;
    align-items: center;
}

.logo-item {
    background: #fff;
    border: 1px solid #ececec;
    min-height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.logo-item img {
    max-width: 92px;
    max-height: 92px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.pillar-card {
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 2rem 1.7rem;
}

.pillar-icon,
.award-icon {
    font-size: 1.6rem;
    color: #d87474;
    display: inline-flex;
    margin-bottom: 0.9rem;
}

.pillar-card h3,
.award-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
}

.pillar-card p {
    color: rgba(242, 242, 235, 0.78);
    margin: 0;
    line-height: 1.75;
    font-size: 0.92rem;
}

.award-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    padding: 1.5rem;
}

.award-card p {
    margin: 0;
    color: rgba(17, 17, 17, 0.75);
    line-height: 1.7;
    font-size: 0.92rem;
}

@media (max-width: 991px) {
    .inner-page-main {
        padding-top: 96px;
    }

    .about-hero,
    .about-logos,
    .about-pillars,
    .about-awards {
        padding: 3.5rem 0;
    }

    .logo-strip {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
    }
}

/* Contact page */
.contact-page {
    padding: 5rem 0 4rem;
    background: linear-gradient(180deg, #f7f7f9 0%, #f1f2f6 100%);
}

.contact-main-title {
    color: #171717;
    font-size: clamp(2rem, 4vw, 3.35rem);
    font-weight: 900;
    line-height: 1.05;
    max-width: 560px;
}

.contact-intro {
    color: rgba(20, 20, 20, 0.74);
    max-width: 620px;
    line-height: 1.8;
}

.contact-detail-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-detail-icon {
    width: 52px;
    height: 52px;
    background: #8f2f2f;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-detail-item .label {
    margin: 0;
    color: rgba(20, 20, 20, 0.6);
    font-size: 0.84rem;
}

.contact-detail-item .value {
    margin: 0.15rem 0 0;
    color: #161616;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.01rem;
}

.contact-form-card {
    background: #fff;
    border-top: 3px solid #8f2f2f;
    box-shadow: 0 16px 38px rgba(15, 18, 40, 0.12);
    padding: 2.1rem 1.7rem;
}

.form-kicker {
    color: #8f2f2f;
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08rem;
}

.contact-form-card h2 {
    color: #171717;
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    font-weight: 900;
    margin: 0;
}

.contact-input {
    background: #f6f6f8;
    border: 1px solid #e3e4eb;
    color: #111;
}

.contact-input::placeholder {
    color: #8c8c95;
}

.contact-input:focus {
    background: #fff;
    color: #111;
    border-color: #8f2f2f;
    box-shadow: none;
}

.contact-page .btn-danger {
    background-color: #8f2f2f;
    border-color: #8f2f2f;
    font-weight: 700;
    letter-spacing: 0.02rem;
}

.contact-page .btn-danger:hover,
.contact-page .btn-danger:focus {
    background-color: #762727;
    border-color: #762727;
}

.contact-page .btn-danger.is-loading {
    opacity: 0.9;
    cursor: not-allowed;
}

.contact-map-section iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

@media (max-width: 991px) {
    .contact-page {
        padding: 3.5rem 0 2.75rem;
    }

    .contact-detail-item .value {
        font-size: 1.04rem;
    }

    .contact-form-card {
        padding: 1.4rem;
    }

    .contact-map-section iframe {
        height: 330px;
    }
}

/* Contact page v2 (new storefront contact template) */
.contact-v2-page {
    background:
        radial-gradient(circle at 15% -10%, rgba(214, 0, 0, 0.07), transparent 28%),
        radial-gradient(circle at 85% -15%, rgba(17, 24, 39, 0.08), transparent 32%),
        linear-gradient(180deg, #f5f7fb 0%, #eef1f6 100%);
}

.contact-v2-shell {
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0.75rem;
    padding: 0;
}

.contact-v2-hero {
    background: linear-gradient(135deg, #111418 0%, #1a1f28 68%, #12161d 100%);
    border: 1px solid #222935;
    border-radius: 0.8rem;
    padding: 1.6rem;
    box-shadow: 0 24px 52px rgba(10, 14, 28, 0.24);
}

.contact-v2-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(34px);
    opacity: 0.38;
}

.contact-v2-hero-glow-a {
    width: 220px;
    height: 220px;
    background: #d60000;
    top: -100px;
    right: -40px;
}

.contact-v2-hero-glow-b {
    width: 190px;
    height: 190px;
    background: #1f4f89;
    bottom: -90px;
    left: -40px;
}

.contact-v2-kicker {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    font-weight: 700;
}

.contact-v2-title {
    color: #fff;
    font-size: clamp(1.75rem, 3.5vw, 2.55rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.contact-v2-subtitle {
    color: rgba(255, 255, 255, 0.82);
    max-width: 760px;
    line-height: 1.78;
    font-size: 0.95rem;
}

.contact-v2-quick-intents {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.contact-v2-quick-intents span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
    font-size: 0.76rem;
    font-weight: 600;
}

.contact-v2-stat-grid {
    display: grid;
    gap: 0.7rem;
}

.contact-v2-stat-grid article {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.55rem;
    padding: 0.75rem 0.8rem;
}

.contact-v2-stat-grid h2 {
    margin: 0 0 0.2rem;
    color: #fff;
    font-size: 1.02rem;
    font-weight: 800;
}

.contact-v2-stat-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.76rem;
}

.contact-v2-side {
    background: #ffffff;
    border: 1px solid #e6eaf3;
    border-radius: 0.7rem;
    padding: 1.2rem 1.1rem;
    box-shadow: 0 12px 30px rgba(15, 26, 46, 0.08);
    display: flex;
    flex-direction: column;
}

.contact-v2-side .contact-v2-note {
    margin-top: auto !important;
}

.contact-v2-info-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.contact-v2-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    border: 1px solid #edf1f8;
    border-radius: 0.5rem;
    padding: 0.6rem;
    background: #fbfcff;
}

.contact-v2-info-icon {
    width: 38px;
    height: 38px;
    border-radius: 0.45rem;
    background: linear-gradient(145deg, #111317, #2c313a);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.contact-v2-note {
    border-top: 1px dashed #d6ddeb;
    padding-top: 0.9rem;
}

.contact-v2-assurance {
    border: 1px solid #ebeff7;
    border-radius: 0.5rem;
    padding: 0.85rem 0.9rem;
    background: #f8faff;
}

.contact-v2-assurance ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #2c3748;
}

.contact-v2-assurance li {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
}

.contact-v2-assurance i {
    color: var(--store-accent);
    margin-top: 0.06rem;
}

.contact-v2-form-card {
    background: #ffffff;
    border: 1px solid #e4e9f2;
    border-radius: 0.7rem;
    box-shadow: 0 16px 34px rgba(11, 20, 39, 0.11);
    padding: 1.2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-v2-form {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.contact-v2-airmail {
    height: 4px;
    width: 100%;
    border-radius: 999px;
    background: repeating-linear-gradient(
        90deg,
        #d10f1f 0 24px,
        #ffffff 24px 46px,
        #1f60ab 46px 70px,
        #ffffff 70px 92px
    );
    border: 1px solid #e4e7ef;
}

.contact-v2-badge {
    background: #11151d;
    color: #fff;
    border-radius: 999px;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    font-weight: 700;
    padding: 0.35rem 0.65rem;
}

.contact-v2-intent-strip {
    background: linear-gradient(180deg, #f7f9ff 0%, #f3f6fc 100%);
    border: 1px solid #e3e9f4;
    border-radius: 0.6rem;
    padding: 0.75rem;
}

.contact-v2-intent-strip p {
    color: #253047;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04rem;
    font-weight: 700;
}

.contact-v2-chip-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
}

.contact-v2-chip-grid label {
    display: block;
}

.contact-v2-chip-grid input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.contact-v2-chip-grid span {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    width: 100%;
    border: 1px solid #d8e0ee;
    border-radius: 999px;
    background: #fff;
    color: #263046;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.45rem 0.65rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.contact-v2-chip-grid span i {
    color: #5c6781;
}

.contact-v2-chip-grid input:checked + span {
    border-color: #11151d;
    background: #11151d;
    color: #fff;
    box-shadow: 0 8px 16px rgba(17, 21, 29, 0.28);
}

.contact-v2-chip-grid input:checked + span i {
    color: #fff;
}

.contact-v2-subcard {
    background: #fbfcff;
    border: 1px solid #e3e9f3;
    border-radius: 0.55rem;
    padding: 0.75rem;
}

.contact-v2-form-footer {
    border-top: 1px solid #e8edf5;
    padding-top: 0.85rem;
    margin-top: auto !important;
}

.contact-v2-form .form-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.03rem;
    color: #596173;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.contact-v2-form .form-control,
.contact-v2-form .form-select {
    border: 1px solid #d5dceb;
    color: #1f2531;
    border-radius: 0.35rem;
    min-height: 42px;
    box-shadow: none;
    background: #fdfdff;
}

.contact-v2-form .form-control::placeholder {
    color: #8a91a2;
}

.contact-v2-form textarea.form-control {
    min-height: 172px;
    resize: vertical;
}

.contact-v2-message-field {
    min-height: 260px !important;
}

.contact-v2-priority {
    border: 1px dashed #d5dcea;
    border-radius: 0.45rem;
    background: #f7f9ff;
    padding: 0.55rem 0.6rem;
}

.contact-v2-priority span {
    color: #2a3448;
    font-size: 0.82rem;
    font-weight: 600;
}

.contact-v2-priority input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    accent-color: #11151d;
}

.contact-v2-form .form-control:focus,
.contact-v2-form .form-select:focus {
    border-color: var(--store-accent);
    box-shadow: 0 0 0 0.15rem rgba(214, 0, 0, 0.12);
}

@media (max-width: 991px) {
    .contact-v2-hero {
        padding: 1.1rem;
    }

    .contact-v2-shell {
        padding: 0;
    }

    .contact-v2-form-card {
        padding: 1rem;
    }

    .contact-v2-side .contact-v2-note {
        margin-top: 1rem !important;
    }

    .contact-v2-quick-intents span {
        font-size: 0.72rem;
    }

    .contact-v2-chip-grid {
        grid-template-columns: 1fr;
    }
}

/* Services page */
.services-hero,
.services-grid,
.services-feature,
.services-showcase,
.services-process,
.services-metrics,
.services-industries,
.services-testimonial,
.services-cta {
    padding: 5rem 0;
}

.services-hero h1 {
    font-size: clamp(2rem, 4.2vw, 3.6rem);
    font-weight: 900;
    line-height: 1.02;
    max-width: 980px;
}

.services-hero .hero-lead {
    max-width: 780px;
    color: rgba(242, 242, 235, 0.82);
    margin-top: 1rem;
    line-height: 1.8;
}

.service-card {
    background: #fff;
    border: 1px solid #ececf0;
    padding: 1.6rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card i {
    font-size: 1.6rem;
    color: var(--accent-red);
}

.service-card h3 {
    margin: 0.85rem 0 0.55rem;
    color: #111a44;
    font-size: 1.05rem;
    font-weight: 800;
}

.service-card p {
    margin: 0;
    color: rgba(17, 17, 17, 0.72);
    line-height: 1.7;
    font-size: 0.92rem;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
}

.feature-image {
    min-height: 420px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-feature h2 {
    font-size: clamp(1.7rem, 3vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.7rem;
    color: rgba(242, 242, 235, 0.84);
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 7px;
    height: 7px;
    background: var(--accent-red);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.showcase-item {
    position: relative;
    min-height: 360px;
    overflow: hidden;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0));
    padding: 1.4rem 1rem 1rem;
}

.showcase-overlay h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    margin: 0 0 0.35rem;
}

.showcase-overlay p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    line-height: 1.5;
}

.showcase-item:hover img {
    transform: scale(1.05);
}

.process-card {
    background: #fff;
    border: 1px solid #e9e9ee;
    padding: 1.6rem;
}

.process-card span {
    display: inline-block;
    color: var(--accent-red);
    font-weight: 900;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.process-card h3 {
    color: #111a44;
    font-size: 1.05rem;
    font-weight: 800;
}

.process-card p {
    margin: 0;
    color: rgba(17, 17, 17, 0.74);
    line-height: 1.7;
    font-size: 0.92rem;
}

.metric-card {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    height: 100%;
}

.metric-card h3 {
    margin: 0 0 0.35rem;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
}

.metric-card p {
    margin: 0;
    color: rgba(242, 242, 235, 0.8);
    line-height: 1.6;
    font-size: 0.9rem;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.industry-tags span {
    border: 1px solid rgba(255, 255, 255, 0.26);
    padding: 0.65rem 1rem;
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.03rem;
    color: rgba(242, 242, 235, 0.9);
}

.testimonial-photo {
    min-height: 420px;
    overflow: hidden;
    border: 1px solid #e9e9ee;
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-testimonial h2 {
    color: #111a44;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 0.8rem;
}

.testimonial-body {
    color: rgba(17, 17, 17, 0.75);
    line-height: 1.8;
    margin: 0;
}

.testimonial-meta {
    margin: 1rem 0 0;
    font-weight: 700;
    font-size: 0.9rem;
    color: #111a44;
}

.cta-box {
    background: #fff;
    border: 1px solid #eaeaf0;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cta-box h2 {
    color: #111a44;
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 900;
    margin: 0;
}

.cta-box p {
    margin: 0.5rem 0 0;
    color: rgba(17, 17, 17, 0.7);
}

@media (max-width: 991px) {
    .services-hero,
    .services-grid,
    .services-feature,
    .services-showcase,
    .services-process,
    .services-metrics,
    .services-industries,
    .services-testimonial,
    .services-cta {
        padding: 3.5rem 0;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-item {
        min-height: 280px;
    }

    .testimonial-photo {
        min-height: 300px;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.4rem;
    }
}

/* Sectors / Who we serve page */
.sectors-hero,
.sectors-overview,
.sectors-usecases,
.sectors-model,
.sectors-proof,
.sectors-cta {
    padding: 5rem 0;
}

.sectors-hero h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.03;
    max-width: 980px;
}

.sector-card {
    background: #fff;
    border: 1px solid #ebebef;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sector-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.sector-card-body {
    padding: 1.2rem 1.1rem 1.3rem;
}

.sector-card-body h3 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    font-weight: 800;
    color: #111a44;
}

.sector-card-body p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(17, 17, 17, 0.74);
    line-height: 1.7;
}

.sector-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
}

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

.usecase-card {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
}

.usecase-card h3 {
    margin: 0 0 0.55rem;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 800;
}

.usecase-card p {
    margin: 0;
    color: rgba(242, 242, 235, 0.82);
    line-height: 1.7;
    font-size: 0.92rem;
}

.model-image {
    min-height: 420px;
    overflow: hidden;
    border: 1px solid #ececf1;
}

.model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sectors-model h2 {
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    color: #111a44;
    font-weight: 900;
    margin-bottom: 1rem;
}

.model-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.model-list li {
    position: relative;
    padding-left: 1.35rem;
    margin-bottom: 0.65rem;
    color: rgba(17, 17, 17, 0.8);
}

.model-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 7px;
    height: 7px;
    background: var(--accent-red);
}

.proof-card {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.4rem;
    height: 100%;
}

.proof-card h3 {
    margin: 0 0 0.35rem;
    font-size: clamp(1.5rem, 2.7vw, 2.2rem);
    font-weight: 900;
}

.proof-card p {
    margin: 0;
    color: rgba(242, 242, 235, 0.8);
    line-height: 1.6;
    font-size: 0.88rem;
}

@media (max-width: 991px) {
    .sectors-hero,
    .sectors-overview,
    .sectors-usecases,
    .sectors-model,
    .sectors-proof,
    .sectors-cta {
        padding: 3.5rem 0;
    }

    .usecase-grid {
        grid-template-columns: 1fr;
    }

    .model-image {
        min-height: 300px;
    }
}

/* --------------------------------------------------------------------------
   Storefront (Bootstrap 5 + Blade) — navy / white / accent orange
   -------------------------------------------------------------------------- */

:root {
    --store-navy: #1a1a1a;
    --store-navy-dark: #050505;
    --store-accent: #d60000;
    --store-accent-hover: #b00000;
    --store-success: #198754;
}

body.store-front {
    background: #fff;
    color: #1a1d21;
    font-family: 'Inter', system-ui, sans-serif;
}

/* Match header `container-fluid` rhythm: px-3 → px-xl-4 → px-xxl-5 */
.store-front .container-xl {
    max-width: 100%;
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 1200px) {
    .store-front .container-xl {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1400px) {
    .store-front .container-xl {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

.store-front .store-header {
    transition: box-shadow 0.25s ease;
}

.store-front .store-header.is-scrolled {
    box-shadow: 0 0.35rem 1.25rem rgba(0, 0, 0, 0.2);
}

.store-topbar {
    background: linear-gradient(90deg, #111 0%, #000 100%);
}

.store-logo-mark {
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    color: var(--store-navy);
}

.store-logo:hover .store-logo-mark {
    color: var(--store-accent);
}

.store-logo-img {
    width: 100%;
    max-width: 315px;
    height: auto;
    object-fit: contain;
}

.store-logo-img-footer {
    max-width: 280px;
    background: #fff;
    padding: 0.35rem 0.45rem;
    border-radius: 0.35rem;
}

.text-store-navy {
    color: var(--store-navy) !important;
}

.text-store-accent {
    color: var(--store-accent) !important;
}

.bg-store-navy {
    background-color: var(--store-navy) !important;
}

.btn-store-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--store-navy);
    --bs-btn-border-color: var(--store-navy);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--store-accent);
    --bs-btn-hover-border-color: var(--store-accent);
    --bs-btn-active-bg: var(--store-navy-dark);
    --bs-btn-active-border-color: var(--store-navy-dark);
    font-weight: 600;
}

.btn-store-primary:hover,
.btn-store-primary:focus {
    color: #fff !important;
}

.btn-store-accent {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--store-accent);
    --bs-btn-border-color: var(--store-accent);
    --bs-btn-hover-bg: var(--store-accent-hover);
    --bs-btn-hover-border-color: var(--store-accent-hover);
    font-weight: 600;
}

.btn-store-success {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--store-success);
    --bs-btn-border-color: var(--store-success);
    --bs-btn-hover-bg: #157347;
    font-weight: 600;
}

.store-nav-link {
    color: #333 !important;
    letter-spacing: 0.04em;
    font-size: 0.72rem;
}

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

.store-nav-link--active {
    color: var(--store-accent) !important;
    font-weight: 700 !important;
}

.store-search .form-control:focus {
    border-color: var(--store-accent);
    box-shadow: 0 0 0 0.2rem rgba(214, 0, 0, 0.15);
}

.store-category-sidebar .list-group-item {
    cursor: pointer;
    transition: background 0.15s ease;
}

.store-category-sidebar .list-group-item:hover {
    background: #f8f9fa;
}

.store-sidebar-item {
    position: relative;
}

.store-sidebar-flyout {
    position: absolute;
    top: 0;
    left: calc(100% + 0.5rem);
    width: min(680px, 60vw);
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 0.4rem;
    padding: 1rem;
    z-index: 30;
    opacity: 0;
    visibility: hidden;
    transform: translateY(2px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
}

.store-sidebar-item:hover .store-sidebar-flyout {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.store-sidebar-flyout a:hover {
    color: var(--store-accent) !important;
}

.store-hero-carousel {
    min-height: 280px;
}

@media (min-width: 992px) {
    .store-hero-carousel {
        min-height: 420px;
    }
}

.store-hero-slide {
    min-height: 280px;
    background-size: cover;
    background-position: center;
}

@media (min-width: 992px) {
    .store-hero-slide {
        min-height: 420px;
    }
}

.store-hero-slide-1 {
    background-image: linear-gradient(105deg, rgba(10, 10, 10, 0.92), rgba(0, 0, 0, 0.75)),
        url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1600&q=80');
}

.store-hero-slide-2 {
    background-image: linear-gradient(105deg, rgba(214, 0, 0, 0.88), rgba(0, 0, 0, 0.6)),
        url('https://images.unsplash.com/photo-1597852074816-d933c7d2b988?auto=format&fit=crop&w=1600&q=80');
}

.store-hero-slide-3 {
    background-image: linear-gradient(105deg, rgba(214, 0, 0, 0.85), rgba(26, 26, 26, 0.82)),
        url('https://images.unsplash.com/photo-1544197150-b99a580bb7a8?auto=format&fit=crop&w=1600&q=80');
}

.store-hero-slide-inner {
    max-width: 36rem;
}

.store-side-promo {
    min-height: 120px;
    background-size: cover;
    background-position: center;
    position: relative;
}

@media (min-width: 992px) {
    .store-side-promo {
        min-height: 0;
    }
}

.store-side-promo-a {
    background-image: linear-gradient(160deg, rgba(26, 26, 26, 0.9), rgba(0, 0, 0, 0.65)),
        url('https://images.unsplash.com/photo-1633265486064-086b219458ec?auto=format&fit=crop&w=900&q=80');
}

.store-side-promo-b {
    background-image: linear-gradient(160deg, rgba(214, 0, 0, 0.9), rgba(26, 26, 26, 0.75)),
        url('https://images.unsplash.com/photo-1563986768609-322da13575f3?auto=format&fit=crop&w=900&q=80');
}

.store-mini-banner {
    min-height: 88px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-mini-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.18);
}

.store-mini-banner-a {
    background: linear-gradient(90deg, #111, #222);
}

.store-mini-banner-b {
    background: linear-gradient(90deg, #444, #222);
}

.store-why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(214, 0, 0, 0.08);
    color: var(--store-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.store-brand-img {
    max-height: 72px;
    width: 120px;
    overflow: hidden;
}

.store-brand-placeholder {
    width: 120px;
    height: 72px;
    background: linear-gradient(135deg, #111, var(--store-accent));
    font-size: 1.75rem;
}

.store-product-img-wrap {
    min-height: 200px;
    background: #f8f9fa;
}

.store-product-img-wrap img {
    max-height: 180px;
    width: auto;
    object-fit: contain;
}

.store-product-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1) !important;
}

.store-promo-ribbon {
    background: linear-gradient(90deg, #7a0000, #d60000 45%, #1a1a1a);
}

.store-mid-hero {
    background: linear-gradient(120deg, #111 0%, #2a2a2a 100%);
}

.store-mid-split {
    min-height: 220px;
}

.store-mid-split-blue {
    background: linear-gradient(135deg, #1d1d1d, #000);
}

.store-mid-split-red {
    background: linear-gradient(135deg, #a50000, #e00000);
}

.store-quick-tab {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-quick-tab:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.65rem 1.25rem rgba(0, 0, 0, 0.14) !important;
}

.store-home-newsletter {
    position: relative;
    overflow: hidden;
    border-radius: 1.1rem;
    padding: 2.15rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background:
        radial-gradient(circle at 82% 20%, rgba(214, 0, 0, 0.14), transparent 48%),
        radial-gradient(circle at 70% 78%, rgba(26, 26, 26, 0.1), transparent 52%),
        linear-gradient(130deg, #f8f8f8 0%, #f2f2f2 45%, #ececec 100%);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.1);
}

.store-home-newsletter-kicker {
    display: inline-block;
    margin-bottom: 0.55rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--store-accent);
}

.store-home-newsletter-title {
    color: var(--store-navy);
    font-size: clamp(1.4rem, 1.2rem + 1vw, 2rem);
    line-height: 1.22;
    font-weight: 800;
}

.store-home-newsletter-subtitle {
    max-width: 620px;
    color: #4a4a4a;
    font-size: 0.98rem;
}

.store-home-newsletter-form {
    max-width: 620px;
    display: flex;
    gap: 0.65rem;
}

.store-home-newsletter-input {
    flex: 1;
    min-width: 0;
    height: 48px;
    border: 1px solid #c5c5c5;
    border-radius: 0.55rem;
    color: #1f1f1f;
    background: rgba(255, 255, 255, 0.95);
}

.store-home-newsletter-input:focus {
    border-color: var(--store-accent);
    box-shadow: 0 0 0 0.2rem rgba(214, 0, 0, 0.16);
}

.store-home-newsletter-btn {
    height: 48px;
    border: 0;
    border-radius: 0.55rem;
    padding: 0 1.2rem;
    font-weight: 700;
    white-space: nowrap;
    color: #fff;
    background: linear-gradient(100deg, var(--store-accent) 0%, var(--store-accent-hover) 80%);
    box-shadow: 0 10px 18px rgba(214, 0, 0, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.store-home-newsletter-btn:hover,
.store-home-newsletter-btn:focus {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 14px 22px rgba(214, 0, 0, 0.3);
    filter: brightness(1.02);
}

.store-home-newsletter-meta {
    margin-top: 0.85rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem 1.2rem;
    font-size: 0.82rem;
    color: #4d4d4d;
}

.store-home-newsletter-art {
    position: relative;
    min-height: 210px;
    border-radius: 0.9rem;
    background: linear-gradient(140deg, rgba(214, 0, 0, 0.08), rgba(255, 255, 255, 0.65));
    border: 1px solid rgba(26, 26, 26, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-home-newsletter-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(214, 0, 0, 0.22) 0%, rgba(214, 0, 0, 0) 70%);
}

.store-home-newsletter-screen {
    width: 132px;
    height: 132px;
    border-radius: 1rem;
    border: 1px solid rgba(26, 26, 26, 0.18);
    background: linear-gradient(145deg, #ffffff, #f3f3f3);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--store-accent);
    font-size: 2.25rem;
    position: relative;
    z-index: 2;
}

.store-home-newsletter-chip {
    position: absolute;
    z-index: 3;
    border-radius: 999px;
    padding: 0.33rem 0.7rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #2d2d2d;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(26, 26, 26, 0.14);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.store-home-newsletter-chip-top {
    top: 18%;
    right: 10%;
}

.store-home-newsletter-chip-bottom {
    bottom: 16%;
    left: 9%;
}

.store-footer-main {
    background: #111;
}

.store-footer-main .row > [class*="col-"] {
    min-width: 0;
}

.store-footer-bottom {
    background: #000;
}

.store-footer-social {
    line-height: 1;
}

.store-social-link {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.2s ease;
}

.store-social-link:hover,
.store-social-link:focus {
    border-color: #fff;
    color: #fff;
    transform: translateY(-1px);
}

@media (max-width: 1199px) {
    .store-home-newsletter {
        padding: 1.75rem;
    }

    .store-footer-main {
        padding-top: 2.25rem !important;
        padding-bottom: 2.25rem !important;
    }
}

@media (max-width: 991px) {
    .store-home-newsletter-form {
        max-width: 100%;
    }

    .store-footer-bottom .container-xl {
        justify-content: center !important;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .store-home-newsletter {
        padding: 1.35rem;
    }

    .store-home-newsletter-form {
        flex-direction: column;
    }

    .store-home-newsletter-btn {
        width: 100%;
    }

    .store-home-newsletter-art {
        min-height: 170px;
    }

    .store-home-newsletter-chip {
        font-size: 0.68rem;
    }

    .store-logo-img-footer {
        max-width: 220px;
    }

    .store-footer-contact {
        margin-bottom: 1.25rem !important;
    }

    .store-social-link {
        width: 28px;
        height: 28px;
    }
}

.store-partner-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #6c757d;
    filter: grayscale(1);
    opacity: 0.85;
    letter-spacing: 0.06em;
}

.store-partners .store-partner-name:hover {
    filter: grayscale(0);
    opacity: 1;
    color: var(--store-accent);
}

.dc-header .store-logo-img {
    max-width: 250px;
}

.dc-topbar-links {
    color: #d8d8d8;
}

.dc-topbar-links a,
.dc-topbar-links span {
    color: #d8d8d8 !important;
    font-weight: 500;
}

.dc-topbar-links a:hover {
    color: #fff !important;
}

.dc-header-quick-link {
    font-size: 0.8rem;
    color: #2f2f2f;
    font-weight: 600;
}

.dc-header-quick-link:hover {
    color: var(--store-accent);
}

.dc-search-group .form-control {
    border: 1px solid #cfd3d8;
    border-right: 0;
    border-radius: 999px 0 0 999px !important;
    height: 38px;
    font-size: 0.82rem;
    box-shadow: none;
    color: #222;
    background: #fff;
}

.dc-search-group .form-control::placeholder {
    color: #7a7f85;
}

.dc-search-group .form-control:focus {
    color: #222;
    background: #fff;
    border-color: #bfc5cc;
}

.dc-search-group .form-control::-webkit-search-cancel-button {
    cursor: pointer;
}

.dc-search-btn {
    border-radius: 0 999px 999px 0 !important;
    min-width: 52px;
    background: #111 !important;
    border-color: #111 !important;
}

.dc-search-btn:hover {
    background: var(--store-accent) !important;
    border-color: var(--store-accent) !important;
}

/* RTL adjustments: keep search bar layout same as LTR */
[dir='rtl'] .dc-search-group {
    direction: ltr;
}

.dc-menu-trigger {
    background: #f5f5f5;
    border: 1px solid #dfdfdf;
    color: #222;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: none;
}

.dc-main-menu .store-nav-link {
    color: #1f1f1f !important;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.dc-main-menu .store-nav-link:hover,
.dc-main-menu .show > .store-nav-link {
    color: var(--store-accent) !important;
}

.dc-nav-dropdown:hover > .dropdown-menu {
    display: block;
}

.dc-left-menu-dropdown {
    width: 270px;
    margin-top: 0.25rem;
}

.dc-left-menu-dropdown .list-group-item {
    border-left: 0;
    border-right: 0;
    font-size: 0.8rem;
    padding: 0.55rem 0.8rem;
}

.dc-left-menu-dropdown [data-dc-menu-search],
#dcSideMenu [data-dc-menu-search] {
    background: #fff;
    color: #222;
    border: 1px solid #cfd3d8;
    border-radius: 0.375rem;
    box-shadow: none;
}

.dc-left-menu-dropdown [data-dc-menu-search]::placeholder,
#dcSideMenu [data-dc-menu-search]::placeholder {
    color: #7a7f85;
}

.dc-left-menu-dropdown [data-dc-menu-search]:focus,
#dcSideMenu [data-dc-menu-search]:focus {
    background: #fff;
    color: #222;
    border-color: var(--store-accent);
    box-shadow: 0 0 0 0.2rem rgba(229, 57, 53, 0.18);
}

.dc-left-menu-dropdown [data-dc-menu-search]::-webkit-search-cancel-button,
#dcSideMenu [data-dc-menu-search]::-webkit-search-cancel-button {
    cursor: pointer;
}

.dc-support-links a {
    color: #444;
    font-size: 0.76rem;
    padding: 0.15rem 0.35rem;
}

.dc-support-links {
    white-space: nowrap;
    flex-shrink: 0;
    gap: 0.35rem !important;
}

.dc-support-links a {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    font-size: 0.68rem;
    line-height: 1;
}

.dc-support-links a:hover {
    color: var(--store-accent);
}

.dc-mega-nav .dropdown-menu {
    left: 0;
    right: 0;
    margin-top: 0;
}

.dc-mega-dropdown-compact {
    left: auto !important;
    right: auto !important;
    width: min(460px, 95vw);
}

.dc-mega-dropdown-compact .row > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
}

.dc-mega-dropdown {
    border-top: 2px solid var(--store-accent) !important;
    border-radius: 0;
    z-index: 1080;
}

.dc-mega-card {
    border: 1px solid #ececec;
    background: #fafafa;
    padding: 1rem;
    border-radius: 0.5rem;
}

.dc-mega-dropdown ul li a {
    color: #343434;
}

.dc-mega-dropdown ul li a:hover {
    color: var(--store-accent);
}

.dc-mega-dropdown a:hover {
    color: var(--store-accent) !important;
}

.dc-mega-card .btn-store-primary:hover,
.dc-mega-card .btn-store-primary:focus {
    --bs-btn-hover-bg: var(--store-accent);
    --bs-btn-hover-border-color: var(--store-accent);
    --bs-btn-active-bg: var(--store-accent);
    --bs-btn-active-border-color: var(--store-accent);
    color: #fff !important;
}

/* Homepage visual polish (below hero mini buttons) */
.store-home-section {
    position: relative;
}

.store-home-section h2.h3 {
    font-weight: 800;
    letter-spacing: -0.01em;
}

.store-section-muted {
    background: linear-gradient(180deg, #f8f9fb 0%, #f3f5f8 100%);
}

.store-home-section .small.fw-semibold.text-decoration-none {
    color: var(--store-accent) !important;
}

.store-home-section .small.fw-semibold.text-decoration-none:hover {
    text-decoration: underline !important;
}

.store-brand-card {
    border: 1px solid #e7ebf0 !important;
    border-radius: 0.55rem;
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.store-brand-card:hover {
    transform: translateY(-3px);
    border-color: #d8dee7 !important;
    box-shadow: 0 0.75rem 1.35rem rgba(10, 18, 35, 0.08) !important;
}

.store-brand-media {
    width: 100%;
    height: 150px;
    border-radius: 0.45rem;
    background: linear-gradient(180deg, #fbfcfe 0%, #f3f6fa 100%);
    border: 1px solid #edf1f6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
}

.store-brand-img {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.store-brand-img img {
    max-height: 120px;
    max-width: 100%;
    object-fit: contain;
}

.store-brand-placeholder {
    width: 100%;
    height: 100%;
    font-size: 2rem;
}

.store-brand-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1f2a37;
    letter-spacing: 0.01em;
}

.store-brand-meta {
    font-size: 0.72rem;
}

.store-brand-cta {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    border-radius: 0.35rem;
}

/* Breakpoints mirror `welcome` brands row: 2 / 3 / 4 / 6 cols */
.store-showcase-controls {
    display: inline-flex;
    gap: 0.35rem;
}

.store-showcase-nav-btn {
    width: 1.9rem;
    height: 1.9rem;
    border: 1px solid #dce2eb;
    background: #fff;
    border-radius: 50%;
    color: #334154;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.store-showcase-nav-btn:hover {
    border-color: var(--store-accent);
    color: var(--store-accent);
    background: #fff4f4;
}

.store-showcase-slider {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 0.2rem;
}

.store-showcase-slider::-webkit-scrollbar {
    display: none;
}

.store-showcase-card {
    flex: 0 0 calc((100% - 3rem) / 4);
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid #e9edf2;
    border-radius: 0.6rem;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-showcase-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.8rem 1.4rem rgba(15, 23, 42, 0.09);
}

.store-showcase-img-wrap {
    background: #fff;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

.store-showcase-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    background: #fff;
    transform: none;
}

.store-showcase-body {
    padding: 0.35rem 0.75rem 0.9rem;
}

.store-showcase-title {
    font-size: 0.8rem;
    line-height: 1.35;
    min-height: 2.25rem;
    margin: 0 0 0.45rem;
    color: #1f2937;
}

.store-showcase-badge {
    display: inline-block;
    background: #e02929;
    color: #fff;
    font-size: 0.62rem;
    padding: 0.15rem 0.35rem;
    border-radius: 0.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.store-showcase-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
}

.store-showcase-price {
    color: #151515;
    font-size: 1.05rem;
    font-weight: 800;
}

.store-showcase-old-price {
    color: #7a7a7a;
    font-size: 0.72rem;
    text-decoration: line-through;
}

@media (min-width: 1200px) {
    .store-showcase-img-wrap {
        aspect-ratio: 1 / 1;
        padding: 0;
    }

    .store-showcase-img-wrap img {
        width: 100%;
        height: 100%;
        transform: none;
    }

    .store-showcase-body {
        padding-top: 0.2rem;
    }
}

@media (max-width: 767px) {
    .store-brand-media {
        height: 120px;
    }

    .store-brand-img {
        height: 100px;
    }

    .store-brand-img img {
        max-height: 90px;
    }

    .store-showcase-title {
        min-height: 2rem;
    }

    .store-showcase-card {
        flex-basis: calc((100% - 1rem) / 2);
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .store-showcase-card {
        flex-basis: calc((100% - 2rem) / 3);
    }
}

.store-quick-tab {
    border: 1px solid #e8ebef !important;
    border-radius: 0.7rem;
}

.store-quick-tab .card-body {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
}

.store-product-card {
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid #e9edf2 !important;
}

.store-product-img-wrap {
    background: linear-gradient(180deg, #fcfdff 0%, #f5f7fa 100%);
    border-bottom: 1px solid #edf0f4;
}

.store-product-card .card-title {
    min-height: 2.8rem;
}

.store-promo-ribbon {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.store-mid-hero,
.store-mid-split {
    border-radius: 0.8rem !important;
}

.store-partners {
    background: #fff;
    border: 1px solid #eceff3;
    border-radius: 0.7rem;
    padding: 1rem 0.75rem;
}

/* --------------------------------------------------------------------------
   Homepage split: insights slider + gaming ad
   -------------------------------------------------------------------------- */
.store-insights-shell {
    background: #fff;
    border: 1px solid #e6ebf3;
    border-radius: 0.85rem;
    padding: 0.95rem;
}

.store-insights-controls {
    display: inline-flex;
    gap: 0.45rem;
}

.store-insights-nav-btn {
    width: 2rem;
    height: 2rem;
    border: 1px solid #d7deeb;
    border-radius: 50%;
    background: #fff;
    color: #273144;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.store-insights-nav-btn:hover {
    color: var(--store-accent);
    border-color: var(--store-accent);
    background: #fff7f7;
}

.store-insights-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 1fr);
    gap: 0.85rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 0.2rem;
}

.store-insights-slider::-webkit-scrollbar {
    display: none;
}

.store-insight-card {
    border: 1px solid #e7ecf4;
    border-radius: 0.75rem;
    background: #fff;
    overflow: hidden;
    scroll-snap-align: start;
}

.store-insight-card-media {
    position: relative;
    aspect-ratio: 16 / 8;
    overflow: hidden;
    border-bottom: 1px solid #edf1f6;
    background: linear-gradient(135deg, #f6f8fb 0%, #eef2f7 100%);
}

.store-insight-card-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.9rem;
}

.store-insight-tag {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    background: rgba(6, 17, 36, 0.9);
    color: #fff;
    border-radius: 999px;
    font-size: 0.58rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    padding: 0.22rem 0.5rem;
}

.store-insight-card-body {
    padding: 0.75rem 0.78rem 0.85rem;
}

.store-insight-title {
    margin: 0;
    font-size: 0.97rem;
    font-weight: 800;
    color: #1f2a3b;
    line-height: 1.35;
    min-height: 2.6em;
}

.store-insight-meta {
    color: #667085;
    font-size: 0.72rem;
}

.store-insight-excerpt {
    color: #4f5b70;
    font-size: 0.78rem;
    line-height: 1.5;
    min-height: 2.9em;
}

.store-insight-card a {
    color: #1f2a3b;
    text-decoration: none;
}

.store-insight-card a:hover {
    color: #111827;
    text-decoration: underline;
}

.store-insight-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 105px;
    border-radius: 0.3rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-decoration: none;
    color: #fff;
    background: var(--store-accent);
    padding: 0.36rem 0.7rem;
}

.store-insight-link:hover {
    color: #fff;
    background: var(--store-accent-hover);
    text-decoration: none;
}

.store-insight-link:visited {
    color: #fff;
}

.store-gaming-ad {
    position: relative;
    overflow: hidden;
    border-radius: 0.9rem;
    border: 1px solid #2b2b2b;
    min-height: 360px;
    background-color: #0f0f0f;
    background-size: cover;
    background-position: center;
    box-shadow: 0 0.9rem 2rem rgba(16, 20, 33, 0.2);
}

.store-gaming-ad-link {
    color: inherit;
}

.store-gaming-ad-link:hover .store-gaming-ad,
.store-gaming-ad-link:focus-visible .store-gaming-ad {
    box-shadow: 0 1.1rem 2.2rem rgba(16, 20, 33, 0.25);
}

.store-gaming-ad-link:focus-visible {
    outline: 2px solid var(--store-accent);
    outline-offset: 4px;
    border-radius: 0.9rem;
}

.store-gaming-ad-bg-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.store-gaming-ad-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(145deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.62)),
        radial-gradient(circle at 82% 16%, rgba(214, 0, 0, 0.52) 0%, transparent 42%),
        radial-gradient(circle at 20% 78%, rgba(49, 104, 255, 0.24) 0%, transparent 48%);
    pointer-events: none;
}

.store-gaming-ad-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.15rem;
    color: #fff;
}

.store-gaming-kicker {
    display: inline-flex;
    align-self: flex-start;
    border: 1px solid rgba(214, 0, 0, 0.55);
    border-radius: 999px;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    padding: 0.24rem 0.55rem;
    margin-bottom: 0.45rem;
}

.store-gaming-title {
    font-size: clamp(1.45rem, 3vw, 2.2rem);
    font-weight: 900;
    letter-spacing: 0.02em;
    margin: 0;
}

.store-gaming-copy {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.84rem;
    max-width: 26rem;
    line-height: 1.52;
}

.store-gaming-ad .btn-store-accent {
    width: 100%;
    border-radius: 0.25rem;
    font-weight: 700;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
}

@media (min-width: 992px) {
    .store-insights-slider {
        grid-auto-columns: calc(50% - 0.45rem);
    }

    .store-insight-card-media {
        aspect-ratio: 16 / 8.8;
    }
}

@media (max-width: 575px) {
    .store-insights-shell {
        padding: 0.75rem;
    }

    .store-insights-slider {
        grid-auto-columns: 88%;
    }

    .store-gaming-ad {
        min-height: 280px;
    }
}

@media (max-width: 991px) {
    .store-front .container-xl {
        max-width: 100%;
        width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .dc-header .store-logo-img {
        max-width: 185px;
    }

    .dc-menu-trigger {
        font-size: 0.75rem;
    }

    .dc-topbar-links {
        width: 100%;
        justify-content: center;
        gap: 0.75rem !important;
    }

    .dc-mobile-dropdown-toggle {
        border: 0;
        background: transparent;
        color: #555;
        padding: 0.25rem 0.35rem;
        margin-left: -0.15rem;
    }

    .dc-mega-nav .dropdown-menu {
        position: static !important;
        width: 100%;
        box-shadow: none !important;
        border: 1px solid #efefef !important;
        border-top: 1px solid #efefef !important;
        margin-top: 0.15rem;
    }

    .dc-mega-dropdown .row > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 1599px) {
    .dc-support-links {
        display: none !important;
    }
}

@media (max-width: 1200px) {
    .dc-main-menu .store-nav-link {
        font-size: 0.68rem;
        padding-left: 0.45rem !important;
        padding-right: 0.45rem !important;
    }

    .dc-support-links a {
        font-size: 0.7rem;
        padding: 0.1rem 0.2rem;
    }
}

@media (max-width: 1199px) {
    .dc-header-quick-link {
        font-size: 0.74rem;
    }

    .dc-search-group .form-control {
        font-size: 0.76rem;
        height: 36px;
    }
}

@media (max-width: 575px) {
    .dc-header .store-logo-img {
        max-width: 165px;
    }
}

/* --------------------------------------------------------------------------
   Customers showcase — bento grid + marquee (store theme)
   -------------------------------------------------------------------------- */

.customers-showcase-shell {
    max-width: 1200px;
    margin: 0 auto;
}

.customers-showcase-hero {
    border-radius: 1.25rem;
    padding: 2rem 1.75rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 45%, #252525 100%);
    color: #f8f9fa;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.customers-showcase-hero-mesh {
    position: absolute;
    inset: 0;
    opacity: 0.45;
    background-image:
        radial-gradient(at 20% 20%, rgba(214, 0, 0, 0.22) 0px, transparent 45%),
        radial-gradient(at 80% 10%, rgba(255, 255, 255, 0.08) 0px, transparent 40%),
        radial-gradient(at 60% 90%, rgba(214, 0, 0, 0.12) 0px, transparent 50%);
    pointer-events: none;
}

.customers-showcase-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.customers-showcase-orbit-a {
    width: 420px;
    height: 420px;
    top: -220px;
    right: -120px;
    animation: dc-orbit-drift 18s ease-in-out infinite alternate;
}

.customers-showcase-orbit-b {
    width: 280px;
    height: 280px;
    bottom: -140px;
    left: -80px;
    animation: dc-orbit-drift 22s ease-in-out infinite alternate-reverse;
}

@keyframes dc-orbit-drift {
    from {
        transform: rotate(0deg) translateX(0);
        opacity: 0.35;
    }
    to {
        transform: rotate(18deg) translateX(12px);
        opacity: 0.55;
    }
}

.customers-showcase-kicker {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #f0a0a0;
}

.customers-showcase-title {
    font-size: clamp(1.65rem, 4vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.customers-showcase-lead {
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(248, 249, 250, 0.78);
    max-width: 46rem;
}

.customers-showcase-stat {
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.customers-showcase-stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.customers-showcase-stat-label {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.customers-showcase-filters-label {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    vertical-align: middle;
}

.customers-showcase-filter-group .customers-filter-btn {
    border-radius: 999px !important;
    margin: 0.2rem 0.35rem 0.2rem 0;
    border-color: rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.85);
    background: transparent;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
}

.customers-showcase-filter-group .customers-filter-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.customers-showcase-filter-group .customers-filter-btn.active {
    background: var(--store-accent);
    border-color: var(--store-accent);
    color: #fff;
}

.customers-showcase-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: auto;
    gap: 1.15rem;
}

/* Filtered view: drop fixed cells so visible cards pack from the top-left */
.customers-showcase-bento.customers-showcase-bento--filtered {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.customers-showcase-bento.customers-showcase-bento--filtered .customers-logo-card--navy-medicine,
.customers-showcase-bento.customers-showcase-bento--filtered .customers-logo-card--honeywell,
.customers-showcase-bento.customers-showcase-bento--filtered .customers-logo-card--parker,
.customers-showcase-bento.customers-showcase-bento--filtered .customers-logo-card--opentext-public-sector,
.customers-showcase-bento.customers-showcase-bento--filtered .customers-logo-card--berkshire-hathaway-guard,
.customers-showcase-bento.customers-showcase-bento--filtered .customers-logo-card--community-bank,
.customers-showcase-bento.customers-showcase-bento--filtered .customers-logo-card--lutheran-services-carolinas,
.customers-showcase-bento.customers-showcase-bento--filtered .customers-logo-card--snohomish-school-district,
.customers-showcase-bento.customers-showcase-bento--filtered .customers-logo-card--newcastle-public-schools,
.customers-showcase-bento.customers-showcase-bento--filtered .customers-logo-card--angleton {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 0 !important;
}

.customers-logo-card {
    border-radius: 1rem;
    background: #fff;
    border: 1px solid #e8eaef;
    box-shadow: 0 0.35rem 1rem rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    transform: rotate(var(--dc-card-rotate, 0deg));
}

.customers-logo-card:hover {
    box-shadow: 0 0.75rem 1.75rem rgba(0, 0, 0, 0.1);
}

.dc-tilt-hover:hover {
    transform: perspective(1000px) rotateX(1.5deg) rotateY(-2deg) scale(1.015) rotate(0deg) !important;
}

.customers-logo-card-inner {
    padding: 0.75rem 0.85rem 0.9rem;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.customers-logo-card-sector {
    align-self: flex-start;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--store-accent);
    margin-bottom: 0.65rem;
}

.customers-logo-card-frame {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.45rem;
    background: #fff;
    border-radius: 0.55rem;
    border: 1px solid #e8eaef;
    margin-bottom: 0.55rem;
}

.customers-logo-card-img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 112px;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    filter: grayscale(0.08);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.customers-logo-card:hover .customers-logo-card-img {
    filter: grayscale(0);
    transform: scale(1.03);
}

.customers-logo-card-name {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
    color: var(--store-navy);
    line-height: 1.25;
}

.customers-logo-card-tagline {
    font-size: 0.78rem;
    color: #5c6570;
    margin: 0;
    line-height: 1.4;
}

/* Bento placement (desktop) — first row: equal-width cards */
.customers-logo-card--navy-medicine {
    grid-column: 1 / span 4;
    grid-row: 1;
}

.customers-logo-card--honeywell {
    grid-column: 5 / span 4;
    grid-row: 1;
}

.customers-logo-card--parker {
    grid-column: 9 / span 4;
    grid-row: 1;
}

.customers-logo-card--opentext-public-sector {
    grid-column: 1 / span 4;
    grid-row: 2;
}

.customers-logo-card--berkshire-hathaway-guard {
    grid-column: 5 / span 4;
    grid-row: 2;
}

.customers-logo-card--community-bank {
    grid-column: 9 / span 4;
    grid-row: 2;
}

.customers-logo-card--lutheran-services-carolinas {
    grid-column: 1 / span 4;
    grid-row: 3;
}

.customers-logo-card--snohomish-school-district {
    grid-column: 5 / span 4;
    grid-row: 3;
}

.customers-logo-card--newcastle-public-schools {
    grid-column: 9 / span 4;
    grid-row: 3;
}

.customers-logo-card--angleton {
    grid-column: 1 / span 4;
    grid-row: 4;
}

@media (min-width: 992px) {
    .customers-logo-card--navy-medicine .customers-logo-card-img,
    .customers-logo-card--honeywell .customers-logo-card-img,
    .customers-logo-card--parker .customers-logo-card-img {
        max-height: 124px;
    }

    .customers-logo-card--opentext-public-sector .customers-logo-card-img,
    .customers-logo-card--berkshire-hathaway-guard .customers-logo-card-img,
    .customers-logo-card--community-bank .customers-logo-card-img,
    .customers-logo-card--lutheran-services-carolinas .customers-logo-card-img,
    .customers-logo-card--snohomish-school-district .customers-logo-card-img,
    .customers-logo-card--newcastle-public-schools .customers-logo-card-img,
    .customers-logo-card--angleton .customers-logo-card-img {
        max-height: 108px;
    }
}

.customers-showcase-marquee {
    overflow: hidden;
    border-radius: 0.85rem;
    border: 1px solid #eceff3;
    background: #fafbfc;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.customers-showcase-marquee-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: max-content;
    padding: 0.5rem 0;
    animation: dc-customers-marquee 48s linear infinite;
}

.customers-showcase-marquee-item {
    flex: 0 0 auto;
    opacity: 0.85;
    filter: grayscale(0.25);
}

.customers-showcase-marquee-item img {
    height: 52px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

@keyframes dc-customers-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.customers-showcase-cta {
    background: linear-gradient(90deg, #f8f9fb 0%, #fff 50%, #f8f9fb 100%);
    border: 1px solid #e8eaef;
}

.customers-talk-sales-btn {
    background: #111 !important;
    border-color: #111 !important;
    color: #fff !important;
}

.customers-talk-sales-btn:hover,
.customers-talk-sales-btn:focus {
    background: var(--store-accent) !important;
    border-color: var(--store-accent) !important;
    color: #fff !important;
}

@media (prefers-reduced-motion: reduce) {
    .customers-showcase-marquee-track,
    .customers-showcase-orbit-a,
    .customers-showcase-orbit-b {
        animation: none !important;
    }

    .customers-logo-card {
        transform: none !important;
    }

    .dc-tilt-hover:hover {
        transform: none !important;
    }
}

@media (max-width: 991px) {
    .customers-showcase-bento {
        grid-template-columns: 1fr;
    }

    .customers-showcase-bento.customers-showcase-bento--filtered {
        grid-template-columns: 1fr;
    }

    .customers-logo-card--navy-medicine,
    .customers-logo-card--honeywell,
    .customers-logo-card--parker,
    .customers-logo-card--opentext-public-sector,
    .customers-logo-card--berkshire-hathaway-guard,
    .customers-logo-card--community-bank,
    .customers-logo-card--lutheran-services-carolinas,
    .customers-logo-card--snohomish-school-district,
    .customers-logo-card--newcastle-public-schools,
    .customers-logo-card--angleton {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
        min-height: 0 !important;
    }

    .customers-logo-card {
        transform: none;
    }
}

/* --------------------------------------------------------------------------
   Authorized reseller section and brand product pages
   -------------------------------------------------------------------------- */

.authorized-reseller-shell {
    position: relative;
    border: 1px solid #e5e9f1;
    border-radius: 1rem;
    padding: 1.1rem;
    overflow: hidden;
    background: #fff;
}

.authorized-reseller-shell-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 90% 0%, rgba(214, 0, 0, 0.1) 0%, transparent 32%),
        radial-gradient(circle at 0% 100%, rgba(17, 17, 17, 0.06) 0%, transparent 36%);
}

.authorized-reseller-badge {
    display: inline-flex;
    border-radius: 999px;
    border: 1px solid #d8deea;
    background: #f7f9fc;
    color: #2f3a4a;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.65rem;
}

.authorized-reseller-subtitle {
    max-width: 46rem;
}

.authorized-reseller-controls .small {
    color: #4d596e;
}

.authorized-reseller-control-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.3rem;
}

.authorized-reseller-nav-btn {
    width: 2rem;
    height: 2rem;
    border: 1px solid #d9dfeb;
    border-radius: 50%;
    background: #fff;
    color: #2c3443;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.authorized-reseller-nav-btn:hover {
    border-color: var(--store-accent);
    color: var(--store-accent);
    background: #fff6f6;
}

.authorized-reseller-slider {
    display: flex;
    gap: 0.85rem;
    position: relative;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
}

.authorized-reseller-slider::-webkit-scrollbar {
    display: none;
}

.authorized-reseller-card {
    display: flex;
    flex-direction: column;
    flex: 0 0 210px;
    border: 1px solid #e6ebf4;
    border-radius: 0.8rem;
    background: #fff;
    padding: 0.55rem;
    scroll-snap-align: start;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.authorized-reseller-card:hover {
    transform: translateY(-4px);
    border-color: #d5dcea;
    box-shadow: 0 0.85rem 1.8rem rgba(15, 21, 33, 0.11);
}

.authorized-reseller-card-logo-wrap {
    background: #f7f8fa;
    border: 1px solid #e9edf4;
    border-radius: 0.65rem;
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.5rem;
    overflow: hidden;
}

.authorized-reseller-card-logo {
    width: 160px;
    height: 64px;
    object-fit: cover;
    object-position: center;
}

.authorized-reseller-card-meta {
    padding-top: 0.5rem;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.authorized-reseller-card-title {
    margin: 0 0 0.2rem;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    color: #1f2a3b;
    line-height: 1.2;
    min-height: 2.02em;
}

.authorized-reseller-card-tagline {
    margin: 0 0 0.55rem;
    font-size: 0.68rem;
    color: #5c6578;
    line-height: 1.4;
    min-height: 2.8em;
}

.authorized-reseller-card .btn {
    margin-top: auto !important;
}

@media (min-width: 992px) {
    .authorized-reseller-card {
        flex-basis: 230px;
    }
}

.authorized-reseller-view-btn {
    background: #111 !important;
    border-color: #111 !important;
    color: #fff !important;
}

.authorized-reseller-view-btn:hover,
.authorized-reseller-view-btn:focus {
    background: var(--store-accent) !important;
    border-color: var(--store-accent) !important;
    color: #fff !important;
}

.brand-products-page {
    background: linear-gradient(180deg, #f8f9fc 0%, #f2f5fb 100%);
}

.brand-products-hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-radius: 1rem;
    padding: clamp(1.15rem, 1.2vw + 0.95rem, 1.9rem);
    background: linear-gradient(124deg, #0b101a 0%, #131b29 52%, #192336 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 1rem 2.2rem rgba(9, 14, 24, 0.34);
}

.brand-products-hero-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    right: -130px;
    top: -140px;
    background: radial-gradient(circle, rgba(214, 0, 0, 0.34) 0%, transparent 72%);
    pointer-events: none;
}

.brand-products-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 26px 26px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.33), transparent 62%);
    pointer-events: none;
    z-index: 0;
}

.brand-products-kicker {
    color: rgba(233, 240, 255, 0.86);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.68rem;
    font-weight: 700;
}

.brand-products-title {
    color: #fff;
    font-size: clamp(1.65rem, 3.9vw, 2.45rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

.brand-products-subtitle {
    color: rgba(226, 236, 255, 0.8);
    max-width: 46rem;
    line-height: 1.65;
}

.brand-products-logo-card {
    display: flex;
    justify-content: center;
    align-items: center;
    width: min(100%, 290px);
    margin-left: auto;
    min-height: 106px;
    padding: 0.65rem 1rem;
    border-radius: 0.75rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(245, 248, 255, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0.45rem 1.5rem rgba(7, 15, 28, 0.2);
}

.brand-products-logo {
    max-height: 72px;
    max-width: 92%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.brand-products-nav {
    position: relative;
    z-index: 1;
    padding-top: 0.25rem;
}

.brand-products-home-link,
.brand-products-chip {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.35rem 0.6rem;
    border-radius: 0.42rem;
    font-size: 0.66rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 0.92;
    vertical-align: middle;
    transition: all 0.22s ease;
}

.brand-products-chip-label {
    display: inline-block;
    line-height: inherit;
}

.brand-products-home-link {
    color: #0d1525;
    background: rgba(255, 255, 255, 0.93);
    border: 1px solid rgba(255, 255, 255, 0.95);
    font-weight: 700;
}

.brand-products-home-link:hover,
.brand-products-home-link:focus {
    color: #0a1220;
    background: #fff;
    box-shadow: 0 0.35rem 1rem rgba(9, 18, 31, 0.22);
}

.brand-products-chip {
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.06);
    font-weight: 600;
}

.brand-products-chip:hover,
.brand-products-chip:focus {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.16);
}

.brand-products-chip.is-active {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.92);
    background: linear-gradient(135deg, #be1c1c 0%, #8f0f0f 100%);
    box-shadow: 0 0.45rem 1rem rgba(146, 18, 18, 0.4);
}

@media (max-width: 991.98px) {
    .brand-products-logo-card {
        margin-left: 0;
    }

    .brand-products-nav {
        gap: 0.45rem !important;
    }

    .brand-products-home-link,
    .brand-products-chip {
        padding: 0.33rem 0.52rem;
        font-size: 0.64rem;
    }
}

/* --------------------------------------------------------------------------
   Brands page + homepage featured brands marquee
   -------------------------------------------------------------------------- */

.brands-page {
    background: linear-gradient(180deg, #f8f9fc 0%, #f2f5fb 100%);
}

.brands-page-hero {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, #0f1015 0%, #1e2129 70%, #252b36 100%);
    padding: 1.4rem;
}

.brands-page-hero-glow {
    position: absolute;
    top: -110px;
    right: -110px;
    width: 290px;
    height: 290px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(214, 0, 0, 0.3) 0%, transparent 70%);
}

.brands-page-kicker {
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    font-size: 0.7rem;
}

.brands-page-title {
    color: #fff;
    font-size: clamp(1.45rem, 2vw + 1rem, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.01em;
}

.brands-page-subtitle {
    color: rgba(255, 255, 255, 0.78);
    max-width: 52rem;
}

.brands-page-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #e6ebf4;
    border-radius: 0.9rem;
    background: #fff;
    padding: 0.7rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.brands-page-card:hover {
    transform: translateY(-4px);
    border-color: #d6ddea;
    box-shadow: 0 1rem 1.8rem rgba(15, 22, 35, 0.11);
}

.brands-page-card-logo-wrap {
    min-height: 110px;
    border-radius: 0.7rem;
    border: 1px solid #edf1f6;
    background: linear-gradient(180deg, #fbfcff 0%, #f5f7fb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem;
    overflow: hidden;
}

.brands-page-card-logo {
    max-width: 220px;
    max-height: 96px;
    width: auto;
    height: auto;
    object-fit: contain;
    transform: scale(1.35);
}

.brands-page-card-logo-placeholder {
    width: 100%;
    height: 80px;
    border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(140deg, #12151b, #2a2f3b);
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
}

.brands-page-card-body {
    padding: 0.9rem 0.25rem 0.2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.brands-page-card-title {
    color: #1f2a3b;
    font-size: 1rem;
    font-weight: 800;
    margin: 0 0 0.3rem;
}

.brands-page-card-tagline {
    color: #5a6475;
    font-size: 0.84rem;
    line-height: 1.5;
    margin: 0;
}

.brands-page-card-count {
    color: #4a5568;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
}

.brands-page-card-count-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.brands-page-card-count-link:hover .brands-page-card-count,
.brands-page-card-count-link:focus .brands-page-card-count {
    color: var(--store-accent);
    text-decoration: underline;
}

.featured-brands-shell {
    border: 1px solid #e5e9f1;
    border-radius: 1rem;
    padding: 1rem 1rem 0.9rem;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.featured-brands-marquee {
    overflow: hidden;
    border-radius: 0.85rem;
    border: 1px solid #e9edf4;
    background: #fff;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.featured-brands-track {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    width: max-content;
    padding: 0.65rem 0.5rem;
    animation: dc-featured-brands-scroll 32s linear infinite;
}

.featured-brand-item {
    width: 180px;
    height: 84px;
    flex: 0 0 auto;
    border: 1px solid #edf1f7;
    border-radius: 0.65rem;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.35rem;
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.featured-brand-item:hover {
    border-color: #d5dceb;
    transform: translateY(-2px);
    box-shadow: 0 0.65rem 1.2rem rgba(15, 22, 35, 0.09);
}

.featured-brand-item img {
    max-width: 176px;
    max-height: 74px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.3);
}

@keyframes dc-featured-brands-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 767px) {
    .featured-brand-item {
        width: 150px;
        height: 74px;
    }

    .featured-brand-item img {
        max-width: 146px;
        max-height: 64px;
    }
}

/* --------------------------------------------------------------------------
   Clearance page
   -------------------------------------------------------------------------- */

.clearance-page {
    background: linear-gradient(180deg, #f8f9fc 0%, #f2f5fb 100%);
}

.catalog-showcase-sidebar {
    background: #fff;
    border: 1px solid #e4e8ef;
    border-radius: 0.4rem;
    padding: 0.9rem 0.8rem;
}

.catalog-showcase-sidebar-title {
    color: #1f2937;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.catalog-showcase-sidebar-list {
    display: grid;
    gap: 0.2rem;
}

.catalog-showcase-sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
    padding: 0.3rem 0.2rem;
    color: #4d5b72;
    text-decoration: none;
    font-size: 0.75rem;
    border-radius: 0.25rem;
}

.catalog-showcase-sidebar-link i {
    font-size: 0.62rem;
    color: #b5c0d1;
}

.catalog-showcase-sidebar-link:hover {
    color: var(--store-accent);
    background: #fff4f4;
}

.catalog-showcase-sidebar-link:hover i {
    color: var(--store-accent);
}

.catalog-showcase-carousel {
    border-radius: 0.45rem;
    overflow: hidden;
    border: 1px solid #e4e8ef;
    background: #000;
}

.catalog-showcase-slide {
    position: relative;
    min-height: 230px;
}

.catalog-showcase-slide-image {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

.catalog-showcase-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(95deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.2));
}

.catalog-showcase-slide-content {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
    max-width: 34rem;
}

.catalog-showcase-badge {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-weight: 700;
}

.catalog-showcase-title {
    color: #fff;
    font-size: clamp(1.15rem, 2.6vw, 2.05rem);
    font-weight: 900;
    line-height: 1.08;
    text-transform: uppercase;
}

.catalog-showcase-subtitle {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.84rem;
    line-height: 1.45;
}

.catalog-showcase-cta {
    background: #fff;
    border: 1px solid #fff;
    color: #0f1114;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.catalog-showcase-cta:hover,
.catalog-showcase-cta:focus {
    background: var(--store-accent);
    border-color: var(--store-accent);
    color: #fff;
}

.catalog-showcase-arrow {
    width: 2.2rem;
    opacity: 1;
}

.catalog-showcase-arrow i {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

.catalog-page-hero {
    position: relative;
    overflow: hidden;
    border-radius: 0.85rem;
    border: 1px solid #e2e7f0;
    background: linear-gradient(120deg, #fefefe 0%, #f8f9fc 65%, #fff 100%);
}

.catalog-page-hero::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    right: -120px;
    top: -120px;
    background: radial-gradient(circle, rgba(214, 0, 0, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.catalog-page-hero-inner {
    position: relative;
    z-index: 1;
    padding: 1.1rem 1.2rem;
}

.catalog-page-kicker {
    color: #9a1d1d;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.68rem;
    font-weight: 700;
}

.catalog-page-title {
    color: #1a2435;
    font-size: clamp(1.45rem, 2.6vw, 2rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
}

.catalog-page-subtitle {
    color: #536074;
    max-width: 56rem;
    font-size: 0.9rem;
    line-height: 1.55;
}

.catalog-page-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.75rem;
    color: #66758c;
}

.catalog-page-breadcrumb a {
    color: #2b3b52;
    text-decoration: none;
    font-weight: 600;
}

.catalog-page-breadcrumb a:hover {
    color: var(--store-accent);
}

.clearance-page-title {
    color: #1a2435;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    letter-spacing: 0.01em;
    text-transform: uppercase;
    font-weight: 800;
}

.clearance-toolbar-label {
    color: #4a5568;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
    white-space: nowrap;
}

.clearance-toolbar-select {
    min-width: 220px;
    border-color: #d4dbe6;
    font-size: 0.82rem;
    color: #273349;
}

.clearance-toolbar-controls {
    justify-content: flex-end;
}

.clearance-toolbar-group {
    background: #fff;
    border: 1px solid #e2e8f2;
    border-radius: 0.35rem;
    padding: 0.3rem 0.45rem;
}

.clearance-toolbar .btn-group .btn {
    border-color: #d4dbe6;
    color: #42526b;
    background: #fff;
}

.clearance-toolbar .btn-group .btn.active {
    border-color: var(--store-accent);
    color: #fff;
    background: var(--store-accent);
}

.clearance-card {
    background: #fff;
    border: 1px solid #e4e9f2;
    border-radius: 0.45rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.clearance-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.85rem 1.5rem rgba(16, 24, 40, 0.1);
}

.clearance-card-image-wrap {
    background: #fff;
    border-bottom: 1px solid #edf1f6;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.clearance-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.clearance-card-body {
    padding: 0.8rem 0.9rem 0.9rem;
}

.clearance-card-title {
    color: #1d2737;
    font-size: 0.93rem;
    font-weight: 700;
    line-height: 1.38;
    margin: 0 0 0.55rem;
    min-height: 2.5rem;
}

.clearance-card-specs {
    margin: 0;
}

.clearance-card-specs > div {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    font-size: 0.83rem;
    line-height: 1.4;
    margin-bottom: 0.2rem;
}

.clearance-card-specs dt,
.clearance-card-specs dd {
    margin: 0;
}

.clearance-card-specs dt {
    color: #252f3f;
    font-weight: 700;
}

.clearance-card-specs dd {
    color: #5a6578;
    font-weight: 500;
}

.clearance-card-footer {
    padding-top: 0.65rem;
}

.clearance-card-price {
    color: #b31b1b;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}

.clearance-products-row.clearance-view-grid-4 > .clearance-product-col {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 576px) {
    .clearance-products-row.clearance-view-grid-4 > .clearance-product-col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 1200px) {
    .clearance-products-row.clearance-view-grid-4 > .clearance-product-col {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (min-width: 576px) {
    .clearance-products-row.clearance-view-grid-3 > .clearance-product-col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .clearance-products-row.clearance-view-grid-3 > .clearance-product-col {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

.clearance-products-row.clearance-view-list {
    row-gap: 1rem !important;
}

.clearance-products-row.clearance-view-list > .clearance-product-col {
    flex: 0 0 100%;
    max-width: 100%;
}

.clearance-products-row.clearance-view-list .clearance-card {
    flex-direction: row;
    align-items: stretch;
}

.clearance-products-row.clearance-view-list .clearance-card-image-wrap {
    width: 260px;
    min-width: 260px;
    aspect-ratio: auto;
}

.clearance-products-row.clearance-view-list .clearance-card-body {
    flex: 1;
}

@media (max-width: 767px) {
    .catalog-showcase-slide,
    .catalog-showcase-slide-image {
        min-height: 188px;
        height: 188px;
    }

    .catalog-showcase-slide-content {
        padding: 0.85rem 1rem;
    }

    .catalog-showcase-title {
        font-size: 1rem;
    }

    .catalog-showcase-subtitle {
        font-size: 0.75rem;
    }

    .catalog-page-hero-inner {
        padding: 0.9rem 0.95rem;
    }

    .catalog-page-subtitle {
        font-size: 0.84rem;
    }

    .clearance-toolbar {
        align-items: flex-start !important;
    }

    .clearance-toolbar-controls {
        width: 100%;
        justify-content: flex-start;
    }

    .clearance-toolbar-group {
        width: 100%;
        justify-content: space-between;
    }

    .clearance-toolbar-select {
        min-width: 190px;
    }

    .clearance-products-row.clearance-view-list .clearance-card {
        flex-direction: column;
    }

    .clearance-products-row.clearance-view-list .clearance-card-image-wrap {
        width: 100%;
        min-width: 100%;
        aspect-ratio: 16 / 10;
    }
}

/* --------------------------------------------------------------------------
   Hard drives page
   -------------------------------------------------------------------------- */

.hard-drive-filter-card {
    background: #fff;
    border: 1px solid #e1e7f1;
    border-radius: 0.45rem;
    padding: 0.85rem 0.9rem;
}

.hard-drive-filter-title {
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #233147;
}

.hard-drive-filter-group + .hard-drive-filter-group {
    margin-top: 0.55rem;
    border-top: 1px solid #edf1f7;
    padding-top: 0.55rem;
}

.hard-drive-filter-group-title {
    width: 100%;
    border: 0;
    background: none;
    padding: 0;
    text-align: left;
    color: #384861;
    font-size: 0.79rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.35rem;
}

.hard-drive-filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
}

.hard-drive-filter-check {
    margin: 0;
}

.hard-drive-filter-check .form-check-label {
    font-size: 0.83rem;
    color: #4e5c72;
}

.hard-drive-filter-options-scroll {
    max-height: 180px;
    overflow: auto;
    padding-right: 0.2rem;
}

.hard-drive-enabled-filters {
    min-height: 1.2rem;
}

.hard-drive-clear-btn {
    color: var(--store-accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
}

.hard-drive-clear-btn:hover,
.hard-drive-clear-btn:focus {
    color: #0a6fad;
    text-decoration: underline;
}

.hard-drives-per-page {
    min-width: 86px;
}

.hard-drives-page .clearance-card-image-wrap,
.networking-page .clearance-card-image-wrap {
    background: #f8fafc;
}

.hard-drives-page .clearance-card-image,
.networking-page .clearance-card-image {
    object-fit: contain;
    object-position: center;
    padding: 0.5rem;
}

.hard-drive-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.hard-drive-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 0.18rem 0.52rem;
}

.hard-drive-badge--category {
    background: #eef2ff;
    color: #3741a0;
}

.hard-drive-badge--condition {
    background: #e8f7ec;
    color: #1f7a3f;
}

.hard-drive-price-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #fef0c7;
    color: #92400e;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0.2rem 0.55rem;
}

.hard-drives-footer .pagination .page-link {
    border-color: #d7e0ee;
    color: #3f4d66;
}

.hard-drives-footer .pagination .page-item.active .page-link {
    background-color: var(--store-accent);
    border-color: var(--store-accent);
    color: #fff;
}

@media (max-width: 991px) {
    .hard-drive-filters {
        margin-bottom: 0.5rem;
    }
}

/* Account & authentication pages */
.store-auth-page {
    max-width: 1100px;
}

.store-auth-card {
    border-radius: 0.75rem;
    border: 1px solid #e4e8f0;
}

.store-auth-card .card-body {
    padding: 2.25rem 2.5rem;
}

.store-auth-heading-kicker {
    letter-spacing: 0.12em;
}

.store-auth-heading-main {
    letter-spacing: -0.02em;
}

.store-auth-form .form-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #4b5563;
}

.store-auth-form .form-control {
    border-radius: 0.5rem;
    border-color: #d1d5db;
    background-color: #f9fafb;
    color: #111827;
    box-shadow: none;
}

.store-auth-form .form-control::placeholder {
    color: #9ca3af;
}

.store-auth-form .form-control:focus {
    background-color: #ffffff;
    border-color: var(--store-accent);
    box-shadow: 0 0 0 0.16rem rgba(224, 41, 41, 0.12);
    color: #111827;
}

.store-auth-form .btn-store-primary {
    border-radius: 999px;
    font-weight: 600;
}

.store-auth-form .btn-outline-dark {
    border-radius: 999px;
    font-weight: 600;
}

.store-auth-form .form-check-input:focus {
    box-shadow: 0 0 0 0.12rem rgba(224, 41, 41, 0.2);
    border-color: var(--store-accent);
}

.store-auth-form .form-check-input:checked {
    background-color: var(--store-accent);
    border-color: var(--store-accent);
}

@media (max-width: 991.98px) {
    .store-auth-card .card-body {
        padding: 1.75rem 1.5rem;
    }
}