* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "TheGwatmey";
    src: url('textfonts/TheGwathmey.woff') format('woff');
}

@font-face {
    font-family: "EBGaramondItalic";
    src: url('textfonts/EBGaramond-Italic.woff') format('woff');
}

html {
    font-size: 10px;
    font-family: "Josefin Sans", sans-serif;
}

:root {
    --primary-color: #1d1d1d;        
}

.container,
.small-container,
.medium-container {
    width: 100%;
    max-width: 130rem;
    margin: auto;
    padding: 0 2rem;
}

.small-container {
    max-width: 100rem;
}

.medium-container {
    max-width: 120rem;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

/* HEADER */

.navbar .logo {
    font-size: 1.8rem;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
    height: 7rem;
}

.nav-list {
    display: flex;
}

.nav-list li:not(:last-child) {
    margin-right: 5rem; 
}

.navbar a {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.navbar a {
    transition: opacity .3s;
}

.navbar a:hover {
    opacity: .6;
}

.navbar div svg:not(:last-child) {
    margin-right: 1.5rem;
}

.menu-toggle {
    font-size: 2.2rem;
    color: #ddd;
    cursor: pointer;
    display: none;
    z-index: 1000;
}

.timeless {
    font-size: 5rem;
    color: #f42153;
    font-family: "TheGwatmey";
    font-weight: normal;
}

.row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.hero {
    background-color: #f2f0f1;
}

.col-2 {
    flex-basis: 50%;
    min-width: 30rem;
}

.hero-info {
    flex-basis: 50%;
    align-self: flex-start;
    padding: 12rem 0;
    min-width: 30rem;
}

.hero-image {
    min-width: 30rem;
}

.col-2 img,
.hero-image img {
    max-width: 100%;
    text-align: center;
}

h1 {
    font-size: 5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .25rem;
    margin: 2rem 0;
}

.hero p,
.offer p {
    font-size: 1.9rem;
    color: #4c4c43;
    margin: 2rem 0;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.6rem;
    margin-top: 2.5rem;
}

.btn {
    display: inline-block;
    padding: 1.5rem 4rem;
    font-size: 1.8rem;
    font-family: Arial, sans-serif;
    text-align: center;
    border-radius: 5rem;
    transition: all .3s;
}

.btn-primary {
    background: #000;
    color: #fff;
    border: .1rem solid #000;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: #fff;
    color: #000;
    border: .1rem solid #ddd;
}

.btn-primary:hover {
    background: #222;
    color: #fff;
}

.btn-secondary:hover {
    background: #f5f5f5;
    color: #000;
}

.btn:hover {
    background-color: #4c4c43;
    color: #f2f0f1;
}

.navbar svg {
    cursor: pointer;
}

.menu-icon {
    width: 2.6rem;
    margin-left: 2rem;
    display: none;
}

/* FEATURED CATEGORIES */

.categories {
    margin: 7rem 0;
}

.col-3 {
    flex-basis: 30%;
    min-width: 25rem;
    margin-bottom: 3rem;
}

.col-3 img {
    width: 100%;
}

/* FEATURED CATEGORIES */

.featured {
    margin: 0;
    padding: 2.5rem 0 4rem;
}

.col-4 {
    flex-basis: 25%;
    min-width: 20rem;
    padding: 1rem;
    margin-bottom: 5rem;
    transition: transform .5s;
}

.col-4 img {
    width: 100%;
}

h2 {
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: .3rem;
}

.title {
    text-align: center;
    margin: 0 auto 3rem;
    line-height: 1.8;
    position: relative;
}

.title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    height: .5rem;
    width: 10rem;
    background-color: #f42153;
    border-radius: .5rem;
}

h4 {
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: .1rem;
    font-size: 1.3rem;
    color: #1d1d1d;
    margin: .8rem 0;
}

.col-4 p {
    font-size: 1.4rem;
    margin: .5rem 0;
}

.rating .fas {
    color: #f42153;
    font-size: 1.4rem;
}

.col-4:hover {
    transform: translateY(-.5rem);
}

/* LASTEST PRODUCTS */

small {
    font-family: "EBGaramondItalic";
    color: #4c4c43;
    font-size: 2rem;
    text-align: center;
    display: block;
}

.latest-products h2 {
    margin: 0;
    margin: 1.5rem 0 7rem;
}

/* OFFER */

.offer {
    margin: 5rem 0;
    background-color: #e3ebf0;
    margin-top: 8rem;
    padding: 7rem 0 5rem;
}

.offer .col-2:last-child {
    padding-left: 5rem;
}

.offer small,
.single-product small {
    text-align: left;
    margin-bottom: 1.5rem;
}

.offer h3 {
    font-size: 4rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

/* TESTIMONIALS */

.testimonials {
    padding-top: 10rem;
}

.testimonials .col-3 {
    text-align: center;
    padding: 4rem 2rem;
    box-shadow: 0 0 2rem 0px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.5s;
}

.testimonials .col-3:hover {
    transform: translateY(-10px);
}

.testimonials .col-3 img {
    width: 5rem;
    margin-top: 2rem;
    border-radius: 50%;
}

.fas.fa-quote-left {
    font-size: 3.4rem;
    color: #f42153;
}

.col-3 p {
    font-size: 1.5rem;
    line-height: 1.5;
    margin: 1.2rem 0;
    color: #777;
}

.testimonials .col-3 h3 {
    font-weight: 600;
    color: #555;
    font-size: 1.6rem;
    margin-top: 1rem;
}

/* BRAND */

.brands,
.assurance {
    margin: 10rem auto;
}

.col-5 {
    width: 16rem;
}

.col-5 img {
    width: 100%;
}

/* FOOTER */

footer {
    padding: 6rem 0 2rem;
    background-color: #f2f0f1;
}

footer h4 {
    font-size: 1.8rem;
    margin-bottom: 2.2rem;
}

footer p,
footer a {
    font-size: 1.7rem;
    color: rgb(139, 134, 134);
}

footer a {
    display: inline-block;
    margin-bottom: 1.7rem;
    transition: color .3s;
}

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

.footer-col-1,
.footer-col-2,
.footer-col-3,
.footer-col-4 {
    min-width: 25rem;
    margin-bottom: 3rem;
}

footer img {
    width: 18rem;
    margin-bottom: 2rem;
}

.footer-col-1 {
    flex-basis: 30%;
}

.footer-col-1 .logo {
    font-size: 1.8rem;
    text-transform: uppercase;
    color: var(--primary-color);
}

.row {
    align-items: flex-start;
}

.social_icons {
    font-size: 1.9rem;
}

.social_link {
    margin-right: 1.4rem;
    transition: color .3s;
}

.social_link:hover {
    color: var(--primary-color);
}

/*                        SHOP PAGE                        */

.row-2 {
    justify-content: space-between;
    margin: 10rem auto 5rem;
}

select {
    padding: .6rem;
    border: .1rem solid #555;
    outline: none;
    background: transparent;
}

.pagination span {
    display: inline-block;
    height: 4rem;
    width: 4rem;
    line-height: 4rem;
    border: 1px solid #555;
    font-size: 1.5rem;
    text-align: center;
    margin-left: 1rem;
    cursor: pointer;
    transition: all .3s;
}

.pagination span:hover {
    background-color: #f42153;
    border-color: #f42153;
    color: #fff;
}

/* ASSURANCE SECTION */

.assurance .col-4:hover {
    transform: translateY(0);
}

.assurance img {
    width: 5rem;
}

.assurance p {
    text-transform: uppercase;
    font-size: 1.6rem;
    margin-top: 1.5rem;
    font-weight: 500;
    letter-spacing: .1rem;
    color: var(--primary-color);
}



/*                          SINGLE PRODUCT PAGE                       */

.single-product {
    margin-top: 0;
}

.single-product h1 {
    font-size: 4rem;
}

.single-product p {
    font-size: 1.9rem;
    color: #555;
    line-height: 1.5;
}

.single-product .col-2 img {
    padding: 0;
}

.single-product .col-2 {
    padding: 2rem;
}

.order {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 5rem;
}

.single-product select {
    color: var(--primary-color);
    margin-right: 2rem;
    margin-bottom: 2rem;
    display: inline-block;
    border: .1rem solid #ddd;
    padding: .5rem 2rem;
    font-size: 1.9rem;
    font-family: "Josefin Sans", sans-serif;
    height: 5.5rem;
}

.single-product .btn {
    margin: 0;
    margin-bottom: 2rem;
    height: 5.5rem;
}

.wish {
    display: inline-block;
    margin-top: 1rem;
    font-size: 1.9rem;
    font-family: "EBGaramondItalic";
}

.wish svg {
    margin-right: 1rem;
}

.other-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 4rem;
}

.other-details h4 {
    margin: 1rem 0;
    font-weight: 600;
    letter-spacing: .2rem;
}

.other-details span {
    font-family: "EBGaramondItalic";
    font-weight: normal;
    font-size: 1.6rem;
    color: #777;
    text-transform: capitalize;
    margin-left: 1.5rem;
}

.view-more {
    font-size: 2rem;
}


/*                          ACCOUNT PAGE                       */

footer.bg-white {
    background-color: #fff;
}

.account {
    padding: 5rem 0;
    background-color: #f2f0f1;
}

.form-container {
    font-size: 2rem;
    background-color: #fff;
    width: 30rem;
    height: 40rem;
    text-align: center;
    position: relative;
    padding: 2rem 0;
    margin: auto;
    box-shadow: 0 0 2rem 0 rgba(0,0,0,0.1);
    overflow: hidden;
}

.form-container span {
    display: inline-block;
    font-weight: bold;
    padding: 0 1rem;
    color: #555;
    cursor: pointer;
    width: 10rem;
}

.form-btn {
    display: inline-block;
}

.form-container form {
    max-width: 30rem;
    padding: 0 2rem;
    position: absolute;
    top: 11rem;
    transition: transform 1s;
}

form input {
    font-size: 1.6rem;
    width: 100%;
    height: 3.5rem;
    margin: 1.5rem 0;
    padding: 2rem 1rem;
    border: 1px solid #ddd;
    outline: none;
    font-family: "Josefin Sans", sans-serif;
}

form .btn {
    width: 100%;
    border: none;
    cursor: pointer;
    margin: 1rem 0;
    outline: none;
}

#LoginForm {
    left: -30rem;
}

