@import url('https://fonts.googleapis.com/css2?family=Afacad+Flux:wght@100..1000&family=DM+Serif+Text:ital@0;1&family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Playwrite+NG+Modern+Guides&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rajdhani:wght@300;400;500;600;700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Space+Grotesk:wght@300..700&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
}

@keyframes heart {
    0% {
        transform: scale(0);
    }

    25% {
        transform: scale(0.5);
        color: red;
    }

    50% {
        transform: scale(1);
        color: red;
    }
}

body {
    font-family: "Rajdhani", sans-serif;
}

a {
    color: inherit;
    text-decoration: none !important;
}

ul {
    list-style: none;
}

main {
    width: 100%;
    min-height: 100vh;
    /* margin-top: 150px; */
}

.product-name {
    text-align: center;
    cursor: pointer;
}

.product-name:hover {
    color: #097a6e;
}

/* -------------------- scroll button -------------------- */
#scrollBtn {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 40px;
    height: 50px;
    width: 50px;
    background-color: #097a6e;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 999;
    transition: all .4s;
}

#scrollBtn:hover {
    color: #097a6e;
    background-color: white;
    border: 2px solid #097a6e;
}

#scrollBtn #btn-up {
    padding-top: 4px;
    font-size: 20px;
}

/* --------------------------- header -------------------------------  */
header {
    width: 100%;
    z-index: 1000;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 60;
    transition: transform 0.5s ease-in-out;
}

.scroll-down {
    transform: translateY(-100%);
}

.scroll-up {
    transform: translateY(0);
}

.header_top {
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 8%;
    height: 90px;
}

.header_top ion-icon {
    font-size: 30px;
    color: rgba(85, 202, 7, 0.886);
    margin-right: 8px;
}

.header_top img {
    width: 160px;
    height: 75px;
    margin-top: 20px;
}

nav {
    position: relative;
    background-color: white;
}

.scroll-down {
    position: static;
    top: initial;
    left: initial;
}

.scroll-up {
    position: fixed;
    top: 0;
    left: 0;
}

#display_login {
    display: none;
    align-items: center;
    justify-content: center;
}

.header_actions {
    display: flex;
    justify-content: center;
    align-items: flex-start;

}

#signout,
.header_actions #user_name {
    font-size: 12px;
    font-weight: 500;
    margin-right: 4px;
}

.header_actions #logout {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* .header_actions a{
    display: inline-block;
    width: 24px;
    height: 24px;
} */
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.header_social{
    margin-top: 20px;
}

nav ul li {
    padding: 0 12px;
    margin: 4px;
    position: relative;
}

nav ul li a {
    font-size: 20px;
    color: #222;
    font-weight: 500;
}

nav ul li a:hover{
    font-weight: 900;
}

.active{
    color: #222;
    font-weight: 900;
    font-size: 20px;
    /* text-decoration: underline; */
}

@media (max-width: 767px) {
    nav ul li a {
        font-size: 22px;
    }
}

header nav li::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #000000;
    left: calc(50% - 12px);
    bottom: -4px;
    transition: .4s ease-in-out;
}

header nav li:hover::after {
    width: 25px;
}

.icon-cart {
    position: relative;
}

.icon-cart #cart-counter {
    position: absolute;
    background-color: red;
    color: #fff;
    width: 17px;
    height: 17px;
    letter-spacing: 0;
    font-weight: 400;
    font-size: 10px;
    line-height: 17px;
    box-shadow: 1px 1px 3px #0000004d;
    opacity: 1;
    transition: .3s ease-in-out;
    text-align: center;
    border-radius: 50%;
    top: -12px;
    right: -10px;
}

/* ------------------------ cart section ----------------- */
.cart-section {
    width: 400px;
    background-color: #fff;
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    z-index: 9999;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.5s ease;
}

