@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');

/* HEADER SECTION */


/* HERO */
.hero {
    color: #000;
    position: relative;
    overflow: hidden;
    padding: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(2, 9, 7, 0.95) 0%, rgba(2, 9, 7, 0.5) 50%, transparent 100%);
    z-index: 1;
} */

.hero-inner {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
    min-height: 560px;
}

.hero-content {
    width: 100%;
    max-width: 800px;
    padding: 80px 0 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero-eyebrow {
    letter-spacing: 3px;
    font-size: 16px;
    /* color: #c4c4c4; */
    margin-bottom: 16px;
    text-transform: uppercase;
    color: var(--color-3);
    font-weight: 500;
}

.hero-title {
    font-size: clamp(24px, 4vw, 48px);
    font-family: 'Playfair Display', serif;
    line-height: 1.15;
    font-weight: 500;
    /* color: var(--color-3); */
    margin-bottom: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Diamond divider below hero title */
.hero-title-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    width: fit-content;
}

.hero-title-line {
    display: block;
    height: 1px;
    width: 125px;
    background: currentColor;
    opacity: 0.45;
}

.hero-title-diamond {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.7;
}

.hero-desc {
    font-size: clamp(15px, 2vw, 16px);
    /* color: #d9d5cc; */
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 460px;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-3);
    color: #fff !important;
    padding: 12px 25px;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: background 0.3s;
    font-family: 'Playfair Display', serif;
}

/* Slick Slider Text Animation */
.slider-home .hero-eyebrow,
.slider-home .hero-title,
.slider-home .hero-desc,
.slider-home .btn-gold,
.slider-home .hero-features-static {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        background 0.3s ease;
}

.slider-home .slick-active .hero-eyebrow,
.slider-home .slick-active .hero-title,
.slider-home .slick-active .hero-desc,
.slider-home .slick-active .btn-gold,
.slider-home .slick-active .hero-features-static {
    opacity: 1;
    transform: translateY(0);
}

.slider-home .slick-active .hero-eyebrow {
    transition-delay: 0.15s;
}

.slider-home .slick-active .hero-title {
    transition-delay: 0.3s;
}

.slider-home .slick-active .hero-desc {
    transition-delay: 0.45s;
}

.slider-home .slick-active .btn-gold {
    transition-delay: 0.6s;
}

.slider-home .slick-active .hero-features-static {
    transition-delay: 0.75s;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-top: 35px;
    width: 100%;
}

.hf-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 400;
}

.hf-item img {
    width: 30px;
    height: 30px;
    /* filter: brightness(0) invert(1); */
    /* filter: invert(23%) sepia(95%) saturate(2330%) hue-rotate(346deg) brightness(90%) contrast(93%); */
}

.hero-features-static .hero-inner {
    min-height: auto;
}

.hero-features-static .hero-content {
    padding-top: 0;
    padding-bottom: 0;
    align-items: flex-start;
}

/* CATEGORIES */
.category-wrap {
    margin: 50px 0;
}

.categories .slick-slide {
    margin: 0 10px;
}

.categories .slick-list {
    margin: 0 -10px;
}

.cat-card {
    background: #faf9f9;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
}

.cat-card .wrap-img {
    padding-bottom: 80%;
}

.cat-card .content {
    padding: 10px;
}

.cat-card h3 {
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.cat-card span {
    font-size: 13px;
    color: #333;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.cat-card span:hover {
    color: var(--color-3);
}

@media (max-width: 768px) {
    .category-wrap {
        margin: 30px 0 40px;
    }

    .hero-inner {
        min-height: 400px;
    }

    .hero-title {
        font-size: 20px;
    }
}

/* PRODUCTS SECTION */
.products-section-wrap {
    position: relative;
    margin-bottom: 50px;
}

.section-heading-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 40px;
    gap: 30px;
}

.section-heading-left {
    flex: 1;
    display: flex;
    align-items: center;
}

.section-heading-left .line {
    width: 100%;
    height: 1px;
    background: var(--color-3);
    position: relative;
}

