:root {
    --accent: #d94f70;
    --bg: #fff;
    --text: #222
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    font-size: clamp(14px, 1vw + 0.5rem, 18px);
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.5;
    font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
    text-transform: uppercase;
}

h1 {
    font-size: clamp(2.5rem, 4vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 3.5vw, 4rem);
}

h3 {
    font-size: clamp(1.75rem, 3vw, 3rem);
}

h4 {
    font-size: clamp(1.4rem, 2.5vw, 2.4rem);
}

h5 {
    font-size: clamp(1.2rem, 2vw, 2rem);
}

h6 {
    font-size: clamp(1rem, 1.7vw, 1.75rem);
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 16px
}

.site-header {
    background: #1f1f1f;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    /* padding: 10px 10px; */
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 0 0px;
}

.logo {
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    font-size: 22px
}

.logo .muted {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
    color: #bdbdbd
}

.nav a {
    margin-left: 22px;
    color: #fff;
    text-decoration: none;
    font-size: 14px
}

.nav-toggle {
    display: none
}

.nav-close {
    display: none
}

.hero {
    position: relative;
    min-height: 60vh;
    display: block;
    color: #fff
}

.hero-bg {
    position: absolute;
    inset: 0;
    /* background-image:url('../images/bnner-1.jpeg'); */
    background-size: cover;
    background-position: center;
    /* filter: brightness(0.85) */
}
.hero-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85)
}

.hero-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 800px;
    gap: 26px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.hero-banner-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
    background: rgba(255, 255, 255, 0.10);
}

.hero-banner-track {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
}

.hero-banner-slide {
    min-width: 100%;
    flex: 0 0 100%;
}

.hero-banner-slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 7.5;
    object-fit: contain;
    display: block;
    background: #fff;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #222;
    font-size: 32px;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 28px rgba(20, 20, 20, 0.12);
    transition: transform .2s ease;
    z-index: 2
}

.hero-nav:hover {
    transform: translateY(-50%) scale(1.05)
}

.hero-prev {
    left: 8px
}

.hero-next {
    right: 8px
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 36px
}

.hero-stat {
    background: rgba(255, 255, 255, 0.95);
    padding: 24px 20px;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.05);
    text-align: center
}

.hero-stat .stat-label {
    display: block;
    font-size: 12px;
    color: #9c8f80;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 10px
}

.hero-stat strong {
    display: block;
    font-size: 32px;
    color: #222;
    line-height: 1.05;
    margin-bottom: 8px
}

.hero-stat .stat-note {
    display: block;
    font-size: 13px;
    color: #6b6b6b;
    letter-spacing: 0.8px;
    text-transform: uppercase
}

.hero-banners {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 26px
}

.hero-banners-mobile {
    display: none;
}

.hero-banner {
    background: #ffffff71;
    padding: 18px 20px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.308);
    text-align: center
}

.hero-banner strong {
    display: block;
    font-size: 16px;
    color: #222;
    margin-bottom: 8px
}

.hero-banner p {
    margin: 0;
    color: #6b6b6b;
    font-size: 16px;
    line-height: 1.6
}

.hero-image {
    max-width: 520px;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 18px 50px rgba(10, 10, 10, 0.1)
}

.eyebrow {
    font-size: 12px;
    color: #9aa0a6;
    letter-spacing: 1px;
    margin-bottom: 18px
}

.hero-card h1 {
    font-size: 46px;
    line-height: 1.05;
    margin: 0 0 18px 0;
    font-weight: 600
}

.hero-card .lead {
    color: #6b6b6b;
    margin-bottom: 22px
}

.hero-cta {
    margin-top: 6px
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 36px
}

.hero-stat {
    background: rgba(255, 255, 255, 0.95);
    padding: 24px 20px;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.05);
    text-align: center
}

.hero-stat .stat-label {
    display: block;
    font-size: 12px;
    color: #9c8f80;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 10px
}