body.showCart .cart-section {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.cart-header h2 {
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 37px;
}

.cart_products {
    flex-grow: 1;
    overflow-x: auto;
}

.cart_products.empty {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart_products {
    flex-grow: 1;
    overflow-x: auto;
    padding-right: 16px;
    scrollbar-color: #097a6e;
}

.cart_products::-webkit-scrollbar {
    width: 8px;
}

.cart_products::-webkit-scrollbar-track {
    background: #097a6f15;
}

.cart_products::-webkit-scrollbar-thumb {
    background-color: #097a6f93;
    border-radius: 5px;
}

.cart_products::-webkit-scrollbar-thumb:hover {
    background-color: #097a6e;
}

.cart_product {
    display: flex;
    margin-bottom: 25px;
    position: relative;
}

.cart_product::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #868686;
}

.cart_product .cart_product_img {
    width: 100px;
    margin-right: 24px;
}

.cart_product .cart_product_img img {
    width: 100%;
}

.cart_product_info {
    width: 80%;
}

.cart_product .top_card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.cart_product .top_card h4 {
    font-size: 13px;
    font-weight: 400;
}

.cart_product .top_card .product_price {
    font-size: 12px;
    color: #010101;
}

.remove_product {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(134 134 134 / 50%);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding-left: 1px;
}

.cart_total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.cart_total h3 {
    font-size: 16px;
    font-weight: 500;
}

.cart_total #total_price {
    font-size: 16px;
    font-weight: 600;
    color: red;
}

.buttom_card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.buttom_card .counts {
    width: 100px;
    height: 30px;
    border: 2px solid rgb(134 134 134 / 50%);
    text-align: center;
    display: inline-block;
    position: relative;
    margin-right: 20px;
    touch-action: manipulation;
}

.buttom_card .counts_btns {
    position: absolute;
    display: block;
    padding: 0;
    top: 0;
    width: 30px;
    height: 30px;
    border: 0;
    background-color: transparent;
    color: rgb(134 134 134 / 50%);
    font-size: 24px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.buttom_card .minus {
    left: 0;
    text-align: left;
    padding-left: 15px;
}

.buttom_card .plus {
    right: 0;
    text-align: right;
    padding-right: 15px;
}

.buttom_card .product_count {
    width: 35px;
    border: 0px;
    height: 30px;
    background: 0px 0px;
    padding: 0;
    font-weight: 400;
    font-size: 14px;
    color: #000;
    text-align: center;
    margin-left: 0 !important;
}

.buttom_card .product_count:focus {
    outline: none;
}

.closeCart {
    background-color: rgb(134 134 134 / 14%);
    width: 37px;
    height: 37px;
    line-height: 37px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.closeCart ion-icon {
    font-size: 18px;
    font-weight: 400;
}

.btn_control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 5px;
}

.btn_control .checkout,
.btn_control .viewCart {
    text-transform: uppercase;
    font-size: 12px;
    transition: .25s ease-in-out !important;
    font-weight: 500;
    height: 48px;
    padding: 0 25px;
    min-width: 120px;
    width: calc(50% - 5px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn_control .viewCart {
    background-color: #fff;
    border: 1px solid #000000;
}

.btn_control .checkout:hover,
.btn_control .viewCart:hover {
    background-color: #0ec1ae;
    color: #fff;
    border: 1px solid #fff;
}

.btn_control .checkout {
    background-color: #000;
    color: #fff;
    border: none;
}

/* ------------------------ footer ----------------------- */
.footer {
    background-color: #fff;
    padding: 4% 8%;
}

.black-footer {
    background-color: #000000;
    color: #fff;
}

.footer .footer-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-top .footer-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-top .footer-logo p {
    font-size: 20px;
    color: #868686;
    margin: 12px 0;
}

.footer-top .footer-list {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.footer-list h4 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #222;
}

.footer-list ul li {
    margin: 20px 0;
    color: #868686;
}

.footer-bottom {
    margin-top: 20px;
    text-align: center;
}

.footer-company-name ion-icon {
    color: red;
    transition: all 0.4s;
    animation: heart 1s infinite;
    -webkit-animation: heart 1s infinite;
}

.footer-bottom #author {
    font-size: 18px;
    color: #097a6e;
    transition: 0.4s;
}

.footer-bottom #author:hover {
    color: #696969;
}

.productDetails .details #btn_add{
    margin: 20px 0;
}

