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

body {
    font-family: "Helvetica Neue", Inter, sans-serif !important;
    color: #222;
    scroll-snap-type: y mandatory;
}

html {
    scroll-behavior: smooth;
}

/* ================= HEADER ================= */
.header {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 30px 80px;
    background: transparent;
    z-index: 10;
}

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

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

.logo {
    font-size: 22px;
    font-weight: 600;
    color: white;
    letter-spacing: 2px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu a {

    text-decoration: none;
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 500;
}

.lang-select-div {
    display: flex;
    align-items: center;
    padding-left: 10px;
    border-left: 1px solid #FFFFFF99;
}

.lang-select-div input {
    background: transparent;
    border: none;
    color: #FFFFFF;
    cursor: pointer;

}

.country-select.inside input, .country-select.inside input[type=text] {
    padding-left: 45px !important;
    color: white !important;
    font-size: 16px !important;
    font-weight: 500 !important;
}


/* ================= FULL SECTION ================= */
.section {
    padding: 120px 80px 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    scroll-snap-align: start;
}

/* ================= HERO ================= */

.hero {
    position: relative;
    height: 100vh;
    background: url("../images/home-banner-1.jpg") no-repeat center center/cover;
    color: white;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
}

.hero-content {
    position: absolute;
    top: 27%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 61px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 20px;
}


/* ================= HERO BUTTON ================= */

.hero-btn {
    width: 250px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 10px 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s ease;
}

.hero-btn span {
    color: white;
    font-size: 16px;
    margin-right: 40px;
}

.hero-btn .circle {
    width: 45px;
    height: 45px;
    background: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.hero-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}


/* ===== FEATURES ===== */
.features {
    display: flex;
    justify-content: space-between;
    padding: 50px 0;
}

.feature {
    background: white;
    padding: 20px;
    flex: 1;
    margin: 010px;
    text-align: center;
    box-shadow: 03px 10px rgba(0, 0, 0, 0.1);
}

.features {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 40px 80px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon img {
    width: 40px;
    height: 40px;
}

.feature-content {
    display: flex;
    flex-direction: column;
}

.feature-content .title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

.feature-content .desc {
    font-size: 14px;
    color: #777;
}


/* ================= PRODUCTS NAV ================= */

.products-nav {
    display: flex;
    justify-content: center;
    margin: 60px 0 40px 0;
}

.products-nav ul {
    display: flex;
    gap: 8px;
    padding: 8px;
    background: #f1f1f1;
    border-radius: 50px;
    list-style: none;
}

/* Tabs */
.products-nav li {
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 400;
    color: #555;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Active */
.products-nav .tab.active {
    background: #ffffff;
    color: #000;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);

}

/* Hover */
.products-nav li:hover {
    color: #000;
}

/* ================= PRODUCTS ================= */
.products {
    background: #f8f8f8;
    text-align: center;
}

.products h2 {
    font-size: 42px;
    margin-bottom: 40px;
    font-weight: 700;
}


/* ================= GALLERY ================= */
.gallery {
    background: white;
    text-align: center;
}

.gallery h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.gallery h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 400;
}

.gallery-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

.gallery-item img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    display: block;
}

/* Custom widths */
.img-w-35 {
    flex: 0 0 27%;
}

.img-w-50 {
    flex: 0 0 46%;
}


/* ================= GALLERY BUTTON ================= */
.gallery-btn-wrapper {
    display: flex;
    justify-content: center;
}

.gallery-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 12px 12px 30px;
    border-radius: 48px;
    background: #F5F5F5;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gallery-btn span {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    margin-right: 20px;
}

/* Hover Effect */
.gallery-btn:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.gallery-btn:hover .arrow-circle {
    transform: translateX(5px);
}

/* ================= NEWSLETTER ================= */
.newsletter-section {
    background: url("../images/home-banner-2.jpg") center/cover no-repeat;
    position: relative;
}

.newsletter-overlay {
    padding: 90px 0;
}

.newsletter-title {
    color: white;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 10px;
}

.newsletter-text {
    color: #d5d5d5;
    margin-bottom: 35px;
    font-size: 16px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 40px;
    overflow: hidden;
    max-width: 520px;
    margin: auto;
}

.newsletter-form input {
    flex: 1;
    border: none;
    padding: 14px 20px;
    background: transparent;
    color: white;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #ddd;
}

.subscribe-btn {
    background: black;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    margin: 5px;
    font-weight: 500;
    transition: 0.3s;
}

.subscribe-btn:hover {
    background: #222;
}

/* Footer */
.footer-section {
    background: #1f3553;
    padding: 45px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    color: white;
    font-weight: 600;
    letter-spacing: 2px;
}

.footer-text {
    color: #a7b3c7;
    font-size: 13px;
    margin-top: 5px;
}

.footer-right a {
    color: white;
    margin-left: 20px;
    font-size: 18px;
    transition: 0.3s;
}

.footer-right a:hover {
    color: #ddd;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #FFFFFF66;
    display: block;
}

.lang-select-div select {
    height: 32px;
    width: 90px;
    -webkit-appearance: none;
    text-indent: 1px;
    font-size: 10px;
    line-height: 12px;
    color: #071930;
    background: transparent;
    border: none;

}

.lang-select-bg.lang-select-div select {
    border: 1px solid #949494;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    color: #949494;
    background-color: #ffffff;
    opacity: 0.7;
}

.lang-select-div select:focus {
    outline: none;
    box-shadow: none;
    border: none;
}

.lang-select-div select::-ms-expand {
    display: none;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 1150px;
    margin: auto;
    overflow: hidden;
}