.section-heading-left .line::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 16px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="16" viewBox="0 0 30 16" fill="none"><line x1="0" y1="8" x2="10" y2="8" stroke="%23dcb37b" stroke-width="1"/><circle cx="14" cy="8" r="2.2" stroke="%23dcb37b" stroke-width="1" fill="none"/><path d="M 18 8 C 20.5 5.5, 25.5 5.5, 28 8 C 25.5 10.5, 20.5 10.5, 18 8 Z" stroke="%23dcb37b" stroke-width="1" fill="none"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.section-heading-wrapper h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    letter-spacing: 2px;
    color: #1a1a1a;
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

.section-heading-right {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 30px;
}

.section-heading-right .line {
    flex: 1;
    height: 1px;
    background: var(--color-3);
    position: relative;
}

.section-heading-right .line::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 16px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="16" viewBox="0 0 30 16" fill="none"><path d="M 12 8 C 9.5 5.5, 4.5 5.5, 2 8 C 4.5 10.5, 9.5 10.5, 12 8 Z" stroke="%23dcb37b" stroke-width="1" fill="none"/><circle cx="16" cy="8" r="2.2" stroke="%23dcb37b" stroke-width="1" fill="none"/><line x1="20" y1="8" x2="30" y2="8" stroke="%23dcb37b" stroke-width="1"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.see-all {
    font-size: 16px;
    flex-shrink: 0;
}

.see-all a {
    font-weight: 400;
    white-space: nowrap;
}

.product-list .slick-slide {
    margin: 0 10px;
}

.product-list .slick-list {
    margin: 0 -10px;
}

.product-card {
    background: #faf9f9;
    border: none;
    border-radius: 8px;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.product-card .wrap-img {
    padding-bottom: 100%;
}

.product-card .badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--color-3);
    color: #fff;
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 4px;
    z-index: 2;
}

.wish {
    position: absolute;
    top: 18px;
    right: 18px;
    color: #999;
    font-size: 16px;
    z-index: 2;
    cursor: pointer;
}

.product-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.3;
    font-weight: 500;
    padding: 0 15px;
    height: 41.5px;

}

.product-card h4 a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

}

.product-card .content {
    padding: 10px;
}

.product-card .price {
    color: var(--color-3);
    font-weight: 500;
    font-size: 16px;
}

.product-card .price-wrap {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 12px;
}

.product-card .price-old {
    color: #666;
    font-size: 13px;
}

.carousel-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #000;
    background: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #555;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    opacity: 1;
}

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

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

.carousel-arrow.small {
    width: 32px;
    height: 32px;
    opacity: 1;
}

@media (max-width: 575px) {
    .carousel-arrow {
        width: 30px;
        height: 30px;
    }

    .product-card .price {
        font-size: 15px;
    }

    .product-card .price-old {
        font-size: 12px;
    }
}

/* ABOUT */
.about-section-wrap {
    margin-bottom: 60px;
}

/* ── ABOUT V2 – two-column layout ───────────────────────── */
.about-box-v2 {
    display: flex;
    align-items: stretch;
    /* border: 1px solid #e8e0d4; */
    /* border-radius: 4px;
    overflow: hidden; */
    min-height: 220px;
    background: #fff;
    /* box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06); */
}

/* Left – image column */
.about-img-col {
    flex: 0 0 50%;
    max-width: 50%;
    overflow: hidden;
    border-radius: 8px;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-img-col:hover .about-img {
    transform: scale(1.03);
}

/* Divider line */
/* .about-box-v2::after {
    content: '';
    display: block;
    width: 1px;
    background: #e8e0d4;
    flex-shrink: 0;
} */

/* Right – content column */
.about-content-col {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 48px 20px 44px;
    overflow: hidden;
}

/* Diamond watermark */
.about-diamond-bg {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 260px;
    height: 260px;
    /* opacity: 0.06; */
    background-image: url("../images/nen.png");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
}

.about-eyebrow-v2 {
    color: var(--color-3);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-heading-v2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    position: relative;
}

.about-desc-v2 {
    margin-bottom: 24px;
}

.about-desc-v2 p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0;
    position: relative;
}

.btn-outline-v2 {
    font-family: 'Playfair Display', serif;
    display: inline-block;
    border: 1px solid #1a1a1a;
    color: #1a1a1a;
    padding: 10px 24px;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.25s;
    width: fit-content;
    background: transparent;
}