/* Large screens */
@media (min-width: 1200px) {
    .information {
        flex-wrap: nowrap;
    }

    /* for home page section top product */
    .products {
        grid-template-columns: repeat(4, 1fr);
    }

    /* for products page */
    .products .content {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Medium screens */
@media (min-width: 768px) and (max-width: 1199px) {
    .slide .text h2 {
        font-size: 40px;
        font-weight: 400;
    }

    .information {
        flex-wrap: wrap;
    }

    .info {
        width: 50%;
        justify-content: flex-start;
    }

    /* for home page section top product */
    .products {
        grid-template-columns: repeat(3, 1fr);
    }

    /* for products page */
    .products .content {
        grid-template-columns: repeat(2, 1fr);
    }

    .productDetails .details .buttons {
        flex-wrap: wrap;
    }

    .productDetails .details #btn_add {
        width: 100%;
        margin-top: 20px;
    }

    .collection-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .news.hight {
        height: 300px;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer .footer-top {
        flex-wrap: wrap;
    }
}

/* Small screens */
@media (max-width: 767px) {
    main {
        padding: 4%;
    }

    .header_top ion-icon {
        font-size: 32px;
    }

    .header_top img {
        width: 80px;
    }

    .slider {
        display: none;
    }

    .hero_for_phone {
        display: block;
        width: 100%;
        height: 350px;
    }

    .hero_for_phone .hero-content::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.521);
    }

    .hero_for_phone .hero-content {
        width: 100%;
        height: 350px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 100px;
        position: relative;
        margin-top: 100px;
    }

    .hero_for_phone .hero-content img {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        object-fit: cover;
        object-position: 80% center;
    }

    .hero_for_phone .text {
        position: relative;
        left: -60px;
        top: 0;
        z-index: 20;
        color: white;
        width: 100%;
    }

    .hero_for_phone .text h2 {
        font-size: 28px;
        font-weight: 400;
    }

    .hero_for_phone p {
        width: 200px;
        font-size: 10px;
        font-weight: 300;
        color: #ffffff;
    }

    .hero_for_phone .shop-btn {
        margin-top: 20px;
        background-color: transparent;
        color: #ffffff;
        border: 1px solid #979797;
        padding: 10px;
        width: 120px;
    }

    .information {
        flex-direction: column;
    }

    .info {
        width: 100%;
        justify-content: flex-start;
    }

    .info .info-icon img {
        width: 60px;
    }

    .info .info-text h3 {
        font-size: 20px;
    }

    /* for home page section top product */
    .top_products .products {
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
    }

    /* for products page */
    .products .content {
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
    }

    .productDetails {
        gap: 40px;
    }

    .collection-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cart-section {
        width: 80%;
    }

    .btn_control {
        flex-direction: column;
    }

    .btn_control .viewCart {
        margin-bottom: 12px;
        color: #000;
    }

    .btn_control .checkout,
    .btn_control .viewCart {
        width: 100%;
    }

    .news.hight {
        height: 300px;
        flex-wrap: wrap;
        gap: 20px;
    }

    .news .Subscribe-form {
        width: 100%;
        margin-bottom: 20px;
    }

    .news .Subscribe-form input {
        width: 100%;
    }

    .footer .footer-top {
        flex-wrap: wrap;
    }

    .footer .footer-top .footer-list {
        flex-wrap: wrap;
        gap: 40px;
    }

    .productDetails .details .buttons {
        flex-wrap: wrap;
    }

    .productDetails .details #btn_add {
        width: 100%;
        margin: 20px 0;
    }

    .productDetails {
        grid-template-columns: 1fr;
    }

    .toast-overlay {
        top: -1000px;
    }

    .toast-overlay.show {
        top: 300px;
    }

    .cart_page .content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .cart_products {
        padding-right: 0;
    }

    .collection-card {
        min-height: 450px;
    }
}

