/* ============================================
   Street Motorbikes — Exact CSS from real site
   Extracted computed styles + real class names
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;500;600;700;800;900&display=swap');

/* === CSS VARIABLES (from real site) === */
:root {
    --font-color-primary: #78b031;
    --font-color-body: #333333;
    --font-size-body: 16px;
    --background-color-body: #FFFFFF;
    --font-custom-stack-body: 'Roboto Condensed', sans-serif;
    --font-custom-weight-body: 500;
    --font-color-header: #333333;
    --font-custom-stack-header: 'Roboto Condensed', sans-serif;
    --font-custom-weight-header: 600;
    --font-color-section-header: #333333;
    --font-custom-stack-section-header: 'Roboto Condensed', sans-serif;
    --font-custom-weight-section-header: 700;
    --font-text-section-header: uppercase;
    --font-color-paragraph: #808080;
    --font-custom-stack-paragraph: 'Roboto Condensed', sans-serif;
    --font-custom-weight-paragraph: 500;
    --font-line-height-paragraph: 30px;
    --font-color-secondary: #FFFFFF;
    --theme-border-color: rgba(128, 128, 128, 0.1);
    --text-color: #ffffff;
    --background-color: #78b031;
    --color-text: #808080;
    --color-heading: #333333;
    --sti-color: #6F6F6F;
    --sti-border: 1px solid rgba(128, 128, 128, 0.1);
    --sti-border-radius: 0px;
}

/* === RESET === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    color: var(--font-color-body);
    font-size: var(--font-size-body);
    background-color: var(--background-color-body);
    font-family: var(--font-custom-stack-body);
    font-weight: var(--font-custom-weight-body);
    line-height: normal;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

a {
    display: inline-block;
    color: var(--font-color-header);
    text-decoration: none;
    transition: all .3s ease;
}

a:hover {
    color: var(--font-color-primary);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

button {
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-custom-stack-body);
    transition: all .3s ease;
}

button:focus {
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--font-color-header);
    margin: 0;
    padding: 0;
    font-family: var(--font-custom-stack-header);
    font-weight: var(--font-custom-weight-header);
    line-height: normal;
}

p {
    color: var(--font-color-paragraph);
    margin: 0;
    font-family: var(--font-custom-stack-paragraph);
    font-weight: var(--font-custom-weight-paragraph);
    line-height: var(--font-line-height-paragraph);
}

.white-text {
    color: #ffffff !important;
}

/* === LAYOUT === */
.container {
    max-width: 1380px;
    padding: 0 15px;
    margin: 0 auto;
}

.container-fluid {
    max-width: 100%;
    padding: 0 50px;
    margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.col {
    width: 100%;
}

@media (max-width: 1499px) {
    .container {
        max-width: 1320px;
    }
}

@media (max-width: 1399px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }

    .container-fluid {
        padding: 0 12px;
    }
}

@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }
}

@media (max-width: 767px) {
    .container {
        max-width: 100%;
    }
}

/* === SECTION HEADINGS === */
.section-capture {
    margin-bottom: 50px;
}

.section-title {
    text-align: start;
}

.section-title h2 {
    font-size: 40px;
    line-height: 1.1;
    color: var(--font-color-section-header);
    font-family: var(--font-custom-stack-section-header);
    font-weight: var(--font-custom-weight-section-header);
    text-transform: var(--font-text-section-header);
}

@media (max-width: 1199px) {
    .section-capture {
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .section-capture {
        margin-bottom: 30px;
    }

    .section-title h2 {
        font-size: 24px;
    }
}

/* === BUTTONS === */
.btn-style,
.btn.btn-style,
.btn.btn-style2 {
    background-color: var(--font-color-primary);
    color: #ffffff;
    font-size: var(--font-size-body);
    padding: 13px 30px;
    text-transform: uppercase;
    text-align: center;
    border: none;
    font-weight: var(--font-custom-weight-section-header);
    display: inline-block;
    cursor: pointer;
    font-family: var(--font-custom-stack-body);
    transition: all .3s ease;
    text-decoration: none;
}

.btn-style:hover,
.btn.btn-style:hover,
.btn.btn-style2:hover {
    color: #ffffff;
    background-color: var(--font-color-body);
}

.btn-outline-style {
    background: transparent;
    color: var(--font-color-body);
    border: var(--sti-border);
    padding: 13px 30px;
    text-transform: uppercase;
    font-weight: var(--font-custom-weight-section-header);
    display: inline-block;
    cursor: pointer;
    font-family: var(--font-custom-stack-body);
    transition: all .3s ease;
}

.btn-outline-style:hover {
    background-color: var(--font-color-primary);
    color: #fff;
    border-color: var(--font-color-primary);
}

.btn.btn-style3 {
    background-color: #25d366;
    color: #ffffff;
    font-size: var(--font-size-body);
    padding: 13px 30px;
    text-transform: uppercase;
    text-align: center;
    border: none;
    font-weight: var(--font-custom-weight-section-header);
    display: inline-block;
    cursor: pointer;
    font-family: var(--font-custom-stack-body);
    transition: all .3s ease;
}

.btn.btn-style3:hover {
    background-color: #128c7e;
    color: #fff;
}

/* =======================================
   HEADER (header-kaj) — Real site: h=184
   ======================================= */
.header-kaj {
    position: relative;
    left: 0;
    right: 0;
    z-index: 100;
    width: 100%;
}

.header-area .header-main-area {
    background-color: var(--background-color);
}

.header-area .header-main-area .header-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 15px 0;
}

.header-area .header-main-area .header-main .megamenu-block {
    width: 41.67%;
}

.header-area .header-main-area .header-main .logo-wrap {
    width: 16.66%;
    text-align: center;
}

.header-area .header-main-area .header-main .right-block {
    width: 41.67%;
}

/* Main menu */
.megamenu-content ul.main-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.megamenu-content ul.main-menu li.menu-link a.link-title {
    color: var(--text-color);
    padding: 10px 12px;
    text-transform: uppercase;
    font-weight: var(--font-custom-weight-header);
    font-size: 14px;
}

