body {
    margin: 0px;
}

* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden !important;
}

html {
    scroll-behavior: smooth !important;
}




a {
    text-decoration: none !important;
    font-family: "Poppins", sans-serif;
}

h1 {
    font-family: "Poppins", sans-serif;
}

h2 {
    font-family: "Poppins", sans-serif;
}

h3 {
    font-family: "Poppins", sans-serif;
}

h4 {
    font-family: "Poppins", sans-serif;
}

h5 {
    font-family: "Poppins", sans-serif;
}

h6 {
    font-family: "Poppins", sans-serif;
}

p {
    font-family: "Poppins", sans-serif;
}

/* tag font end */

/* .sticky-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
} */



/* header start */

.navbar-custom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 20px 0;
    background: transparent;
}

.navbar-brand img {
    height: 80px;
}

.navbar-nav {
    gap: 10px;
}

.navbar-nav .nav-link {
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    padding: 10px 18px !important;
    transition: 0.3s;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #f1cf76;
}

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

.ecommerce-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(241,207,118,0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
    transition: 0.3s;
    backdrop-filter: blur(10px);
}

.icon-btn:hover {
    background: #f1cf76;
    color: #000000;
    transform: translateY(-3px);
}

.icon-btn span {
    position: absolute;
    top: -5px;
    right: -3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #f1cf76;
    color: #000000;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler {
    border: 0;
    box-shadow: none !important;
    color: #ffffff;
    font-size: 26px;
    padding: 0;
}


.offcanvas {
    background: #0c0c0c;
    width: 300px !important;
}

.offcanvas-header {
    padding: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-logo {
    height: 45px;
}

.mobile-menu {
    padding: 0;
    margin: 0;
    list-style: none;
}

.mobile-menu li {
    margin-bottom: 10px;
}

.mobile-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    padding: 14px 18px;
    border-radius: 10px;
    display: block;
    transition: 0.3s;
    background: rgba(255,255,255,0.03);
}

.mobile-menu li a:hover {
    background: #f1cf76;
    color: #000000;
}

/* header end */



/* banner start */

.hero-banner {
    position: relative;
    overflow: hidden;
    padding: 130px 0 20px;
    background:
        linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.85)),
        url('..//image/banner-bg.jpg') no-repeat;

    /* background:
    linear-gradient(rgba(0,0,0,0.88), rgba(0,0,0,0.88)),
    url('..//image/banner-bg.jpg') no-repeat; */
    background-size: cover;
    background-position: center;
}

/* Shapes */

.hero-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.shape-1 {
    width: 350px;
    height: 350px;
    background: rgba(241,207,118,0.08);
    top: -120px;
    left: -120px;
    filter: blur(20px);
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(241,207,118,0.05);
    bottom: -120px;
    right: -120px;
    filter: blur(20px);
}

/* Content */

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    display: inline-block;
    background: rgba(241,207,118,0.12);
    border: 1px solid rgba(241,207,118,0.2);
    color: #f1cf76;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 25px;
}

.hero-content h1 {
    font-size: 50px;
    line-height: 1.3;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: "Libre Baskerville", serif;
}

.hero-content h1 span {
    color: #f1cf76;
}

.hero-content p {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255,255,255,0.72);
    margin-bottom: 28px;
    max-width: 580px;
}

/* Buttons */

.hero-btns {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.theme-btn {
    background: #f1cf76;
    color: #000000;
    padding: 16px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    /* font-weight: 600; */
    transition: 0.3s;
}

.theme-btn:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-4px);
}

.border-btn {
    border: 1px solid rgba(241,207,118,0.35);
    color: #ffffff;
    padding: 16px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
    background: rgba(255,255,255,0.03);
}

.border-btn:hover {
    background: #f1cf76;
    color: #000000;
}

/* Features */

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 15px;
}

.feature-item i {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(241,207,118,0.12);
    border: 1px solid rgba(241,207,118,0.2);
    color: #f1cf76;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Image */

.hero-image {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 580px;
    animation: floatImage 5s ease-in-out infinite;
}

/* Floating Cards */

.floating-card {
    position: absolute;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(241,207,118,0.15);
    backdrop-filter: blur(15px);
    padding: 15px 20px;
    border-radius: 16px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card i {
    color: #f1cf76;
}

.card-1 {
    top: 18%;
    left: 0;
}

.card-2 {
    bottom: 12%;
    right: 0;
}

/* Animations */

@keyframes floatImage {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-18px);
    }

    100% {
        transform: translateY(0px);
    }

}

@keyframes floatCard {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }

}

/* =========================
        RESPONSIVE
========================= */