/* to remove updown from input number */
/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}


/* Customizable proucts */
/* Customizable Products Section */
.custom_products {
    padding: 60px 0;
    background: #f9fffc;
    text-align: center;
}

.custom_products .header {
    margin-bottom: 40px;
}

.custom_products .header h3 {
    font-size: 32px;
    font-weight: 700;
    color: #2b7a4b;
    margin-bottom: 10px;
}

.custom_products .header p {
    font-size: 16px;
    color: #4d4d4d;
}

/* Product Grid */
.custom_products .products {
    display: flex;  
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* Product Card Styling */
.custom_products .product-card {
    width: 300px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 767px){
    .custom_products .product-card {
        width: 45%;
    }
}

.custom_products .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.custom_products .card-img-trend {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.custom_products .card-img-trend img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.custom_products .card-img-trend img:hover {
    transform: scale(1.05);
}

.custom_products .addToCart {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #2b7a4b;
    padding: 8px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.custom_products .addToCart:hover {
    background: #1f5e39;
}

.custom_products .card-info {
    padding: 15px;
}

.custom_products .product-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    cursor: pointer;
}

.custom_products .product-price {
    font-size: 16px;
    font-weight: 500;
    color: #2b7a4b;
}

.custom_products .btn-customize {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #2b7a4b;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.custom_products .btn-customize:hover {
    background-color: #1f5e39;
}


/* Hamburger */

#hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

#hamburger .close-icon {
    display: none;
}

#hamburger.active .open-icon {
    display: none;
}

#hamburger.active .close-icon {
    display: block;
}

@media (max-width: 767px) {
    #navbar {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        padding: 20px 8%;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        margin-top: 20px;
    }

    #navbar.active {
        display: block;
    }

    #navbar menu ul {
        flex-direction: column;
        align-items: flex-start;
    }

    #navbar menu ul li {
        margin: 10px 0;
    }

    #hamburger {
        display: block;
        order: 3;
        margin-top: 5px;
    }

    .header_top {
        padding: 30px 5%;
    }

    .header_social {
        order: 2;
        margin-right: -20px;
        margin-top: 10px;
    }

    #logo {
        order: 1;
        width: 120px;
        height: 50px;
    }

    .open-icon {
        font-size: 20px;
    }
}