.hero-stat strong {
    display: block;
    font-size: 32px;
    color: #222;
    line-height: 1.05;
    margin-bottom: 8px
}

.hero-stat .stat-note {
    display: block;
    font-size: 13px;
    color: #6b6b6b;
    letter-spacing: 0.8px;
    text-transform: uppercase
}

.btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600
}

.btn-primary {
    background: #000000;
    color: #fff;
    border: 1px solid #000000;
    margin-right: 12px
}

.btn-primary .plus {
    margin-left: 8px;
    opacity: 0.9
}

.btn-outline {
    background: transparent;
    color: #222;
    border: 2px solid #222;
    padding: 10px 18px
}

.features {
    display: flex;
    gap: 18px;
    margin: 40px 0
}

.card {
    flex: 1;
    padding: 28px;
    border: 1px solid #eee;
    border-radius: 6px;
    text-align: center;
    font-weight: 600
}

.about-section {
    padding: 80px 0
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.9fr;
    gap: 56px;
    align-items: center
}

.about-image img {
    width: 100%;
    display: block;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 18px 50px rgba(20, 20, 20, 0.08)
}

.about-copy .eyebrow-alt {
    font-size: 12px;
    color: #9d7b63;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px
}

.about-copy h2 {
    font-size: 42px;
    line-height: 1.05;
    margin-bottom: 24px;
    color: #242424
}

.about-copy p {
    color: #5a5a5a;
    max-width: 640px;
    margin-bottom: 20px;
    line-height: 1.8
}

.about-quote {
    margin-top: 28px;
    padding: 28px 30px;
    background: #f9f5f1;
    border-left: 4px solid #d7b89b;
    color: #5a5a5a;
    font-style: italic;
    position: relative;
    border-radius: 12px
}

.about-quote .quote-mark {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 48px;
    color: #e4d3c4;
    line-height: 1
}

.about-quote .quote-author {
    display: block;
    margin-top: 18px;
    font-style: normal;
    font-weight: 600;
    color: #8c7c70
}

.choose-section {
    padding: 90px 0;
    background: #fbf7f1
}

.choose-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 52px;
    align-items: center
}

.choose-image {
    position: relative
}

.choose-image::before {
    content: '';
    position: absolute;
    top: -22px;
    left: -22px;
    width: 100%;
    height: 100%;
    background: #f8efea;
    border-radius: 24px;
    z-index: -1
}

.choose-image img {
    width: 100%;
    display: block;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: 0 24px 80px rgba(20, 20, 20, 0.10)
}

.choose-copy .eyebrow-alt {
    position: relative;
    font-size: 12px;
    color: #9d7b63;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 22px
}

.choose-copy .eyebrow-alt::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 44px;
    height: 2px;
    background: #9d7b63;
    border-radius: 1px
}

.choose-copy h2 {
    font-size: 44px;
    line-height: 1.05;
    margin-bottom: 18px;
    color: #242424;
    max-width: 520px
}

.choose-lead {
    color: #6b6b6b;
    margin-bottom: 26px;
    font-size: 18px;
    max-width: 560px
}

.choose-list {
    display: grid;
    gap: 18px;
    margin-bottom: 24px;
    max-width: 620px
}

.choose-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: #5e5e5e;
    font-size: 16px;
    line-height: 1.9
}

.choose-item span {
    margin-top: 4px;
    color: #9d7b63;
    font-size: 18px;
    line-height: 1
}

.choose-copy p {
    color: #5a5a5a;
    max-width: 700px;
    line-height: 1.9;
    margin-bottom: 24px
}

.catalog-section {
    padding: 80px 0
}

.catalog-header {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center
}

.catalog-header .eyebrow-alt {
    font-size: 12px;
    color: #9d7b63;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px
}

.catalog-header h2 {
    font-size: 42px;
    line-height: 1.05;
    margin-bottom: 16px;
    color: #242424
}