@media (max-width: 991px) {

    .navbar-collapse {
        display: none !important;
    }

    .hero-banner {
        padding: 150px 0 80px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-image {
        margin-top: 60px;
    }

    .card-1 {
        left: 20px;
    }

    .card-2 {
        right: 20px;
    }

}

@media (max-width: 576px) {

    .navbar-brand img {
        height: 60px;
        /* height: 45px; */
    }

    .ecommerce-icons {
        gap: 8px;
    }

    .icon-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .hero-banner {
        padding: 130px 0 5px;
    }

    .hero-content h1 {
        font-size: 35px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-btns {
        flex-wrap: nowrap;
    }

    .theme-btn,
    .border-btn {
        width: 100%;
        text-align: center;
        padding: 14px 10px;
        font-size: 14px;
    }

    .hero-features {
        gap: 15px;
    }

    .hero-features{
        display: none;
    }

    .hero-image {
        margin-top: 0px;
    }

    .feature-item {
        width: 100%;
        justify-content: center;
    }

    .floating-card {
        font-size: 12px;
        padding: 12px 14px;
    }

    .card-1 {
        top: 10%;
        left: 10px;
    }

    .card-2 {
        right: 10px;
        bottom: 8%;
    }

}



@media(max-width:375px){

        .hero-content h1 {
        font-size: 30px;
    }


    .theme-btn, .border-btn {
        font-size: 11px;
    }
}

/* banner end */



/* footer start */



.footer-section{
    background: #000000;
    padding-top: 70px;
    position: relative;
    overflow: hidden;
}

/* Gold Glow */

.footer-section::before{
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(241, 207, 118, 0.05);
    border-radius: 50%;
    top: -120px;
    left: -120px;
}

/* Footer Top */

.footer-top{
    padding-bottom: 45px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Footer Logo */

.footer-logo{
    display: inline-block;
}

.footer-logo img{
    max-width: 130px;
    margin-bottom: 18px;
}

/* About Text */

.footer-box p{
    color: rgba(255,255,255,0.68);
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 28px;
}

/* Footer Heading */

.footer-box h4{
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 28px;
    position: relative;
    font-family: "Josefin Sans", sans-serif;
}

/* Gold Line */

.footer-box h4::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 38px;
    height: 2px;
    background: #f1cf76;
}



.footer-links{
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links li{
    margin-bottom: 14px;
}

.footer-links li a{
    color: rgba(255,255,255,0.70);
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s ease;
}

.footer-links li a:hover{
    color: #f1cf76;
    padding-left: 5px;
}



.footer-social{
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social a{
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s ease;
}

.footer-social a:hover{
    background: #f1cf76;
    color: #000000;
    transform: translateY(-3px);
}



.footer-contact{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Contact Item */

.contact-item{
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Small Icon */

.contact-icon{
    width: 35px;
    height: 35px;
    background-color: #f1cf76;
    min-width: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon */

.contact-icon i{
    color: #000000;
    font-size: 15px;
}

/* Contact Text */

.contact-text{
    color: rgba(255,255,255,0.72);
    font-size: 15px;
    line-height: 1.7;
}



.footer-bottom{
    padding: 22px 0;
}

/* Copyright */

.copyright-text{
    color: rgba(255,255,255,0.60);
    font-size: 14px;
    margin: 0;
}

/* Powered */

.footer-powered{
    text-align: right;
}

.footer-powered a{
    color: rgba(255, 255, 255, 0.70);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-powered a:hover{
    color: #f1cf76;
}



@media(max-width:991px){

    .footer-powered{
        text-align: left;
        margin-top: 10px;
    }

}

@media(max-width:767px){

    .footer-section{
        padding-top: 55px;
    }

    .footer-bottom{
        text-align: center;
    }

    .footer-powered{
        text-align: center;
        margin-top: 10px;
    }

}

@media(max-width:576px){

    .footer-logo img{
        max-width: 150px;
    }

    .footer-box h4{
        font-size: 19px;
    }

    .footer-box p,
    .footer-links li a,
    .contact-text,
    .copyright-text,
    .footer-powered a{
        font-size: 13px;
    }

    .footer-social a{
        width: 34px;
        height: 34px;
        font-size: 12px;
    }

    .contact-item{
        gap: 8px;
    }

    .contact-icon{
        width: 18px;
        height: 18px;
        min-width: 18px;
    }

    .contact-icon i{
        font-size: 11px;
    }

}

/* footer end */








/* bootom to top */

.back-to-top {
    position: fixed;
    right: 15px;
    bottom: 3%;
    width: 40px;
    height: 40px;
    background: #f1cf76;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    z-index: 999;
}
/* end */





/* product category */



.product-category-section {
    padding: 60px 0;
    background: #ffffff;
}

.category-section-title {
    margin-bottom: 35px;
}

.category-section-title h2 {
    font-size: 35px;
    font-weight: 600;
    color: #000000;
    font-family: "Libre Baskerville", serif;
}

.category-section-title h2 span {
    color: #f1cf76;
}

/* Category Card */

.category-box {
    text-align: center;
    transition: 0.4s ease;
    text-decoration: none;
    display: block;
    background: #ffffff;
    border-radius: 18px;
    /* padding: 25px 15px; */
    padding: 10px;
    border: 1px solid #f3f3f3;
    height: 100%;
    box-shadow: 0 5px 25px rgba(0,0,0,0.04);
}

.category-box:hover {
    transform: translateY(-8px);
    border-color: rgba(241, 207, 118, 0.45);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* Image */

.category-img {
    /* width: 130px;
    height: 130px; */
    width: 100%;
    height: 150px;
    margin: auto;
    border-radius: 14px;
    overflow: hidden;
    border: 3px solid #f7f7f7;
    background: #fafafa;
    transition: 0.4s ease;
}

.category-box:hover .category-img {
    border-color: #f1cf76;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.category-box:hover .category-img img {
    transform: scale(1.08);
}

/* Name */

.category-box h5 {
    margin-top: 18px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    transition: 0.3s;
}

.category-box:hover h5 {
    color: #f1cf76;
}

/* Button */

.category-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f1cf76;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.category-btn i {
    transition: 0.3s;
}

.category-box:hover .category-btn i {
    transform: translateX(5px);
}

.category-btn:hover {
    color: #000000;
}

/* Mobile */

@media (max-width: 768px) {

    .product-category-section {
        padding: 50px 0;
    }

    .category-section-title h2 {
        font-size: 30px;
    }

    .category-box {
        /* padding: 20px 12px; */
        padding: 10px;
    }

    /* .category-img {
        width: 110px;
        height: 110px;
    } */

    .category-box h5 {
        font-size: 15px;
    }

}


@media(max-width:450px){
    .category-box h5 {
        margin-top: 10px;
        margin-bottom: 3px;
    }

    .category-section-title h2{
        font-size: 25px;
    }
}

@media(max-width:375px){
    .category-img{
        height: 100px;
        object-fit: cover;
    }
}

/* product category end */


/* product card section start */


.products-section {
    padding: 40px 0;
    /* background: #f8f8f8; */
    overflow: hidden;
}

/* Heading */

.category-head {
    margin-bottom: 35px;
}

.category-head h2 {
    font-size: 26px;
    font-weight: 500;
    color: #000000;
    position: relative;
    display: inline-block;
    padding-left: 18px;
    font-family: "Josefin Sans", sans-serif;
}

.category-head h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 6px;
    height: 85%;
    background: #f1cf76;
    border-radius: 50px;
}

/* Product Card */

.product-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    height: 100%;
    transition: 0.4s ease;
    border: 1px solid #eeeeee;
    box-shadow: 0 5px 18px rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.10);
}

/* Product Image */

.product-img {
    position: relative;
    overflow: hidden;
    display: block;
}

.product-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.4s ease;
}

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

/* Badge */

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #f1cf76;
    color: #000000;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
}

/* Content */

.product-content {
    padding: 22px;
}

/* Product Name */

.product-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
    line-height: 1.4;
    
}

/* Description */

.product-content p {
    font-size: 14px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Rating */

.product-rating {
    font-size: 14px;
    color: #ffb400;
    margin-bottom: 16px;
    font-weight: 600;
}

.product-rating span {
    color: #777777;
    margin-left: 5px;
}

/* Price */

.product-price {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 20px;
}

.product-price span {
    font-size: 15px;
    color: #999999;
    text-decoration: line-through;
    margin-left: 8px;
    font-weight: 400;
}

/* Button Row */

.product-btns {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Add Cart Button */

.product-cart-btn {
    width: 50%;
    height: 48px;
    border: none;
    background: #f1cf76;
    color: #000000;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 400;
    transition: 0.3s ease;
    cursor: pointer;
}

.product-cart-btn:hover {
    background: #000000;
    color: #ffffff;
}

/* WhatsApp Button */

.product-whatsapp-btn {
    width: 50%;
    height: 48px;
    background: #25d366;
    color: #ffffff !important;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 400;
    transition: 0.3s ease;
}

.product-whatsapp-btn:hover {
    background: #000000;
    color: #ffffff !important;
}

/* Responsive */

@media(max-width:991px) {

    .product-img img {
        height: 260px;
    }

}

@media(max-width:767px) {

    .products-section {
        padding: 50px 0;
    }

    .category-head h2 {
        font-size: 30px;
    }

    .product-img img {
        height: 240px;
    }

}

@media(max-width:576px) {

    .product-btns {
        gap: 8px;
    }

    .product-cart-btn,
    .product-whatsapp-btn {
        height: 45px;
        font-size: 13px;
    }

}


@media(max-width:432px) {
    .category-head h2{
        font-size: 25px;
    }
}




/* product card section end */





/* offer card section start */


.offer-card-section {
    padding: 60px 0;
    background: #ffffff;
    overflow: hidden;
}

/* Offer Card */

.offer-card {
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 35px;
    position: relative;
    text-decoration: none;
    min-height: 300px;
    transition: 0.4s ease;
    height: 100%;
}

/* Hover */

.offer-card:hover {
    transform: translateY(-8px);
}

/* Gold Card */

.gold-card {
    background:
        linear-gradient(rgba(0,0,0,0.20),
        rgba(0,0,0,0.20)),
        #f1cf76;
}

/* Black Card */

.black-card {
    background:
        linear-gradient(rgba(0,0,0,0.10),
        rgba(0,0,0,0.10)),
        #000000;
}

/* Decorative Circle */

.offer-card::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    top: -90px;
    right: -90px;
    z-index: 1;
}

/* Small Blur Shape */

.offer-card::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    bottom: -40px;
    left: -40px;
    z-index: 1;
}

/* Content */

.offer-content {
    width: 52%;
    position: relative;
    z-index: 2;
}

/* Subtitle */

.offer-content span {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    display: inline-block;
    margin-bottom: 14px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

/* Heading */

.offer-content h3 {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    font-family: "Josefin Sans", sans-serif;
}

/* Price */

.offer-content h4 {
    font-size: 19px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 26px;
}

/* Button */

.offer-content button {
    border: none;
    background: #000000;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.4s ease;
    cursor: pointer;
}

/* Gold Button For Black Card */

.light-btn {
    background: #f1cf76 !important;
    color: #000000 !important;
}

/* Hover */

.offer-content button:hover {
    transform: translateY(-4px);
    background: #ffffff;
    color: #000000;
}

/* Image */

.offer-image {
    width: 48%;
    text-align: right;
    position: relative;
    z-index: 2;
}

/* Image */

.offer-image img {
    width: 100%;
    max-width: 340px;
    height: 260px;
    object-fit: contain;
    transition: 0.4s ease;
}

/* Image Hover */

.offer-card:hover .offer-image img {
    transform: scale(1.08);
}



@media(max-width:1199px) {

    .offer-content h3 {
        font-size: 32px;
    }

}

@media(max-width:991px) {

    .offer-card {
        padding: 30px;
        min-height: 270px;
    }

    .offer-content h3 {
        font-size: 28px;
    }

    .offer-content h4 {
        font-size: 17px;
    }

    .offer-image img {
        max-width: 280px;
        height: 220px;
    }

}

@media(max-width:767px) {

    .offer-card {
        flex-direction: column;
        text-align: center;
        padding: 35px 25px;
    }

    .offer-content {
        width: 100%;
        margin-bottom: 25px;
    }

    .offer-image {
        width: 100%;
        text-align: center;
    }

    .offer-image img {
        max-width: 280px;
        height: 220px;
    }

    .offer-content h3 {
        font-size: 32px;
    }

    .offer-content h4 {
        font-size: 16px;
    }

}

@media(max-width:576px) {

    .offer-card-section {
        padding: 50px 0;
    }

    .offer-card {
        border-radius: 20px;
        padding: 30px 20px;
    }

    .offer-content h3 {
        font-size: 27px;
    }

    .offer-content span {
        font-size: 13px;
    }

    .offer-content h4 {
        font-size: 15px;
    }

    .offer-image img {
        max-width: 230px;
        height: 180px;
    }

    .offer-content button {
        width: 100%;
        padding: 14px;
        font-size: 14px;
    }

}

/* offer card section end */


/* breadcrumb start */


.breadcrumb-section {
    position: relative;
    padding: 140px 0 50px;
    background: url('..//image/banner-bg.jpg') center/cover no-repeat;
    overflow: hidden;
    z-index: 1;
}

.breadcrumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.82),
            rgba(0, 0, 0, 0.55));
    z-index: -1;
}

.breadcrumb-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: #f1cf76;
    border-radius: 50%;
    top: -180px;
    right: -120px;
    opacity: 0.15;
}