.overlay {
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* HTML: <div class="loader"></div> */
.loader {
    width: fit-content;
    font-size: 40px;
    font-family: monospace;
    font-weight: bold;
    text-transform: uppercase;
    color: #0000;
    -webkit-text-stroke: 1px #000;
    --g: conic-gradient(#000 0 0) no-repeat text;

    background:
        var(--g) 0ch, var(--g) 1ch, var(--g) 2ch, var(--g) 3ch, var(--g) 4ch, var(--g) 5ch,
        var(--g) 6ch, var(--g) 7ch, var(--g) 8ch, var(--g) 9ch, var(--g) 10ch, var(--g) 11ch,
        var(--g) 12ch, var(--g) 13ch, var(--g) 14ch, var(--g) 15ch, var(--g) 16ch, var(--g) 17ch;

    animation:
        l18-0 4s linear infinite alternate,
        l18-1 6s linear infinite;
}

.loader:before {
    content: "Vidhi Delineation";
}

@media (max-width: 767px){
    .loader{
        font-size: 30px;
    }
}

@keyframes l18-0 {
    0% {
        background-size:
            1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0,
            1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0,
            1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0;
    }

    5.55% {
        background-size:
            1ch 100%, 1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0,
            1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0,
            1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0;
    }

    11.1% {
        background-size:
            1ch 100%, 1ch 100%, 1ch 0, 1ch 0, 1ch 0, 1ch 0,
            1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0,
            1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0;
    }

    16.65% {
        background-size:
            1ch 100%, 1ch 100%, 1ch 100%, 1ch 0, 1ch 0, 1ch 0,
            1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0,
            1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0;
    }

    22.2% {
        background-size:
            1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 0, 1ch 0,
            1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0,
            1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0;
    }

    27.75% {
        background-size:
            1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 0,
            1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0,
            1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0;
    }

    33.3% {
        background-size:
            1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%,
            1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0,
            1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0;
    }

    38.85% {
        background-size:
            1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%,
            1ch 100%, 1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0,
            1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0;
    }

    44.4% {
        background-size:
            1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%,
            1ch 100%, 1ch 100%, 1ch 0, 1ch 0, 1ch 0, 1ch 0,
            1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0;
    }

    50% {
        background-size:
            1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%,
            1ch 100%, 1ch 100%, 1ch 100%, 1ch 0, 1ch 0, 1ch 0,
            1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0;
    }

    55.55% {
        background-size:
            1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%,
            1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 0, 1ch 0,
            1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0;
    }

    61.1% {
        background-size:
            1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%,
            1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 0,
            1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0;
    }

    66.65% {
        background-size:
            1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%,
            1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%,
            1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0;
    }

    72.2% {
        background-size:
            1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%,
            1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%,
            1ch 100%, 1ch 0, 1ch 0, 1ch 0, 1ch 0, 1ch 0;
    }

    77.75% {
        background-size:
            1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%,
            1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%,
            1ch 100%, 1ch 100%, 1ch 0, 1ch 0, 1ch 0, 1ch 0;
    }

    83.3% {
        background-size:
            1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%,
            1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%,
            1ch 100%, 1ch 100%, 1ch 100%, 1ch 0, 1ch 0, 1ch 0;
    }

    88.85% {
        background-size:
            1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%,
            1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%,
            1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 0, 1ch 0;
    }

    94.4% {
        background-size:
            1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%,
            1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%,
            1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 0;
    }

    100% {
        background-size:
            1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%,
            1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%,
            1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%, 1ch 100%;
    }
}

@keyframes l18-1 {

    0%,
    50% {
        background-position-y: 100%;
    }

    50.01%,
    to {
        background-position-y: 0;
    }
}



/* Entry Card */
.overlay-meet {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99;
    animation: fadeIn 0.3s ease forwards;
}

.overlay-meet.closing {
    animation: fadeOut 0.3s ease forwards;
}

.card-meet {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    max-width: 800px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-height: 400px;
    animation: cardEntry 0.4s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.card-meet.exit {
    animation: cardExit 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
}

.left-content-meet {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.right-content-meet {
    flex: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-left: 20px;
}

.product-image-meet {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.close-btn-meet {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(228, 228, 228, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    z-index: 100;
    font-size: 1.8rem;
}

.close-btn-meet:hover {
    background: #fff;
    transform: rotate(90deg);
}

.btn-shop-meet {
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    align-self: flex-start;
    text-decoration: none;
}

.btn-shop-meet:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.offer-title-meet {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.offer-text-meet {
    color: #34495e;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes cardEntry {
    from {
        transform: translateY(50px) scale(0.95);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes cardExit {
    from {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    to {
        transform: translateY(50px) scale(0.95);
        opacity: 0;
    }
}

/* Confetti Animation Styles */
.confetti-meet {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    overflow: hidden;
}

.confetti-meet span {
    position: absolute;
    animation: confettiFall 3s linear forwards;
    font-size: 24px;
    user-select: none;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-50px) rotate(0deg) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateY(100vh) rotate(360deg) scale(0.5);
        opacity: 0;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .card-meet {
        flex-direction: column;
        min-height: auto;
        padding: 20px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .right-content-meet {
        margin-left: 0;
        margin-top: 15px;
        height: 200px;
    }

    .left-content-meet {
        padding: 15px 0;
    }

    .offer-title-meet {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .offer-text-meet {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .close-btn-meet {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .btn-shop-meet {
        padding: 10px 20px;
        font-size: 14px;
        margin: 10px auto;
    }
}

/* Popper Origin Indicator (hidden) */
.popper-origin {
    position: fixed;
    left: 10%;
    bottom: 0;
    opacity: 0;
}


/* Swiper */

.meet-swiper {
    width: 100%;
    height: 100vh;
}

.meet-slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.197);
}

.meet-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Desktop images */
.meet-slide-1 .meet-slide-bg {
    background-image: url('../images/Banner/Banner4.jpg');
}

.meet-slide-2 .meet-slide-bg {
    background-image: url('../images/Banner/Banner2-1.jpg');
    background-size: cover;
}

.meet-slide-3 .meet-slide-bg {
    background-image: url('../images/Banner/bespoke.jpg');
}

/* Mobile images */
@media (max-width: 768px) {
    .meet-slide-1 .meet-slide-bg {
    background-image: url('../images/Banner/Banner1.JPG');
    background-position: -200px;
}

.meet-slide-2 .meet-slide-bg {
    background-image: url('../images/Banner/Banner2-1.jpg');
    background-position: -400px;
}

.meet-slide-3 .meet-slide-bg {
    background-image: url('../images/Banner/bespoke.jpg');
}
}

.meet-slide-content {
    position: absolute;
    z-index: 2;
    color: white;
    width: 50%;
    max-width: 600px;
    padding: 2rem;
    top: 50%;
    transform: translateY(-50%);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.meet-slide-1 .meet-slide-content,
.meet-slide-3 .meet-slide-content {
    right: 0;
}

.meet-slide-2 .meet-slide-content{
    left: 10%;
}

.meet-slide-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.3s;
}

.meet-slide-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.5s;
}

.meet-slide-button {
    display: inline-block;
    /* background: linear-gradient(135deg, #00c6ff, #0072ff); */
    background: linear-gradient(135deg, #1a9c8e, #03584f);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 30px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    /* box-shadow: 0 4px 15px rgba(0, 114, 255, 0.5); */
     box-shadow:
    0 4px 10px rgba(3, 88, 79, 0.6),    /* from #03584f */
    0 8px 30px rgba(26, 156, 142, 0.3); 
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.7s;
}

.meet-slide-button:hover {
    transform: translateY(-5px) scale(1.05);
    /* box-shadow: 0 10px 20px rgba(0, 114, 255, 0.6); */
     box-shadow:
    0 4px 10px rgba(3, 190, 171, 0.6),    /* from #03584f */
    0 8px 30px rgba(31, 214, 196, 0.3); 
}

.swiper-slide-active .meet-slide-title,
.swiper-slide-active .meet-slide-description,
.swiper-slide-active .meet-slide-button {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation arrows - using Swiper's default classes */
.swiper-button-prev,
.swiper-button-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

/* Hide Swiper's default arrow icons */
.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

/* Pagination dots - using Swiper's default classes */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: white;
    transform: scale(1.3);
}

.meet-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

@media (max-width: 768px) {
    
    .meet-slide-content{
        top: 70%;
    }
    .meet-slide-content {
        width: 80%;
        padding: 1rem;
        left: 50% !important;
        right: auto !important;
        transform: translate(-50%, -50%) !important;
        text-align: center;
    }

    .meet-slide-title {
        font-size: 2rem;
    }

    .meet-slide-description {
        font-size: 1rem;
    }
    
    .meet-slide-button{
        font-size: 10px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}


/* Old vs New Prices */
.prices{
    display: flex;
    align-self: center;
    justify-content: center;
    gap: 10px;
}



.old-price{
    text-decoration: line-through;
    color: red;
    font-weight: 400;
}


/* Single Page Note */
/* Add this CSS to your stylesheet */
.product-note {
  display: flex;
  gap: 15px;
  background-color: #f8f9fa;
  border-left: 4px solid #c73d4a;
  padding: 15px;
  /* margin-top: 25px; */
  border-radius: 0 4px 4px 0;
}

.product-note i {
  color: #c73d4a;
  font-size: 24px;
  min-width: 24px;
  margin-top: 3px;
}

.product-note p {
  margin: 0;
  color: #16181a;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  font-style: italic;
}
