﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}


.top-bar {
    width: 100%;
    background: #12000a;
    color: #fff;
    overflow: hidden;
    height: 40px;
    display: flex;
    align-items: center;
}

.top-bar-track {
    display: flex;
    width: max-content;
    animation: scrollBar 20s linear infinite;
}

    .top-bar-track span {
        white-space: nowrap;
        padding: 0 40px;
        font-size: 14px;
        font-weight: 500;
    }


@keyframes scrollBar {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}




.contact-bar {
    background: #fff;
    color: #000;
    padding: 8px 40px;
    font-size: 14px;
    
}

.contact-left {
    display: flex;
    gap: 25px;
    
}

.contact-bar,
.contact-left {
    border-bottom: 2px solid #6a6666;
    margin-top:5px;
}


.main-header {
    width: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    border-bottom: 1px solid #eee;
    margin-top:-15px;
}


.logo img {
    height: 55px;
}


.nav-menu {
    display: flex;
    gap: 28px;
}

    .nav-menu a {
        text-decoration: none;
        color: #000;
        font-size: 14px;
        letter-spacing: 1px;
        font-weight: 500;
        transition: 0.3s;
    }

        .nav-menu a:hover {
            color: #b55a7c;
        }


.header-icons {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-left: 800px;
    
}

    .header-icons img {
        width: 22px;
        height: 28px;
        cursor: pointer;
        transition: 0.3s;
    }

        .header-icons img:hover {
            transform: scale(1.15);
        }

.hero {
    width: 1400px;
    height: 100vh;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
    display: flex;
    align-items: center;
    margin: 0 auto;
}


.hero-content {
    max-width: 600px;
    margin-left: 120px;
    margin-top:-370px;
   
}

.hero-tag {
    font-size: 18px;
    color: #000;
    display: block;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #000;
}

.hero-content p {
    font-size: 17px;
    line-height: 1.6;
    color: #777;
    max-width: 480px;
}

.timeless-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    margin-top:-350px;
}

.timeless-left {
    width: 50%;
    position: relative;
}

.image-wrap {
    width: 100%;
    position: relative;
}

.model-img {
    width: 100%;
    display: block;
}




.label {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #000;
}

    .label span {
        white-space: nowrap;
        font-weight: 500;
    }

    .label .line {
        width: 70px;
        height: 1px;
        background: #000;
    }

    .label .dot {
        width: 6px;
        height: 6px;
        background: #000;
        border-radius: 50%;
    }




.acne {
    top: 28%;
    left: -90px;
    flex-direction: row-reverse;
}

    .acne .line {
        width: 60px;
    }

.brightening {
    top: 20%;
    right: -120px;
}

    .brightening .line {
        width: 80px;
    }

.pigmentation {
    bottom: 30%;
    left: -120px;
    flex-direction: row-reverse;
}

    .pigmentation .line {
        width: 80px;
    }



.timeless-right {
    width: 45%;
    padding-left: 40px;
}

    .timeless-right h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 25px;
        letter-spacing: 1px;
    }

    .timeless-right p {
        font-size: 16px;
        line-height: 1.7;
        color: #444;
    }
.products-section {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    background: #f5f6f4;
    margin-top:-80px;
}

.products-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: left;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.product-card {
    background: #fff;
    padding: 25px;
    transition: 0.3s;
}

    .product-card:hover {
        transform: translateY(-6px);
    }

.product-img {
    width: 100%;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .product-img img {
        max-width: 100%;
        max-height: 100%;
    }

.product-card h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}

.product-card p {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.price {
    font-size: 14px;
    display: block;
    margin-bottom: 18px;
}

.product-actions {
    display: flex;
    align-items: center;
}

.wishlist {
    width: 45px;
    height: 45px;
    background: #4c6b5a;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.cart-btn {
    flex: 1;
    height: 45px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
}

.wishlist:hover {
    background: #2f4639;
    transform: scale(1.1);
}

.cart-btn:hover {
    background: #333;
    letter-spacing: 0.5px;
}

.product-card:hover .wishlist {
    animation: pulse 0.6s ease;
}

.product-card:hover .cart-btn {
    animation: slide 0.4s ease;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(0);
    }
}

.view-btn-wrap {
    text-align: center;
    margin-top: 50px;
}

.view-btn {
    padding: 12px 30px;
    background: transparent;
    border: 1px solid #000;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
}

    .view-btn:hover {
        background: #000;
        color: #fff;
    }
.rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    margin-bottom: 8px;
}

.stars {
    color: #000;
    letter-spacing: 2px;
}

.reviews {
    color: #777;
    font-size: 12px;
}
.care-section {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 90px 40px;
    text-align: center;
    background: #fff;
}

    .care-section h2 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 15px;
    }

.care-desc {
    max-width: 750px;
    margin: 0 auto 70px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.care-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 30px;
    justify-items: center;
}

