﻿@import url(../css/plugin.css);

/* HEADER */

header {
    padding: 15px 0;
    position: relative;
    z-index: 100;
    transition: all 0.3s ease;
}

header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

header.is-sticky .header-actions {
    background-color: #ffffff0f;
    backdrop-filter: blur(8px);
    padding: 10px;

}

header.is-sticky .header-logo img {
    display: none;
}

header.is-sticky .header-actions .action-btn,
header.is-sticky .header-actions .action-btn.menu-icon {
    width: 60px;
    height: 40px !important;
}


header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .header-logo img {
    width: 250px;
    height: auto;
}

header .header-actions {
    display: flex;
    gap: 10px;
    background-color: #ffffff00;
    border-radius: 63px;
    /* padding-right: 90px; */
}

header .header-actions .action-btn {
    width: 75px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 40px;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

header .header-actions .action-btn.menu-icon {
    pointer-events: auto;
    width: 55px;
    height: 50px;
    background: #fff;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

header .header-actions .action-btn:hover {
    background: #fff;
    color: #000;
}

header .header-actions .action-btn.menu-icon .hamburger__base,
header .header-actions .action-btn.menu-icon .hamburger__line {
    width: 20px;
    height: 2px;
    background: #000;
    transition: all 0.3s ease;
}

header .header-actions .action-btn.menu-icon.is-active .hamburger__base {
    transform: translateY(7px) rotate(45deg);
}

header .header-actions .action-btn.menu-icon.is-active .hamburger__line:nth-child(2) {
    opacity: 0;
}

header .header-actions .action-btn.menu-icon.is-active .hamburger__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===============================
   FIXED MENU ICON (FLOATING)
================================ */

.menu-section {
    position: fixed;
    top: 54px;
    right: 170px;
    transform: translateY(-50%);
    z-index: 9999;
    pointer-events: none;
}

.menu-section .menu-icon {
    pointer-events: auto;

    width: 55px;
    height: 50px;
    background: #fff;
    border-radius: 40px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}


.menu-section .menu-icon .hamburger__base,
.menu-section .menu-icon .hamburger__line {
    width: 20px;
    height: 2px;
    background: #000;
    transition: all 0.3s ease;
}

.menu-section .menu-icon.is-active .hamburger__base {
    transform: translateY(7px) rotate(45deg);
}

.menu-section .menu-icon.is-active .hamburger__line:nth-child(2) {
    opacity: 0;
}

.menu-section .menu-icon.is-active .hamburger__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


@media (max-width: 768px) {

    .menu-section {
        top: 12px;
        right: 15px;
    }

    header .header-actions .action-btn {
        width: 42px;
        height: 32px;
    }

    header .header-actions .action-btn svg {
        width: 16px;
        height: 16px;
    }

    header .header-actions .action-btn.menu-icon {
        width: 32px;
        height: 32px;
    }

    header .header-logo img {
        max-width: 150px;
    }
}




/* BANNER */


.ios-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;

    /* 🔥 CRITICAL: Prevent iOS controls */
    pointer-events: none;
}

/* Kill Safari video UI completely */
.ios-bg-video::-webkit-media-controls,
.ios-bg-video::-webkit-media-controls-panel,
.ios-bg-video::-webkit-media-controls-play-button,
.ios-bg-video::-webkit-media-controls-start-playback-button {
    display: none !important;
    opacity: 0 !important;
}

.video-banner {
    position: relative;
}

.video-banner video {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    max-height: 80vh;
    object-fit: cover;

}

@media (max-width:768px) {
    /* .video-banner .container {
        margin: 0px;
        padding: 0px;
    } */

    .video-banner .container video {
        border-radius: 15px;
    }
}

.video-banner .hero-rotate-wrap {
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    z-index: 5;
}

.video-banner .hero-rotate-btn {
    position: relative;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
}

.video-banner .hero-rotate-outline {
    border: 1px dashed rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(6px);
}

.video-banner .hero-rotate-text {
    position: absolute;
    width: 80%;
    height: 81%;
    fill: #fff;
    font-size: 20px;
    letter-spacing: 2px;
    animation: heroRotate 14s linear infinite;
}

.video-banner .hero-rotate-icon {
    width: 30px;
    height: 30px;
    z-index: 2;
}

.video-banner .hero-rotate-wrap i {
    color: gold;
    font-size: 25px;
}

@keyframes heroRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .video-banner .hero-rotate-wrap {
        bottom: -20px;
    }

    .video-banner .hero-rotate-btn {
        width: 60px;
        height: 60px;
    }

    .video-banner .hero-rotate-icon {
        width: 20px;
        height: 20px;
    }

    .video-banner .hero-rotate-wrap i {
        font-size: 16px;
    }

}



/* ABOUT SEC */

.about-sec .left h2 {
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
    /* max-width: 600px; */
    text-align: center;
}

.about-sec .left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.about-sec .left span {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    color: white;
    font-weight: 400;
}

.about-sec .right {
    display: flex;
    justify-content: center;
}

.about-sec .right p {
    font-size: 18px;
    text-align: center;
    max-width: 900px;
}

@media (max-width:768px) {
    .about-sec .left h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .about-sec .left span {
        margin-bottom: 15px;
        font-size: 24px;
    }

    .about-sec .right p {
        font-size: 15px;
    }

    .about-sec {
        margin-top: 20px;
    }
}


/* PRODUCTS */

.products-sec .products-heading h2 {
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
    max-width: 600px;
}

.products-sec .products-heading p {
    font-size: 18px;
    margin: 30px 0px;
    max-width: 450px;
}

.products-sec .products-heading {
    padding-top: 40px;
}


.product-card-one {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 28px;
    perspective: 1000px;
    text-decoration: none;
    color: inherit;
}

.product-card-one .product-image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 20px;
}

.product-card-one .product-image .parallax-layer {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.2s ease-out;
}

/* IMAGE */
.product-card-one .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(40px) scale(1.08);
    transition: transform 0.8s cubic-bezier(.22, .61, .36, 1);
}

.product-card-one:hover .product-image img {
    transform: translateZ(40px) scale(1.15) translateY(-12px);
}


.product-card-one::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgb(0, 0, 0),
            rgba(0, 0, 0, 0.18));
    opacity: 0.9;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.product-card-one:hover::after {
    opacity: 1;
}

.product-card-one .product-content {
    position: absolute;
    bottom: 50px;
    left: 50px;
    right: 50px;
    color: #ffffff;
    z-index: 2;
}

.product-card-one .product-content .product-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.product-card-one .product-content .product-title h5 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 0px;
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
}

.border-four .word:last-child .char.show:nth-last-child(-n+4) {
    border-bottom: 1px solid #fff;
}

/* .border-five .word:last-child .char.show:nth-last-child(-n+5) {
    border-bottom: 1px solid #fff;
} */

.border-six .word:last-child .char.show:nth-last-child(-n+6) {
    border-bottom: 1px solid #fff;
}

.border-five .word:last-child .char.show:nth-last-child(-n+5) {
    border-bottom: none;
    position: relative;
}

.border-five .word:last-child .char.show:nth-last-child(5)::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 56%;
    width: 47%;
    height: 1px;
    background: #fff;
}

.border-five .word:last-child .char.show:nth-last-child(-n+4) {
    border-bottom: 1px solid #fff;
}

/* .product-card-one .product-content .product-title h5::after {
    content: "";
    position: absolute;
    right: 2px;
    bottom: 12px;
    width: 94px;
    height: 1px;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    transition: width 0.3s ease;
} */


.product-card-one .product-content .product-title small {
    font-size: 16px;
    opacity: 0.75;
}


@media (max-width:768px) {
    .products-sec .products-heading {
        padding-top: 10px;
    }

    .products-sec .products-heading h2 {
        font-size: 22px;
    }
}

/* ================================
   PRICE + BUTTON ROW
================================ */
.product-card-one .product-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-card-one .product-pricing .price {
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-card-one .product-pricing .price img {
    filter: brightness(0) invert(1);
    width: 20px;
    height: 20px;
}


.product-card-one .buy-now-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 26px;
    color: #ffffff;
    border-radius: 999px;
    overflow: hidden;
    cursor: pointer;
    font-weight: 400;
}

.product-card-one .buy-now-btn svg {
    width: 20px;
    height: 20px;
}

.product-card-one .buy-now-btn .btn-text {
    font-size: 14px;
    white-space: nowrap;
}

.product-card-one .buy-now-btn .border-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.product-card-one .buy-now-btn rect {
    fill: none;
    stroke: #ffffff;
    stroke-width: 1;
    stroke-dasharray: 7 6;
    stroke-linecap: round;
    animation: dashRun 2.5s linear infinite;
}

.product-card-one .buy-now-btn svg,
.product-card-one .buy-now-btn .btn-text {
    position: relative;
    z-index: 2;
}