.catalog-header p {
    color: #6b6b6b;
    font-size: 17px;
    line-height: 1.8
}

.catalog-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px
}

.catalog-track {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    width: 100%
}

.catalog-card {
    min-width: 320px;
    max-width: 320px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(20, 20, 20, 0.08);
    overflow: hidden;
    margin: 0 12px;
    flex-shrink: 0
}

.catalog-card img {
    width: 100%;
    display: block;
    height: 420px;
    object-fit: cover
}

.catalog-card h3 {
    font-size: 20px;
    margin: 18px 20px 10px;
    color: #222
}

.catalog-card p {
    color: #6b6b6b;
    margin: 0 20px 22px;
    line-height: 1.75
}

.carousel-nav {
    width: 54px;
    height: 54px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: #222;
    font-size: 26px;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 28px rgba(20, 20, 20, 0.12);
    transition: transform .2s ease
}

.carousel-nav:hover {
    transform: scale(1.03)
}

.carousel-prev {
    margin-right: -20px
}

.carousel-next {
    margin-left: -20px
}

.accessories-section {
    padding: 90px 0;
    background: #fffdf9
}

.accessories-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 52px;
    align-items: center;
    background-color: #d5d3d6;
    padding: 0px 0px 0px 30px;
    border-radius: 30px;
}

.accessories-copy .eyebrow-alt {
    font-size: 12px;
    color: #9d7b63;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 22px
}

.accessories-copy h2 {
    font-size: 44px;
    line-height: 1.05;
    margin-bottom: 18px;
    color: #242424;
    max-width: 520px
}

.accessories-lead {
    color: #6b6b6b;
    margin-bottom: 26px;
    font-size: 18px;
    max-width: 560px
}

.accessories-copy p {
    color: #5a5a5a;
    max-width: 680px;
    line-height: 1.9;
    margin-bottom: 24px
}

.accessories-list {
    display: grid;
    gap: 24px;
    margin-top: 28px
}

.accessories-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    align-items: flex-start
}

.accessories-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: #f7efe8;
    color: #9d7b63;
    display: grid;
    place-items: center;
    font-size: 24px;
    box-shadow: 0 18px 50px rgba(20, 20, 20, 0.06)
}

.accessories-item h4 {
    font-size: 18px;
    margin: 0 0 8px;
    color: #222
}

.accessories-item p {
    margin: 0;
    color: #6b6b6b;
    line-height: 1.75
}

.accessories-image {
    position: relative
}

.accessories-image::before {
    content: '';
    position: absolute;
    top: -24px;
    right: -24px;
    width: 100%;
    height: 100%;
    background: #f8efea;
    border-radius: 24px;
    z-index: -1
}

.accessories-image img {
    width: 100%;
    display: block;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: 0 24px 80px rgba(20, 20, 20, 0.10)
}

.history-section {
    padding: 90px 0;
    background: #fbf7f1
}

.history-header {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center
}

.history-header .eyebrow-alt {
    font-size: 12px;
    color: #9d7b63;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px
}

.history-header h2 {
    font-size: 44px;
    line-height: 1.05;
    margin-bottom: 16px;
    color: #242424
}

.history-header p {
    color: #6b6b6b;
    font-size: 17px;
    line-height: 1.8;
    max-width: 760px;
    margin: 0 auto
}

.history-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.history-card {
    background: #fff;
    border: 1px solid #f0e7e1;
    border-radius: 20px;
    padding: 34px 28px;
    text-align: center;
    box-shadow: 0 18px 50px rgba(20, 20, 20, 0.05)
}

.history-circle {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: #f5f0eb;
    color: #3d3d3d;
    font-size: 24px;
    display: grid;
    place-items: center;
    margin: 0 auto 22px;
    font-weight: 600
}

.history-card h3 {
    font-size: 20px;
    margin: 0 0 14px;
    color: #222
}

.history-card p {
    color: #6b6b6b;
    line-height: 1.8;
    margin: 0
}