.care-box {
    max-width: 260px;
    padding: 20px;
    transition: 0.3s ease;
}

    .care-box img {
        width: 70px;
        margin-bottom: 18px;
        transition: 0.3s ease;
    }

    .care-box h3 {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .care-box p {
        font-size: 13px;
        line-height: 1.6;
        color: #777;
    }

    .care-box:hover {
        transform: translateY(-8px);
    }

        .care-box:hover img {
            transform: scale(1.15) rotate(3deg);
        }
.care-box-last2 {
    max-width: 260px;
    padding: 20px;
    transition: 0.3s ease;
    margin-right:-670px;
}

    .care-box-last2 img {
        width: 70px;
        margin-bottom: 18px;
        transition: 0.3s ease;
    }

    .care-box-last2 h3 {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .care-box-last2 p {
        font-size: 13px;
        line-height: 1.6;
        color: #777;
    }

    .care-box-last2:hover {
        transform: translateY(-8px);
    }

        .care-box-last2:hover img {
            transform: scale(1.15) rotate(3deg);
        }
.concern-section {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 90px 40px;
    background: #fff;
    text-align: center;
    margin-top: -80px;
    background-color: #F2F3F3;
}

.concern-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 60px;
}

.concern-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-bottom: 35px;
}

.concern-card {
    cursor: pointer;
    transition: 0.4s ease;
}

    .concern-card img {
        width: 100%;
        display: block;
        border-radius: 2px;
    }

    

    .concern-card:hover {
        transform: translateY(-8px);
    }

        .concern-card:hover img {
            filter: brightness(0.9);
        }

.concern-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.nav-btn {
    background: transparent;
    border: none;
    font-size: 22px;
    cursor: pointer;
    transition: 0.3s;
}

    .nav-btn:hover {
        transform: scale(1.2);
    }

.nav-bar {
    width: 60px;
    height: 6px;
    background: #000;
    border-radius: 10px;
}
.video-section {
    width: 100%;
    padding: 80px 120px;
    background: #fff;
    overflow: hidden;
    text-align: center;
    margin-top:-70px;
    
}

.video-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 50px;
}

.video-slider {
    width: 100%;
    overflow: hidden;
}

.video-track {
    display: flex;
    width: max-content;
    gap: 25px;
    animation: scroll 55s linear infinite;
}

.video-card {
    width: 260px;
    height: 400px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
}

    .video-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 55px;
    height: 55px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: 0.3s;
}

.video-card:hover .play-btn {
    transform: translate(-50%,-50%) scale(1.15);
    background: rgba(0,0,0,0.8);
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}



.inline-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    background: #000;
}

.video-card.playing .inline-video {
    display: block;
}

.video-card.playing .video-thumb,
.video-card.playing .play-btn {
    display: none;
}

.video-track.pause {
    animation-play-state: paused;
}

.testimonial-section {
    width: 100%;
    padding: 90px 120px;
    background: #fff;
    overflow: hidden;

}

.testimonial-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 60px;
}

.testimonial-slider {
    width: 100%;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: testimonialScroll 20s linear infinite;
}

.testimonial-slider:hover .testimonial-track {
    animation-play-state: paused;
}

.testimonial-card {
    width: 320px;
    min-height: 340px;
    background: #fff;
    border: 1px solid #e3e6ef;
    border-radius: 8px;
    padding: 22px;
    flex-shrink: 0;
    transition: 0.3s;
}

    .testimonial-card:hover {
        transform: translateY(-6px);
    }

.date {
    display: block;
    text-align: right;
    font-size: 12px;
    color: #777;
    margin-bottom: 8px;
}

.testimonial-card h4 {
    font-size: 14px;
    margin-bottom: 6px;
}

    .testimonial-card h4 span {
        color: #6b7280;
        font-weight: 400;
        font-size: 12px;
    }

.stars {
    font-size: 16px;
    margin-bottom: 12px;
}

.testimonial-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.testimonial-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 25px;
}

.testimonial-card svg{
    margin-bottom:-5px;
}

.product {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #6b7280;
}

    .product img {
        width: 28px;
    }

@keyframes testimonialScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.insta-banner {
    width: 100%;
    background: #fff;
    padding: 80px 0 0;
    overflow: hidden;
}

.insta-head {
    text-align: center;
    margin-bottom: 40px;
}

    .insta-head h2 {
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 6px;
    }

    .insta-head p {
        font-size: 16px;
        color: #000;
    }

.banner-row {
    width: 100%;
    display: flex;
}

.banner-item {
    width: 25%;
    overflow: hidden;

}

    .banner-item img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain;
    }

.search-box {
    position: relative;
}

.search-btn {
    width: 22px;
    height: 28px;
    cursor: pointer;
}