#RegForm {
    left: 0;
}

form a {
    font-size: 1.5rem;
}

#Indicator {
    width: 10rem;
    border: none;
    background-color: #4c4c43;
    height: .3rem;
    margin-top: .8rem;
    transform: translateX(10rem);
    transition: transform 1s;
}

/* MEDIA QUERIES */

@media only screen and (max-width: 800px) {

   .menu-toggle {
       display: block;
   }

   .fa-bars {
       color: var(--primary-color);
   }

   .fa-times {
       display: none;
   }

    .nav-list {
       background-color: #4c4c43;
       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       min-height: 100vh;
       flex-direction: column;
       justify-content: center;
       align-items: center;
       transform: translateY(-100%);
       transition: transform .5s;
       z-index: 100;
   }

    .nav-list li:not(:last-child) {
        margin-right: 0;
    }

    .nav-list li {
        margin: 3.5rem 0;
    }

    .menu-toggle.show .fa-bars {
        display: none;
    }

    .menu-toggle.show .fa-times {
        display: block;
    }

    .nav-list.show {
        transform: translateY(0);
    }

    .navbar a {
        color: #e3ebf0;
    }

    .logo {
        color: var(--primary-color) !important;
    }

    .navbar svg {
        display: none;
    }

    .footer-col-1 p {
        line-height: 1.4;
    }
}


