/* =========================================================
   NATIONWIDE BATTERY + TROJAN BATTERY
   Main Website Stylesheet
   Version: 1.0
   ========================================================= */

/* =========================================================
   01. VARIABLES
   ========================================================= */

:root {
    /* Brand colors */
    --red: #ed1b2f;
    --red-dark: #c81024;
    --red-light: #f7d9dd;

    --black: #101317;
    --dark: #171b20;
    --dark-2: #22272d;

    --white: #ffffff;
    --off-white: #f8f8f7;
    --light-gray: #f1f2f3;
    --gray: #e2e4e7;

    --text: #17191c;
    --text-light: #606770;
    --text-muted: #7b8189;

    --border: #dedfe1;

    /* Typography */
    --font-main: "Inter", "Helvetica Neue", Arial, sans-serif;

    /* Layout */
    --container: 1200px;
    --header-height: 76px;

    /* Radius */
    --radius-sm: 5px;
    --radius-md: 9px;
    --radius-lg: 14px;
    --radius-xl: 20px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.12);

    /* Transition */
    --transition: 0.25s ease;
}


/* =========================================================
   02. RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
    border: 0;
}

ul,
ol {
    list-style: none;
}


/* =========================================================
   03. GENERAL LAYOUT
   ========================================================= */

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}

.section {
    padding: 80px 0;
}

.section-sm {
    padding: 55px 0;
}

.text-center {
    text-align: center;
}


/* =========================================================
   04. TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(2.8rem, 5vw, 4.6rem);
}

h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
}

h3 {
    font-size: 1.25rem;
}

p {
    color: var(--text-light);
}


/* =========================================================
   05. HEADER
   ========================================================= */

.site-header {
    position: relative;
    z-index: 1000;
    width: 100%;
    height: var(--header-height);
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Logos */

.header-brand {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.header-brand img {
    max-height: 48px;
    width: auto;
}

.brand-divider {
    width: 1px;
    height: 38px;
    background: #cfcfcf;
}

.company-info{
    border-left: 2px solid #545454;
    padding-left: 15px;
}

.company-label{

    color:var(--primary);
    font-weight:700;
    letter-spacing:1px;

}

.company-text{

    color:var(--secondary);
    font-weight:600;

}

/* Navigation */

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 38px;
    margin-left: auto;
}

.main-nav a {
    position: relative;
    padding: 27px 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: #25282c;
    transition: color var(--transition);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 17px;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--red);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

/* Header actions */

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 20px;
}

.header-action {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: var(--black);
    transition: color var(--transition), transform var(--transition);
}

.header-action:hover {
    color: var(--red);
    transform: translateY(-1px);
}

.header-action svg {
    width: 21px;
    height: 21px;
    stroke-width: 1.8;
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -7px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    font-size: 0.62rem;
    font-weight: 700;
}


/* =========================================================
   06. HERO
   ========================================================= */

.hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(8, 11, 14, 0.92) 0%,
            rgba(8, 11, 14, 0.78) 35%,
            rgba(8, 11, 14, 0.25) 70%,
            rgba(8, 11, 14, 0.05) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(100%, 650px);
    padding: 80px 0;
}