.gallery-section {
    padding: 90px 0;
    background: #fffdf9
}

.gallery-header {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center
}

.gallery-header .eyebrow-alt {
    font-size: 12px;
    color: #9d7b63;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px
}

.gallery-header h2, .spring-grid h2 {
    font-size: 44px;
    line-height: 1.05;
    margin-bottom: 16px;
    color: #242424
}

.gallery-header p {
    color: #6b6b6b;
    font-size: 17px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px
}

.gallery-card {
    border: none;
    padding: 0;
    background: none;
    cursor: pointer;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(20, 20, 20, 0.08);
    transition: transform .25s ease, box-shadow .25s ease
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 70px rgba(20, 20, 20, 0.12)
}

.gallery-card img {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover
}

.spring-section {
    padding: 100px 0
}

.social-section {
    padding: 90px 0
}

.social-header {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center
}

.social-header .eyebrow-alt {
    font-size: 12px;
    color: #9d7b63;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px
}

.social-header h2 {
    font-size: 44px;
    line-height: 1.05;
    margin-bottom: 16px;
    color: #242424
}

.social-header p {
    color: #6b6b6b;
    font-size: 17px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto
}

.social-carousel {
    position: relative;
    padding: 0 24px
}

.social-track {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    gap: 18px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory
}

.social-track::-webkit-scrollbar {
    display: none
}

.social-card {
    /* min-width: 320px;
    max-width: 320px;
    height: 460px; */
    border-radius: 24px;
    overflow: hidden;
    flex: 0 0 auto;
    scroll-snap-align: start;
    box-shadow: 0 24px 80px rgba(20, 20, 20, 0.08);
    background: #fff
}

.social-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.social-card video {
    /* width: 100%; */
    height: 100%;
    object-fit: cover;
    display: block;
}

.social-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.98);
    color: #222;
    font-size: 28px;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 28px rgba(20, 20, 20, 0.12);
    transition: transform .2s ease;
    z-index: 1
}

.social-nav:hover {
    transform: translateY(-50%) scale(1.05)
}

.social-prev {
    left: 8px
}

.social-next {
    right: 8px
}

.brands-section {
    padding: 90px 0
}

.brands-header {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center
}

.brands-header .eyebrow-alt {
    font-size: 12px;
    color: #9d7b63;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px
}

.brands-header h2 {
    font-size: 44px;
    line-height: 1.05;
    margin-bottom: 16px;
    color: #242424
}

.brands-header p {
    color: #6b6b6b;
    font-size: 17px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto
}

.brands-carousel {
    position: relative;
    padding: 0 24px
}

.brands-track {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    gap: 18px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory
}

/* Brands grid layout (replace carousel) */
.brands-grid{
        display:grid;
        grid-template-columns:repeat(6,1fr);
        gap:18px;
        align-items:center;
        width:100%;
}
.brands-grid .brand-logo{min-width:0;height:100px;border-radius:18px;display:flex;align-items:center;justify-content:center;background:#fff;box-shadow:0 18px 40px rgba(20,20,20,0.08)}
.brands-grid .brand-logo img{max-width:165px;max-height:120px;padding:12px;object-fit:contain;border-radius: 30px;}

@media(max-width:1200px){
    .brands-grid{grid-template-columns:repeat(4,1fr)}
}
@media(max-width:900px){
    .brands-grid{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:600px){
    .brands-grid{grid-template-columns:repeat(2,1fr)}

    .accessories-image::before {
   right: 0px;
}
    .spring-image::before {
        right: 0 !important;
    }
        .container {
        padding: 10px 15px 0px;
    }
    .logo img {
    width: 100%;
    max-width: 160px !important;
}
.accessories-grid {
    padding: 45px 10px 0px 10px;
}
}

.brands-track::-webkit-scrollbar {
    display: none
}

.brand-logo {
    min-width: 180px;
    max-width: 180px;
    height: 100px;
    border-radius: 18px;
    overflow: hidden;
    flex: 0 0 auto;
    scroll-snap-align: start;
    box-shadow: 0 18px 40px rgba(20, 20, 20, 0.08);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center
}

.brand-logo img {
    max-width: 140px;
    max-height: 60px;
    object-fit: contain
}

.brands-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.98);
    color: #222;
    font-size: 28px;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 28px rgba(20, 20, 20, 0.12);
    transition: transform .2s ease;
    z-index: 1
}