@media screen and (max-width: 600px) {

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 1.4rem;
    }

    .hero-buttons .btn {
        width: 90%;
        max-width: 34rem;
        padding: 1.6rem 2rem;
        font-size: 1.8rem;
    }

    .row {
        text-align: left;
    }

    .offer .col-2:last-child {
        padding-left: 0;
        margin-top: 5rem;
    }

    .offer small {
        text-align: center;
    }

    .col-2, .col-3 {
        flex-basis: 100%;
    }

    .featured .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        text-align: left;
    }

    .featured .col-4 {
        flex: 0 0 48%;
        max-width: 48%;
        min-width: 0;
        padding: 0;
        margin-bottom: 3rem;
        text-align: left;
    }

    .featured .col-4 img {
        width: 100%;
        height: auto;
        display: block;
        margin-bottom: 1rem;
    }

    .featured .col-4 h4 {
        font-size: 1.5rem;
        line-height: 1.35;
        letter-spacing: normal;
        text-align: left;
        margin-bottom: 0.8rem;
        text-transform: none;
    }

    .featured .col-4 .rating {
        display: none;
    }

    .featured .col-4 p {
        font-size: 1.8rem;
        font-weight: 600;
        text-align: left;
    }

    .single-product .row {
        text-align: left;
    }

    .single-product .col-2 {
        padding: 2rem 0;
    }

    .single-product h1 {
        font-size: 2.5rem;
    }

    .view-more {
        display: none;
    }

    .account .col-2:first-child {
        display: none;
    }
}