.megamenu-content ul.main-menu li.menu-link a.link-title:hover {
    opacity: 0.85;
}

/* Logo */
a.theme-header-logo img {
    width: 150px;
}

a.theme-header-logo img.logo-2 {
    display: none;
}

/* Header icons / right block */
.right-block ul.shop-element {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.right-block ul.shop-element li.side-wrap {
    position: relative;
    margin-left: 25px;
    display: flex;
    align-items: center;
}

.right-block ul.shop-element li.side-wrap:first-child {
    margin-left: 0;
}

a.header-icon,
button.navbar-toggle {
    color: var(--text-color);
    display: flex;
    align-items: center;
    text-transform: uppercase;
    line-height: 1;
}

a.header-icon:hover,
button.navbar-toggle:hover {
    opacity: 0.85;
}

.cart-count {
    font-size: 14px;
    margin-left: 3px;
    color: var(--text-color);
}

li.side-wrap.mobile-toggle {
    display: none;
}

@media (max-width: 1199px) {
    .header-area .header-main-area .header-main .megamenu-block {
        display: none;
    }

    .header-area .header-main-area .header-main .logo-wrap {
        width: 41.67%;
        text-align: left;
    }

    .header-area .header-main-area .header-main .right-block {
        width: 58.33%;
    }

    li.side-wrap.mobile-toggle {
        display: flex;
    }
}

/* =======================================
   SIDEBAR MENU
   ======================================= */
.sidebar-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100%;
    background: #fff;
    z-index: 200;
    overflow-y: auto;
    transition: all .3s ease;
    box-shadow: 0 16px 26px -10px rgba(0, 0, 0, 0.56);
}

.sidebar-menu.active {
    left: 0;
}

.sidebar-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: var(--sti-border);
}

.sidebar-title {
    font-weight: var(--font-custom-weight-header);
    font-size: 18px;
}

.sidebar-close-btn {
    font-size: 28px;
    line-height: 1;
    color: var(--font-color-body);
}

.sidebar-nav-links {
    display: flex;
    flex-direction: column;
}

.sidebar-link {
    padding: 12px 15px;
    border-bottom: var(--sti-border);
    text-transform: uppercase;
    font-weight: var(--font-custom-weight-header);
    color: var(--font-color-body);
}

.sidebar-link:hover,
.sidebar-link.active {
    color: var(--font-color-primary);
}

/* =======================================
   MINI CART
   ======================================= */
.mini-cart {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    padding: 15px;
    height: 100%;
    background: #fff;
    box-shadow: 0 16px 26px -10px rgba(0, 0, 0, 0.56);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all .2s ease;
}

.mini-cart.show {
    right: 0;
    opacity: 1;
    visibility: visible;
}

.mini-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    font-weight: var(--font-custom-weight-header);
    font-size: 18px;
}

.mini-cart-close {
    font-size: 28px;
    color: var(--font-color-body);
}

.mini-cart-body {
    padding: 15px 0;
}

.empty-cart-text {
    color: var(--font-color-paragraph);
}

.mini-cart-footer {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.total-price {
    color: var(--font-color-primary);
    font-weight: var(--font-custom-weight-header);
    font-size: 18px;
}

.cart-btn-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-btn-wrap a {
    text-align: center;
}

/* =======================================
   OVERLAY
   ======================================= */
.overlay-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.overlay-bg.active {
    opacity: 1;
    visibility: visible;
}

/* =======================================
   HERO SLIDER — Real site: h=650, p=0
   slide-main: flex, p=80px 0
   slider-info-content: flex, w=388
   slide-image: flex, w=555
   ======================================= */
.slider-content {
    background-color: #2a2a2a;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

/* Hero Entrance Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    100% {
        opacity: 1;
        transform: translateZ(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.swiper-slide.active .e1 {
    animation: 1s both fadeInUp;
}

.swiper-slide.active .e1:nth-child(1) {
    animation-delay: 0.3s;
}

.swiper-slide.active .e1:nth-child(2) {
    animation-delay: 0.6s;
}

.swiper-slide.active .e1:nth-child(3) {
    animation-delay: 0.9s;
}

.swiper-slide.active .e1:nth-child(4) {
    animation-delay: 1.2s;
}

.swiper-slide.active .slide-image {
    animation: 1s 0.3s both fadeIn;
}

.swiper-slide:not(.active) .e1,
.swiper-slide:not(.active) .slide-image {
    opacity: 0;
}

.home-slider {
    overflow: hidden;
}

.swiper-wrapper {
    position: relative;
}

.slide-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 80px 0;
}

.slider-info-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 40%;
    flex-shrink: 0;
}

.slide-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55%;
    margin-left: auto;
}

.slide-image img {
    max-width: 100%;
}

.slider-text-info h2 {
    font-size: 80px;
    font-weight: var(--font-custom-weight-body);
    line-height: 1;
    text-transform: uppercase;
    color: #ffffff;
}

.slider-info {
    margin-top: 38px;
}

.slider-info-ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.slider-info-li {
    display: flex;
    align-items: center;
}

.feature-icon-wrap {
    width: 70px;
    height: 70px;
    display: block;
    overflow: hidden;
    border: 5px solid #7abf57;
    border-radius: 100%;
    flex-shrink: 0;
}

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

.feature-text {
    padding-left: 15px;
    text-transform: uppercase;
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
}

.slider-price {
    font-size: 25px;
    margin-top: 44px;
    color: #fff;
}

.slider-text-info .btn {
    margin-top: 44px;
}

@media (max-width: 1499px) {
    .slider-info-content {
        width: 45%;
    }

    .slider-text-info h2 {
        font-size: 65px;
    }
}

@media (max-width: 1199px) {
    .slide-main {
        padding: 60px 0;
    }

    .slider-info-content {
        width: 50%;
    }

    .slide-image {
        width: 50%;
    }

    .slider-text-info h2 {
        font-size: 52px;
    }
}

@media (max-width: 991px) {

    .slider-info-content,
    .slide-image {
        width: 100%;
    }

    .slide-image {
        order: -1;
        margin-bottom: 30px;
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .slide-main {
        padding: 40px 0;
    }

    .slider-text-info h2 {
        font-size: 26px;
    }

    .slider-info-ul {
        flex-wrap: wrap;
        gap: 15px;
    }

    .slider-price {
        font-size: 18px;
        margin-top: 25px;
    }

    .slider-text-info .btn {
        margin-top: 25px;
    }
}

/* =======================================
   SWIPER TABS & SLIDE SWITCHING
   ======================================= */
.swiper-slide {
    width: 100%;
    flex-shrink: 0;
    display: none;
}

.swiper-slide.active {
    display: block;
}

.swiper-dots {
    padding: 15px 0 25px;
}

.swiper-pagination {
    display: flex;
    gap: 0;
}

.swiper-pagination-bullet {
    padding: 10px 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    user-select: none;
    letter-spacing: 0.5px;
}

.swiper-pagination-bullet:hover {
    color: rgba(255, 255, 255, 0.85);
}

.swiper-pagination-bullet-active {
    color: #ffffff;
    border-bottom-color: #7FA01C;
}

/* =======================================
   FIND YOUR PERFECT RIDE (Filter Form)
   ======================================= */
.motorcycle-filter-section {
    background: #f0f0f0;
    padding: 0;
}

.motorcycle-filter-layout {
    display: flex;
    max-width: 1200px;
    margin: 3rem auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.motorcycle-filter {
    width: 420px;
    flex-shrink: 0;
    padding: 1.5rem 2rem;
    background: linear-gradient(to bottom right, #78b031cc, #498200e6);
    color: #fff;
}

.filter-heading {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #fff;
}

.filter-group {
    margin-bottom: 1rem;
}

.filter-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
}

.filter-select {
    width: 100%;
    padding: 0.65rem 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 14px;
    font-family: var(--font-custom-stack-body);
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    cursor: pointer;
    appearance: auto;
}

.filter-select:focus {
    outline: 2px solid #fff;
    outline-offset: 1px;
}

.filter-range-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-range-value {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
}

.filter-row {
    display: flex;
    gap: 10px;
}

.filter-select-half {
    flex: 1;
}

.filter-slider {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    margin: 8px 0 4px;
}

.filter-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.filter-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    border: none;
}

.filter-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

.filter-search-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.75rem;
    margin-top: 0.5rem;
    background: #4a7a1a;
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-custom-stack-body);
    transition: background 0.3s ease;
}