.product-card-one .buy-now-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.18);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.product-card-one .buy-now-btn:hover::before {
    opacity: 1;
}

@keyframes dashRun {
    to {
        stroke-dashoffset: -26;
    }
}



/* PRODUCT CARD */
.product-card-one {
    display: block;
    text-decoration: none;
    color: inherit;
}

@media (max-width: 991px) {
    .products-grid-layout {
        grid-template-columns: 1fr;
        row-gap: 60px;
    }

    .products-heading {
        position: relative;
        top: 0;
    }

    .product-card-one .buy-now-btn {
        padding: 12px 20px;
    }
}



.video-section video {
    border-radius: 20px;
    width: 100%;
    max-height: 80vh;
    object-fit: cover;
    transform: translateY(0);
    will-change: transform
}




.features-section {
    background: #0e0e0e;
}

.features-section .feature-card {
    background: #141414;
    border-radius: 20px;
    padding: 28px;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.feature-head svg {
    width: 26px;
    height: 26px;
    color: #fff;
    flex-shrink: 0;
}

.feature-head h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
}

.feature-card p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}


@media (max-width:768px) {
    .features-section .feature-card {
        height: auto;
        margin-bottom: 10px;
        padding: 14px;
    }
}


/* TESTIMONIALS SEC */

.testimonial-sec .left h2 {
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
    max-width: 600px;
    margin-bottom: 20px;
}

.testimonial-sec .left p {
    font-size: 18px;
}

.testimonial-sec {
    background: #0e0e0e;
    color: #fff;
}

.testimonial-sec .testimonial-swiper {
    padding-bottom: 80px;
}

.testimonial-sec .testimonial-card {
    background: radial-gradient(circle at top, #1c1c1c, #1c1c1c);
    border-radius: 24px;
    padding: 50px 40px;
    height: 100%;
    position: relative;
}

.testimonial-sec .testimonial-card .avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 30px;
}

.testimonial-sec .testimonial-card .review {
    font-size: 18px;
    line-height: 1.6;
    color: #cfcfcf;
    margin-bottom: 50px;
}

.testimonial-sec .testimonial-card .name {
    font-size: 25px;
    font-weight: 500;
    color: #ffffff;
    margin-top: 20px;
}

.testimonial-sec .testimonial-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    gap: 15px;
}

.testimonial-nav .swiper-button-prev,
.testimonial-nav .swiper-button-next {
    position: static;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.testimonial-nav .swiper-button-prev::after,
.testimonial-nav .swiper-button-next::after {
    font-size: 16px;
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 40px 30px;
    }

    .testimonial-card .name {
        font-size: 26px;
    }

    .testimonial-sec .left h2 {
        font-size: 22px;
    }

    .testimonial-sec .testimonial-card {
        padding: 10px;
    }

    .testimonial-sec .left {
        margin-bottom: 10px;
    }
}



/* GALLERY */
.marquee-gallery {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.marquee-row {
    width: 100%;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 24px;
}

.marquee-track .image {
    aspect-ratio: 6/6;
    max-width: 450px;
}

.marquee-track .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    flex-shrink: 0;
}

/* LEFT TO RIGHT */
.marquee-left .marquee-track {
    animation: marquee-left 30s linear infinite;
}

/* RIGHT TO LEFT */
.marquee-right .marquee-track {
    animation: marquee-right 35s linear infinite;
}

@keyframes marquee-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes marquee-right {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

@media (max-width:768px) {
    .marquee-track .image {
        max-width: 280px;
    }

    .marquee-gallery {
        gap: 15px;
    }

    .marquee-track {
        gap: 15px;
    }
}


@media (min-width:768px) and (max-width:992px) {
    .marquee-track .image {
        max-width: 330px;
    }
}

/* FOOTER */

.footer {
    background: #0e0e0e;
    padding: 80px 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer * {
    box-sizing: border-box;
}

.footer a {
    transition: all 0.3s ease;
    color: white;
    font-size: 25px;
}


.footer .footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1fr;
    gap: 30px;
}

.footer .footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.footer .footer-card {
    background: #1c1c1c;
    border-radius: 26px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.footer .footer-card.full-height {
    height: 100%;
}

.footer .footer-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    pointer-events: none;
}



.footer .footer-nav {
    display: flex;
    flex-direction: column;
}

.footer .footer-nav a {
    display: block;
    font-size: 36px;
    color: #fff;
    text-decoration: none;
    margin-bottom: 20px;
    line-height: 1.2;
}

.footer .footer-nav a:hover {
    color: #ccc;
    transform: translateX(4px);
}

.footer .footer-nav a:last-child {
    margin-bottom: 0;
}

.footer .footer-links {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer .footer-links a {
    font-size: 14px;
    color: #aaa;
    text-decoration: none;
    position: relative;
}

.footer .footer-links a:hover {
    color: #fff;
}


.footer .footer-contact {
    font-size: 22px;
    line-height: 1.6;
    color: #fff;
}

.footer .footer-contact a {
    color: #fff;
    text-decoration: none;
    font-size: 22px;
}

.footer .footer-contact a:hover {
    color: #aaa;
}



.footer .subscribe {
    display: flex;
    flex-direction: column;
}

.footer .subscribe h4 {
    font-size: 26px;
    margin-bottom: 30px;
    font-weight: 500;
}

.footer .subscribe-form {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #555;
    padding-bottom: 6px;
}

.footer .subscribe-form input {
    flex: 1;
    background: none;
    border: none;
    color: #fff;
    padding: 10px 0;
    outline: none;
    font-size: 16px;
}

.footer .subscribe-form input::placeholder {
    color: #888;
}

.footer .subscribe-form input:focus {
    border: none;
    outline: none;
}

.footer .subscribe-form button {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    padding-left: 10px;
}

.footer .subscribe-form button:hover {
    color: #aaa;
}



.footer .footer-title {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 500;
}

.footer .footer-socials {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-socials li {
    margin-bottom: 16px;
}

.footer .footer-socials li:last-child {
    margin-bottom: 0;
}

.footer .footer-socials a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer .footer-socials a:hover {
    color: #aaa;
    transform: translateX(3px);
}


.footer .footer-copy {
    margin-top: auto;
    font-size: 14px;
    color: #888;
}


@media (max-width: 1200px) {
    .footer {
        padding: 70px 40px;
    }
}

@media (max-width: 992px) {
    .footer .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer .footer-nav a {
        font-size: 28px;
    }

    .footer .footer-title {
        font-size: 26px;
    }

    .footer .subscribe h4 {
        font-size: 22px;
    }

    .footer .footer-grid {
        gap: 10px;
    }

    .footer .footer-column {
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 15px;
    }

    .footer .footer-card {
        padding: 20px;
    }

    .footer .footer-socials li {
        margin-bottom: 10px;
    }

    .footer .footer-links {
        gap: 20px;
    }

    .footer .footer-nav a {
        font-size: 24px;
        margin-bottom: 0px;
    }

    .footer .footer-socials li {
        margin-bottom: 0px;
    }
}


/* BREADCRUMB */



.breadcrumb-sec .container {
    padding: 30px;
    background: linear-gradient(135deg, #1c1c1c, #141414);
    border-radius: 10px;
    text-align: center;
    position: relative;
    overflow: hidden;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.45);
}

/* subtle border */
.breadcrumb-sec .container::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

/* animated ambient glow */
.breadcrumb-sec .container::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.07), transparent 60%);
    top: -120px;
    left: -120px;
    animation: breadcrumbGlow 12s linear infinite;
    pointer-events: none;
}

/* ===============================
   INNER CONTENT
================================ */

.breadcrumb-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: row wrap;
}

/* Breadcrumb trail */
.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.breadcrumb-nav a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #fff;
}

.breadcrumb-sep {
    color: #555;
}

.breadcrumb-current {
    color: #fff;
    font-weight: 500;
}

/* Page title */
.breadcrumb-sec h1 {
    font-size: 20px;
    margin-bottom: 0px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
    color: #fff;
}

/* ===============================
   HOVER INTERACTION
================================ */

.breadcrumb-sec .container:hover::before {
    opacity: 0.9;
}

/* ===============================
   ANIMATION
================================ */

@keyframes breadcrumbGlow {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(220px, 140px);
    }

    100% {
        transform: translate(0, 0);
    }
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
    .breadcrumb-sec .container {
        padding: 20px;
        margin: 0px 15px;
    }

    .breadcrumb-nav {
        font-size: 13px;
    }
}



/* PRODUCTS MAIN */

.products-sec .masonry-item {
    margin-bottom: 20px;
    padding: 20px;
}

.products-main .product-content h5 {
    font-size: 20px;
}

.products-main .product-card-one {
    margin-bottom: 15px;
}

.products-main .product-card-one .product-content {
    left: 15px;
    right: 15px;
    bottom: 15PX;
}

.products-sec .masonry-grid {
    position: relative;
    /* REQUIRED */
}