.breadcrumb-section::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border: 2px solid rgba(241, 207, 118, 0.25);
    border-radius: 50%;
    bottom: -100px;
    left: -80px;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
}

.breadcrumb-subtitle {
    display: inline-block;
    background: rgba(241, 207, 118, 0.18);
    color: #f1cf76;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(241, 207, 118, 0.3);
    backdrop-filter: blur(4px);
}

.breadcrumb-content h1 {
    font-size: 60px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.breadcrumb-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.breadcrumb-links a {
    color: #f1cf76;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease;
}

.breadcrumb-links a:hover {
    color: #ffffff;
}

.breadcrumb-links span {
    color: #ffffff;
    font-size: 14px;
}

.breadcrumb-links p {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}

/* RESPONSIVE */

@media (max-width: 991px) {

    .breadcrumb-section {
        padding: 110px 0 90px;
    }

    .breadcrumb-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 576px) {

    .breadcrumb-section {
        padding: 120px 0 49px;
    }

    .breadcrumb-content h1 {
        font-size: 32px;
    }

    .breadcrumb-subtitle {
        font-size: 12px;
        padding: 8px 18px;
    }

    .breadcrumb-links a,
    .breadcrumb-links p {
        font-size: 14px;
    }
}

/* breadcrumb end */



/* about page start */

.about-section {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-tag {
    display: inline-block;
    background: #f1cf76;
    color: #000000;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.about-content h2 {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.4;
    color: #000000;
    margin-bottom: 25px;
    font-family: "Libre Baskerville", serif;
}

.about-content h2 span{
    color: #f1cf76;
}

.about-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #555555;
    margin-bottom: 22px;
}

.about-btns {
    display: flex;
    gap: 18px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.btn-shop {
    background: #f1cf76;
    color: #000000;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 400;
    transition: 0.4s ease;
    border: 2px solid #f1cf76;
}

.btn-shop:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.btn-contact {
    background: transparent;
    color: #000000;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 400;
    border: 2px solid #f1cf76;
    transition: 0.4s ease;
}

.btn-contact:hover {
    background: #f1cf76;
    color: #000000;
}

.about-image-box {
    position: relative;
    text-align: center;
    padding: 40px;
}

.about-circle {
    position: absolute;
    width: 350px;
    height: 350px;
    background: #f1cf76;
    border-radius: 50%;
    top: 20px;
    right: 30px;
    opacity: 0.25;
    z-index: 1;
}

.about-img {
    width: 100%;
    max-width: 500px;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.experience-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #000000;
    color: #ffffff;
    padding: 25px 30px;
    border-radius: 20px;
    z-index: 3;
    max-width: 240px;
    text-align: left;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.experience-box h3 {
    font-size: 25px;
    color: #f1cf76;
    margin-bottom: 8px;
    font-weight: 500;
}

.experience-box p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* RESPONSIVE */

@media (max-width: 991px) {

    .about-section {
        padding: 70px 0;
    }

    .about-content h2 {
        font-size: 38px;
    }

    .about-image-box {
        padding: 20px;
    }

    .experience-box {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 25px;
        max-width: 100%;
    }

    .about-circle {
        width: 250px;
        height: 250px;
        right: 0;
    }
}

@media (max-width: 576px) {

    .about-content h2 {
        font-size: 25px;
        line-height: 1.6;
    }

    .about-btns {
        flex-direction: column;
    }

    .btn-shop,
    .btn-contact {
        width: 100%;
        text-align: center;
    }

    .about-content p {
        font-size: 15px;
    }
}

/* about page end */



/* product detail page */

/* PRODUCT DETAILS */

.product-details-section {
    padding: 90px 0;
    background: #ffffff;
}

.product-gallery {
    position: relative;
}

.main-product-image {
    width: 100%;
    height: 600px;
    background: #f8f8f8;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 25px;
    border: 1px solid #eeeeee;
}

.main-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

/* THUMBNAILS */

.thumbnail-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.thumbnail-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    width: 100%;
}

.thumbnail-slider::-webkit-scrollbar {
    display: none;
}

.thumb {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 18px;
    cursor: pointer;
    border: 2px solid transparent;
    flex-shrink: 0;
    transition: 0.3s ease;
    background: #f8f8f8;
}

.thumb:hover,
.thumb.active {
    border-color: #f1cf76;
    transform: scale(1.05);
}

.thumb-arrow {
    width: 45px;
    height: 45px;
    border: none;
    background: #000000;
    color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s ease;
    flex-shrink: 0;
}

.thumb-arrow:hover {
    background: #f1cf76;
    color: #000000;
}

/* CONTENT */

.product-details-content {
    padding-left: 20px;
}

.product-category {
    display: inline-block;
    /* background: #f1cf76; */
    background: rgba(241, 207, 118, 0.25);
    color: #000000;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.product-details-content h2 {
    font-size: 30px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 20px;
}

.details-rating {
    font-size: 18px;
    color: #f1cf76;
    margin-bottom: 20px;
}

.details-rating span {
    color: #666666;
    margin-left: 10px;
    font-size: 15px;
}

.details-price {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 25px;
}

.details-price span {
    color: #999999;
    text-decoration: line-through;
    font-size: 16px;
    margin-left: 15px;
}

.details-description {
    color: #666666;
    line-height: 1.9;
    margin-bottom: 30px;
}

.product-features {
    margin-bottom: 30px;
}

.product-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #000000;
    font-weight: 500;
}

.product-features .feature-item i {
    width: 28px;
    height: 28px;
    background: #f1cf76;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* QUANTITY */

.quantity-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.quantity-box span {
    font-weight: 600;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid #dddddd;
    border-radius: 50px;
    overflow: hidden;
}

.quantity-controls button {
    width: 45px;
    height: 45px;
    border: none;
    background: #f7f7f7;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
}

.quantity-controls input {
    width: 60px;
    text-align: center;
    border: none;
    outline: none;
    font-weight: 600;
}

/* BUTTONS */

.details-btns {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.details-btns .cart-btn,
.buy-btn {
    padding: 16px 35px;
    border-radius: 50px;
    border: none;
    font-weight: 400;
    cursor: pointer;
    transition: 0.4s ease;
    font-size: 15px;
}

.details-btns .cart-btn {
    background: #000000;
    color: #ffffff;
}

.details-btns .cart-btn:hover {
    background: #f1cf76;
    color: #000000;
}

.details-btns .buy-btn {
    background: #f1cf76;
    color: #000000;
}

.details-btns .buy-btn:hover {
    background: #000000;
    color: #ffffff;
}

/* RESPONSIVE */

@media (max-width: 991px) {

    .main-product-image {
        height: 500px;
    }

    .product-details-content {
        padding-left: 0;
    }

    .product-details-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 576px) {

    .product-details-section {
        padding: 70px 0;
    }

    .main-product-image {
        height: 380px;
    }

    .thumb {
        width: 75px;
        height: 75px;
    }

    .product-details-content h2 {
        font-size: 28px;
    }

    .details-price {
        font-size: 20px;
    }

    .details-btns{
        display: flex;
        justify-content: center;
    }

    /* .details-btns {
        flex-direction: column;
    } */

    /* .details-btns .cart-btn,
    .buy-btn {
        width: 100%;
    } */

    .product-features .feature-item{
        justify-content: left;
    }
}


@media (max-width:375px) {

    .main-product-image {
        height: 250px;
    }

    .details-btns .cart-btn, .buy-btn {
        padding: 15px 23px;
    }
}

/* product detail page end */



/* cart page start */

/* CART PAGE */

.cart-section {
    padding: 90px 0;
    background: #f8f8f8;
}

.cart-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* CART ITEM */

.cart-item {
    background: #ffffff;
    border-radius: 30px;
    padding: 25px;
    display: flex;
    gap: 25px;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: 0.4s ease;
}

.cart-item:hover {
    transform: translateY(-5px);
}

.cart-image {
    width: 180px;
    height: 180px;
    border-radius: 25px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f3f3f3;
}

.cart-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-content {
    width: 100%;
}

.cart-category {
    display: inline-block;
    background: rgba(241, 207, 118, 0.18);
    color: #000000;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.cart-content h4 {
    font-size: 20px;
    color: #000000;
    margin-bottom: 10px;
    font-weight: 500;
}

.cart-price {
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 10px;
}

/* CART BOTTOM */

.cart-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* QUANTITY */

/* QUANTITY BUTTON */

.quantity-controls button {
    width: 45px;
    height: 45px;
    border: none;
    background: #f7f7f7;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    transition: 0.3s ease;
}

.quantity-controls button:hover {
    background: #f1cf76;
    color: #000000;
}

/* INPUT */

.qty-input {
    width: 60px;
    text-align: center;
    border: none;
    outline: none;
    font-weight: 600;
    background: #ffffff;
}

/* REMOVE BUTTON */

.remove-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.08);
    color: red;
    cursor: pointer;
    transition: 0.3s ease;
}

.remove-btn:hover {
    background: red;
    color: #ffffff;
}

/* SUMMARY */

.cart-summary {
    background: #ffffff;
    border-radius: 30px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #000000;
}

/* SUMMARY ITEMS */

.summary-item,
.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.summary-item span,
.summary-item p {
    margin: 0;
    color: #555555;
    font-size: 16px;
}

.summary-total {
    border-top: 1px solid #eeeeee;
    padding-top: 25px;
    margin-top: 10px;
}

.summary-total span {
    font-size: 18px;
    font-weight: 600;
}

.summary-total h4 {
    font-size: 34px;
    color: #000000;
    margin: 0;
    font-weight: 700;
}

/* COUPON */

.coupon-box {
    display: flex;
    margin-top: 30px;
    margin-bottom: 35px;
    overflow: hidden;
    border-radius: 50px;
    border: 1px solid #dddddd;
}

.coupon-box input {
    width: 100%;
    border: none;
    outline: none;
    padding: 16px 20px;
}

.coupon-box button {
    border: none;
    background: #000000;
    color: #ffffff;
    padding: 0 25px;
    font-weight: 600;
    transition: 0.3s ease;
}

.coupon-box button:hover {
    background: #f1cf76;
    color: #000000;
}

/* BUTTONS */

.summary-btns {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkout-btn,
.continue-btn {
    text-decoration: none;
    text-align: center;
    padding: 16px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.4s ease;
}

.checkout-btn {
    background: #000000;
    color: #ffffff;
}

.checkout-btn:hover {
    background: #f1cf76;
    color: #000000;
}

.continue-btn {
    /* background: rgba(241, 207, 118, 0.18); */
    background-color: #f1cf76;
    color: #000000;
}

.continue-btn:hover {
    background: #000000;
    color: #ffffff;
}

/* RESPONSIVE */

@media (max-width: 991px) {

    .cart-summary {
        position: relative;
        top: 0;
    }

    .cart-content h4 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {

    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-image {
        width: 100%;
        height: 300px;
    }

    .cart-content {
        width: 100%;
    }
}

@media (max-width: 576px) {

    .cart-section {
        padding: 70px 0;
    }

    .cart-item {
        padding: 20px;
        border-radius: 25px;
    }

    .cart-image {
        height: 250px;
    }

    .cart-content h4 {
        font-size: 20px;
    }

    .cart-price {
        font-size: 18px;
    }

    .cart-summary {
        padding: 25px;
    }

    .cart-summary h3 {
        font-size: 26px;
    }

    .summary-total h4 {
        font-size: 28px;
    }

    .coupon-box {
        flex-direction: column;
        border-radius: 20px;
    }

    .coupon-box button {
        padding: 14px;
    }
}

/* cart page end */





/* register sign page start */

.register-section {
    padding: 50px 0;
    background: linear-gradient(to right,
            rgba(241, 207, 118, 0.12),
            rgba(0, 0, 0, 0.03));
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.register-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.register-card::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(241, 207, 118, 0.15);
    border-radius: 50%;
    top: -120px;
    right: -100px;
}

.register-top {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
}

.register-tag {
    display: inline-block;
    background: rgba(241, 207, 118, 0.2);
    color: #000000;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.register-top h2 {
    font-size: 35px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 15px;
}

.register-top p {
    color: #666666;
    line-height: 1.8;
    font-size: 15px;
}

/* FORM */

.form-group {
    margin-bottom: 22px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #000000;
}

.form-group input {
    width: 100%;
    height: 58px;
    border-radius: 16px;
    border: 1px solid #dddddd;
    padding: 0 18px;
    outline: none;
    transition: 0.3s ease;
    font-size: 15px;
}

.form-group input:focus {
    border-color: #f1cf76;
    box-shadow: 0 0 0 4px rgba(241, 207, 118, 0.15);
}

/* PASSWORD */

.password-box {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    cursor: pointer;
    color: #666666;
}

/* CHECKBOX */

.register-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
}

.register-check input {
    width: 18px;
    height: 18px;
    accent-color: #f1cf76;
}

.register-check label {
    margin: 0;
    color: #555555;
    font-size: 15px;
}

/* BUTTON */

.register-btn {
    width: 100%;
    height: 58px;
    border: none;
    border-radius: 50px;
    background: #000000;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    transition: 0.4s ease;
}

.register-btn:hover {
    background: #f1cf76;
    color: #000000;
}

/* LOGIN */

.register-login {
    text-align: center;
    margin-top: 30px;
    color: #666666;
}

.register-login a {
    color: #000000;
    font-weight: 600;
    text-decoration: none;
}

.register-login a:hover {
    color: #f1cf76;
}

/* RESPONSIVE */

@media (max-width: 768px) {

    .register-card {
        padding: 35px 25px;
    }

    .register-top h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {

    .register-section {
        padding: 70px 0;
    }

    .register-card {
        border-radius: 25px;
    }

    .register-top h2 {
        font-size: 22px;
    }

    .form-group input {
        height: 54px;
    }
}

/* register page end */


/* login page start */

.login-section {
    padding: 50px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to right,
            rgba(241, 207, 118, 0.12),
            rgba(0, 0, 0, 0.03));
}

.login-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 35px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.login-card::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    background: rgba(241, 207, 118, 0.18);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

/* TOP */

.login-top {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
}

.login-tag {
    display: inline-block;
    background: rgba(241, 207, 118, 0.18);
    color: #000000;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.login-top h2 {
    font-size: 35px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 15px;
}

.login-top p {
    color: #666666;
    line-height: 1.8;
    font-size: 15px;
}

/* FORM */

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #000000;
}

.form-group input {
    width: 100%;
    height: 58px;
    border-radius: 16px;
    border: 1px solid #dddddd;
    padding: 0 18px;
    outline: none;
    transition: 0.3s ease;
    font-size: 15px;
}

.form-group input:focus {
    border-color: #f1cf76;
    box-shadow: 0 0 0 4px rgba(241, 207, 118, 0.15);
}

/* PASSWORD */

.password-box {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    cursor: pointer;
    color: #666666;
    font-size: 15px;
}

/* OPTIONS */

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    gap: 15px;
    flex-wrap: wrap;
}