.filter-search-btn:hover {
    background: #3a6210;
}

.filter-banner {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    position: relative;
}

.filter-banner-content {
    text-align: center;
    padding: 2rem;
}

.filter-banner-arrow {
    font-size: 80px;
    color: #333;
    line-height: 1;
    margin-bottom: 1rem;
    transform: rotate(-15deg);
}

.filter-banner-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.1;
    color: #333;
    text-transform: uppercase;
}

.filter-banner-title .highlight-green {
    background: #78b031;
    color: #fff;
    padding: 2px 10px;
    display: inline-block;
}

@media (max-width: 991px) {
    .motorcycle-filter-layout {
        flex-direction: column;
        margin: 2rem 1rem;
    }

    .motorcycle-filter {
        width: 100%;
    }

    .filter-banner {
        min-height: 280px;
    }

    .filter-banner-title {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .filter-banner {
        min-height: 200px;
    }

    .filter-banner-title {
        font-size: 24px;
    }

    .filter-banner-arrow {
        font-size: 50px;
    }

    .filter-row {
        flex-direction: column;
    }
}

/* =======================================
   CC RANGE (slider-category) — Real: p=80px 0 0, bg=white, h=450
   category-main: bg=#f5f5f5, display=block, w=292, h=109
   category-content: display=flex, p=30px
   ======================================= */
.slider-category {
    position: relative;
    overflow: hidden;
    padding: 80px 0 0;
    background-color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 767px) {
    .slider-category {
        padding-top: 60px;
    }
}

.cat-title-slider {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.cat-title-slider .section-capture {
    width: 30%;
    flex-shrink: 0;
    margin-bottom: 0;
}

.slider-area {
    position: relative;
    flex: 1;
    min-width: 0;
}

.cat-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start;
}

.category-main {
    display: block;
    width: calc(16.66% - 25px);
    min-width: 200px;
    transition: all .3s ease;
    overflow: hidden;
}

.category-main:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.category-block {
    display: block;
}

.category-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
}

.category-item {
    display: flex;
    align-items: baseline;
}

.category-item .count {
    font-size: 36px;
    font-weight: var(--font-custom-weight-section-header);
    color: var(--font-color-header);
    line-height: 1;
}

.category-item .item {
    font-size: 18px;
    font-weight: var(--font-custom-weight-header);
    color: var(--font-color-header);
    margin-left: 2px;
}

a.category-title {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: var(--font-custom-weight-section-header);
    color: var(--font-color-primary);
    border-bottom: 2px solid var(--font-color-primary);
    padding-bottom: 2px;
}

.category-image {
    display: none;
}

@media (max-width: 1199px) {
    .category-main {
        width: calc(25% - 23px);
    }
}

@media (max-width: 991px) {
    .cat-title-slider {
        flex-direction: column;
    }

    .cat-title-slider .section-capture {
        width: 100%;
        margin-bottom: 30px;
    }

    .slider-area {
        width: 100%;
    }

    .category-main {
        width: calc(33.33% - 20px);
    }
}

@media (max-width: 767px) {
    .category-main {
        width: calc(50% - 15px);
        min-width: 150px;
    }
}

@media (max-width: 479px) {
    .category-main {
        width: 100%;
    }
}

.section-bottom-title {
    overflow: hidden;
    line-height: 0.7;
    margin-top: 30px;
}

.section-bottom-title h2,
.section-bottom-title .title {
    font-size: 150px;
    font-weight: var(--font-custom-weight-section-header);
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.03);
    text-align: center;
    line-height: 1;
    font-family: var(--font-custom-stack-section-header);
}

@media (max-width: 1399px) {

    .section-bottom-title h2,
    .section-bottom-title .title {
        font-size: 120px;
    }
}