.products-sec .masonry-item {
    width: 50%;
    margin-bottom: 20px;
    padding: 20px;
}

.products-sec .row {
    position: relative;
}

.products-main .product-content h5 {
    font-size: 20px;
}

.products-main .product-card-one {
    margin-bottom: 15px;
}

.products-main .product-card-one .product-content {
    left: 15px;
    right: 15px;
    bottom: 15PX;
}

@media (max-width:768px) {
    .products-sec .masonry-item {
        width: 100%;
        padding: 0px;
    }

    .product-card-one .product-content {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .product-card-one .product-content .product-title h5 {
        font-size: 20px;
    }

    .product-card-one .product-content .product-title {
        margin-bottom: 10px;
    }
}


/* PRODUCT DETAILS */

.product-details-main .row {
    display: flex;
    align-items: flex-start;
}

/* .product-details-main .left {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
} */

.product-details-main .left .tab-gallery {
    position: relative;
    margin: 0px 30px 24px 0px;
    display: flex;
}

.product-details-main .left .tab-gallery .tab-main-image {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
}

.product-details-main .left .tab-gallery .mySlides {
    display: none;
    align-items: center;
    justify-content: center;
    aspect-ratio: 7/7;
    border-radius: 20px;
    width: 100%;
}

.product-details-main .left .tab-gallery .mySlides img {
    object-fit: cover;
    height: 100%;
    border-radius: 20px;
}

.product-details-main .left .tab-gallery .cursor {
    cursor: pointer;
}

.product-details-main .left .tab-gallery .prev,
.product-details-main .left .tab-gallery .next {
    cursor: pointer;
    position: absolute;
    top: 55%;
    width: 45px;
    padding: 10px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    background-color: rgb(0 0 0);
    text-align: center;
}

.product-details-main .left .tab-gallery .next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.product-details-main .left .tab-gallery .prev {
    left: 0px;
}

.product-details-main .left .tab-gallery .prev:hover,
.product-details-main .left .tab-gallery .next:hover {
    background-color: black;
}

.product-details-main .left .tab-gallery .row {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
}

.product-details-main .left .tab-gallery .row:after {
    content: "";
    display: table;
    clear: both;
}

.product-details-main .left .tab-gallery .column {
    width: 23%;
    display: flex;
    justify-content: center;
}

.product-details-main .left .tab-gallery .demo {
    opacity: 0.6;
}

.product-details-main .left .tab-gallery .active,
.product-details-main .left .tab-gallery .demo:hover {
    opacity: 1;
}

.product-details-main .left .thumbnail-swiper {
    width: 100px;
    margin-right: 20px;
}

.product-details-main .left .swiper-wrapper {
    flex-direction: column;
    gap: 20px;
}

.product-details-main .left .thumbnail-swiper .swiper-slide {
    flex-shrink: 0;
    height: max-content;
    aspect-ratio: 6/8;
}

.product-details-main .left .thumbnail-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    object-fit: cover;
    border-radius: 10px;
    border: solid 1px #ffffff5c;
}

.product-details-main .left .thumbnail-swiper img.active {
    border-color: #ededed;
}


.product-details-main .left .thumbnail-swiper .swiper-button-next,
.product-details-main .left .thumbnail-swiper .swiper-button-prev {
    background-color: var(--color-one);
    color: white;
    width: 25px;
    height: 40px;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.product-details-main .left .thumbnail-swiper .swiper-button-next:hover,
.product-details-main .left .thumbnail-swiper .swiper-button-prev:hover {
    background-color: var(--color-one);
    transform: scale(1.1);
}

.product-details-main .left .thumbnail-swiper .swiper-button-next::after,
.product-details-main .left .thumbnail-swiper .swiper-button-prev::after {
    font-size: 16px;
}

.product-details-main .left .thumbnail-swiper .swiper-button-prev {
    left: 1px;
}

.product-details-main .left .thumbnail-swiper .swiper-button-next {
    right: 1px;
}


.product-details-main .product-details {
    padding-left: 20px;
    color: #eaeaea;
}

.product-details-main .product-details .product-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: white;
}

.product-details-main .product-details .product-review {
    display: flex;
    align-items: center;
    justify-content: space-between;
}



.product-details-main .product-details .product-brand {
    color: #999;
    font-size: 14px;
}

.product-details-main .product-details .product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-details-main .product-details .product-rating i {
    color: #f5c26b;
    font-size: 14px;
}

.product-details-main .product-details .rating-text {
    color: #aaa;
    font-size: 13px;
    margin-left: 8px;
}

.product-details-main .product-details .pricing {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 20px 0;
}

.product-details-main .product-details .price-current img {
    filter: brightness(0) invert(1);
    width: 25px;
    height: 25px;
}

.product-details-main .product-details .price-old img {
    filter: brightness(4) invert(1);
    width: 16px;
    height: 16px;
}

.product-details-main .product-details .price-current {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-details-main .product-details .price-old {
    text-decoration: line-through;
    color: #777;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-details-main .product-details .price-off {
    color: var(--primary-light);
    font-size: 13px;
}

.product-details-main .product-details .product-description {
    font-size: 15px;
    color: #cfcfcf;
    line-height: 1.7;
    margin-bottom: 25px;
}

.product-details-main .product-details p {
    font-size: 15px;
    color: #cfcfcf;
    line-height: 1.7;
    margin-bottom: 25px;
}

.product-details-main .product-details .fragrance-notes {
    border-top: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
    padding: 15px 0;
    margin-bottom: 25px;
}

.product-details-main .product-details .note {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.product-details-main .product-details .note-label {
    min-width: 60px;
    font-weight: 600;
    color: #bbb;
}

.product-details-main .product-details .note-value {
    color: #ddd;
}

.product-details-main .product-details .size-selector {
    display: flex;
    gap: 10px;
    align-items: center;
}

.product-details-main .product-details .size-selector label {
    display: block;
    margin-bottom: 0px;
    color: #aaa;
}

.product-details-main .product-details .sizes {
    display: flex;
    gap: 10px;
}

.product-details-main .product-details .size {
    background: transparent;
    border: 1px solid #444;
    color: #ccc;
    padding: 8px 18px;
    cursor: pointer;
    transition: 0.3s;
}

.product-details-main .product-details .size.active,
.product-details-main .product-details .size:hover {
    background: #fff;
    color: #000;
}

.product-details-main .product-details .product-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

/* Quantity */
.product-details-main .product-details .quantity-box {
    display: inline-flex;
    align-items: center;
    border: 1px solid #3a3a3a;
    width: max-content;
}

.product-details-main .product-details .qty-btn {
    background: #1e1e1e;
    color: #fff;
    border: none;
    width: 42px;
    height: 42px;
    font-size: 18px;
    cursor: pointer;
}

.product-details-main .product-details .qty-btn:hover {
    background: #fff;
    color: #000;
}

.product-details-main .product-details .qty-input {
    width: 60px;
    height: 42px;
    text-align: center;
    background: #000;
    color: #fff;
    border: none;
    outline: none;
}

/* Buttons */
.product-details-main .product-details .action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.product-details-main .product-details .add-to-cart {
    padding: 14px 26px;
    font-weight: 600;
    background-color: #3ddc84;
    color: #000;
    border: none;
    width: 48%;
}

.product-details-main .product-details .buy-now {
    padding: 14px 26px;
    font-weight: 600;
    background-color: white;
    border: none;
    width: 48%;
}

.product-details-main .product-details .wishlist {
    padding: 14px 18px;
    background-color: white;
    border: none;
}

.product-details-main .product-details .trust-badges {
    display: flex;
    flex-flow: row wrap;
    gap: 25px;
    font-size: 13px;
    color: #aaa;
    margin: 20px 0px;
}

.product-details-main .product-details .trust-badges i {
    color: var(--primary-light);
    margin-right: 6px;
}

.product-share {
    position: relative;
}

.product-share .share-btn {
    background: transparent;
    border: 1px solid #333;
    color: #fff;
    font-size: 13px;
    padding: 8px 14px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

.product-share .share-btn:hover {
    background: #fff;
    color: #000;
}

.product-share .share-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #111;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 20;
}

.product-share.active .share-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.product-share .share-item {
    width: 36px;
    height: 36px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: 0.25s ease;
}

.product-share .share-item:hover {
    background: var(--primary-light);
    color: #000;
}

.product-details-section {
    margin-top: 20px;
    padding: 30px 0;
    border-top: 1px solid #2a2a2a;
    color: #eaeaea;
}

.product-details-section .product-tabs {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid #2a2a2a;
    margin-bottom: 30px;
}

.product-details-section .tab-btn {
    background: none;
    border: none;
    color: #999;
    font-size: 15px;
    padding-bottom: 12px;
    cursor: pointer;
    position: relative;
}

.product-details-section .tab-btn.active {
    color: #fff;
}

.product-details-section .tab-btn.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    background: var(--primary-light);
}



.product-details-section .tab-pane {
    display: none;
    font-size: 15px;
    line-height: 1.9;
    color: #cfcfcf;
}

.product-details-section .tab-pane.active {
    display: block;
}

.product-details-section .details-list {
    list-style: none;
    padding: 0;
}

.product-details-section .details-list li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #2a2a2a;
    padding: 12px 0;
    font-size: 14px;
}