.brands-nav:hover {
    transform: translateY(-50%) scale(1.05)
}

.brands-prev {
    left: 8px
}

.brands-next {
    right: 8px
}

.spring-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 56px;
    align-items: center
}

.spring-copy .eyebrow-alt {
    font-size: 12px;
    color: #9d7b63;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 22px
}

.spring-copy h2 {
    font-size: 56px;
    line-height: 1.03;
    margin-bottom: 20px;
    color: #242424
}

.spring-lead {
    color: #6b6b6b;
    font-size: 18px;
    line-height: 1.9;
    max-width: 560px;
    margin-bottom: 32px
}

.spring-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap
}

.btn-outline {
    background: transparent;
    color: #222;
    border: 2px solid #222;
    padding: 10px 18px
}

.spring-image {
    position: relative
}

.spring-image::before {
    content: '';
    position: absolute;
    top: -28px;
    /* right: -28px; */
    width: 100%;
    height: 100%;
    background: #f8efea;
    border-radius: 24px;
    z-index: -1
}

.spring-image img {
    width: 100%;
    display: block;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: 0 24px 80px rgba(20, 20, 20, 0.10)
}

.collab-section {
    padding: 90px 0
}

.collab-card {
    background: #032965;
    border-radius: 28px;
    padding: 56px 44px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px
}

.collab-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: #fff;
    display: grid;
    place-items: center;
    font-size: 32px;
    color: #9d7b63;
    box-shadow: 0 18px 50px rgba(20, 20, 20, 0.08)
}

.collab-card h2 {
    font-size: 36px;
    line-height: 1.05;
    color: #ffffff;
    max-width: 760px;
    margin: 0
}

.collab-card p {
    color: #bebebe;
    font-size: 18px;
    line-height: 1.8;
    max-width: 620px;
    margin: 0
}

.gallery-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 9999
}

.gallery-popup.open {
    display: flex
}

.gallery-popup-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35)
}

.gallery-popup img {
    display: block;
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    background: #111
}

.gallery-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #222;
    font-size: 22px;
    cursor: pointer;
    display: grid;
    place-items: center;
    z-index: 1
}

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 40px 0 24px;
    margin-top: 40px;
    background: #111;
    color: #ddd
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 32px;
    align-items: start;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08)
}

.footer-brand .logo {
    font-size: 24px;
    color: #fff
}

.footer-brand p {
    max-width: 440px;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8
}

.footer-social h4,
.footer-contact h4 {
    font-size: 16px;
    margin-bottom: 18px;
    color: #fff
}

.footer-social .social-icons,
a.footer-contact p {
    display: block
}

.footer-social .social-icons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    transition: background .2s ease, color .2s ease;
    font-size: 15px;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.footer-social .icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

.footer-contact p {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8
}