@media (max-width: 1199px) {

    .section-bottom-title h2,
    .section-bottom-title .title {
        font-size: 100px;
    }
}

@media (max-width: 991px) {

    .section-bottom-title h2,
    .section-bottom-title .title {
        font-size: 70px;
    }
}

@media (max-width: 479px) {

    .section-bottom-title h2,
    .section-bottom-title .title {
        font-size: 32px;
    }
}

/* =======================================
   ADVANCE FEATURES — Real: bg=transparent, p=80px 0, h=832
   advance-features-ul: flex, flex-wrap, w=966
   big/small/banner: all 453x285
   ======================================= */
.advance-features {
    background-color: #2a2a2a;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 80px 0;
}

@media (max-width: 767px) {
    .advance-features {
        padding: 60px 0;
    }
}

.advance-features .section-title h2 {
    color: #fff;
}

.features-main {
    position: relative;
}

.advance-features-ul {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.advance-features-li {
    width: calc(50% - 15px);
    position: relative;
    overflow: hidden;
    list-style: none;
}

.advance-features-li a {
    display: block;
    position: relative;
    overflow: hidden;
    height: 100%;
}

/* Big features */
.big-features-main {
    position: relative;
    display: block;
    overflow: hidden;
}

.b-feature-image {
    display: block;
}

.b-feature-image img {
    width: 100%;
    transition: transform .3s ease;
}

.big-features-main:hover .b-feature-image img {
    transform: scale(1.05);
}

.b-feature-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
}

.b-feature-content h3 {
    color: #fff;
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.b-feature-content .btn-style {
    font-size: 12px;
    padding: 8px 20px;
}

/* Feature banner */
.f-banner-block {
    position: relative;
    display: block;
    overflow: hidden;
}

.banner-image {
    display: block;
}

.banner-image img {
    width: 100%;
    transition: transform .3s ease;
}

.f-banner-block:hover .banner-image img {
    transform: scale(1.05);
}

.f-banner-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
}

.banner-info h3 {
    color: #fff;
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.banner-text .btn-style {
    font-size: 12px;
    padding: 8px 20px;
}

/* Small features */
.small-features-main {
    position: relative;
    display: block;
    overflow: hidden;
}

.s-feature-image {
    display: block;
}

.s-feature-image img {
    width: 100%;
    transition: transform .3s ease;
}

.small-features-main:hover .s-feature-image img {
    transform: scale(1.05);
}

.s-feature-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
}

.s-feature-content h3 {
    color: #fff;
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.s-feature-content .btn-style {
    font-size: 12px;
    padding: 8px 20px;
}

@media (max-width: 767px) {
    .advance-features-li {
        width: 100%;
    }
}

/* =======================================
   WHATSAPP BANNER (about-banner-section) — Real: p=100px 0, h=493
   banner-content: text-align=start, w=468, p=60px
   ======================================= */
.about-banner-section {
    padding: 100px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.banner-contact-layout {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    gap: 20px;
}

@media (max-width: 1199px) {
    .about-banner-section {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .about-banner-section {
        padding: 60px 0;
    }
}

.banner-content {
    max-width: 468px;
    text-align: left;
    padding: 60px;
    background: rgba(0, 0, 0, 0.3);
}

.email-contact-card {
    max-width: 430px;
}

.banner-content .section-title {
    text-align: left;
}

.banner-content .section-title h2 {
    font-size: 40px;
    color: #ffffff;
    text-transform: uppercase;
}

.banner-content .section-capture {
    margin-bottom: 20px;
}

.banner-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.btn-whatsapp {
    margin-top: 25px;
}

.email-contact-form {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.email-contact-form input,
.email-contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-radius: 4px;
    padding: 10px 12px;
    font-size: 14px;
}

.email-contact-form input::placeholder,
.email-contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.75);
}

.email-contact-form textarea {
    resize: vertical;
    min-height: 84px;
}

.email-contact-form .btn {
    justify-self: start;
    margin-top: 4px;
}

.email-form-status {
    margin-top: 10px;
    color: #fff;
    font-size: 13px;
    min-height: 18px;
}

@media (max-width: 991px) {
    .banner-contact-layout {
        justify-content: center;
        flex-wrap: wrap;
    }

    .banner-content {
        text-align: center;
        max-width: 100%;
    }

    .banner-content .section-title {
        text-align: center;
    }

    .email-contact-form .btn {
        justify-self: center;
    }
}

@media (max-width: 767px) {
    .banner-content .section-title h2 {
        font-size: 24px;
    }

    .banner-content {
        padding: 30px;
    }

    .email-contact-form input,
    .email-contact-form textarea {
        font-size: 13px;
    }
}

/* =======================================
   FEATURED PRODUCT (side-banner-product) — Real: p=80px 0 0, h=665
   banner-product-main: flex, flex-wrap
   side-banner: w=533, side-product-area: w=373
   ======================================= */
.side-banner-product {
    padding: 80px 0 0;
}

@media (max-width: 767px) {
    .side-banner-product {
        padding: 60px 0 0;
    }
}

.banner-product-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.side-banner {
    width: 55%;
    padding-right: 30px;
}

.side-banner h2 {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: var(--font-custom-weight-section-header);
}

.side-banner p {
    margin-top: 15px;
}

.side-product-area {
    width: 45%;
}

.product-info-slide {
    text-align: center;
}

.product-info-slide h3 {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.product-info-slide h3 a {
    color: var(--font-color-header);
}

.product-info-slide h3 a:hover {
    color: var(--font-color-primary);
}

.product-img-wrap {
    margin: 15px 0;
}

.featured-img {
    max-width: 100%;
    border: var(--sti-border);
}

.product-info-slide .btn {
    margin-top: 15px;
}

@media (max-width: 991px) {

    .side-banner,
    .side-product-area {
        width: 100%;
    }

    .side-banner {
        padding-right: 0;
        margin-bottom: 30px;
    }
}

/* =======================================
   TESTIMONIALS — Real: bg=#f5f5f5, p=80px 0, h=445
   ======================================= */
.testimonial-area {
    padding: 80px 0;
    background-color: #f5f5f5;
}

@media (max-width: 767px) {
    .testimonial-area {
        padding: 60px 0;
    }
}

.testimonial-block {
    position: relative;
}

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-item {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 30px;
    border: var(--sti-border);
}

.testimonial-content p {
    color: var(--font-color-paragraph);
    font-size: 14px;
    line-height: 1.8;
}

.testimonial-author {
    margin-top: 20px;
}

.testimonial-author h4 {
    color: var(--font-color-header);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: var(--font-custom-weight-section-header);
}

.testimonial-author h4::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--font-color-primary);
    margin-right: 10px;
    vertical-align: middle;
}