.product-details-section .details-list span {
    color: #aaa;
}


.product-details-section .desc {
    padding: 24px 0;
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    color: #333;
}

/* Headings */
.product-details-section .desch4 {
    font-size: 18px;
    font-weight: 600;
    margin: 28px 0 12px;
    color: #111;
    position: relative;
}

/* Optional subtle underline */
.product-details-section .desch4::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #111;
    margin-top: 6px;
}

/* Paragraph text */
.product-details-section .descp {
    font-size: 14.5px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

/* Lists */
.product-details-section .descul {
    list-style: none;
    padding: 0;
    margin: 10px 0 20px;
}

/* List items */
.product-details-section .descul li {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
    padding-left: 18px;
    position: relative;
    margin-bottom: 8px;
}

/* Custom bullet */
.product-details-section .descul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #111;
    font-size: 18px;
    line-height: 1;
}

/* Usage & caution emphasis */
.product-details-section .desch4+ul li {
    color: #333;
}

/* Storage note */
.product-details-section .descp:last-child {
    font-style: italic;
    color: #666;
}

/* ===============================
   RESPONSIVE TWEAKS
================================ */

@media (max-width: 768px) {
    .product-details-section .desc {
        padding: 16px 0;
    }

    .product-details-section .desch4 {
        font-size: 16px;
    }

    .product-details-section .descp,
    .product-details-section .descul li {
        font-size: 14px;
    }
}




@media (max-width:768px) {
    .product-details-main .left {
        position: unset;
    }

    .product-details-main .left .thumbnail-swiper {
        display: none;
    }

    .product-details-main .left .tab-gallery {
        margin: 0px;
        margin-bottom: 15px;
    }

    .product-details-main .product-details .price-current {
        font-size: 20px;
    }

    .product-details-main .product-details .price-current img {
        width: 20px;
        height: 20px;
    }

    .product-details-main .product-details .pricing {
        gap: 15px;
    }

    .product-details-main .product-details .fragrance-notes {
        margin-bottom: 15px;
    }

    .product-details-main .product-details {
        padding-left: 0px;
    }

    .product-details-main .product-details .action-buttons {
        flex-direction: column;
    }

    .product-details-main .product-details .add-to-cart,
    .product-details-main .product-details .buy-now {
        width: 100%;
    }

    .product-details-main .product-details .product-title {
        font-size: 22px;
    }

    .product-details-main .product-details .product-title::after {
        width: 78px;
    }

    .product-details-main .product-details .product-actions {
        gap: 10px;
        margin-top: 10px;
    }
}

/* CHECKOUT */

.checkout-sec {
    color: #eaeaea;
}

.checkout-sec .checkout-left,
.checkout-sec .checkout-right {
    background: #111;
    border: 1px solid #1f1f1f;
    padding: 40px;
    border-radius: 12px;
}

.checkout-sec .checkout-left h2,
.checkout-sec .checkout-right h2 {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: 0.5px;
}

.checkout-sec .checkout-left .form-group {
    margin-bottom: 20px;
}

.checkout-sec .checkout-left .form-group:nth-child(1),
.checkout-sec .checkout-left .form-group:nth-child(2),
.checkout-sec .checkout-left .form-group:nth-child(3),
.checkout-sec .checkout-left .form-group:nth-child(4),
.checkout-sec .checkout-left .form-group:nth-child(12) {
    grid-column: span 2;
}

.checkout-sec .form-group label {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 6px;
    display: block;
}

.checkout-sec .form-control {
    background: #0b0b0b;
    border: 1px solid #2a2a2a;
    color: #fff;
    height: 46px;
    padding: 0 14px;
    border-radius: 6px;
    font-size: 14px;
    width: 100%;
}

.checkout-sec .form-control::placeholder {
    color: #666;
}

.checkout-sec .form-control:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 2px rgba(94, 255, 161, 0.15);
}

.checkout-sec .btn-checkout {
    grid-column: span 2;
    margin-top: 10px;
    background: linear-gradient(135deg, var(--primary-light), #3ddc84);
    color: #000;
    border: none;
    height: 52px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 3px;
    cursor: pointer;
    transition: 0.3s ease;
    text-align: center;
    width: 100%;
}

.checkout-sec .btn-checkout:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(94, 255, 161, 0.25);
}

.checkout-sec .order-summary {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.checkout-sec .order-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 18px;
    border-bottom: 1px solid #222;
}

.checkout-sec .order-summary-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.checkout-sec .order-summary-item-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.checkout-sec .order-summary-item-left img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    background: #000;
}

.checkout-sec .order-summary-item-left-content h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #fff;
}

.checkout-sec .order-summary-item-left-content h3 small {
    font-size: 12px;
    color: #aaa;
}

.checkout-sec .order-summary-item-left-content p {
    font-size: 13px;
    color: #999;
}

.checkout-sec .order-summary-item-right p {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.checkout-sec .order-summary-item h3 {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

.checkout-sec .order-summary-item:last-child h3,
.checkout-sec .order-summary-item:last-child p {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-light);
}

.select2-container .select2-selection--single .select2-selection__rendered {
    background-color: black;
    color: #fff;
    height: 42px;
    line-height: 40px;
    border: 1px solid #2a2a2a;
}

.select2-container.select2-container--open .select2-dropdown--below {
    background-color: #202020;
    color: white;
}

.select2-search--dropdown .select2-search__field {
    background-color: #202020;
    color: white;
    height: 42px;
    border: solid 1px #545454 !important;
}

.select2-container .select2-selection--single {
    border: solid 1px #2a2a2a;
}



.coupon-toggle {
    color: #bbb;
    margin-bottom: 15px;
}

.coupon-toggle a {
    color: var(--primary-light);
    text-decoration: underline;
    font-weight: 500;
    transition: 0.3s ease;
}

.coupon-toggle a:hover {
    color: #fff;
}


#coupon-form-wrapper {
    display: none;
    background: rgba(186, 157, 99, 0.05);
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s ease;
}

#coupon-form-wrapper.active {
    display: block;
    animation: fadeSlide 0.3s ease forwards;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#checkout_coupon_code {
    height: 42px;
    background: #2a2a2a;
    border: 1px solid var(--primary-light);
    border-radius: 8px;
    padding: 0 15px;
    font-size: 14px;
    color: #ffffff;
    transition: 0.3s ease;
}

#checkout_coupon_code::placeholder {
    color: #aaa;
}

#checkout_coupon_code:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(186, 157, 99, 0.25);
}


#apply_checkout_coupon {
    background: var(--primary-light);
    color: #111;
    border: none;
    height: 42px;
    padding: 0 28px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: 0.3s ease;
}

#apply_checkout_coupon:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

#apply_checkout_coupon:active {
    transform: translateY(0);
}


#checkout-coupon-msg.success {
    color: #4caf50;
}

#checkout-coupon-msg.error {
    color: #ff4d4d;
}

.checkout-sec .checkout-left #is_gift_order_field .woocommerce-input-wrapper label {
    display: flex;
    align-items: center;
    line-height: 20px;
    gap: 10px;
}

.checkout-sec .checkout-left #is_gift_order_field .woocommerce-input-wrapper input {
    height: 20px;
    width: 20px;
}

.checkout-sec .checkout-left form.checkout>.col-md-6:nth-of-type(10) {
    display: flex;
    align-items: flex-end;
}



@media (max-width: 991px) {
    .checkout-sec .checkout-left form {
        grid-template-columns: 1fr;
    }

    .checkout-sec .checkout-left .form-group {
        grid-column: span 1 !important;
    }

    .checkout-sec .checkout-left,
    .checkout-sec .checkout-right {
        padding: 15px;
        margin-bottom: 10px;
    }

    .checkout-sec .checkout-left .form-group {
        margin-bottom: 10px;
    }
}


/* CART */
.cart-main {
    color: #eaeaea;
}

.cart-main .cart-left,
.cart-main .cart-summary {
    background: #111;
    border: 1px solid #1f1f1f;
    border-radius: 12px;
    padding: 30px;
}

.cart-main .cart-left h2,
.cart-main .cart-summary h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
    text-transform: uppercase;
}

.cart-main .cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #222;
}

.cart-main .cart-item:last-child {
    border-bottom: none;
}

.cart-main .cart-item-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.cart-main .cart-item-left img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.cart-main .cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cart-main .cart-item-info h3 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

.cart-main .cart-item-info h3 small {
    font-size: 12px;
    color: #aaa;
}

.cart-main .cart-price {
    font-size: 13px;
    color: #999;
}