.hero-eyebrow {
    margin-bottom: 14px;
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-title {
    max-width: 650px;
    color: var(--white);
    font-size: clamp(3rem, 5.2vw, 4.6rem);
    line-height: 0.98;
}

.hero-title span {
    color: var(--red);
}

.hero-description {
    max-width: 540px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}


/* =========================================================
   07. BUTTONS
   ========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 28px;
    border-radius: 7px;
    font-size: 0.92rem;
    font-weight: 700;
    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 7px 20px rgba(237, 27, 47, 0.2);
}

.btn-primary:hover {
    background: var(--red-dark);
    box-shadow: 0 10px 25px rgba(237, 27, 47, 0.3);
}

.btn-outline {
    border: 1px solid var(--white);
    background: transparent;
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
}

.btn-dark {
    background: var(--black);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--red);
}

.btn-full {
    width: 100%;
}


/* =========================================================
   08. BENEFITS
   ========================================================= */

.benefits {
    background: var(--white);
    border-bottom: 1px solid #ededed;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.benefit {
    min-height: 135px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    padding: 25px 30px;
    text-align: center;
    border-right: 1px solid var(--border);
}

.benefit:last-child {
    border-right: 0;
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    color: var(--red);
    font-size:2rem;
}

.benefit-icon svg {
    width: 38px;
    height: 38px;
    stroke-width: 1.7;
}

.benefit-content {
    text-align: left;
}

.benefit-title {
    color: var(--black);
    font-size: 0.95rem;
    font-weight: 700;
}

.benefit-text {
    margin-top: 3px;
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.4;
}


/* =========================================================
   09. SECTION HEADER
   ========================================================= */

.section-header {
    max-width: 750px;
    margin: 0 auto 45px;
    text-align: center;
}

.section-kicker {
    margin-bottom: 9px;
    color: var(--red);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.section-title {
    color: var(--black);
}

.section-description {
    max-width: 650px;
    margin: 12px auto 0;
    font-size: 0.95rem;
}


/* =========================================================
   10. PRODUCTS
   ========================================================= */

.products-section {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.product-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: #d4d5d7;
    box-shadow: var(--shadow-md);
}

.product-image {
    position: relative;
    aspect-ratio: 1 / 0.86;
    overflow: hidden;
    background: #f7f7f7;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 18px;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}

.product-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px 18px 16px;
}

.product-name {
    color: var(--black);
    font-size: 1rem;
    font-weight: 750;
}

.product-category {
    margin-top: 3px;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
}

.product-description {
    margin-top: 9px;
    color: var(--text-light);
    font-size: 0.8rem;
    line-height: 1.45;
}

.product-button {
    width: 100%;
    margin-top: auto;
    padding-top: 18px;
}

.product-button .btn {
    width: 100%;
    min-height: 43px;
    padding: 0 15px;
    font-size: 0.78rem;
}


/* =========================================================
   11. TROJAN BRAND BANNER
   ========================================================= */

.brand-banner {
    position: relative;
    min-height: 190px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 55px;
    border-radius: var(--radius-md);
    background: var(--dark);
}

.brand-banner-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(16, 19, 23, 0.98) 0%,
            rgba(16, 19, 23, 0.92) 45%,
            rgba(16, 19, 23, 0.45) 100%
        );
}

.brand-banner-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 240px 1fr;
    align-items: center;
    width: 100%;
    padding: 35px 45px;
    gap: 45px;
}

.trojan-logo {
    max-width: 190px;
}

.brand-banner-divider {
    width: 1px;
    height: 90px;
    background: rgba(255, 255, 255, 0.25);
}

.brand-banner-info {
    display: flex;
    align-items: center;
    gap: 40px;
}

.brand-banner-title {
    color: var(--white);
    font-size: 1.65rem;
}

.brand-banner-text {
    max-width: 580px;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    line-height: 1.5;
}


/* =========================================================
   12. CONTACT SECTION
   ========================================================= */

.contact-section {
    padding: 75px 0;
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.contact-intro {
    padding-top: 12px;
}

.contact-kicker {
    color: var(--red);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.contact-title {
    max-width: 500px;
    margin-top: 10px;
    color: var(--black);
    font-size: clamp(2rem, 3.5vw, 3rem);
}

.contact-description {
    max-width: 480px;
    margin-top: 18px;
    font-size: 0.95rem;
}

/* Contact layout */

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 250px;
    gap: 18px;
}

.contact-form {
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 13px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    color: var(--black);
    font-size: 0.74rem;
    font-weight: 600;
}

.form-control {
    width: 100%;
    min-height: 42px;
    padding: 9px 12px;
    color: var(--black);
    background: var(--white);
    border: 1px solid #d8dadd;
    border-radius: 5px;
    outline: none;
    font-size: 0.8rem;
    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}

.form-control::placeholder {
    color: #a1a5aa;
}

.form-control:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(237, 27, 47, 0.08);
}

textarea.form-control {
    min-height: 95px;
    resize: vertical;
}

