* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --container-width: 1280px;
    --container-gap: 40px;
    --container-gap-mobile: 22px;
    --section-space: 70px;
    --section-space-tablet: 60px;
    --section-space-mobile: 50px;
    --green: #0b7a19;
    --green-dark: #075d12;
    --text-dark: #111111;
    --text-muted: #666666;
    --border-light: #e7ece6;
    --bg-soft: #f8faf8;
    --bg-breadcrumb: #f5f8f3;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: var(--text-dark);
}

img {
    display: block;
    width: 100%;
    height: auto;
}

main {
    display: block;
}

.section-space {
    padding: var(--section-space) 0;
}

.page-breadcrumb,
.accessories-hero,
.accessories-promo {
    margin: 0;
}

/* Breadcrumb */
.page-breadcrumb {
    width: 100%;
    background: var(--bg-breadcrumb);
    border-bottom: 1px solid #dfe6dc;
    padding: 12px 0;
}

.breadcrumb-container {
    width: min(var(--container-width), calc(100% - var(--container-gap)));
    margin: 0 auto;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.breadcrumb-list li {
    font-size: 14px;
    line-height: 1.4;
}

.breadcrumb-list li a {
    text-decoration: none;
    color: var(--green);
    font-weight: 700;
    transition: color 0.25s ease;
}

.breadcrumb-list li a:hover {
    color: var(--green-dark);
}

.breadcrumb-list .separator {
    color: #7e877b;
    font-weight: 500;
}

.breadcrumb-list .current {
    color: #1c1c1c;
    font-weight: 600;
}

/* Hero */
.accessories-hero {
    width: 100%;
    padding: 0;
}

.accessories-hero-image {
    position: relative;
    width: 100%;
    min-height: 360px;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.35) 42%, rgba(0, 0, 0, 0.18) 100%),
        url('https://images.unsplash.com/photo-1511707171634-5f897ff02aa9?auto=format&fit=crop&w=1600&q=80') center center / cover no-repeat;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.accessories-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.18) 100%);
    pointer-events: none;
}

.accessories-hero-content {
    position: relative;
    z-index: 2;
    width: min(var(--container-width), calc(100% - var(--container-gap)));
    margin: 0 auto;
    padding: 0 0 28px;
}

.accessories-hero-content h1 {
    color: #ffffff;
    font-size: clamp(34px, 5vw, 68px);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.03em;
    max-width: 8ch;
    text-transform: uppercase;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}

/* Shared Containers */
.categories-container,
.featured-container,
.why-container {
    width: min(var(--container-width), calc(100% - var(--container-gap)));
    margin: 0 auto;
}

.faq-container {
    width: min(1000px, calc(100% - var(--container-gap)));
    margin: 0 auto;
}

.section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.section-heading span {
    display: inline-block;
    color: var(--green);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-heading h2 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-heading p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0 auto;
}

/* Accessories Categories */
.accessories-categories {
    width: 100%;
    background: #ffffff;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.category-card {
    position: relative;
    display: block;
    height: 320px;
    overflow: hidden;
    border-radius: 24px;
    text-decoration: none;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 25px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.15),
        transparent
    );
}

.category-overlay h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.category-card:hover img {
    transform: scale(1.08);
}

/* Featured Accessories */
.featured-accessories {
    width: 100%;
    background: var(--bg-soft);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.featured-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.featured-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-card:hover img {
    transform: scale(1.08);
}

.featured-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.featured-content h3 {
    font-size: 20px;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.featured-price {
    font-size: 26px;
    font-weight: 800;
    color: var(--green);
    margin-bottom: 22px;
}

.featured-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: var(--green);
    color: #ffffff;
    font-weight: 700;
    padding: 14px 22px;
    border-radius: 12px;
    transition: background 0.3s ease;
}

.featured-btn:hover {
    background: var(--green-dark);
}

/* Why Choose Us */
.why-choose-us {
    width: 100%;
    background: #ffffff;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.usp-card {
    background: #ffffff;
    border: 1px solid #e8ece6;
    border-radius: 24px;
    padding: 35px 30px;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.usp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--green);
}