.cart-main .remove-item {
    background: none;
    border: none;
    color: #ff6b6b;
    font-size: 13px;
    cursor: pointer;
    padding: 0;
    width: max-content;
}

.cart-main .cart-item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    min-width: 160px;
}

.cart-main .cart-total {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.cart-main .quantity-box {
    display: inline-flex;
    border: 1px solid #333;
    border-radius: 6px;
    overflow: hidden;
}

.cart-main .quantity-box input {
    width: 52px;
    background: #000;
    color: #fff;
    border: none;
    text-align: center;
    font-size: 14px;
}

.cart-main .qty-btn {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    cursor: pointer;
}

.cart-main .qty-btn:hover {
    background: #fff;
    color: #000;
}

.cart-main .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 14px;
    color: #bbb;
    border-bottom: 1px solid #222;
}

.cart-main .summary-row.total {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-light);
    border-bottom: none;
    padding-top: 20px;
}

.cart-main .btn-two.full-width {
    width: 100%;
    display: block;
    text-align: center;
    margin-top: 25px;
}

.cart-main .continue-shopping {
    display: block;
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
    color: #aaa;
}

/* ===============================
   Coupon Section
=================================*/
.coupon-section {
    margin-top: 20px;
}

.coupon-section .form-group {
    gap: 10px;
}


#coupon_code {
    height: 42px;
    background: #2a2a2a;
    border: 1px solid var(--primary-light);
    border-radius: 8px;
    padding: 0 15px;
    font-size: 14px;
    color: #ffffff;
    transition: 0.3s ease;
    width: 100%;

}

#coupon_code::placeholder {
    color: #aaa;
}

#coupon_code:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(186, 157, 99, 0.25);
}

#apply_coupon {
    background: var(--primary-light);
    color: #111;
    border: none;
    height: 42px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    padding: 0 28px;
    transition: 0.3s ease;
}

#apply_coupon:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

#apply_coupon:active {
    transform: translateY(0);
}


#coupon-msg {
    font-size: 13px;
    margin-top: 8px;
}

#coupon-msg.success {
    color: #4caf50;
}

#coupon-msg.error {
    color: #ff4d4d;
}

#applied-coupons-list {
    margin-top: 15px;
}

#applied-coupons-list>div {
    background: #2a2a2a;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #333;
    margin-bottom: 8px;
}

#applied-coupons-list span {
    color: #ccc;
}

#applied-coupons-list strong {
    color: var(--primary-light);
}

.remove-coupon {
    color: #ff4d4d !important;
    font-weight: 500;
    text-decoration: none;
    transition: 0.2s ease;
}

.remove-coupon:hover {
    color: #ff8080 !important;
    text-decoration: underline;
}


@media (max-width: 991px) {
    .cart-main .cart-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 0px;
        margin-bottom: 10px;
    }

    .cart-main .cart-item-right {
        align-items: flex-start;
        width: 100%;
        display: flex;
        justify-content: space-between;
        flex-direction: row;
        align-items: center;
    }

    .cart-main .cart-summary {
        margin-top: 30px;
    }

    .cart-main .cart-left,
    .cart-main .cart-summary {
        padding: 10px;
    }


}


/* MY ACCOUNT */
.account-page {
    color: #eaeaea;
}

.account-page .account-wrapper {
    display: flex;
    gap: 30px;
}

.account-page .account-sidebar {
    width: 260px;
    background: #111;
    border: 1px solid #1f1f1f;
    border-radius: 14px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: fit-content;
    position: sticky;
    top: 40px;
}

.account-page .account-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}

.account-page .account-tab {
    background: transparent;
    border: none;
    color: #bbb;
    padding: 12px 14px;
    border-radius: 8px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s ease;
}

.account-page .account-tab:hover,
.account-page .account-tab.active {
    background: #fff;
    color: #000;
}

.account-page .account-tab.logout {
    margin-top: auto;
    color: #ff6b6b;
}

.account-page .account-content {
    flex: 1;
}

.account-page .account-panel {
    display: none;
}

.account-page .account-panel.active {
    display: block;
}

.account-page .account-panel h2 {
    margin-bottom: 25px;
    color: #fff;
    font-size: 20px;
}

.account-page .order-card,
.account-page .address-card,
.account-page .security-card {
    background: #0b0b0b;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.account-page .order-card h4,
.account-page .address-card h4,
.account-page .security-card h4 {
    font-size: 18px;
}

.account-page .status {
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.account-page .status.delivered {
    background: var(--primary-light);
    color: #000;
}

.account-page .status.processing {
    background: #f5c26b;
    color: #000;
}

.account-page .status.cancelled {
    background: #ff6b6b;
    color: #000;
}

.account-page .account-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.account-page .account-form input {
    background: #000;
    border: 1px solid #2a2a2a;
    color: #fff;
    height: 44px;
    padding: 0 14px;
    border-radius: 6px;
}

.account-page .btn-primary {
    background: var(--primary-light);
    color: #000;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
}

.account-page .btn-outline {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
}

.account-page .address-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.account-page .address-card {
    background: #0b0b0b;
    border: 1px solid #222;
    border-radius: 14px;
    padding: 20px;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
}

.account-page .address-card h4 {
    color: #fff;
    margin-bottom: 8px;
}

.account-page .address-card p {
    font-size: 13px;
    color: #aaa;
    line-height: 1.6;
}

.account-page .address-card .btn-primary {
    padding: 10px 15px;
}

.account-page .address-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.account-page .address-actions button {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.account-page .address-actions .danger {
    border-color: #ff6b6b;
    color: #ff6b6b;
}

.account-page .address-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--primary-light);
    color: #000;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
}

.account-page .address-card.add-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #bbb;
    cursor: pointer;
    border-style: dashed;
}

.account-page .address-card.add-new span {
    font-size: 28px;
    margin-bottom: 6px;
}

.account-page .orders-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.account-page .order-card {
    padding: 20px 24px;
    transition: 0.3s ease;
}

.account-page .order-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.account-page .order-left h4 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.account-page .order-left h4 span {
    font-size: 13px;
    color: #aaa;
    font-weight: 400;
}

.account-page .order-meta {
    margin-top: 6px;
    font-size: 13px;
    color: #999;
    line-height: 1.6;
}

.account-page .order-right {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .account-page .order-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .account-page .account-tab {
        padding: 10px 15px;
        white-space: nowrap;
        background-color: #242424;
    }

    .account-page .security-card {
        flex-direction: column;
        gap: 20px;
    }

    .account-panel {
        padding: 10px;
    }
}

@media (max-width: 991px) {
    .account-page .account-wrapper {
        flex-direction: column;
    }

    .account-page .account-sidebar {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        position: unset;
        padding: 10px;
    }

    .account-panel {
        padding: 15px;
    }

    .account-page .account-tab.logout {
        margin-top: 0;
    }
}


/* OFFCANVAS MENU */
.site-menu .menu-panel {
    position: fixed;
    top: var(--menu-top);
    left: var(--menu-left);
    width: var(--menu-size);
    height: var(--menu-size);
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -50%);
    /* Closing Transition: Delayed to wait for items to disappear */
    transition:
        width 0.7s cubic-bezier(0.77, 0, 0.175, 1) 0.5s,
        height 0.7s cubic-bezier(0.77, 0, 0.175, 1) 0.5s,
        top 0.7s cubic-bezier(0.77, 0, 0.175, 1) 0.5s,
        left 0.7s cubic-bezier(0.77, 0, 0.175, 1) 0.5s,
        /* Delay rounding until the end of the shrink */
        border-radius 0.2s ease 1.0s,
        opacity 0.7s cubic-bezier(0.77, 0, 0.175, 1) 0.5s,
        visibility 0s linear 1.2s;
    z-index: 9999;
    overflow: hidden;
}

.site-menu .menu-panel.active {
    top: 50%;
    left: 50%;
    width: 92vw;
    height: 88vh;
    border-radius: 32px;
    opacity: 1;
    visibility: visible;
    /* Opening Transition: Immediate */
    transition:
        width 0.7s cubic-bezier(0.77, 0, 0.175, 1) 0s,
        height 0.7s cubic-bezier(0.77, 0, 0.175, 1) 0s,
        top 0.7s cubic-bezier(0.77, 0, 0.175, 1) 0s,
        left 0.7s cubic-bezier(0.77, 0, 0.175, 1) 0s,
        border-radius 0.6s ease 0s,
        opacity 0.7s cubic-bezier(0.77, 0, 0.175, 1) 0s,
        visibility 0s linear 0s;
}

.site-menu .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    z-index: 9998;
}

.site-menu .menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.site-menu .menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: #000;
    z-index: 999;
}

.site-menu .menu-inner {
    display: flex;
    height: 100%;
    padding: 70px;
}

.site-menu .menu-left {
    flex: 1;
}

.site-menu .menu-tag {
    font-size: 14px;
    color: #555;
    margin-bottom: 50px;
}