.search-panel {
    position: absolute;
    top: 45px;
    right: 0;
    width: 420px;
    background: #f3f3f3;
    border-radius: 40px;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px solid #e0e0e0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.35s ease;
    z-index: 999;
}

    .search-panel.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

.search-icon {
    width: 18px;
    opacity: 0.7;
}

.search-panel input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 15px;
}

    .search-panel input::placeholder {
        color: #777;
    }



.footer-bar {
    width: 100%;
    background: #F2EFEC;
    color: #000;
    overflow: hidden;
    height: 40px;
    display: flex;
    align-items: center;
}

.footer-bar-track {
    display: flex;
    width: max-content;
    animation: scrollBar 20s linear infinite;
}

    .footer-bar-track span {
        white-space: nowrap;
        padding: 0 40px;
        font-size: 14px;
        font-weight: 500;
    }

@keyframes scrollBar {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0%);
    }
}


.site-footer {
    width: 100%;
    background: linear-gradient(180deg, #1b1b1b, #0f0f0f);
    color: #fff;
    padding-top: 70px;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px 60px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-logo {
    width: 180px;
    margin-bottom: 15px;
}

.tagline {
    font-size: 13px;
    color: #bbb;
    margin-bottom: 25px;
}

.footer-col h2 {
    font-size: 34px;
    line-height: 1.25;
    font-weight: 700;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

    .footer-col ul li {
        margin-bottom: 10px;
    }

        .footer-col ul li a {
            text-decoration: none;
            color: #bbb;
            font-size: 14px;
            transition: 0.3s;
        }

            .footer-col ul li a:hover {
                color: #fff;
                transform: translateX(6px);
            }

.contact p {
    font-size: 14px;
    color: #bbb;
    margin: 15px 0 5px;
}

.contact a {
    color: #fff;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 15px;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

    .contact a:hover {
        border-color: #fff;
    }

.footer-bottom {
    border-top: 1px solid #222;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
}

.socials a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    margin-right: 12px;
    transition: 0.3s;
}

    .socials a:hover {
        transform: translateY(-4px) scale(1.2);
        color: #ccc;
    }

.footer-right {
    font-size: 14px;
    color: #bbb;
}

    .footer-right a {
        color: #fff;
        text-decoration: none;
    }

        .footer-right a:hover {
            text-decoration: underline;
        }

.mobile-hamburger {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
    transition: .3s;
    z-index: 3000;
}

    .mobile-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100%;
    background: #fff;
    z-index: 3001;
    transition: .4s ease;
    overflow-y: auto;
}

    .mobile-menu.active {
        right: 0;
    }

.mobile-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
}

    .mobile-head img {
        height: 38px;
    }

.mobile-close {
    font-size: 22px;
    cursor: pointer;
}

.mobile-links {
    padding: 20px;
}

    .mobile-links a {
        display: block;
        padding: 12px 0;
        color: #000;
        text-decoration: none;
        border-bottom: 1px solid #f0f0f0;
        font-size: 15px;
    }

.mobile-footer {
    padding: 20px;
    font-size: 13px;
    color: #444;
}

    .mobile-footer h4 {
        margin: 15px 0 6px;
        font-size: 14px;
    }

.mobile-social {
    display: flex;
    gap: 14px;
    margin: 10px 0;
    font-size: 18px;
}

.mobile-welcome {
    background: #f3f3f3;
    padding: 15px;
    border-radius: 8px;
    margin-top: 12px;
}



.header-left {
    display: flex;
    align-items: center;
}


.mobile-hamburger {
    display: none;
    font-size: 26px;
    cursor: pointer;
}



.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
    transition: .3s;
    z-index: 3000;
}

    .mobile-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 330px;
    height: 100%;
    background: #fff;
    z-index: 3001;
    transition: .4s ease;
    overflow-y: auto;
}

    .mobile-menu.active {
        right: 0;
    }

.mobile-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
}

    .mobile-head img {
        height: 38px;
    }

.mobile-close {
    font-size: 22px;
    cursor: pointer;
}

.mobile-links {
    padding: 20px;
}

    .mobile-links a {
        display: block;
        padding: 12px 0;
        color: #000;
        text-decoration: none;
        border-bottom: 1px solid #f0f0f0;
        font-size: 15px;
    }


.mobile-header-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

    .mobile-header-icons img {
        width: 22px;
        height: 26px;
        cursor: pointer;
        transition: 0.3s;
    }

        .mobile-header-icons img:hover {
            transform: scale(1.1);
        }

    .mobile-header-icons .search-box {
        position: relative;
    }

    .mobile-header-icons .search-panel {
        right: -10px;
        width: 260px;
        top: 38px;
    }


#backToTop {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #000;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .3s ease;
    z-index: 9999;
    box-shadow: 0 6px 18px rgba(0,0,0,.25);
}

    #backToTop:hover {
        background: #333;
        transform: translateY(-4px);
    }

    #backToTop.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
.video-card {
    cursor: pointer;
}