@media (max-width: 767px) {
    .testimonial-slider {
        flex-direction: column;
    }
}

/* =======================================
   TRUST STRIP + QUICK SERVICES
   ======================================= */
.trust-strip {
    background: #ffffff;
    border-bottom: 1px solid #ececec;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 22px 0;
}

.trust-item {
    text-align: center;
    padding: 10px 12px;
    border-right: 1px solid #efefef;
}

.trust-item:last-child {
    border-right: none;
}

.trust-value {
    display: block;
    color: #7FA01C;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.trust-label {
    display: block;
    margin-top: 4px;
    color: #5f5f5f;
    font-size: .88rem;
    font-weight: 600;
}

.quick-services {
    padding: 52px 0 40px;
    background: linear-gradient(180deg, #f8f9f6 0%, #fff 100%);
}

.quick-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.quick-service-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 22px 20px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.quick-service-card:hover {
    transform: translateY(-2px);
    border-color: #d7e7ad;
    box-shadow: 0 8px 20px rgba(127, 160, 28, .12);
}

.quick-service-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f0f6df;
    color: #6d8d18;
    margin-bottom: 10px;
}

.quick-service-card h3 {
    margin-bottom: 8px;
    font-size: 1.15rem;
    text-transform: uppercase;
    color: #222;
}

.quick-service-card p {
    margin: 0;
    color: #666;
    font-size: .92rem;
    line-height: 1.5;
}

.home-instagram-widget {
    padding: 28px 0 18px;
    background: #fff;
}

/* Frame tracks the widget so the mask stays aligned on all breakpoints */
.instagram-widget-frame {
    position: relative;
    width: 100%;
    isolation: isolate;
}

/* Visual cover for Elfsight bottom watermark area (sits on bottom of embed) */
.instagram-watermark-mask {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate3d(-50%, 0, 0);
    width: min(92%, 300px);
    height: 38px;
    background: #fff;
    z-index: 50;
    pointer-events: none;
    box-shadow: 0 -2px 0 #fff;
}

@media (max-width: 767px) {
    .instagram-watermark-mask {
        width: calc(100% - 24px);
        max-width: 340px;
        height: 44px;
        bottom: 2px;
    }
}

@media (max-width: 480px) {
    .instagram-watermark-mask {
        width: calc(100% - 16px);
        height: 48px;
        bottom: 4px;
    }
}

@media (max-width: 380px) {
    .instagram-watermark-mask {
        width: calc(100% - 12px);
        height: 52px;
        bottom: 6px;
    }
}

/* =======================================
   VIDEO SECTION (custom-video-text) — Real: h=229, p=0
   video-bg-image: p=30px, h=229
   ======================================= */
.custom-video-text {
    position: relative;
}

.video-bg-image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 30px;
    min-height: 229px;
    display: flex;
    align-items: center;
}

.video-text-btn {
    max-width: 50%;
}

.video-text-btn h2 {
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
}

.video-text-btn .btn {
    margin-top: 10px;
}

.video-social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.video-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all .2s ease;
}

.video-social-link:hover {
    background: #fff;
    color: #2f2f2f;
    transform: translateY(-1px);
}

@media (max-width: 991px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .trust-item {
        border-right: none;
        border-bottom: 1px solid #efefef;
    }

    .quick-services-grid {
        grid-template-columns: 1fr;
    }

    .video-text-btn {
        max-width: 70%;
    }

    .video-text-btn h2 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .video-text-btn {
        max-width: 100%;
    }

    .video-text-btn h2 {
        font-size: 20px;
    }
}

/* =======================================
   FOOTER — Real: bg=#f5f5f5, p=80px 0 50px, h=431
   footer-list-wrap: display=block
   ======================================= */
.footer-area {
    background-color: #f5f5f5;
    padding: 80px 0 50px;
}

@media (max-width: 767px) {
    .footer-area {
        padding: 60px 0 30px;
    }
}

.footer-list-wrap {
    display: block;
    text-align: center;
}

.footer-list {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.footer-list-title {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: var(--font-custom-weight-section-header);
    color: var(--color-heading);
    width: 100%;
    margin-bottom: 10px;
}

.footer-list li a {
    color: var(--color-text);
}

.footer-list li a:hover {
    color: var(--font-color-primary);
}

.footer-copyright-area {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--theme-border-color);
    text-align: center;
}

.footer-copyright-ul {
    display: flex;
    justify-content: center;
}

.footer-logo-block {
    text-align: center;
}

.footer-logo-img {
    width: 135px;
    margin: 0 auto;
    display: block;
}

.copyright-text {
    color: var(--color-text);
    margin-top: 15px;
    font-size: 14px;
}

/* =======================================
   STORE INFO — Real: display=block (storeInfoMain)
   ======================================= */
.store-info-area {
    background-color: #f5f5f5;
    padding: 30px 0 50px;
}

.store-info-main {
    display: block;
    text-align: center;
}

.store-info-ul {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.store-info-li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
}

.store-info-icon {
    flex-shrink: 0;
    color: var(--font-color-primary);
    margin-top: 3px;
}

.store-info-text strong {
    color: var(--color-heading);
    display: block;
    margin-bottom: 4px;
    text-transform: uppercase;
    font-weight: var(--font-custom-weight-section-header);
}

.store-info-text p {
    color: var(--color-text);
    font-size: 14px;
    line-height: 1.6;
}