.site-menu .menu-nav {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.site-menu .menu-nav a {
    font-size: 42px;
    font-weight: 600;
    color: #000;
    text-decoration: none;

    /* Animation: Closed State */
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

/* Animation Base for other elements */
.site-menu .menu-tag,
.site-menu .menu-actions,
.site-menu .menu-right {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

/* Active State - Elements Enter (Move Up & Fade In) */
.site-menu .menu-panel.active .menu-nav a,
.site-menu .menu-panel.active .menu-tag,
.site-menu .menu-panel.active .menu-actions,
.site-menu .menu-panel.active .menu-right {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delay for Menu Items on Open */
.site-menu .menu-panel.active .menu-nav a:nth-child(1) {
    transition-delay: 0.1s;
}

.site-menu .menu-panel.active .menu-nav a:nth-child(2) {
    transition-delay: 0.2s;
}

.site-menu .menu-panel.active .menu-nav a:nth-child(3) {
    transition-delay: 0.3s;
}

.site-menu .menu-panel.active .menu-nav a:nth-child(4) {
    transition-delay: 0.4s;
}

.site-menu .menu-panel.active .menu-nav a:nth-child(5) {
    transition-delay: 0.5s;
}

/* Delay for other elements on Open */
.site-menu .menu-panel.active .menu-tag {
    transition-delay: 0s;
}

.site-menu .menu-panel.active .menu-actions {
    transition-delay: 0.6s;
}

.site-menu .menu-panel.active .menu-right {
    transition-delay: 0.3s;
}

.site-menu .menu-actions {
    display: flex;
    gap: 14px;
    margin-top: 40px;
    flex-flow: row wrap;
}

.site-menu .menu-actions .action-btn {
    border: 1px solid #000;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    color: #000;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-menu .menu-actions .action-btn:hover {
    background-color: black;
    color: white;
}

.site-menu .menu-right {
    width: 42%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.site-menu .menu-welcome {
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
}

.site-menu .menu-welcome span {
    color: #777;
}

.site-menu .menu-video video {
    width: 100%;
    border-radius: 20px;
}

@media (max-width:768px) {
    .site-menu .menu-inner {
        padding: 30px 15px;
        flex-direction: column;
    }

    .site-menu .menu-nav a {
        font-size: 24px;
    }

    .site-menu .menu-right {
        width: 100%;
        display: none;
    }

    .site-menu .menu-nav {
        gap: 0px;
    }

    .site-menu .menu-tag {
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .site-menu .menu-actions {
        margin-top: 10px;
    }

}

/* LOGIN */

.woocommerce-message::before {
    display: none;
}

.login-register-sec {
    /* background: linear-gradient(180deg, #0b0b0b, #050505); */
    padding: 0;
    overflow: hidden;
    background-color: black;
    min-height: 100vh;
}

.login-register-sec .container,
.login-register-sec .row {
    height: 100%;
}

.login-register-sec .left-contain,
.login-register-sec .right-contain {
    width: 50%;
}

.login-register-sec .left-contain {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-register-sec .right-contain {
    height: 100vh;
}

.login-register-sec .left {
    height: max-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 480px;
    padding: 40px;
    background-color: #101010;
    border-radius: 30px;
}

.login-register-sec .left .title {
    padding-bottom: 20px;
}

.login-register-sec .left .title img {
    max-width: 200px;
}

.login-register-sec .left .title h1 {
    font-size: 26px;
    font-weight: 500;
    margin: 18px 0 8px;
    color: #ffffff;
}

.login-register-sec .left .title p {
    font-size: 15px;
    color: #9a9a9a;
}

.login-register-sec .left .form-group {
    margin-bottom: 14px;
}

.login-register-sec .left .form-group label {
    font-size: 13px;
    color: #cfcfcf;
}

.login-register-sec .left .form-group .form-control {
    width: 100%;
    background: #ffffff;
    border: 1px solid #2a2a2a;
    padding: 12px 14px;
    border-radius: 8px;
    margin-top: 6px;
    font-size: 14px;
    color: #000;
}

.login-register-sec .left .form-group .form-control::placeholder {
    color: #777;
}

.login-register-sec .left .form-group .form-control:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 2px rgba(94, 255, 161, 0.15);
}

.login-register-sec .left .form-group a {
    font-size: 14px;
    color: var(--primary-light);
}

.login-register-sec .left .form-group .password-input button {
    width: auto;
    padding: 10px;
    background: #3ddc843d;
    color: #3fde86;
    top: 7px;
    right: 0px;
    transform: none;
}

.woocommerce-password-strength.bad {
    background-color: transparent;
    text-align: start;
}

.login-register-sec .left .form-group button {
    background: linear-gradient(135deg, var(--primary-light), #3ddc84);
    color: #000;
    width: 100%;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    padding: 12px;
    font-weight: 600;
    transition: 0.3s ease;
}

.login-register-sec .left .form-group button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(94, 255, 161, 0.25);
}

.login-register-sec .left .form-sec .bottom-title {
    text-align: center;
    font-size: 15px;
    color: #aaa;
    margin-top: 20px;
}

.login-register-sec .left .form-sec .bottom-title a {
    color: var(--primary-light);
}

.login-register-sec .right {
    height: 100%;
    width: 100%;
}

.login-register-sec .right img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.9);
}

.login-register-sec .left .otp-group .otp-inputs {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.login-register-sec .left .otp-group .otp-input {
    width: 46px;
    height: 52px;
    text-align: center;
    font-size: 20px;
    background: #0b0b0b;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    color: #fff;
}

.login-register-sec .left .otp-group .otp-input:focus {
    border-color: var(--primary-light);
    outline: none;
}

.phone-input-wrapper {
    position: relative;
}

.phone-input-wrapper input {
    padding-left: 95px !important;
}

.country-prefix {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #ccc;
    pointer-events: none;
}

.country-prefix img {
    width: 32px;
    height: auto;
}

@media (max-width: 768px) {
    .login-register-sec {
        padding: 20px;
        display: flex;
        align-items: center;
    }

    .login-register-sec .right-contain {
        display: none;
    }

    .login-register-sec .left-contain {
        width: 100%;
    }

    .login-register-sec .left {
        padding: 20px;
    }

    .login-register-sec .left .title h2 {
        font-size: 22px;
    }
}


/* ORDER SUCCESS */

.order-success-sec {
    display: flex;
    align-items: center;
    padding: 40px 15px;
    background-color: black;
}

.order-success-sec .order-success-card {
    max-width: 560px;
    margin: 0 auto;
    background: #0b0b0b;
    border: 1px solid #1f1f1f;
    border-radius: 18px;
    padding: 45px 35px;
    text-align: center;
}

.order-success-sec .success-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-light), #3ddc84);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #000;
    font-size: 28px;
}

.order-success-sec .order-success-card h1 {
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.order-success-sec .success-subtitle {
    font-size: 15px;
    color: #9a9a9a;
    max-width: 420px;
    margin: 0 auto 30px;
}

.order-success-sec .order-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    background: #050505;
    border: 1px solid #222;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 30px;
}

.order-success-sec .info-item span {
    display: block;
    font-size: 12px;
    color: #777;
    margin-bottom: 4px;
}

.order-success-sec .info-item strong {
    font-size: 14px;
    color: #fff;
}

.order-success-sec .success-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-bottom: 20px;
}

.order-success-sec .success-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary-light), #3ddc84);
    color: #000;
    border-radius: 8px;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.order-success-sec .success-actions .btn-outline {
    border: 1px solid #fff;
    color: #fff;
    border-radius: 8px;
    padding: 12px 22px;
    font-size: 14px;
    text-decoration: none;
}

.order-success-sec .success-note {
    font-size: 13px;
    color: #777;
}

/* Mobile */
@media (max-width: 576px) {
    .order-success-sec .order-info {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .order-success-sec .success-actions {
        flex-direction: column;
    }
}



/* CONTACT US */

.contact-sec {
    padding-bottom: 80px;
}

/* HERO */
.contact-sec .contact-hero {
    position: relative;
    height: 60vh;
    border-radius: 28px;
    overflow: hidden;
}

.contact-sec .contact-hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-sec .contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.75));
}

.contact-sec .contact-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.contact-sec .contact-hero-content h2 {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-sec .contact-hero-content p {
    font-size: 15px;
    color: #d0d0d0;
    max-width: 520px;
}

.contact-sec .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    margin-top: 80px;
}

.contact-sec .contact-info h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 25px;
}

.contact-sec .contact-info .info-description {
    margin-bottom: 30px;
}

.contact-sec .info-block {
    margin-bottom: 20px;
}

.contact-sec .info-block strong {
    display: block;
    font-size: 13px;
    color: #777;
    margin-bottom: 6px;
}

.contact-sec .info-block a {
    font-size: 16px;
    color: #ccc;
    line-height: 1.6;
}