select.form-control {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #777 50%),
        linear-gradient(135deg, #777 50%, transparent 50%);
    background-position:
        calc(100% - 16px) 17px,
        calc(100% - 11px) 17px;
    background-size: 5px 5px;
    background-repeat: no-repeat;
}

.form-submit {
    margin-top: 5px;
}

.form-submit .btn {
    min-height: 44px;
}


/* =========================================================
   13. CONTACT CARDS
   ========================================================= */

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-method {
    padding: 17px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.contact-method-header {
    display: flex;
    align-items: center;
    gap: 11px;
}

.contact-method-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
}

.contact-method-icon.whatsapp {
    background: #25d366;
}

.contact-method-icon svg {
    width: 19px;
    height: 19px;
}

.contact-method-title {
    color: var(--black);
    font-size: 0.85rem;
    font-weight: 750;
}

.contact-method-text {
    margin: 1px 0 0 47px;
    color: var(--text-muted);
    font-size: 0.7rem;
    line-height: 1.4;
}

.contact-method-value {
    display: block;
    margin-top: 5px;
    color: var(--black);
    font-size: 0.84rem;
    font-weight: 700;
}

.contact-method-value {
    display: block;
    margin-top: 5px;
    color: var(--black);
    font-size: 0.70rem;
    font-weight: 700;
}
.contact-method .btn {
    width: 100%;
    min-height: 35px;
    margin-top: 11px;
    padding: 0 12px;
    font-size: 0.7rem;
}


/* =========================================================
   14. FLOATING CONTACT BUTTONS
   ========================================================= */

.floating-contact {
    position: fixed;
    z-index: 900;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: var(--white);
    box-shadow: var(--shadow-md);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.floating-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: var(--shadow-lg);
}

.floating-button svg {
    width: 24px;
    height: 24px;
}

.floating-whatsapp {
    background: #25d366;
}

.floating-call {
    background: var(--red);
}


/* =========================================================
   15. FOOTER
   ========================================================= */

.site-footer {
    padding: 38px 0 22px;
    background: var(--dark);
    color: var(--white);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 17px;
}

.footer-brand img {
    max-width: 180px;
    max-height: 45px;
    object-fit: contain;
}

.footer-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.25);
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.76rem;
    transition: color var(--transition);
}

.footer-nav a:hover {
    color: var(--red);
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: var(--white);
    transition:
        color var(--transition),
        transform var(--transition);
}

.footer-social a:hover {
    color: var(--red);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 17px;
    height: 17px;
}

.footer-bottom {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.68rem;
}


/* =========================================================
   16. PRODUCT DETAIL PAGE
   ========================================================= */

.product-detail {
    padding: 80px 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.product-detail-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding: 40px;
    background: var(--off-white);
    border-radius: var(--radius-lg);
}

.product-detail-image img {
    max-height: 430px;
    object-fit: contain;
}

.product-detail-brand {
    margin-bottom: 10px;
    color: var(--red);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.product-detail-title {
    color: var(--black);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.product-detail-subtitle {
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 1rem;
}

.product-detail-description {
    margin-top: 22px;
    font-size: 0.95rem;
}

.product-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}


/* =========================================================
   17. PRODUCT SPECS
   ========================================================= */

.specs {
    margin-top: 35px;
    border-top: 1px solid var(--border);
}

.spec-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
}