.btn-outline-v2:hover {
    background: var(--color-3);
    border-color: var(--color-3);
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .about-box-v2 {
        flex-direction: column;
    }

    .about-img-col {
        flex: none;
        max-width: 100%;
        height: 220px;
    }

    /* .about-box-v2::after {
        width: 100%;
        height: 1px;
    } */
    .about-content-col {
        padding: 28px 10px;
    }

    .about-heading-v2 {
        font-size: 20px;
    }
}



.about-box {
    position: relative;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    border-radius: 12px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    min-height: 420px;
}

.about-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(6, 17, 13, 0.99) 0%,
            rgba(6, 17, 13, 0.95) 25%,
            rgba(6, 17, 13, 0.8) 45%,
            rgba(6, 17, 13, 0.3) 75%,
            transparent 100%);
    z-index: 1;
}

.about-text {
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 580px;
    padding: 30px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-eyebrow {
    color: #a0a0a0;
    /* font-family: 'Roboto', sans-serif; */
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 500;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    /* color: var(--color-3); */
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.25;
}

.about-tagline {
    color: #dcb37b;
    font-style: italic;
    font-size: 24px;
    margin-bottom: 25px;
}

.about-desc {
    margin-bottom: 10px;
}

.about-desc p:first-child,
.about-desc p:first-child strong {
    font-family: 'Dancing Script', cursive;
    /* color: var(--color-3); */
    font-size: 28px;
    font-weight: 500 !important;
    text-transform: none;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    display: block;
}

.about-desc p:not(:first-child) {
    font-family: 'Roboto', sans-serif;
    font-size: 14.5px;
    color: #cfcfcf;
    line-height: 1.8;
    margin-bottom: 15px;
    font-weight: 300;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #FFF;
    color: #FFF;
    padding: 10px 20px;
    font-size: 15px;
    letter-spacing: 1.5px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    text-transform: uppercase;
    width: fit-content;
}

.btn-outline:hover {
    background: var(--color-3);
    color: #FFF;
    border: 1px solid var(--color-3);
}

.btn-outline i {
    transform: translateY(-2px);
}

/* FEATURES */
.features-section-wrap {
    margin-bottom: 60px;
}


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

.features-section.slick-initialized {
    display: block;
}

.features-section.slick-initialized .feature-item {
    display: flex !important;
}

.features-section.slick-initialized .slick-slide {
    border-right: 1px solid #e0d5c1;
}

.features-section.slick-initialized .slick-slide:last-child {
    border-right: 0;
}

.features-section.slick-initialized .feature-item::after {
    display: none !important;
}

@media (max-width: 768px) {
    .features-section.slick-initialized .slick-slide {
        border-right: none;
    }
}

.feature-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 15px;
    position: relative;
}

.feature-item img {
    width: 55px;
    height: 55px;

}

.feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70px;
    background: #e0d5c1;
}

.feature-item i {
    font-size: 32px;
    color: #c9a063;
    margin: 0;
    flex-shrink: 0;
}

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

.feature-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    line-height: 24px;
}

.feature-text p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

/* BOTTOM SECTION: VIDEO + NEWS */
.bottom-section-wrap {
    margin: 0 0 50px;
}

.bottom-section {
    display: flex;
    gap: 40px;
}

.vertical-divider {
    width: 1px;
    background: #e0d5c1;
    flex-shrink: 0;
}

.video-reels {
    flex: 1;
    min-width: 0;
}

.news-section {
    flex: 1.2;
    min-width: 0;
}

.section-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    gap: 15px;
}

.section-heading-row h3 {
    font-size: 22px;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
    font-weight: 500;
}

.heading-line {
    flex: 1;
    height: 1px;
    background: #e0d5c1;
}

.section-heading-row .see-more {
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* REELS */
.reels-row-wrapper {
    position: relative;
}

.reels-row {
    display: flex;
    align-items: stretch;
    gap: 15px;
    overflow: hidden;
}

.reel-item {
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 320px;
}

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

.reel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 1;
}

.reel-item p {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    font-size: 14px;
    color: #fff;
    line-height: 1.4;
    z-index: 2;
    text-align: left;
}