.usp-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: #edf8ef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.usp-card h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.usp-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    margin: 0 auto;
}

/* FAQ */
.faq-section {
    width: 100%;
    background: var(--bg-soft);
}

.faq-wrapper {
    margin-top: 40px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item[open] {
    border-color: var(--green);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.faq-question {
    list-style: none;
    width: 100%;
    cursor: pointer;
    padding: 22px 25px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: "+";
    font-size: 28px;
    color: var(--green);
    flex-shrink: 0;
    line-height: 1;
}

.faq-item[open] .faq-question::after {
    content: "−";
}

.faq-answer {
    padding: 0 25px 25px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 15px;
    margin: 0;
}

/* Promo Banner */
.accessories-promo {
    width: 100%;
    min-height: 450px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        linear-gradient(rgba(0, 0, 0, 0.60), rgba(0, 0, 0, 0.60)),
        url('https://images.unsplash.com/photo-1511707171634-5f897ff02aa9?auto=format&fit=crop&w=1800&q=80') center center / cover no-repeat;
    padding: 80px 20px;
}

.promo-content {
    max-width: 850px;
}

.promo-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.promo-content h2 {
    color: #ffffff;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
}

.promo-content p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    line-height: 1.9;
    max-width: 750px;
    margin: 0 auto;
}

/* Tablet */
@media (max-width: 991px) {
    .section-space {
        padding: var(--section-space-tablet) 0;
    }

    .categories-grid,
    .usp-grid {
        gap: 20px;
    }

    .featured-grid {
        gap: 22px;
    }

    .category-card {
        height: 280px;
    }

    .featured-image {
        height: 220px;
    }

    .faq-question {
        font-size: 17px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .breadcrumb-container,
    .categories-container,
    .featured-container,
    .why-container,
    .faq-container,
    .accessories-hero-content {
        width: min(100% - var(--container-gap-mobile), 100%);
    }

    .page-breadcrumb {
        padding: 10px 0;
    }

    .breadcrumb-list {
        gap: 8px;
    }

    .breadcrumb-list li {
        font-size: 13px;
    }

    .accessories-hero-image {
        min-height: 220px;
        background-position: center center;
    }

    .accessories-hero-content {
        padding: 0 0 18px;
    }

    .accessories-hero-content h1 {
        font-size: clamp(24px, 8vw, 38px);
        max-width: 9ch;
        line-height: 1.05;
    }

    .section-space {
        padding: var(--section-space-mobile) 0;
    }

    .section-heading {
        margin-bottom: 32px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .section-heading p {
        font-size: 15px;
    }

    .categories-grid,
    .featured-grid,
    .usp-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .category-card {
        height: 220px;
        border-radius: 18px;
    }

    .category-overlay {
        padding: 18px;
    }

    .category-overlay h3 {
        font-size: 20px;
    }

    .featured-image {
        height: 220px;
    }

    .featured-content {
        padding: 18px;
    }

    .featured-content h3 {
        font-size: 18px;
    }

    .featured-price {
        font-size: 22px;
    }

    .featured-btn {
        width: 100%;
        padding: 13px 18px;
    }

    .usp-card {
        padding: 28px 20px;
        border-radius: 18px;
    }

    .usp-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
        margin-bottom: 18px;
    }

    .usp-card h3 {
        font-size: 20px;
    }

    .usp-card p {
        font-size: 14px;
        line-height: 1.7;
    }

    .faq-wrapper {
        margin-top: 32px;
    }

    .faq-question {
        padding: 18px;
        font-size: 15px;
        line-height: 1.5;
    }

    .faq-question::after {
        font-size: 24px;
    }

    .faq-answer {
        padding: 0 18px 18px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .accessories-promo {
        min-height: 350px;
        padding: 60px 20px;
    }

    .promo-content h2 {
        font-size: 32px;
    }

    .promo-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .promo-tag {
        font-size: 12px;
        padding: 8px 16px;
    }
}