.product-row {
    display: flex;
    gap: 20px;
    transition: transform .45s cubic-bezier(.22, .61, .36, 1);
}

.index-product-card {
    width: 268px;
    border-radius: 20px;
    flex-shrink: 0;
    padding: 0;
}

.index-product-card {
    width: 268px;
    border-radius: 20px;
    flex-shrink: 0;
    padding: 0;
}

.product-title {
    font-weight: 600;
}

.color-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

.color-dot.active {
    border: 3px solid #C1BDB3;
    width: 23px;
    height: 23px;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 10;
}

.nav-left {
    left: 5px;
}

.nav-right {
    right: 5px;
}

.card-content {
    background-color: #FFFFFF;
    padding: 16px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    text-align: left;
}

.product-image {
    position: relative;
    overflow: hidden;
    background: #F7F7F7;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 357px;
}

/* image */
.product-image img {
    max-width: 100%;
    position: relative;
    z-index: 1;
    object-fit: contain;
    height: 270px;
    width: 270px;
}

/* TOP FADE (hides borders visually) */
.product-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, #F7F7F7 10%, rgba(242, 242, 242, 0) 60%);
    z-index: 2;
}

/* Shadow */
.product-image::after {
    content: "";
    position: absolute;
    bottom: 30px;
    width: 70%;
    height: 100px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.09) 0%, rgba(0, 0, 0, 0) 63%);
    filter: blur(3px);
    z-index: 1;
}

.card-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid #0000004D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.card-arrow img {
    width: 16px;
}

.card-arrow:hover {
    background: #f3f3f3;
    border-color: #000;
}

.lang-change-div-desk {
    display: none;
}

/* ================= TABLET ================= */

@media (max-width: 1024px) {

    .lang-change-div-desk {
        display: block;
    }

    .hide-lang-select-div-mobile {
        display: none;
    }

    .header {
        padding: 25px 40px;
    }

    .section {
        padding: 100px 40px 60px 40px;
    }

    /* show hamburger */
    .hamburger {
        display: flex;
    }

    .menu {
        position: absolute;
        top: 80px;
        right: 15px;
        background: #FFFFFF;
        width: 200px;
        flex-direction: column;
        padding: 20px;
        display: none;
    }

    .menu a {
        margin: 10px 0;
        color: #00000089;
    }

    .menu.active {
        display: flex;
    }

    .filter-title {
        display: none;
    }

    .index-product-card {
        width: 215px !important;
    }

    .product-image {
        position: relative;
        overflow: hidden;
        background: #F7F7F7;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 328px !important;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .lang-change-div-desk {
        display: block;
    }

    .hide-lang-select-div-mobile {
        display: none;
    }

    .menu a {
        margin: 10px 0;
        color: #00000089;
    }

    /* HERO */
    .hero {
        height: 85vh;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-content {
        top: 35%;
    }

    /* ================= FEATURES ================= */
    .features {
        flex-direction: column;
        padding: 30px 100px;
        gap: 25px;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 15px;
        width: 100%;
    }

    .feature-icon img {
        width: 35px;
    }

    .feature-content {
        text-align: left;
    }

    /* ================= PRODUCTS NAV ================= */
    .products-nav {
        margin: 30px 0 20px 0;
    }

    /* make container full width */
    .products-nav ul {
        width: 100%;
        justify-content: center;
        padding: 10px;
    }

    /* hide category tabs */
    .products-nav li:not(:last-child) {
        display: none;
    }

    /* style VIEW ALL button */
    .products-nav li:last-child {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        font-weight: 700;
        background: #EEEEEE;
        border-radius: 40px;
        padding: 14px 20px;
    }

    .products-nav li:last-child img {
        width: 18px;
    }

    .product-row {
        gap: 15px;
    }

    .index-product-card {
        width: 85vw;
        margin: auto;
    }

    .carousel-wrapper {
        padding: 0 10px;
    }

    /* ================= GALLERY ================= */
    .gallery-row {
        flex-direction: column;
    }

    .img-w-35 {
        flex: 0 0 100%;
        width: 100%;
    }

    .img-w-50 {
        flex: 0 0 100%;
        width: 100%;
    }

    .gallery-item img {
        width: 100%;
        height: 240px;
        object-fit: cover;
    }

    /* ================= NEWSLETTER ================= */
    .newsletter-overlay {
        padding: 60px 20px;
    }

    .newsletter-title {
        font-size: 28px;
    }

    .newsletter-text {
        font-size: 14px;
    }

    .newsletter-form {
        flex-direction: column;
        background: transparent;
        border: none;
        gap: 15px;
        max-width: 100%;
    }

    .newsletter-form input {
        width: 100%;
        padding: 16px 20px;
        border-radius: 40px;
        border: 1px solid rgba(255, 255, 255, 0.8);
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(8px);
        font-size: 16px;
        outline: none;
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
    }

    .subscribe-btn {
        width: 100%;
        padding: 16px;
        border-radius: 40px;
        font-size: 18px;
        background: black;
    }

    /* ================= FOOTER ================= */
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-right {
        margin-top: 10px;
    }

    .footer-right a {
        margin: 0 10px;
    }

    .tab-content .tab-pane a {
        display: inline-block;
        width: 100% !important;
        height: 349px;
    }

    .filter-title {
        display: none;
    }

    /* hide sidebar list initially */
    .category-list {
        display: none;
        margin-top: 15px;
        background: #f7f7f7;
        padding: 15px;
        border-radius: 15px;
        text-align: center;
    }

    .category-list.active {
        display: block;
    }

    .category-list li {
        padding: 10px 5px;
    }
}