/* Position arrows overlapping the reels container */
.reels-row-wrapper .carousel-arrow.left {
    left: -10px;
}

.reels-row-wrapper .carousel-arrow.right {
    right: -10px;
}

/* NEWS */
.news-row {
    display: flex;
    gap: 20px;
}

.news-main {
    flex: 1;
    background: #faf9f9;
    border-radius: 8px;
    overflow: hidden;
}

.news-main .wrap-img {
    padding-bottom: 56.67%;
}

.news-main-text {
    padding: 20px;
}

.news-row .news-date {
    font-size: 13px;
    color: #999;
    margin-bottom: 8px;
}

.news-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 12px;
}

.news-main .read-more,
.news-small .read-more {
    font-size: 14px;
    color: var(--color-3);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-small {
    display: flex;
    background: #faf9f9;
    border-radius: 8px;
    overflow: hidden;
    flex: 1;
    min-height: 120px;
}

.news-small .wrap-img {
    display: block;
    /* height: 100%; */
    flex-shrink: 0;
    overflow: hidden;
}

.news-small .wrap-img:hover img {
    transform: scale(1.05);
}

.news-small img {
    width: 135px;
    height: 100%;
    object-fit: cover;
}

.news-small-text {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-small .news-title {
    font-size: 14px;
    font-weight: 500;
}



/* RESPONSIVE */
@media (max-width:1200px) {
    .navbar {
        flex-wrap: wrap;
    }

    .nav-left,
    .nav-right {
        gap: 16px;
        font-size: 12px;
    }
}

@media (max-width:992px) {

    .nav-left,
    .nav-right {
        display: none;
    }

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

    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px 30px;
    }

    .hero-image {
        margin-top: 30px;
        max-width: 100%;
    }

    .categories {
        flex-wrap: wrap;
    }

    .cat-card {
        flex: 1 1 45%;
    }

    .about-box {
        background-position: center;
        min-height: 420px;
    }

    .about-box::before {
        background: linear-gradient(to bottom,
                rgba(6, 17, 13, 0.98) 0%,
                rgba(6, 17, 13, 0.92) 50%,
                rgba(6, 17, 13, 0.6) 100%);
    }

    .about-text {
        padding: 30px 30px;
        max-width: 100%;
    }

    .features-section {
        flex-wrap: wrap;
    }

    .feature-item {
        flex: 1 1 45%;
    }

    .bottom-section {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width:768px) {
    .topbar-inner {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .cat-card {
        flex: 1 1 100%;
    }

    .footer-top {
        flex-direction: column;
    }

    .section-heading-left,
    .section-heading-right .line {
        display: none;
    }

    .section-heading-wrapper {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        text-align: center;
        margin-bottom: 30px;
    }

    .section-heading-wrapper h2 {
        font-size: 22px;
    }

    .section-heading-right {
        flex: none;
        width: 100%;
        justify-content: center;
    }

    .product-list .slick-slide {
        margin: 0 6px;
    }

    .product-list .slick-list {
        margin: 0 -6px;
    }

    .products-section-wrap {
        margin-bottom: 40px;
    }

    .about-section-wrap {
        margin-bottom: 40px;
    }

    .features-section-wrap {
        margin-bottom: 40px;
    }
}

@media (max-width:576px) {
    .feature-item {
        flex: 1 1 100%;
    }

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

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

    .about-box {
        min-height: 460px;
    }

    .about-text h2 {
        font-size: 30px !important;
    }

    .about-desc p:first-child,
    .about-desc p:first-child strong {
        font-size: 22px !important;
    }

    .section-heading-wrapper h2 {
        font-size: 20px;
    }

    .hero-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-features-static {
        width: 100%;
    }
}

.reels-row.slick-initialized {
    display: block;
    overflow: visible;
}

.reels-row .slick-slide {
    margin: 0 8px;
    display: block !important;
}

.reels-row .slick-list {
    margin: 0 -8px;
}

.reels-row .slick-slide:hover img {
    transform: scale(1.05);
}

@media (max-width: 380px) {
    .section-heading-row h3 {
        font-size: 19px;
    }
}