.store-info-text p a {
    color: var(--color-text);
}

.store-info-text p a:hover {
    color: var(--font-color-primary);
}

@media (max-width: 767px) {
    .store-info-ul {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}

/* =======================================
   BACK TO TOP
   ======================================= */
.scroll-top {
    display: none;
    color: #fff;
    padding: 12px;
    height: 40px;
    width: 40px;
    position: fixed;
    bottom: 90px;
    right: 30px;
    background-color: var(--font-color-primary);
    z-index: 99;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.scroll-top:hover {
    background-color: var(--font-color-body);
}

.scroll-top.show,
.scroll-top.visible {
    display: flex;
}

/* =======================================
   PRODUCT CARDS (for products page)
   ======================================= */
.single-product-wrap {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.single-product-wrap .product-image {
    position: relative;
    overflow: hidden;
}

.single-product-wrap .product-content {
    padding: 26px 30px 27px;
}

.single-product-wrap .product-content h6 {
    font-size: 18px;
}

.single-product-wrap .product-content h6 a {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.single-product-wrap .product-content h6 a:hover {
    color: var(--font-color-primary);
}

.price-box span.new-price {
    color: var(--font-color-primary);
    font-size: 18px;
    font-weight: var(--font-custom-weight-header);
}

/* =======================================
   INPUT STYLES
   ======================================= */
input,
textarea,
select {
    color: var(--sti-color);
    font-size: var(--font-size-body);
    padding: 15px;
    width: 100%;
    background-color: #fff;
    font-family: var(--font-custom-stack-body);
    border: var(--sti-border);
}

input::placeholder,
textarea::placeholder {
    color: var(--sti-color);
}

textarea {
    display: block;
    resize: none;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
}

/* =======================================
   SIDEBAR MENU (Left drawer)
   ======================================= */
.mobile-menu {
    position: relative;
    z-index: 1001;
}

.sidebar-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 1000;
    transition: left 0.3s ease;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.sidebar-menu.active {
    left: 0;
}

.sidebar-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.sidebar-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-heading);
}

.sidebar-close-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
    line-height: 1;
    padding: 0;
}

.sidebar-close-btn:hover {
    color: var(--font-color-primary);
}

.sidebar-nav-links {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
}

.sidebar-link {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    color: var(--color-heading);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.2s ease;
}

.sidebar-link:hover,
.sidebar-link.active {
    color: var(--font-color-primary);
    padding-left: 25px;
}

/* =======================================
   OVERLAY
   ======================================= */
.overlay-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay-bg.active {
    opacity: 1;
    visibility: visible;
}

/* =======================================
   MINI CART DRAWER
   ======================================= */
.mini-cart {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    max-width: 90vw;
    height: 100%;
    background: #fff;
    z-index: 999;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
}

.mini-cart.show {
    right: 0;
}

.mini-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.mini-cart-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
    line-height: 1;
    padding: 0;
}

.mini-cart-close:hover {
    color: var(--font-color-primary);
}

.mini-cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.empty-cart-text {
    text-align: center;
    color: var(--color-text);
    padding: 40px 0;
    font-size: 14px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: 4px;
}

.cart-item-price {
    font-size: 14px;
    color: var(--font-color-primary);
    font-weight: 600;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-qty-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border: 1px solid #ddd;
    cursor: pointer;
    font-size: 16px;
    color: #333;
}

.cart-qty-btn:hover {
    background: #eee;
}

.cart-qty {
    font-size: 14px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.cart-remove-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    padding: 4px;
}

.cart-remove-btn:hover {
    color: #ff3333;
}

.mini-cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.total-price {
    color: var(--font-color-primary);
}

.cart-btn-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-style {
    display: block;
    text-align: center;
    padding: 12px;
    background: var(--font-color-primary);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    transition: background 0.2s ease;
}

.btn-style:hover {
    background: var(--font-color-body);
}

.btn-outline-style {
    display: block;
    text-align: center;
    padding: 12px;
    background: transparent;
    color: var(--color-heading);
    border: 1px solid #ddd;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.2s ease;
}

.btn-outline-style:hover {
    border-color: var(--font-color-primary);
    color: var(--font-color-primary);
}

/* =======================================
   PAGE HERO BANNER — Used on collections, products, contact, cart
   ======================================= */
.page-hero {
    position: relative;
    padding: 60px 0;
    text-align: center;
    background: #1a1a1a;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://streetmotorbikes.sale/cdn/shop/files/Design_sem_nome_6.png?v=1747300435') center/contain no-repeat;
    opacity: 0.15;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero-content h1 {
    font-size: 42px;
    color: #fff;
    text-transform: uppercase;
    font-weight: var(--font-custom-weight-section-header);
    margin-bottom: 10px;
}

.page-hero .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.page-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.page-hero .breadcrumb a:hover {
    color: #fff;
}

@media (max-width: 767px) {
    .page-hero {
        padding: 40px 0;
    }

    .page-hero-content h1 {
        font-size: 28px;
    }
}

/* =======================================
   BREADCRUMB SECTION — Used on product detail
   ======================================= */
.breadcrumb-section {
    padding: 15px 0;
    background: #f5f5f5;
    border-bottom: 1px solid #eee;
}

.breadcrumb-section .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-text);
}

.breadcrumb-section .breadcrumb a {
    color: var(--font-color-primary);
}

/* =======================================
   PRODUCTS PAGE — Layout, toolbar, grid, sidebar filters
   ======================================= */
.products-section {
    padding: 40px 0 80px;
}

.products-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.products-main {
    flex: 1;
    min-width: 0;
    order: 2;
}

.products-sidebar {
    width: 260px;
    flex-shrink: 0;
    order: 1;
}

/* Toolbar */
.products-toolbar {
    margin-bottom: 30px;
}

.promo-banner {
    margin: 20px 0;
    position: relative;
}

.promo-banner img {
    width: 100%;
    display: block;
}