.contact-sec .map-block iframe {
    border-radius: 15px;
}

.contact-sec .contact-form {
    background: #0b0b0b;
    border: 1px solid #1f1f1f;
    border-radius: 20px;
    padding: 40px;
}

.contact-sec .contact-form h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 8px;
}

.contact-sec .form-desc {
    font-size: 14px;
    color: #9a9a9a;
    margin-bottom: 25px;
}

.contact-sec .contact-form form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-sec .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-sec .contact-form input,
.contact-sec .contact-form textarea {
    background: #050505;
    border: 1px solid #2a2a2a;
    border-radius: 14px;
    padding: 14px 16px;
    color: #fff;
    font-size: 14px;
    width: 100%;
}

.contact-sec .contact-form textarea {
    min-height: 140px;
    resize: none;
}

.contact-sec .contact-form input:focus,
.contact-sec .contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 2px rgba(94, 255, 161, 0.15);
}

.contact-sec .contact-form .btn-primary {
    margin-top: 10px;
    background: linear-gradient(135deg, var(--primary-light), #3ddc84);
    color: #000;
    border: none;
    border-radius: 999px;
    padding: 14px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .contact-sec .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-sec .contact-hero {
        margin: 20px;
        height: 340px;
    }
}

@media (max-width: 768px) {
    .contact-sec .form-row {
        grid-template-columns: 1fr;
    }

    .contact-sec .contact-hero {
        margin: 0px;
        margin-top: 10px;
        height: 280px;
    }

    .contact-sec .contact-hero-content h1 {
        font-size: 26px;
    }

    .contact-sec .contact-hero-content h2 {
        font-size: 22px;
    }

    .contact-sec .contact-form {
        padding: 15px;
    }
}


/* ABOUT US */

.about-sec-page {
    color: #eaeaea;
}

.about-sec-page .about-hero {
    position: relative;
    height: 70vh;
    border-radius: 30px;
    overflow: hidden;
}

.about-sec-page .about-hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-sec-page .about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.4),
            rgba(0, 0, 0, 0.8));
}

.about-sec-page .about-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.about-sec-page .about-hero-content h1 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-sec-page .about-hero-content p {
    font-size: 16px;
    color: #ccc;
    max-width: 600px;
}

.about-sec-page .about-intro {
    text-align: center;
    max-width: 780px;
    margin: 80px auto;
}

.about-sec-page .about-intro h2 {
    font-size: 30px;
    margin-bottom: 15px;
}

.about-sec-page .about-intro p {
    font-size: 16px;
    color: #e7e7e7;
}

.about-sec-page .about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 100px;
}

.about-sec-page .about-text h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.about-sec-page .about-text p {
    font-size: 15px;
    color: #e7e7e7;
    margin-bottom: 5px;
    line-height: 30px;
}

.about-sec-page .about-text p.founder-name {
    margin-top: 15px;
}

.about-sec-page .about-media img {
    width: 100%;
    border-radius: 20px;
}

.about-sec-page .about-cta--creative {
    position: relative;
    background: radial-gradient(circle at top,
            rgba(94, 255, 161, 0.08),
            transparent 60%);
    border: 1px solid #1f1f1f;
    border-radius: 28px;
    padding: 80px 40px;
    text-align: center;
    overflow: hidden;
}

.about-sec-page .about-cta--creative .cta-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center,
            rgba(94, 255, 161, 0.12),
            transparent 65%);
    opacity: 0.4;
    pointer-events: none;
}

.about-sec-page .about-cta--creative .cta-eyebrow {
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 14px;
}

.about-sec-page .about-cta--creative h2 {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.about-sec-page .about-cta--creative h2 span {
    color: var(--primary-light);
}

.about-sec-page .about-cta--creative .cta-subtitle {
    font-size: 15px;
    color: #aaa;
    max-width: 520px;
    margin: 0 auto 30px;
}

.about-sec-page .about-cta--creative .cta-btn {
    background: linear-gradient(135deg, var(--primary-light), #3ddc84);
    color: #000;
    padding: 0px 34px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
}

.about-sec-page .about-cta--creative .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(94, 255, 161, 0.25);
}


@media (max-width: 991px) {
    .about-sec-page .about-split {
        grid-template-columns: 1fr;
    }

    .about-sec-page .about-hero {
        height: 340px;
        /* margin: 0px;
        border-radius: 0px; */
    }


}

@media (max-width: 768px) {
    .about-sec-page .about-cta--creative {
        padding: 60px 25px;
    }

    .about-sec-page .about-hero {
        height: 280px;
    }

    .about-sec-page .about-cta--creative h2 {
        font-size: 28px;
    }

    .about-sec-page .about-hero-content h1 {
        font-size: 22px;
    }

    .about-sec-page .about-intro {
        margin: 20px auto;
    }

    .about-sec-page .about-split {
        gap: 20px;
        margin-bottom: 30px;
    }
}

/* 404 */

.error-404-sec.creative-404 {
    min-height: 100vh;
    background: radial-gradient(circle at center, #0f0f0f 0%, #050505 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eaeaea;
    overflow: hidden;
}

.creative-404 .error-404-wrapper {
    text-align: center;
    max-width: 560px;
    padding: 60px 30px;
    position: relative;
}

.creative-404 .error-orbit {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.creative-404 .error-code {
    font-size: 120px;
    font-weight: 700;
    letter-spacing: 6px;
    color: transparent;
    -webkit-text-stroke: 2px var(--primary-light);
    text-shadow: 0 0 40px rgba(94, 255, 161, 0.25);
    z-index: 2;
    position: relative;
}

.creative-404 .orbit-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--primary-light);
    border-radius: 50%;
    opacity: 0.6;
    animation: orbit 6s linear infinite;
}

.creative-404 .orbit-dot:nth-child(2) {
    animation-duration: 8s;
    width: 4px;
    height: 4px;
}

.creative-404 .orbit-dot:nth-child(3) {
    animation-duration: 10s;
    width: 3px;
    height: 3px;
}

@keyframes orbit {
    from {
        transform: rotate(0deg) translateX(90px) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateX(90px) rotate(-360deg);
    }
}


/* ERROR */


.error-404-sec.creative-404 {
    min-height: 100vh;
    background: radial-gradient(circle at center, #0f0f0f 0%, #050505 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eaeaea;
    overflow: hidden;
}

.about-sec-page .about-media img {
    width: 100%;
    border-radius: 20px;
}

.about-sec-page .about-cta--creative {
    position: relative;
    background: radial-gradient(circle at top,
            rgba(94, 255, 161, 0.08),
            transparent 60%);
    border: 1px solid #1f1f1f;
    border-radius: 28px;
    padding: 80px 40px;
    text-align: center;
    overflow: hidden;
}

.about-sec-page .about-cta--creative .cta-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center,
            rgba(94, 255, 161, 0.12),
            transparent 65%);
    opacity: 0.4;
    pointer-events: none;
}

.about-sec-page .about-cta--creative .cta-eyebrow {
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 14px;
}