.remember-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.remember-box input {
    width: 18px;
    height: 18px;
    accent-color: #f1cf76;
}

.remember-box label {
    margin: 0;
    color: #555555;
    font-size: 15px;
}

.forgot-link {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.forgot-link:hover {
    color: #f1cf76;
}

/* BUTTON */

.login-btn {
    width: 100%;
    height: 58px;
    border: none;
    border-radius: 50px;
    background: #000000;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    transition: 0.4s ease;
}

.login-btn:hover {
    background: #f1cf76;
    color: #000000;
}

/* REGISTER */

.register-link {
    text-align: center;
    margin-top: 30px;
    color: #666666;
}

.register-link a {
    color: #000000;
    font-weight: 600;
    text-decoration: none;
}

.register-link a:hover {
    color: #f1cf76;
}

/* RESPONSIVE */

@media (max-width: 768px) {

    .login-card {
        padding: 35px 25px;
    }

    .login-top h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {

    .login-section {
        padding: 70px 0;
    }

    .login-card {
        border-radius: 25px;
    }

    .login-top h2 {
        font-size: 22px;
    }

    .form-group input {
        height: 54px;
    }

    .login-options {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* login page end */



/* buy page */

.checkout-section {
    padding: 90px 0;
    background: #f8f8f8;
}


.checkout-card,
.order-summary {
    background: #ffffff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}


.checkout-title {
    margin-bottom: 35px;
}

.checkout-title span {
    display: inline-block;
    background: rgba(241, 207, 118, 0.18);
    color: #000000;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.checkout-title h2 {
    font-size: 30px;
    font-weight: 500;
    color: #000000;
    margin: 0;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid #dddddd;
    border-radius: 16px;
    padding: 15px 18px;
    outline: none;
    transition: 0.3s ease;
    background: #ffffff;
    font-size: 15px;
}

.form-group input {
    height: 58px;
}

.form-group textarea {
    height: 140px;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #f1cf76;
    box-shadow: 0 0 0 4px rgba(241, 207, 118, 0.15);
}


.summary-product {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid #eeeeee;
}

.summary-image {
    width: 85px;
    height: 85px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f5f5f5;
}

.summary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.summary-content {
    flex: 1;
}

.summary-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
}

.summary-content p {
    margin: 0;
    color: #666666;
    font-size: 15px;
}

.summary-price {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin-left: auto;
    text-align: right;
}


.price-summary {
    margin-top: 30px;
    background: #f9f9f9;
    border-radius: 25px;
    padding: 28px 30px;
    border: 1px solid #eeeeee;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.price-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.price-item:last-child {
    margin-bottom: 0;
}

.price-item span {
    color: #666666;
}

.price-item h6,
.price-item h4 {
    margin: 0;
    font-weight: 700;
}

.total-price {
    padding-top: 18px;
    border-top: 1px solid #eeeeee;
}

/* =========================
   PAYMENT METHOD
========================= */

.payment-method {
    margin-top: 35px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f9f9f9;
    padding: 18px 20px;
    border-radius: 18px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}

.payment-option:hover {
    background: rgba(241, 207, 118, 0.18);
}

.payment-option input {
    width: 18px;
    height: 18px;
    accent-color: #f1cf76;
}

.payment-option span {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
}

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

.place-order-btn {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 50px;
    background: #000000;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    margin-top: 30px;
    transition: 0.4s ease;
    cursor: pointer;
}

.place-order-btn:hover {
    background: #f1cf76;
    color: #000000;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .order-summary {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {

    .checkout-card,
    .order-summary {
        padding: 30px 25px;
    }

    .checkout-title h2 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {

    .checkout-section {
        padding: 70px 0;
    }

    .checkout-card,
    .order-summary {
        padding: 25px 20px;
        border-radius: 25px;
    }

    .summary-product {
        gap: 12px;
    }

    .summary-image {
        width: 75px;
        height: 75px;
    }

    .summary-content h4 {
        font-size: 16px;
    }

    .summary-content p {
        font-size: 14px;
    }

    .summary-price {
        font-size: 18px;
    }

    .checkout-title h2 {
        font-size: 26px;
    }

    .summary-total,
    .price-summary {
        padding: 22px 20px;
    }

    .total-item,
    .price-item {
        margin-bottom: 14px;
    }

    .total-left {
        font-size: 15px;
    }

    .total-right {
        font-size: 16px;
    }

    .grand-left {
        font-size: 20px;
    }

    .grand-right {
        font-size: 30px;
    }

    .payment-option {
        padding: 16px 18px;
    }

    .payment-option span {
        font-size: 15px;
    }

    .place-order-btn {
        height: 56px;
        font-size: 16px;
    }
}

/* buy page end */


/* privacy page */

/* =========================
   PRIVACY SECTION
========================= */

.privacy-section {
    padding: 100px 0;
    background: #f8f8f8;
}

.privacy-wrapper {
    background: #ffffff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* TITLE */

.privacy-title {
    margin-bottom: 50px;
}

.privacy-title span {
    display: inline-block;
    background: rgba(241, 207, 118, 0.18);
    color: #000000;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.privacy-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.privacy-title p {
    font-size: 16px;
    color: #666666;
    line-height: 1.9;
}

/* ITEM */

.privacy-item {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #eeeeee;
}

.privacy-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.privacy-item h3 {
    font-size: 26px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
}

.privacy-item p {
    font-size: 16px;
    color: #666666;
    line-height: 1.9;
}

/* RESPONSIVE */

@media (max-width: 991px) {

    .privacy-wrapper {
        padding: 40px;
    }

    .privacy-title h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {

    .privacy-section {
        padding: 80px 0;
    }

    .privacy-wrapper {
        padding: 30px 25px;
    }

    .privacy-title h2 {
        font-size: 32px;
    }

    .privacy-item h3 {
        font-size: 22px;
    }
}

@media (max-width: 576px) {

    .privacy-section {
        padding: 70px 0;
    }

    .privacy-wrapper {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .privacy-title h2 {
        font-size: 28px;
    }

    .privacy-title p,
    .privacy-item p {
        font-size: 15px;
        line-height: 1.8;
    }

    .privacy-item h3 {
        font-size: 20px;
    }
}

/* privacy page end */




/* contcat page */

/* =========================
   CONTACT SECTION
========================= */

.contact-section {
    padding: 100px 0;
    background: #f8f8f8;
}

/* LEFT BOX */

.contact-info-box {
    background: #000000;
    border-radius: 35px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.contact-info-box::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(241, 207, 118, 0.10);
    border-radius: 50%;
    top: -80px;
    right: -80px;
}

/* TAG */

.contact-tag {
    display: inline-block;
    background: rgba(241, 207, 118, 0.15);
    color: #f1cf76;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* TITLE */

.contact-info-box h2 {
    font-size: 30px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 20px;
}

.contact-info-box p {
    color: #d5d5d5;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 35px;
}

/* CONTACT ITEM */

.contactt-page-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

/* ICON */

.contactt-page-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 18px;
    background: #f1cf76;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ICON STYLE */

.contactt-page-icon i {
    font-size: 22px;
    color: #000000;
}

/* TEXT */

.contactt-page-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

/* PARAGRAPH */

.contactt-page-text p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #d6d6d6;
}

/* LINK */

.contactt-page-text p a {
    color: #d6d6d6;
    text-decoration: none;
    transition: 0.3s ease;
}

/* HOVER */

.contactt-page-text p a:hover {
    color: #f1cf76;
}

/* FORM BOX */

.contact-form-box {
    background: #ffffff;
    border-radius: 35px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* FORM TITLE */

.contact-title {
    margin-bottom: 35px;
}

.contact-title span {
    display: inline-block;
    background: rgba(241, 207, 118, 0.18);
    color: #000000;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-title h2 {
    font-size: 35px;
    font-weight: 500;
    color: #000000;
}

/* FORM */

.form-group {
    margin-bottom: 22px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 18px;
    padding: 16px 18px;
    background: #ffffff;
    outline: none;
    transition: 0.3s ease;
    font-size: 15px;
}

.form-group input {
    height: 58px;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #f1cf76;
    box-shadow: 0 0 0 4px rgba(241, 207, 118, 0.15);
}

/* BUTTON */

.contact-btn {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 50px;
    background: #000000;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    transition: 0.4s ease;
    cursor: pointer;
}

.contact-btn:hover {
    background: #f1cf76;
    color: #000000;
}

/* RESPONSIVE */

@media (max-width: 991px) {

    .contact-form-box {
        margin-top: 20px;
    }

    .contact-info-box h2,
    .contact-title h2 {
        font-size: 34px;
    }
}

@media (max-width: 768px) {

    .contact-section {
        padding: 80px 0;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 35px 25px;
        border-radius: 28px;
    }

    .contact-info-box h2,
    .contact-title h2 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {

    .contact-section {
        padding: 70px 0;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 25px 20px;
        border-radius: 22px;
    }

    .contact-info-box h2,
    .contact-title h2 {
        font-size: 26px;
    }

    .contactt-page-item {
        gap: 14px;
    }

    .contactt-page-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
    }

    .contactt-page-icon i {
        font-size: 18px;
    }

    .contactt-page-text h4 {
        font-size: 16px;
    }

    .contactt-page-text p {
        font-size: 14px;
    }

    .form-group input,
    .form-group textarea {
        border-radius: 15px;
    }

    .contact-btn {
        height: 56px;
        font-size: 15px;
    }
}

/* contact page end */




/* user profile page */

.user-dashboard-section {
        padding: 70px 0;
        background: #ffffff;
    }

    .dashboard-wrapper {
        display: flex;
        gap: 30px;
    }

    /* SIDEBAR */

    .dashboard-sidebar {
        width: 300px;
        background: #000000;
        border-radius: 20px;
        padding: 30px 20px;
        color: #ffffff;
        flex-shrink: 0;
    }

    .profile-box {
        text-align: center;
        margin-bottom: 35px;
    }

    .profile-box img {
        width: 110px;
        height: 110px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid #f1cf76;
        margin-bottom: 15px;
    }

    .profile-box h3 {
        font-size: 24px;
        margin-bottom: 6px;
    }

    .profile-box p {
        color: #f1cf76;
        font-size: 14px;
    }

    .dashboard-menu {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .dashboard-menu li {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 15px 18px;
        border-radius: 12px;
        margin-bottom: 10px;
        cursor: pointer;
        transition: 0.3s;
        font-size: 16px;
    }

    .dashboard-menu li i {
        width: 20px;
    }

    .dashboard-menu li:hover,
    .dashboard-menu li.active {
        background: #f1cf76;
        color: #000000;
    }

    /* CONTENT */

    .dashboard-content {
        flex: 1;
    }

    .dashboard-tab {
        display: none;
    }

    .dashboard-tab.active {
        display: block;
    }

    .dashboard-top {
        margin-bottom: 35px;
    }

    .dashboard-top h2 {
        font-size: 34px;
        margin-bottom: 10px;
        color: #000000;
    }

    .dashboard-top p {
        color: #666;
    }

    /* CARDS */

    .dashboard-cards {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .dash-card {
        background: #ffffff;
        border: 2px solid #f1cf76;
        border-radius: 20px;
        padding: 30px 20px;
        text-align: center;
        transition: 0.3s;
    }

    .dash-card:hover {
        transform: translateY(-5px);
    }

    .dash-card i {
        font-size: 35px;
        color: #000000;
        margin-bottom: 15px;
    }

    .dash-card h4 {
        font-size: 18px;
        margin-bottom: 10px;
        color: #000000;
    }

    .dash-card span {
        font-size: 28px;
        font-weight: 700;
        color: #f1cf76;
    }

    /* CONTENT BOX */

    .content-box {
        background: #ffffff;
        border: 2px solid #f1cf76;
        border-radius: 20px;
        padding: 30px;
    }

    .content-head {
        margin-bottom: 25px;
    }

    .content-head h3 {
        font-size: 28px;
        color: #000000;
    }

    /* ORDER */

    .order-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        border: 1px solid #eee;
        border-radius: 15px;
        margin-bottom: 20px;
    }

    .order-item h4 {
        margin-bottom: 8px;
        color: #000000;
    }

    .order-item p {
        color: #666;
    }

    .status {
        padding: 8px 18px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
    }

    .status.delivered {
        background: #d4f7d9;
        color: green;
    }

    .status.pending {
        background: #fff3d4;
        color: #c98900;
    }

    /* WISHLIST */

    .wishlist-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .wishlist-card {
        border: 1px solid #eee;
        border-radius: 18px;
        padding: 20px;
        text-align: center;
    }

    .wishlist-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 15px;
        margin-bottom: 15px;
    }

    .wishlist-card h4 {
        margin-bottom: 15px;
        color: #000000;
    }

    .wishlist-card button,
    .address-box button,
    .account-form button,
    .support-box a {
        background: #f1cf76;
        color: #000000;
        border: none;
        padding: 13px 24px;
        border-radius: 10px;
        font-weight: 600;
        text-decoration: none;
        display: inline-block;
        transition: 0.3s;
    }

    .wishlist-card button:hover,
    .address-box button:hover,
    .account-form button:hover,
    .support-box a:hover {
        background: #000000;
        color: #ffffff;
    }

    /* ADDRESS */

    .address-box h4 {
        margin-bottom: 15px;
    }

    .address-box p {
        line-height: 1.8;
        margin-bottom: 20px;
        color: #555;
    }

    /* FORM */

    .account-form .form-group {
        margin-bottom: 20px;
    }

    .account-form label {
        display: block;
        margin-bottom: 10px;
        font-weight: 600;
        color: #000000;
    }

    .account-form input {
        width: 100%;
        height: 55px;
        border: 1px solid #ddd;
        border-radius: 12px;
        padding: 0 18px;
        outline: none;
    }

    .account-form input:focus {
        border-color: #f1cf76;
    }

    /* SUPPORT */

    .support-box p {
        margin-bottom: 20px;
        color: #555;
    }

    .support-box a {
        margin-right: 15px;
        margin-top: 10px;
    }

    /* RESPONSIVE */

    @media(max-width:991px) {

        .dashboard-wrapper {
            flex-direction: column;
        }

        .dashboard-sidebar {
            width: 100%;
        }

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

    @media(max-width:767px) {

        .user-dashboard-section {
            padding: 50px 0;
        }

        .dashboard-top h2 {
            font-size: 28px;
        }

        .dashboard-cards,
        .wishlist-grid {
            grid-template-columns: 1fr;
        }

        .order-item {
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
        }

        .content-box {
            padding: 20px;
        }

        .dashboard-menu li {
            font-size: 15px;
        }
    }