.promo-banner-caption {
    position: absolute;
    left: 50%;
    bottom: 14%;
    transform: translateX(-50%);
    color: #2f2f35;
    font-size: clamp(1.5rem, 3.2vw, 3rem);
    font-weight: 800;
    text-transform: lowercase;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

.products-description {
    font-size: 13px;
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 20px;
}

.products-brand-banner {
    margin: 24px 0 28px;
    padding: clamp(22px, 3.6vw, 38px) clamp(18px, 4vw, 46px);
    background: linear-gradient(135deg, #7FA01C 0%, #86ad1f 45%, #6f8f18 100%);
    color: #fff;
    font-size: clamp(1.55rem, 3.2vw, 2.45rem);
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
    text-transform: uppercase;
    border-radius: 14px;
    letter-spacing: 0.02em;
    box-shadow:
        0 14px 30px rgba(111, 143, 24, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.22);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
}

.products-header-info h6 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: var(--font-custom-weight-section-header);
    color: var(--color-heading);
    margin-bottom: 5px;
}

.products-header-info p {
    font-size: 13px;
    color: var(--color-text);
    margin-bottom: 15px;
}

.products-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 25px;
}

.view-toggles {
    display: flex;
    gap: 8px;
}

.view-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid #ddd;
    cursor: pointer;
    color: #999;
    transition: all .2s ease;
    padding: 0;
}

.view-btn.active,
.view-btn:hover {
    color: var(--color-heading);
    border-color: var(--color-heading);
}

.sort-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-label {
    font-size: 13px;
    color: var(--color-text);
    white-space: nowrap;
}

.sort-area select {
    padding: 6px 10px;
    font-size: 13px;
    cursor: pointer;
    border: 1px solid #ddd;
    min-width: 180px;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.product-grid.list-view {
    grid-template-columns: 1fr;
    gap: 18px;
}

.product-card {
    background: #fff;
    border: 1px solid #eee;
    overflow: hidden;
    transition: box-shadow .3s ease;
}

.product-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.product-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.product-grid.list-view .product-card {
    display: grid;
    grid-template-columns: minmax(230px, 34%) 1fr;
    align-items: stretch;
}

.product-grid.list-view .product-card-link {
    display: grid;
    grid-template-columns: minmax(230px, 34%) 1fr;
    grid-column: 1 / -1;
}

.product-grid.list-view .product-image-wrap {
    height: 100%;
    aspect-ratio: auto;
    min-height: 180px;
}

.product-grid.list-view .product-info {
    padding: 18px 20px;
}

.product-grid.list-view .btn-add-to-cart {
    grid-column: 1 / -1;
}

.product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}

.product-image-wrap {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
    aspect-ratio: 4/3;
}

.product-card:hover .product-image-wrap img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--font-color-primary);
    color: #fff;
    padding: 3px 12px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    z-index: 1;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: var(--font-custom-weight-section-header);
    color: var(--color-heading);
    margin-bottom: 8px;
}

.product-price {
    color: var(--font-color-primary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-desc {
    font-size: 13px;
    color: var(--color-text);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-add-to-cart {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--font-color-primary);
    color: #fff;
    border: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: background .2s ease;
}

.btn-add-to-cart:hover {
    background: var(--font-color-body);
}

/* Sidebar Filters */
.filter-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.filter-section:last-child {
    border-bottom: none;
}

.filter-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: var(--font-custom-weight-section-header);
    color: var(--color-heading);
    cursor: pointer;
    margin-bottom: 12px;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-header h3 {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: var(--font-custom-weight-section-header);
    color: var(--color-heading);
}

.filter-list {
    list-style: none;
}

.filter-list li {
    margin-bottom: 8px;
}

.filter-link {
    font-size: 14px;
    color: var(--color-text);
    display: flex;
    justify-content: space-between;
}

.filter-link.active,
.filter-link:hover {
    color: var(--font-color-primary);
}

.filter-link span {
    color: var(--color-text);
    font-size: 12px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-text);
    cursor: pointer;
}

.filter-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--font-color-primary);
}

.filter-reset {
    font-size: 12px;
    color: var(--color-text);
    text-decoration: underline;
}

.filter-reset:hover {
    color: var(--font-color-primary);
}

.filter-count {
    font-size: 13px;
    color: var(--font-color-primary);
    font-weight: 600;
    margin-top: 8px;
}

.filter-selected {
    font-size: 13px;
    color: var(--color-text);
    margin: 6px 0 10px;
}

.filter-count-num {
    margin-left: auto;
    font-size: 12px;
    color: var(--color-text);
}

.filter-price-note {
    font-size: 13px;
    color: var(--color-text);
    margin: 8px 0 15px;
}

.price-range-inputs {
    display: flex;
    gap: 15px;
}

.price-input-group {
    flex: 1;
}

.price-input-group label {
    display: block;
    font-size: 12px;
    color: var(--color-text);
    margin-bottom: 5px;
}

.price-input-wrap {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    background: #fff;
}

.currency-symbol {
    padding: 0 8px;
    font-size: 13px;
    color: var(--color-text);
    border-right: 1px solid #ddd;
}

.price-input {
    width: 100%;
    border: none;
    padding: 8px;
    font-size: 13px;
    -moz-appearance: textfield;
}

.price-input::-webkit-outer-spin-button,
.price-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