.about-sec-page .about-cta--creative h2 {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.about-sec-page .about-cta--creative h2 span {
    color: var(--primary-light);
}

.about-sec-page .about-cta--creative .cta-subtitle {
    font-size: 15px;
    color: #aaa;
    max-width: 520px;
    margin: 0 auto 30px;
}

.about-sec-page .about-cta--creative .cta-btn {
    background: linear-gradient(135deg, var(--primary-light), #3ddc84);
    color: #000;
    padding: 0px 34px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
}

.about-sec-page .about-cta--creative .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(94, 255, 161, 0.25);
}


@media (max-width: 991px) {
    .about-sec-page .about-split {
        grid-template-columns: 1fr;
    }

    .about-sec-page .about-hero {
        height: 340px;
        margin: 0px;
        border-radius: 0px;
    }


}

@media (max-width: 768px) {
    .about-sec-page .about-cta--creative {
        padding: 60px 25px;
    }

    .about-sec-page .about-hero {
        height: 280px;
    }

    .about-sec-page .about-cta--creative h2 {
        font-size: 28px;
    }

    .about-sec-page .about-hero-content h1 {
        font-size: 22px;
    }

    .about-sec-page .about-intro {
        margin: 20px auto;
    }

    .about-sec-page .about-split {
        gap: 20px;
        margin-bottom: 30px;
    }
}

/* 404 */

.error-404-sec.creative-404 {
    min-height: 100vh;
    background: radial-gradient(circle at center, #0f0f0f 0%, #050505 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eaeaea;
    overflow: hidden;
}

.creative-404 .error-404-wrapper {
    text-align: center;
    max-width: 560px;
    padding: 60px 30px;
    position: relative;
}

.creative-404 .error-orbit {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.creative-404 .error-code {
    font-size: 120px;
    font-weight: 700;
    letter-spacing: 6px;
    color: transparent;
    -webkit-text-stroke: 2px var(--primary-light);
    text-shadow: 0 0 40px rgba(94, 255, 161, 0.25);
    z-index: 2;
    position: relative;
}

.creative-404 .orbit-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--primary-light);
    border-radius: 50%;
    opacity: 0.6;
    animation: orbit 6s linear infinite;
}

.creative-404 .orbit-dot:nth-child(2) {
    animation-duration: 8s;
    width: 4px;
    height: 4px;
}

.creative-404 .orbit-dot:nth-child(3) {
    animation-duration: 10s;
    width: 3px;
    height: 3px;
}

@keyframes orbit {
    from {
        transform: rotate(0deg) translateX(90px) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateX(90px) rotate(-360deg);
    }
}


/* ERROR */


.error-404-sec.creative-404 {
    min-height: 100vh;
    background: radial-gradient(circle at center, #0f0f0f 0%, #050505 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eaeaea;
    overflow: hidden;
}

.creative-404 .error-404-wrapper {
    position: relative;
    max-width: 620px;
    margin: 0 auto;
    padding: 60px 30px;
    text-align: center;
}

.creative-404 .error-card {
    position: relative;
    background: rgba(11, 11, 11, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 70px 50px;
    backdrop-filter: blur(14px);
    z-index: 2;
}

.creative-404 .error-orbit {
    position: relative;
    display: inline-block;
    margin-bottom: 35px;
}

.creative-404 .error-code {
    font-size: 120px;
    font-weight: 700;
    letter-spacing: 6px;
    color: transparent;
    -webkit-text-stroke: 2px var(--primary-light);
    text-shadow: 0 0 45px rgba(94, 255, 161, 0.3);
    position: relative;
    z-index: 2;
}

.creative-404 .orbit-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--primary-light);
    border-radius: 50%;
    opacity: 0.6;
    animation: orbit 6s linear infinite;
}

.creative-404 .orbit-dot:nth-child(2) {
    width: 4px;
    height: 4px;
    animation-duration: 8s;
}

.creative-404 .orbit-dot:nth-child(3) {
    width: 3px;
    height: 3px;
    animation-duration: 10s;
}

@keyframes orbit {
    from {
        transform: rotate(0deg) translateX(90px) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateX(90px) rotate(-360deg);
    }
}

.creative-404 h1 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 12px;
}

.creative-404 .error-copy {
    font-size: 15px;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 36px;
}

.creative-404 .error-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.creative-404 .btn-primary {
    background: linear-gradient(135deg, var(--primary-light), #3ddc84);
    color: #000;
    padding: 14px 32px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
}

.creative-404 .btn-outline {
    border: 1px solid #fff;
    color: #fff;
    padding: 14px 32px;
    border-radius: 999px;
    text-decoration: none;
}

.creative-404 .error-gradient-card {
    position: absolute;
    width: 260px;
    height: 180px;
    border-radius: 32px;
    filter: blur(45px);
    opacity: 0.55;
    z-index: 1;
}

.creative-404 .error-gradient-card.left {
    top: -50px;
    left: -70px;
    background: linear-gradient(135deg,
            rgba(94, 255, 161, 0.45),
            rgba(94, 255, 161, 0));
}

.creative-404 .error-gradient-card.right {
    bottom: -60px;
    right: -80px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.25),
            rgba(255, 255, 255, 0));
}

@media (max-width: 576px) {
    .creative-404 .error-code {
        font-size: 90px;
    }

    .creative-404 .error-card {
        padding: 50px 25px;
    }

    .creative-404 .error-actions {
        flex-direction: column;
    }
}


.cart-toast {
    position: fixed;
    top: 30px;
    right: 30px;

    display: flex;
    align-items: center;
    gap: 10px;

    background: var(--primary-light);
    /* success green */
    color: #0a3d1c;

    padding: 14px 18px;
    border-radius: 10px;

    font-size: 14px;
    font-weight: 500;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);

    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;

    z-index: 99999;
}

.cart-toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* Tick icon styling */
.cart-toast i {
    font-size: 16px;
    color: #0a3d1c;
}


.woocommerce-checkout .form-row {
    width: 100%;
    margin: 0;
}

.woocommerce-checkout .form-row input,
.woocommerce-checkout .form-row select {
    width: 100%;
}

.woocommerce-checkout .form-row label {
    font-weight: 500;
    margin-bottom: 6px;
}

/* Show Address Line 2 label */

#billing_address_2_field label {
    position: static !important;
    clip: auto !important;
    height: auto !important;
    width: auto !important;
    overflow: visible !important;
    white-space: normal !important;
    display: block !important;
}

/* SMOOTH SCROLL (LENIS) */
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}




/* POLICY CSS */

.legal-page {
    background: #0e0f13;
    color: #cfd2da;
    padding: 40px 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.legal-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.legal-badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--primary-light);
    margin-bottom: 14px;
}

.legal-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.legal-date {
    font-size: 14px;
    color: #8b8f9b;
    margin-bottom: 18px;
}

.legal-description {
    font-size: 16px;
    line-height: 1.8;
    color: #b5b8c3;
}

.legal-content {
    background: #13151b;
    border-radius: 16px;
    padding: 50px 45px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.legal-item {
    margin-bottom: 40px;
}

.legal-item:last-child {
    margin-bottom: 0;
}

.legal-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    position: relative;
}

.legal-item h3::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--primary-light);
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    transform: translateY(-2px);
}

.legal-item p {
    font-size: 15.5px;
    line-height: 1.9;
    color: #c9ccd6;
}

.legal-contact {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-contact strong {
    color: #ffffff;
}

.legal-page a {
    color: var(--primary-light);
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 20px 0px;
    }

    .legal-title {
        font-size: 32px;
    }

    .legal-content {
        padding: 35px 25px;
    }
}






/* MY ACCOUNT FORM */

.account-content {
    color: #cfd2da;
}

.account-panel {
    background: #000;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .45);
}

.account-panel h2 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 25px;
}

.account-panel h2+h2 {
    font-size: 20px;
    margin-bottom: 20px;
}

.woocommerce-address-fields__field-wrapper,
.account-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-row-wide {
    grid-column: 1 / -1;
}

.account-content label {
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 8px;
    display: block;
}

.required {
    color: var(--primary-light);
}

.account-content input[type="text"],
.account-content input[type="email"],
.account-content input[type="password"],
.account-content input[type="tel"],
.account-content input.input-text,
.account-content select,
.select2-container--default .select2-selection--single {
    width: 100%;
    background: #0e1016;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    color: #fff;
    height: 48px;
    transition: all .25s ease;
}

.account-content ::placeholder {
    color: #6f7483;
}

.account-content input:focus,
.select2-container--default.select2-container--open .select2-selection--single {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(154, 164, 255, .15);
    outline: none;
}

.select2-container--default .select2-selection--single {
    display: flex;
    align-items: center;
}

.select2-selection__arrow {
    top: 50% !important;
    transform: translateY(-50%);
}

.select2-dropdown {
    background: #13151b;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
}

.select2-results__option {
    color: #cfd2da;
    padding: 10px 14px;
}

.select2-results__option--highlighted {
    background: rgba(154, 164, 255, .15);
    color: #fff;
}

.account-content button.button {
    background: linear-gradient(135deg, var(--primary-light), #3ddc84);
    color: #000;
    border: none;
    border-radius: 12px;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
}

.account-content button.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(1, 233, 144, 0.35);
}

.woocommerce-address-fields p:last-child {
    margin-top: 30px;
}

.woocommerce-invalid input {
    border-color: #ff6b6b;
}

.woocommerce form .form-row-first,
.woocommerce form .form-row-last,
.woocommerce-page form .form-row-first,
.woocommerce-page form .form-row-last {
    width: 100% !important;
}

.select2-container .select2-selection--single {
    padding: 0px;
}

@media (max-width: 768px) {

    .woocommerce-address-fields__field-wrapper,
    .account-form-grid {
        grid-template-columns: 1fr;
    }

    .account-panel {
        padding: 30px 22px;
    }
}



/* ===============================
   EMPTY STATE – NO ORDERS
================================ */

.no-orders {
    background: #13151b;
    border-radius: 18px;
    padding: 60px 30px;
    text-align: center;
    max-width: 520px;
    margin: 60px auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .45);
}

.no-orders-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(154, 164, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.no-orders-icon i {
    font-size: 34px;
    color: var(--primary-light);
}

.no-orders h3 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.no-orders p {
    font-size: 15px;
    line-height: 1.7;
    color: #b5b8c3;
    max-width: 380px;
    margin: 0 auto 30px;
}

/* CTA BUTTON */
.no-orders-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background-color: var(--primary-light);
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all .3s ease;
}

.no-orders-btn i {
    font-size: 14px;
}

.no-orders-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(154, 164, 255, .35);
}

/* MOBILE */
@media (max-width: 576px) {
    .no-orders {
        padding: 45px 22px;
    }
}