.spec-label {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.spec-value {
    color: var(--black);
    font-size: 0.82rem;
    font-weight: 700;
}


/* =========================================================
   18. CATALOG PAGE
   ========================================================= */

.catalog {
    padding: 75px 0;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 235px 1fr;
    gap: 40px;
}

.catalog-filters {
    align-self: start;
    padding: 22px;
    background: var(--off-white);
    border-radius: var(--radius-md);
}

.filter-title {
    color: var(--black);
    font-size: 0.95rem;
    font-weight: 750;
}

.filter-group {
    margin-top: 25px;
}

.filter-group-title {
    margin-bottom: 10px;
    color: var(--black);
    font-size: 0.78rem;
    font-weight: 700;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.filter-option label {
    color: var(--text-light);
    font-size: 0.77rem;
    cursor: pointer;
}

.filter-option input {
    accent-color: var(--red);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}


/* =========================================================
   19. RESPONSIVE - LARGE TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .container {
        width: min(100% - 32px, var(--container));
    }

    .main-nav {
        gap: 25px;
    }

    .header-actions {
        gap: 12px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit:nth-child(2) {
        border-right: 0;
    }

    .benefit:nth-child(-n + 2) {
        border-bottom: 1px solid var(--border);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .contact-intro {
        text-align: center;
    }

    .contact-title,
    .contact-description {
        margin-left: auto;
        margin-right: auto;
    }
}


/* =========================================================
   20. RESPONSIVE - TABLET
   ========================================================= */

@media (max-width: 900px) {

    :root {
        --header-height: 68px;
    }

    .header-brand {
        gap: 12px;
    }

    .header-brand img {
        max-width: 230px;
        max-height: 42px;
    }

    .main-nav {
        display: none;
    }

    .header-actions {
        margin-left: auto;
    }

    .hero {
        min-height: 520px;
    }

    .hero-content {
        padding: 70px 0;
    }

    .hero-title {
        font-size: clamp(2.7rem, 7vw, 4rem);
    }

    .brand-banner-content {
        grid-template-columns: 180px 1fr;
        gap: 25px;
        padding: 30px;
    }

    .brand-banner-info {
        gap: 25px;
    }

    .brand-banner-title {
        font-size: 1.35rem;
    }

    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-nav {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .catalog-layout {
        grid-template-columns: 1fr;
    }

    .catalog-filters {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .filter-group {
        margin-top: 0;
    }

    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   21. RESPONSIVE - MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .container {
        width: min(100% - 24px, var(--container));
    }

    .section {
        padding: 55px 0;
    }

    /* Header */

    .site-header {
        height: 64px;
    }

    .header-inner {
        gap: 10px;
    }

    .header-brand {
        max-width: 235px;
    }

    .header-brand img {
        max-width: 215px;
        max-height: 38px;
    }

    .brand-divider {
        display: none;
    }

    .header-actions {
        gap: 7px;
        margin-left: auto;
    }

    .header-action {
        width: 27px;
        height: 27px;
    }

    .header-action svg {
        width: 19px;
        height: 19px;
    }

    /* Hero */

    .hero {
        min-height: 570px;
        align-items: flex-end;
    }

    .hero-image {
        object-position: 65% center;
    }

    .hero::after {
        background:
            linear-gradient(
                180deg,
                rgba(8, 11, 14, 0.15) 0%,
                rgba(8, 11, 14, 0.55) 40%,
                rgba(8, 11, 14, 0.96) 100%
            );
    }

    .hero-content {
        padding: 45px 0;
    }

    .hero-title {
        font-size: 2.7rem;
        line-height: 1;
    }

    .hero-description {
        margin-top: 18px;
        font-size: 0.9rem;
    }

    .hero-actions {
        margin-top: 22px;
    }

    .btn {
        min-height: 45px;
        padding: 0 22px;
    }

    /* Benefits */

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit,
    .benefit:nth-child(2) {
        min-height: 105px;
        justify-content: flex-start;
        padding: 20px;
        text-align: left;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .benefit:last-child {
        border-bottom: 0;
    }

    .benefit-content {
        text-align: left;
    }

    /* Section */

    .section-header {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 0.85rem;
    }

    /* Products */

    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .product-content {
        padding: 13px;
    }

    .product-name {
        font-size: 0.86rem;
    }

    .product-category {
        font-size: 0.7rem;
    }

    .product-description {
        font-size: 0.72rem;
    }

    .product-button {
        padding-top: 13px;
    }

    .product-button .btn {
        min-height: 38px;
        font-size: 0.68rem;
    }

    .product-image img {
        padding: 10px;
    }

    /* Trojan banner */

    .brand-banner {
        min-height: auto;
    }

    .brand-banner-content {
        display: block;
        padding: 28px 22px;
    }

    .trojan-logo {
        max-width: 155px;
        margin-bottom: 22px;
    }

    .brand-banner-divider {
        display: none;
    }

    .brand-banner-info {
        display: block;
    }

    .brand-banner-title {
        font-size: 1.25rem;
    }

    .brand-banner-text {
        font-size: 0.78rem;
    }

    /* Contact */

    .contact-section {
        padding: 55px 0;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-description {
        font-size: 0.85rem;
    }

    .contact-form {
        padding: 18px;
    }

    .contact-methods {
        gap: 9px;
    }

    .contact-method {
        padding: 14px;
    }

    /* Floating buttons */

    .floating-contact {
        right: 14px;
        bottom: 14px;
    }

    .floating-button {
        width: 48px;
        height: 48px;
    }

    /* Footer */

    .site-footer {
        padding-top: 32px;
    }

    .footer-brand img {
        max-width: 230px;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 15px 22px;
    }

    /* Product detail */

    .product-detail {
        padding: 50px 0;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .product-detail-image {
        min-height: 300px;
        padding: 25px;
    }

    .product-detail-title {
        font-size: 2.3rem;
    }

    /* Catalog */

    .catalog {
        padding: 50px 0;
    }

    .catalog-filters {
        grid-template-columns: 1fr;
    }

    .catalog-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}


/* =========================================================
   22. EXTRA SMALL MOBILE
   ========================================================= */

@media (max-width: 390px) {

    .header-brand img {
        max-width: 175px;
    }

    .header-actions {
        gap: 3px;
    }

    .hero-title {
        font-size: 2.35rem;
    }

    .hero-description {
        font-size: 0.82rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        aspect-ratio: 1 / 0.75;
    }
}


/* =========================================================
   23. ACCESSIBILITY
   ========================================================= */

:focus-visible {
    outline: 3px solid rgba(237, 27, 47, 0.35);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}


/* =========================================================
   24. UTILITY CLASSES
   ========================================================= */

.hidden {
    display: none !important;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.no-scroll {
    overflow: hidden;
}