@media (max-width: 991px) {
    .products-layout {
        flex-direction: column;
    }

    .products-sidebar {
        width: 100%;
        order: -1;
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* =======================================
   COLLECTIONS PAGE — Grid of category cards
   ======================================= */
.collections-grid-section {
    padding: 60px 0 80px;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.collection-card {
    display: block;
    overflow: hidden;
    border: 1px solid #eee;
    transition: box-shadow .3s ease;
    text-decoration: none;
    color: inherit;
}

.collection-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.collection-image {
    overflow: hidden;
    background: #f5f5f5;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.collection-card:hover .collection-image img {
    transform: scale(1.05);
}

.collection-label {
    padding: 15px 20px;
    text-align: center;
}

.collection-label h6 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: var(--font-custom-weight-section-header);
    color: var(--color-heading);
}

@media (max-width: 991px) {
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .collections-grid {
        grid-template-columns: 1fr;
    }
}

/* =======================================
   CONTACT PAGE — Info cards, CTA section, Form
   ======================================= */
.contact-info-section {
    padding: 60px 0;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-info-card {
    text-align: center;
    padding: 40px 30px;
    border: 1px solid #eee;
    transition: box-shadow .3s ease;
}

.contact-info-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    margin-bottom: 15px;
}

.contact-info-card h3 {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: var(--font-custom-weight-section-header);
    color: var(--color-heading);
    margin-bottom: 10px;
}

.contact-info-card p {
    color: var(--color-text);
    font-size: 14px;
    line-height: 1.6;
}

.contact-info-card p a {
    color: var(--color-text);
}

.contact-info-card p a:hover {
    color: var(--font-color-primary);
}

/* CTA Section */
.contact-cta-section {
    padding: 60px 0;
    background: #f5f5f5;
}

.contact-cta-layout {
    display: flex;
    align-items: center;
    gap: 50px;
}

.contact-cta-text {
    flex: 1;
}

.contact-cta-text h2 {
    font-size: 28px;
    text-transform: uppercase;
    font-weight: var(--font-custom-weight-section-header);
    color: var(--color-heading);
    margin-bottom: 15px;
}

.contact-cta-text p {
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 25px;
}

.contact-cta-image {
    flex: 1;
}

.contact-cta-image img {
    width: 100%;
    max-width: 500px;
}

/* Contact Form */
.contact-form-section {
    padding: 60px 0 80px;
}

.contact-form-section h2 {
    text-align: center;
    font-size: 28px;
    text-transform: uppercase;
    font-weight: var(--font-custom-weight-section-header);
    color: var(--color-heading);
    margin-bottom: 40px;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: 6px;
}

.form-group.full-width {
    margin-bottom: 20px;
}

.contact-form .btn {
    display: inline-block;
    padding: 14px 35px;
    background: var(--font-color-primary);
    color: #fff;
    border: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background .2s ease;
}

.contact-form .btn:hover {
    background: var(--font-color-body);
}

@media (max-width: 767px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .contact-cta-layout {
        flex-direction: column;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* =======================================
   CART PAGE
   ======================================= */
.cart-page-section {
    padding: 60px 0 80px;
}

.cart-empty-state {
    text-align: center;
    padding: 60px 20px;
}

.cart-empty-state h2 {
    font-size: 22px;
    text-transform: uppercase;
    font-weight: var(--font-custom-weight-section-header);
    color: var(--color-heading);
    margin-bottom: 15px;
}

.cart-empty-state p {
    color: var(--color-text);
}

.cart-empty-state a {
    color: var(--font-color-primary);
    text-decoration: underline;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    text-align: left;
    padding: 12px;
    border-bottom: 2px solid #eee;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: var(--font-custom-weight-section-header);
    color: var(--color-heading);
}

.cart-table td {
    padding: 15px 12px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.cart-page-footer {
    margin-top: 30px;
    text-align: right;
}

.cart-page-total {
    font-size: 18px;
    margin-bottom: 8px;
}

.cart-page-total strong {
    color: var(--font-color-primary);
    margin-left: 10px;
}

.cart-shipping-note {
    font-size: 13px;
    color: var(--color-text);
    margin-bottom: 20px;
}

.cart-page-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.cart-page-actions .btn {
    padding: 12px 25px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    border: none;
}

.btn-secondary,
.cart-page-actions .btn-secondary {
    background: #eee;
    color: var(--color-heading);
    text-decoration: none;
}

.btn-primary,
.cart-page-actions .btn-primary {
    background: var(--font-color-primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--font-color-body);
}

/* =======================================
   PRODUCT DETAIL PAGE
   ======================================= */
.product-detail-section {
    padding: 40px 0 80px;
}

.product-detail-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.product-gallery {
    flex: 1;
    max-width: 55%;
}

.gallery-main {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
    margin-bottom: 15px;
}

.gallery-main img {
    width: 100%;
    display: block;
}

.gallery-zoom {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 8px;
    cursor: pointer;
    transition: background .2s ease;
}

.gallery-zoom:hover {
    background: #fff;
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
}

.thumbnail {
    width: 70px;
    height: 70px;
    border: 2px solid transparent;
    cursor: pointer;
    overflow: hidden;
    background: #f5f5f5;
    padding: 0;
}

.thumbnail.active {
    border-color: var(--font-color-primary);
}

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

.product-detail-info {
    flex: 1;
}

.product-detail-title {
    font-size: 28px;
    text-transform: uppercase;
    font-weight: var(--font-custom-weight-section-header);
    color: var(--color-heading);
    margin-bottom: 10px;
}

.product-detail-price {
    font-size: 24px;
    color: var(--font-color-primary);
    font-weight: 700;
    margin-bottom: 20px;
}

.product-meta {
    margin-bottom: 15px;
}

.meta-badge {
    display: inline-block;
    padding: 5px 12px;
    background: #f5f5f5;
    font-size: 13px;
    color: var(--color-heading);
    font-weight: 600;
}

.product-availability {
    margin-bottom: 20px;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
}

.availability-badge.in-stock {
    color: var(--font-color-primary);
}

.product-quantity-row {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 30px;
}

.quantity-selector {
    display: flex;
    border: 1px solid #ddd;
}

.qty-btn {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: #eee;
}

.qty-input {
    width: 50px;
    text-align: center;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    font-size: 14px;
    padding: 8px 5px;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.btn-add-to-cart-detail {
    padding: 12px 30px;
    background: var(--font-color-primary);
    color: #fff;
    border: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background .2s ease;
}

.btn-add-to-cart-detail:hover {
    background: var(--font-color-body);
}

.product-description {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.product-description h3 {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: var(--font-custom-weight-section-header);
    color: var(--color-heading);
    margin-bottom: 15px;
}

.description-content ul {
    list-style: disc;
    padding-left: 20px;
    color: var(--color-text);
}

.description-content li {
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .product-detail-layout {
        flex-direction: column;
    }

    .product-gallery {
        max-width: 100%;
    }
}