.footer-contact a{color:rgba(255,255,255,0.92);text-decoration:none}
.footer-contact a:hover{color:#fff}
.footer-contact .fa{margin-right:8px;color:#fff}

/* Floating right-side contact buttons */
.float-contact{position:fixed;right:18px;top:50%;transform:translateY(-50%);display:flex;flex-direction:column;gap:12px;z-index:9999}
.float-btn{width:52px;height:52px;border-radius:50%;display:grid;place-items:center;background:#25D366;color:#fff;text-decoration:none;box-shadow:0 8px 22px rgba(0,0,0,0.18);transition:transform .15s ease,box-shadow .15s ease}
.float-btn.instagram{background:linear-gradient(45deg,#f58529,#dd2a7b,#8134af);background-size:200%}
.float-btn:hover{transform:translateY(-4px);box-shadow:0 14px 30px rgba(0,0,0,0.22)}
.float-btn i{font-size:20px}

@media(max-width:700px){
    .float-contact{right:12px}
    .float-btn{width:44px;height:44px}
    .float-btn i{font-size:18px}
}

.footer-bottom {
    padding-top: 18px;
    text-align: center;
    color: #aaa;
    font-size: 14px
}

.hero {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .9s ease, transform .9s ease
}

.hero.is-visible {
    opacity: 1;
    transform: translateX(0);
    background-color: #e6e6e6;
}

section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .9s ease, transform .9s ease
}

section.is-visible {
    opacity: 1;
    transform: translateY(0)
}

@media(max-width:1200px) {
    .container {
        padding: 0 14px
    }

    .hero-card {
        margin-left: 0
    }

    .catalog-card {
        min-width: 280px;
        max-width: 280px
    }
}

@media(max-width:1000px) {
    .container {
        padding: 0 24px
    }

    .hero-banners-desktop {
        display: grid;
    }

    .hero-banners-mobile {
        display: none;
    }

    .hero-inner {
        min-height: auto;
        padding: 70px 0 40px;
        gap: 24px
    }

    .hero-banner-slide img {
        aspect-ratio: 16 / 7.5;
    }

    .hero-card {
        max-width: 100%;
        width: 100%;
        margin: 0 auto 28px
    }

    .hero-image {
        width: 100%;
        max-width: 100%;
    }

    .hero-image img {
        max-height: 420px;
        min-height: 320px
    }

    .hero-banners {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-bg {
        background-position: center;
        min-height: 360px
    }

    .header-inner {
        flex-wrap: nowrap;
        justify-content: space-between;
        position: relative
    }

    .nav-toggle {
        display: grid;
                width: 50px;
        font-size: 25px;
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        padding: 100px 24px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        background: #fff;
        color: #222;
        box-shadow: -16px 0 50px rgba(0, 0, 0, 0.12);
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: transform .35s ease, opacity .35s ease, visibility .35s ease;
        z-index: 11;
        overflow-y: auto
    }

    .nav.open {
        transform: translateX(0);
        opacity: 1;
        visibility: visible
    }

    .nav-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        border: none;
        border-radius: 14px;
        background: #f2f2f2;
        color: #222;
        font-size: 30px;
        line-height: 1;
        cursor: pointer;
        display: none;
        place-items: center;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08)
    }

    .nav.open .nav-close {
        display: grid
    }

    .nav a {
        color: #222;
        font-size: 16px;
        display: block;
        width: 100%;
        margin-left: 0;
        padding: 14px 0;
        border-bottom: 1px solid #eee
    }

    .nav-overlay {
        display: block;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        transition: opacity .3s ease, visibility .3s ease;
        z-index: 10
    }

    .nav-overlay.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .about-image img {
        border-radius: 24px;
        min-height: 320px;
        object-position: center top
    }

    .about-copy {
        padding: 0 4px
    }

    .about-copy p {
        max-width: 100%;
        font-size: 16px;
        line-height: 1.9
    }

    .about-quote {
        padding: 24px 22px
    }

    .choose-grid,
    .accessories-grid,
    .spring-grid,
    .history-grid {
        grid-template-columns: 1fr
    }

    .social-track {
        gap: 14px
    }

    .social-card {
        min-width: 260px;
        max-width: 260px
    }

    .features {
        flex-direction: column
    }
}

@media(max-width:820px) {
    .social-card {
        min-width: 220px;
        max-width: 220px
    }

    .social-nav {
        width: 48px;
        height: 48px;
        font-size: 24px
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:480px) {
    .hero-banners-mobile {
        grid-template-columns: 1fr;
    }
}

@media(max-width:700px) {
    .container {
        padding: 0 24px
    }

    .hero-banner-slider {
        width: 100%;
    }

    .hero-banner-slide img {
        aspect-ratio: 16 / 7.5;
    }

    .hero-nav {
        display: grid !important;
        width: 20px;
        height: 20px;
        font-size: 14px;
    }

    .hero-banners-desktop {
        display: none;
    }

    .hero-banners-mobile {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px
    }

    .hero-banner {
        padding: 18px 18px
    }

    .hero-banner strong {
        font-size: 15px
    }

    .hero-banner p {
        font-size: 13px
    }

    .hero {
        padding: 60px 0
    }

    .hero-card h1 {
        font-size: 32px
    }

    .hero-card {
        padding: 28px 24px
    }

    .about-section {
        padding: 60px 10px
    }

    .about-copy h2 {
        font-size: 32px
    }

    .choose-section {
        padding: 60px 10px
    }

    .choose-grid {
        gap: 32px
    }

    .choose-copy h2 {
        font-size: 32px
    }

    .catalog-section {
        padding: 60px 10px
    }

    .catalog-card {
        min-width: 220px;
        max-width: 220px
    }

    .catalog-header h2 {
        font-size: 32px
    }

    .accessories-section {
        padding: 60px 10px
    }

    .accessories-copy h2 {
        font-size: 32px
    }

    .accessories-item {
        grid-template-columns: 48px 1fr
    }

    .accessories-icon {
        width: 48px;
        height: 48px;
        font-size: 22px
    }

    /* .gallery-grid {
        grid-template-columns: 1fr
    } */

    .spring-section {
        padding: 70px 10px
    }

    .spring-grid {
        grid-template-columns: 1fr
    }

    .spring-copy h2 {
        font-size: 38px
    }

    .spring-image::before {
        top: -20px;
        right: -20px
    }

    .social-section {
        padding: 70px 10px
    }

    .social-track {
        padding-bottom: 14px
    }

    .social-card {
        min-width: 100%;
        max-width: 100%
    }

    .social-nav {
        display: grid;
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .collab-section {
        padding: 70px 10px
    }

    .collab-card {
        padding: 42px 24px
    }

    .history-section {
        padding: 70px 10px
    }

    .history-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .footer-brand p {
        max-width: 100%
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 15px
    }

    .footer-links a {
        font-size: 14px
    }
}

.logo img {
    width: 100%;
    max-width: 240px;
}

/* Brands carousel: show 5 logos per view on wide screens, fallback to fixed widths on small screens */
.brand-logo{
        min-width:120px;
        max-width:none;
        height:100px;
        border-radius:18px;
        overflow:hidden;
        flex:0 0 calc((100% - 72px) / 5);
        scroll-snap-align:start;
        box-shadow:0 18px 40px rgba(20,20,20,0.08);
        background:#fff;
        display:flex;align-items:center;justify-content:center;
}
.brand-logo img{max-width:120px;max-height:70px;object-fit:contain;padding:12px}

@media(max-width:1000px){
    .brand-logo{flex:0 0 180px;min-width:180px;max-width:180px}
}

/* Continuous marquee for brands */
.brands-carousel{overflow:hidden;position:relative}
.brands-track{display:flex;gap:18px;align-items:center;will-change:transform}
.brands-track .brand-logo{flex:0 0 auto}
.brands-track.is-marquee{animation-timing-function:linear;animation-iteration-count:infinite;animation-name:brands-scroll}
.brands-carousel:hover .brands-track.is-marquee{animation-play-state:paused}

@keyframes brands-scroll{
    from{transform:translateX(0)}
    to{transform:translateX(var(--marquee-displacement, -1000px))}
}
.follow-url {
    text-align: center;
    padding-top: 30px;
}
.follow-url a {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
    padding: 10px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}
.about-image{
    display: flex;
    gap: 10px;
}
.about-image video {
    width: 50%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}