.contact-info p {
    font-size: 1.8rem;
    line-height: 1.6;
}

.featured {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.categories {
    padding-top: 1rem !important;
    margin-top: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.testimonials {
    padding-top: 1rem !important;
    margin-top: 0 !important;
}

.featured .title,
.categories .title,
.testimonials .title {
    margin-top: 1rem !important;
    margin-bottom: 2rem !important;
}

.footer-map {
    margin-top: 2rem;
    width: 100%;
}

.footer-map iframe {
    width: 100%;
    height: 400px; /* make it bigger */
    border: 0;
    display: block;
}

@media screen and (max-width: 600px) {
    .footer-map iframe {
        height: 350px;
    }
}

/* Shop page mobile product grid */
@media screen and (max-width: 600px) {
    .shop-products .row:not(.row-2) {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        text-align: left;
    }

    .shop-products .col-4 {
        flex: 0 0 48%;
        max-width: 48%;
        min-width: 0;
        padding: 0;
        margin-bottom: 3rem;
        text-align: left;
    }

    .shop-products .col-4 img {
        width: 100%;
        height: auto;
        display: block;
        margin-bottom: 1rem;
    }

    .shop-products .col-4 h4 {
        font-size: 1.5rem;
        line-height: 1.35;
        letter-spacing: normal;
        text-align: left;
        margin-bottom: 0.8rem;
        text-transform: none;
    }

    .shop-products .col-4 .rating {
        display: none;
    }

    .shop-products .col-4 p {
        font-size: 1.8rem;
        font-weight: 600;
        text-align: left;
    }
}

/* Product detail gallery */
/* Product detail gallery thumbnails */
.product-thumbnails {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.product-thumbnails img {
    flex: 0 0 8rem;
    width: 8rem;
    height: 8rem;
    object-fit: cover;
    cursor: pointer;
    border: 1px solid #ddd;
    padding: 0.5rem;
    opacity: 0.75;
    transition: 0.3s;
    scroll-snap-align: start;
}

.product-thumbnails img:hover {
    opacity: 1;
}

.product-thumbnails img.active {
    opacity: 1;
    border: 2px solid #000;
}

@media screen and (max-width: 600px) {
    .product-thumbnails {
        gap: 0.8rem;
        padding-bottom: 1rem;
    }

    .product-thumbnails img {
        flex: 0 0 9rem;
        width: 9rem;
        height: 9rem;
    }
}

/* Product gallery with arrows */
.product-gallery-scroll {
    position: relative;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
}

.product-thumbnails {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 3.5rem 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.product-thumbnails::-webkit-scrollbar {
    display: none;
}

.product-thumbnails img {
    flex: 0 0 8rem;
    width: 8rem;
    height: 8rem;
    object-fit: cover;
    cursor: pointer;
    border: 1px solid #ddd;
    padding: 0.4rem;
    opacity: 0.75;
    transition: opacity 0.3s, border-color 0.3s;
    scroll-snap-align: start;
    box-sizing: border-box;
}

.product-thumbnails img:hover,
.product-thumbnails img.active {
    opacity: 1;
    border-color: #000;
}

.thumb-arrow {
    position: absolute;
    z-index: 2;
    width: 3rem;
    height: 3rem;
    border: none;
    border-radius: 50%;
    background: #000;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.thumb-arrow.left {
    left: 0;
}

.thumb-arrow.right {
    right: 0;
}

@media screen and (max-width: 600px) {
    .product-thumbnails {
        gap: 0.8rem;
        padding: 0 3.2rem 1rem;
    }

    .product-thumbnails img {
        flex: 0 0 8.5rem;
        width: 8.5rem;
        height: 8.5rem;
    }

    .thumb-arrow {
        width: 2.8rem;
        height: 2.8rem;
        font-size: 2rem;
    }
}

.thumb-arrow.disabled,
.thumb-arrow:disabled {
    opacity: 0.25;
    cursor: not-allowed;
}


.contact-order-btn {
    display: inline-block;
    margin-top: 3rem;
    background: #0088cc;
    color: #fff;
    padding: 1.5rem 3rem;
    border-radius: 4rem;
    font-size: 1.8rem;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 0.8rem 1.8rem rgba(0, 136, 204, 0.25);
}

.contact-order-btn:hover {
    background: #0077b5;
    color: #fff;
}

@media screen and (max-width: 600px) {
    .contact-order-btn {
        width: 100%;
        text-align: center;
        padding: 1.6rem 2rem;
    }
}



.footer {
    padding: 35px 20px;
    background: #f7f7f7;
}

.footer-content {
    max-width: 420px;
    margin: auto;
}

.footer h3 {
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 18px;
    color: #222;
    text-align: center;
}

.footer p {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 12px;
}

.footer-map {
    margin-top: 18px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.footer-map iframe {
    width: 100%;
    height: 260px;
    border: 0;
    display: block;
}


@media only screen and (max-width: 600px) {
    .footer {
        padding: 30px 18px;
    }

    .footer h3 {
        font-size: 16px;
    }

    .footer p {
        font-size: 13px;
        line-height: 1.7;
    }

    .footer-map iframe {
        height: 240px;
    }
}

.hero {
    min-height: 88vh;
    background: linear-gradient(135deg, #f7f7f7 0%, #ffffff 45%, #eeeeee 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 22px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    top: 90px;
    right: -90px;
}

.hero::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(255, 49, 88, 0.12);
    border-radius: 50%;
    bottom: 80px;
    left: -70px;
}

.hero-content {
    max-width: 520px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    color: #ff3158;
    background: rgba(255, 49, 88, 0.1);
    padding: 9px 16px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.hero h1 {
    font-size: 72px;
    line-height: 0.95;
    letter-spacing: 5px;
    font-weight: 900;
    color: #090909;
    margin-bottom: 22px;
}

.hero-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    max-width: 380px;
    margin: 0 auto 34px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    min-width: 165px;
    padding: 15px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
}

.btn-primary {
    background: #000;
    color: #fff;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.22);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: #ff3158;
}

.btn-secondary {
    background: #fff;
    color: #111;
    border: 1px solid #ddd;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    border-color: #ff3158;
    color: #ff3158;
}

@media only screen and (max-width: 600px) {
    .hero {
        min-height: 82vh;
        padding: 70px 20px;
    }

    .hero h1 {
        font-size: 50px;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .btn {
        width: 220px;
        padding: 14px 20px;
    }
}

/* ================================
   PROFESSIONAL PRODUCT PAGE
================================ */

.product-page {
    padding: 25px 0 60px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 55%, #f3f3f3 100%);
}

.product-layout {
    align-items: center;
    gap: 35px;
}

.product-image-area,
.product-info-area {
    padding: 20px;
}

.product-main-box {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 25px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.product-main-box img {
    border-radius: 18px;
    display: block;
}

.discount-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #ff3158;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 8px 14px;
    border-radius: 50px;
    z-index: 2;
}

.breadcrumb {
    font-size: 13px;
    color: #888;
    margin-bottom: 14px;
}

.product-info-area h1 {
    font-size: 42px;
    line-height: 1.1;
    color: #111;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #ff3158;
    margin-bottom: 18px;
}

.product-rating span {
    margin-left: 8px;
    font-size: 13px;
    color: #777;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.old-price {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
}

.new-price {
    font-size: 34px;
    font-weight: 800;
    color: #ff3158;
}

.product-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 22px;
    max-width: 480px;
}

.product-benefits {
    background: #fff;
    border-radius: 18px;
    padding: 18px 20px;
    margin-bottom: 24px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.product-benefits p {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}

.product-benefits p:last-child {
    margin-bottom: 0;
}

.order {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.order select {
    height: 48px;
    min-width: 130px;
    padding: 0 16px;
    border: 1px solid #ddd;
    border-radius: 50px;
    background: #fff;
    font-weight: 600;
    outline: none;
}

.contact-order-btn {
    height: 48px;
    padding: 0 24px;
    border-radius: 50px;
    background: #000;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
}

.contact-order-btn:hover {
    background: #ff3158;
    transform: translateY(-3px);
}

.other-details {
    border-top: 1px solid #eee;
    padding-top: 18px;
}

.other-details h4 {
    font-size: 14px;
    color: #111;
    margin-bottom: 8px;
}

.other-details span {
    color: #777;
    font-weight: 500;
}

/* thumbnail cleaner look */
.product-gallery-scroll {
    margin-top: 18px;
}

.product-thumbnails img {
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: 0.3s ease;
}

.product-thumbnails img.active,
.product-thumbnails img:hover {
    border-color: #ff3158;
}

/* mobile product page */
@media only screen and (max-width: 768px) {
    .product-page {
        padding: 15px 0 45px;
    }

    .product-layout {
        gap: 10px;
    }

    .product-image-area,
    .product-info-area {
        padding: 10px 18px;
    }

    .product-main-box {
        padding: 18px;
        border-radius: 20px;
    }

    .product-info-area h1 {
        font-size: 30px;
    }

    .new-price {
        font-size: 28px;
    }

    .old-price {
        font-size: 17px;
    }

    .order {
        flex-direction: column;
        align-items: stretch;
    }

    .order select,
    .contact-order-btn {
        width: 100%;
    }

    .product-benefits {
        padding: 16px;
    }
}


/* ================================
   GTRACING-INSPIRED HEADER
================================ */

.site-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

/* Top promo bar */
.top-promo {
    background: #050505;
    color: #fff;
    min-height: 36px;
    padding: 8px 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.top-promo span {
    position: relative;
}

.top-promo span:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -15px;
    top: 50%;
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-50%);
}

/* Main navbar */
.main-nav {
    background: #fff;
}

.nav-container {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #111;
    text-decoration: none;
}

.logo span {
    color: #ff3158;
    margin-left: 3px;
}

/* Nav links */
.nav-list {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-list li {
    list-style: none;
}

.nav-list li a {
    font-size: 13px;
    font-weight: 800;
    color: #111;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    position: relative;
    transition: 0.3s ease;
}

.nav-list li a::after {
    content: "";
    width: 0;
    height: 2px;
    background: #ff3158;
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.3s ease;
}

.nav-list li a:hover {
    color: #ff3158;
}

.nav-list li a:hover::after {
    width: 100%;
}

/* Order button */
.nav-order-btn {
    background: #111;
    color: #fff;
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: 0.3s ease;
}

.nav-order-btn:hover {
    background: #ff3158;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(255, 49, 88, 0.28);
}

/* Menu icon */
.menu-toggle {
    display: none;
    font-size: 22px;
    color: #111;
    cursor: pointer;
}

/* Mobile */
@media only screen and (max-width: 768px) {
    .top-promo {
        gap: 10px;
        font-size: 9px;
        padding: 8px 10px;
        flex-wrap: wrap;
        text-align: center;
    }

    .top-promo span:not(:last-child)::after {
        display: none;
    }

    .nav-container {
        min-height: 66px;
    }

    .logo {
        font-size: 17px;
    }

    .nav-order-btn {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav-list {
        position: absolute;
        top: 102px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 16px 0;
        box-shadow: 0 18px 32px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-list.active {
        display: flex;
    }

    .nav-list li {
        width: 100%;
        text-align: center;
    }

    .nav-list li a {
        display: block;
        padding: 15px 0;
        font-size: 13px;
    }

    .nav-list li a::after {
        display: none;
    }
}

/* ================================
   HOMEPAGE HEADER + VIDEO HERO
================================ */

.home-header {
    background: #000;
}

.top-promo {
    background: #050505;
    color: #fff;
    min-height: 36px;
    padding: 8px 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.top-promo span {
    position: relative;
}

.top-promo span:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -15px;
    top: 50%;
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-50%);
}

.main-nav {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.nav-container {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #111;
    text-decoration: none;
}

.logo span {
    color: #ff3158;
    margin-left: 3px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-list li {
    list-style: none;
}

.nav-list li a {
    font-size: 13px;
    font-weight: 800;
    color: #111;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    position: relative;
    transition: 0.3s ease;
}

.nav-list li a::after {
    content: "";
    width: 0;
    height: 2px;
    background: #ff3158;
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.3s ease;
}

.nav-list li a:hover {
    color: #ff3158;
}

.nav-list li a:hover::after {
    width: 100%;
}

.nav-order-btn {
    background: #111;
    color: #fff;
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: 0.3s ease;
}

.nav-order-btn:hover {
    background: #ff3158;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(255, 49, 88, 0.28);
}

.menu-toggle {
    display: none;
    font-size: 22px;
    color: #111;
    cursor: pointer;
}

/* Hero video */
.hero-video {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 90px 20px;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.86) 0%,
        rgba(0, 0, 0, 0.55) 45%,
        rgba(0, 0, 0, 0.18) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 680px;
    margin-left: 7%;
    color: #fff;
}

.hero-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
    background: #ff3158;
    padding: 10px 16px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.hero-content h1 {
    font-size: 66px;
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #e6e6e6;
    max-width: 520px;
    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: inline-block;
    transition: 0.3s ease;
}

.btn-primary {
    background: #ff3158;
    color: #fff;
    box-shadow: 0 14px 30px rgba(255, 49, 88, 0.32);
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-secondary {
    background: #fff;
    color: #111;
}

.btn-secondary:hover {
    transform: translateY(-3px);
}

/* Mobile */
@media only screen and (max-width: 768px) {
    .top-promo {
        gap: 10px;
        font-size: 9px;
        padding: 8px 10px;
        flex-wrap: wrap;
        text-align: center;
    }

    .top-promo span:not(:last-child)::after {
        display: none;
    }

    .nav-container {
        min-height: 66px;
    }

    .logo {
        font-size: 17px;
    }

    .nav-order-btn {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav-list {
        position: absolute;
        top: 102px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 16px 0;
        box-shadow: 0 18px 32px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-list.active {
        display: flex;
    }

    .nav-list li {
        width: 100%;
        text-align: center;
    }

    .nav-list li a {
        display: block;
        padding: 15px 0;
        font-size: 13px;
    }

    .nav-list li a::after {
        display: none;
    }

    .hero-video {
        min-height: 78vh;
        padding: 70px 20px;
        text-align: center;
        justify-content: center;
    }

    .hero-overlay {
        background: rgba(0, 0, 0, 0.68);
    }

    .hero-content {
        margin-left: 0;
        max-width: 100%;
    }

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

    .hero-content p {
        font-size: 14px;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 220px;
        text-align: center;
    }
}


/* Move hero text to bottom */
.hero-video {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding: 0 22px 90px;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
    text-align: center;
    color: #fff;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #eeeeee;
    max-width: 520px;
    margin: 0 auto 22px;
}

.hero-shop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 26px;
    background: #fff;
    color: #111;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: 0.3s ease;
}

.hero-shop-btn:hover {
    background: #ff3158;
    color: #fff;
    transform: translateY(-3px);
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

@media only screen and (max-width: 768px) {
    .hero-video {
        min-height: 78vh;
        padding: 0 20px 70px;
        align-items: flex-end;
    }

    .hero-content h1 {
        font-size: 31px;
        line-height: 1.12;
        letter-spacing: 2px;
        margin-bottom: 14px;
    }

    .hero-content p {
        font-size: 12px;
        line-height: 1.7;
        max-width: 280px;
        margin-bottom: 18px;
    }

    .hero-shop-btn {
        padding: 10px 22px;
        font-size: 12px;
    }
}

/* ================================
   TRANSPARENT PREMIUM NAVBAR
================================ */

.transparent-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 999;
}

.transparent-header .main-nav {
    background: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.transparent-header .nav-container {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.transparent-header .logo {
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-decoration: none;
}

.transparent-header .logo span {
    color: #ff3158;
    margin-left: 3px;
}

.transparent-header .nav-list {
    display: flex;
    align-items: center;
    gap: 34px;
}

.transparent-header .nav-list li {
    list-style: none;
}

.transparent-header .nav-list li a {
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    position: relative;
    transition: 0.3s ease;
}

.transparent-header .nav-list li a::after {
    content: "";
    width: 0;
    height: 2px;
    background: #ff3158;
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.3s ease;
}

.transparent-header .nav-list li a:hover {
    color: #ff3158;
}

.transparent-header .nav-list li a:hover::after {
    width: 100%;
}

.transparent-header .nav-order-btn {
    background: #fff;
    color: #111;
    padding: 11px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    transition: 0.3s ease;
}

.transparent-header .nav-order-btn:hover {
    background: #ff3158;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(255, 49, 88, 0.35);
}

.transparent-header .menu-toggle {
    display: none;
    color: #fff;
    font-size: 23px;
    cursor: pointer;
}

@media only screen and (max-width: 768px) {
    .transparent-header .main-nav {
        background: rgba(0, 0, 0, 0.28);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .transparent-header .nav-container {
        min-height: 66px;
    }

    .transparent-header .logo {
        font-size: 16px;
        letter-spacing: 1.2px;
    }

    .transparent-header .nav-order-btn {
        display: none;
    }

    .transparent-header .menu-toggle {
        display: block;
    }

    .transparent-header .nav-list {
        position: absolute;
        top: 66px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.96);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        flex-direction: column;
        gap: 0;
        padding: 18px 0;
        display: none;
        box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
    }

    .transparent-header .nav-list.active {
        display: flex;
    }

    .transparent-header .nav-list li {
        width: 100%;
        text-align: center;
    }

    .transparent-header .nav-list li a {
        display: block;
        padding: 15px 0;
        font-size: 13px;
    }

    .transparent-header .nav-list li a::after {
        display: none;
    }
}

.hero-video {
    padding-top: 90px;
}

@media only screen and (max-width: 768px) {
    .hero-video {
        padding-top: 76px;
    }
}

/* FIX TRANSPARENT NAVBAR + HERO SCROLL */

.transparent-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 999;
}

.transparent-header .main-nav {
    background: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: none;
}

.hero-video {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding: 90px 22px 90px;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
    text-align: center;
    color: #fff;
    margin: 0 auto;
}

@media only screen and (max-width: 768px) {
    .hero-video {
        min-height: 78vh;
        padding: 76px 20px 70px;
    }
}

/* FULL SCREEN HERO VIDEO */
.hero-video {
    min-height: 100vh !important;
    height: 100vh !important;
    padding: 90px 22px 70px !important;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-content {
    margin-bottom: 45px;
}

/* Mobile full screen */
@media only screen and (max-width: 768px) {
    .hero-video {
        min-height: 100vh !important;
        height: 100vh !important;
        padding: 76px 20px 90px !important;
    }

    .hero-content {
        margin-bottom: 65px;
    }
}

/* BETTER MOBILE FULL SCREEN HERO */
@media only screen and (max-width: 768px) {
    .hero-video {
        min-height: 100svh !important;
        height: 100svh !important;
        padding: 76px 20px 85px !important;
    }
}


/* Clean All Brands spacing */
.featured {
    padding-top: 25px !important;
}

.featured .title {
    margin: 0 auto 24px !important;
}



/* FINAL FIX: reduce gap before ALL BRANDS */
#products.featured {
    margin-top: 0 !important;
    padding-top: 2.5rem !important;
}

#products .title {
    margin-top: 0 !important;
    margin-bottom: 3rem !important;
}

/* ================================
   PRODUCT PAGE CLEAR WHITE NAVBAR
================================ */

.product-header {
    position: sticky !important;
    top: 0;
    width: 100%;
    background: #fff !important;
    z-index: 999;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.product-header .main-nav {
    background: #fff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none;
}

.product-header .nav-container {
    min-height: 72px;
}

.product-header .logo {
    color: #111 !important;
}

.product-header .logo span {
    color: #ff3158 !important;
}

.product-header .nav-list li a {
    color: #111 !important;
}

.product-header .nav-order-btn {
    background: #111;
    color: #fff;
}

.product-header .menu-toggle {
    color: #111 !important;
}

.product-header .fa-bars {
    color: #111 !important;
}

@media only screen and (max-width: 768px) {
    .product-header .nav-container {
        min-height: 66px;
    }

    .product-header .nav-order-btn {
        display: none;
    }

    .product-header .menu-toggle {
        display: block;
    }

    .product-header .nav-list {
        position: fixed;
        top: 66px;
        left: 0;
        width: 100%;
        background: #fff !important;
        flex-direction: column;
        gap: 0;
        padding: 16px 0;
        display: none;
        box-shadow: 0 18px 32px rgba(0, 0, 0, 0.12);
        z-index: 998;
    }

    .product-header .nav-list.show,
    .product-header .nav-list.active {
        display: flex;
        transform: translateY(0);
    }

    .product-header .nav-list li {
        width: 100%;
        text-align: center;
        margin: 0;
    }

    .product-header .nav-list li a {
        display: block;
        padding: 15px 0;
        font-size: 13px;
        color: #111 !important;
    }

    .product-header .nav-list li a::after {
        display: none;
    }
}

.product-main-box {
    touch-action: pan-y;
}


.sound-toggle-btn {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 5;
    border: none;
    outline: none;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: 0.3s ease;
}

.sound-toggle-btn:hover {
    background: #ff3158;
}

@media only screen and (max-width: 768px) {
    .sound-toggle-btn {
        right: 16px;
        bottom: 18px;
        font-size: 12px;
        padding: 9px 14px;
    }
}

.hero-video-stack {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: #000;
}

.hero-video-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.45s ease;
}

.hero-video-layer.active {
    opacity: 1;
}

/* ===============================
   FIX HERO VIDEO FULL COVER
   for two-layer video playlist
================================ */

.hero-video {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.hero-video-stack {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #000;
    overflow: hidden;
}

.hero-video-layer {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center;
    opacity: 0;
    transition: opacity 0.45s ease;
    display: block;
    background: #000;
}

.hero-video-layer.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(0, 0, 0, 0.45);
}

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

.sound-toggle-btn {
    z-index: 4;
}