.container {
    max-width: 1200px !important;
}

.title-heading {
    font-size: 46px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 22px;
    color: #000;
}

.theme-background {
    background-color: #EDEDED;
}

.f-16 {
    font-size: 16px;
}



.top-header.top-header-dark {
    background-color: #000000 !important;
}

.top-header.top-header-dark .header-contact li {
    color: #ffffff !important
}

.top-header.top-header-dark .header-dropdown li a i {
    color: #667085 !important
}

.pixelstrap a,
.pixelstrap a:hover,
.pixelstrap a:active {
    padding-right: 0px !important;
}


.portfolio-section.metro-section .product-box .product-detail {
    opacity: inherit !important;
    position: inherit !important;
}

.breadcrumb-section {
    padding: 30px 0;
}

.custom-video-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.custom-video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

/* Badge in top-right */
.video-badge {
    position: absolute;
    right: 0px;
    background: black;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 7px 10px;
    z-index: 2;
}





.custom-product-detail {
    padding: 16px;
}

/* Responsive padding */


.name-rating-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    flex-wrap: nowrap;
}



.product-name {
    color: #666;
    margin: 0;
    font-weight: bold;
    font-size: 14px;
}


.rating-stars {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}

.rating-stars i {
    color: gold;
    font-size: 14px;
}



.product-title {
    margin-bottom: 12px;
    min-height: 40px;
}

.product-title a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}



.price-row {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.current-price {
    font-size: 18px;
    font-weight: 800;
    color: #000000;
}

.original-price {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
}




.product-divider {
    background-color: #e5e5e5;
    margin: 0px 0;
}

/* Responsive divider */


.custom-add-to-cart {
    background: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    color: #000;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    min-height: 40px;
    font-weight: 700;
}

.ri-shopping-cart-line {
    background: #ededed;
    padding: 3px 7px;
    border-radius: 5px;
}

.custom-add-to-cart i {
    color: #000;
    /* default icon color */
    transition: all 0.3s ease;
}

.custom-add-to-cart:hover {
    background: #000;
    border-color: #ccc;
    color: #fff;
}

.custom-add-to-cart:hover i {
    color: #000;
    /* change icon color on hover */
}





/* Hover effects only on larger screens */
@media (max-width: 767px) {
    .custom-add-to-cart:hover {
        background: #000;
        border-color: #ccc;
        color: #fff;
    }
}

/* Hover Product Box - Shows details in center on hover */
.hover-product-box {
    position: relative;
    width: 94%;
    margin-bottom: 20px;
    max-width: 100%;
    margin-left: -9px;
}

.hover-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.hover-img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: end;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 12px;
    padding-bottom: 10px;
}

.hover-img-wrapper:hover .hover-overlay {
    opacity: 1;
}

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

.hover-content {
    color: white;
    padding: 2px;
    max-width: 90%;
    width: 90%;
}



.hover-product-title {
    font-size: 18px;
    color: white;
    margin: 0 0 15px 0;
    line-height: 1.3;
}


@media (min-width: 992px) {
    .hover-product-title {
        font-size: 14px;
        margin-bottom: 18px;
    }
}

.hover-price {
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    text-align: left;
    padding-left: 2px;
}

.hover-current-price {
    font-size: 16px;
    color: white;
}

.hover-original-price {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: line-through;
}



.hover-add-to-cart {
    background: #0000007a;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin: 0 auto;
    min-height: 45px;
    width: 100%;
}

.hover-add-to-cart i {
    background: #000;
    transform: translateY(-2px);
}

/* Responsive button for hover */


.hover-add-to-cart:hover:not(:disabled) {
    background: #f0f0f0;
    transform: translateY(-2px);
    color: #000;
}

.hover-add-to-cart:hover:not(:disabled) i {
    background: #dad9d9 !important;
    transform: translateY(-2px);
    color: #000;
}

/* ✅ Disabled state for add to cart button */
.hover-add-to-cart:disabled {
    background: #cccccc;
    color: #666;
    cursor: not-allowed;
    opacity: 0.6;
}

.hover-add-to-cart:disabled i {
    background: #999;
    color: #666;
}

.hover-wishlist {
    position: absolute;
    top: 15px;
    right: 15px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

/* Responsive wishlist for hover */
@media (max-width: 575px) {
    .hover-wishlist {
        width: 35px;
        height: 35px;
        top: 10px;
        right: 10px;
    }
}

.hover-wishlist:hover {
    transform: scale(1.1);
}

.hover-wishlist a {
    color: #fff;
    text-decoration: none;
}

.hover-wishlist i {
    font-size: 20px;
}

/* Responsive wishlist icon */
@media (max-width: 575px) {
    .hover-wishlist i {
        font-size: 14px;
    }
}

/* Disable hover effects on mobile devices */
@media (max-width: 767px) {
    .hover-add-to-cart:hover {
        background: white;
        transform: none;
    }

    .hover-wishlist:hover {
        background: rgba(255, 255, 255, 0.9);
        transform: none;
    }

    .hover-img-wrapper:hover img {
        transform: none;
    }
}

.title-background {
    background: #CE9E40;
    padding: 8px;
    border-radius: 30px;
}

.title-background-white:hover {
    background: #CE9E40;
}

.title-background-white:hover a {
    color: #fff !important;
}

.title-background a {
    color: white !important;
    text-transform: capitalize !important;
}

.title-background-white {
    background: #FFF;
    padding: 8px;
    border-radius: 30px;
}

.title-background-white a {
    color: #000 !important;
    text-transform: capitalize !important;
    transition: all 0.3s ease;
}




.section-background {
    background: #F0F0F09C;
}

.mt-6 {
    margin-top: 2.5rem !important;
}

/* New Arrivals Section Styles */
.arrival-item {
    position: relative;
    border-radius: 12px;
    overflow: visible;
    /* allow image to go outside */
    z-index: 1;
}

.arrival-item .img-wrapper {
    position: relative;
    overflow: visible;
    /* remove clipping */
    height: 578px;
}

.arrival-image {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    /* transition: transform 0.4s ease, box-shadow 0.3s ease; */
    z-index: 2;
    position: relative;
    transform-origin: 65% .5%;
    transition: transform 1s, filter 0.5s ease-out;
}

.arrival-item:hover .arrival-image {
    transform: scale(2);
}

/* Responsive heights for arrival images */
/* @media (max-width: 575px) {
    .arrival-item .img-wrapper {
        height: 300px;
    }
} */

/* @media (min-width: 576px) and (max-width: 767px) {
    .arrival-item .img-wrapper {
        height: 350px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .arrival-item .img-wrapper {
        height: 380px;
    }
} */

/* @media (min-width: 992px) {
    .arrival-item .img-wrapper {
        height: 400px;
    }
} */

.section-free {
    padding: 0 15px;
}

/* Newsletter Section Styles */
.newsletter-section {
    background-color: #F9EFDB !important;
    padding: 60px 0;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 400px;
}

.newsletter-content {
    max-width: 50%;
    padding: 0 40px 0 60px;
    z-index: 2;
}

.newsletter-title {
    font-size: 2.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
    text-transform: capitalize;
}

.newsletter-subtext {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 400;
}

.newsletter-form {
    display: flex;
    gap: 0;
    max-width: 400px;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    background: white;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-button {
    padding: 15px 25px;
    background-color: #333;
    color: white;
    border: none;
    margin-left: 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.newsletter-button:hover {
    background-color: #555;
}

.newsletter-image-wrapper {
    position: absolute;
    right: 0;
    top: 49%;
    transform: translateY(-50%);
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-circle {
    position: absolute;
    width: 350px;
    height: 350px;
    background-color: #E8D5B7;
    border-radius: 50%;
    right: 80px;
    z-index: 1;
}

.newsletter-image {
    position: relative;
    z-index: 2;
    border-radius: 12px;
    right: -96px;
    position: absolute;
    right: 70px;
    z-index: 1;

}

/* Responsive Design */
/* Mobile Fix */
@media (max-width: 992px) {
    .newsletter-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        min-height: auto;
    }

    .newsletter-content {
        max-width: 100%;
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .newsletter-image-wrapper {
        position: relative;
        /* ✅ instead of absolute */
        width: 100%;
        height: auto;
        transform: none;
        top: auto;
        right: auto;
        margin-top: 20px;
        /* ✅ add spacing between text and image */
        display: flex;
        justify-content: center;
    }

    .newsletter-circle {
        width: 250px;
        height: 250px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .newsletter-image {
        position: relative;
        /* ✅ remove absolute positioning */
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 30px 15px;
    }

    .newsletter-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .newsletter-subtext {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .newsletter-form {
        flex-direction: column;
        max-width: 300px;
        margin: 0 auto;
    }

    .newsletter-input {
        border-radius: 8px;
        margin-bottom: 10px;
    }

    .newsletter-button {
        border-radius: 8px;
    }

    .newsletter-circle {
        width: 200px;
        height: 200px;
    }

    .newsletter-image {
        max-width: 150px;
        left: 1%;
        top: 32px;
    }

    .service-block {
        margin-top: 0px !important;
    }
}

@media (max-width: 480px) {
    .newsletter-title {
        font-size: 1.5rem;
    }

    .newsletter-form {
        max-width: 280px;
    }

    .newsletter-circle {
        width: 180px;
        height: 180px;
    }

    .newsletter-image {
        max-width: 130px;
        left: 2%;
        top: 31px;
    }
}


.title1 .title-inner1:after {
    height: 0px !important;
    background-color: none !important;
    content: " ";
}

.basic-product.theme-product-1 {
    border: 0 !important;
    background-color: none !important;
}

.customer-card {
    padding: 10px;
}

.customer-card .card {
    width: 263px;
    height: 395px;
    margin: auto;
    border-radius: 5px;
    opacity: 1;
    transform: rotate(0deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #F6F8FA;
}

.rounded {
    border-radius: var(--bs-border-radius) !important;
    background: #F0EEEA !important;
}



.img-wrapper {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.img-wrapper img {
    transition: transform 0.3s ease;
}

.img-wrapper:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.img-wrapper:hover .overlay {
    opacity: 1;
}

.custom-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    border: none;
    background: #fff;
    color: #000;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    z-index: 1055;
}

.custom-close-btn:hover {
    background: #000;
    color: #fff;
    transform: rotate(90deg) scale(1.1);
}

/* Arrow Styling */
.slider-arrows {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.slider-arrows button {
    border: none;
    color: #fff;
    font-size: 24px;
    padding: 8px 14px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-arrows button:hover {
    background: #444;
}

.review-card {
    width: 263px;
    height: 395px !important;
    border: 2px solid #007bff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-card p {
    flex-grow: 1;
    font-size: 15px;
    line-height: 1.5;
}

#team .title1 p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-page {
    padding: 60px 0;
}

.about-text {
    color: #666;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 18px;
}

.btn-black {
    background: #000;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin-top: 18px;
}


.btn-theme {
    background: #ce9e40;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin-top: 18px;
}

@media (max-width: 767px) {
    .btn-theme {
        background: #ce9e40;
        color: #fff;
        padding: 8px 29px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 700;
        display: inline-block;
        margin-top: 0px;
    }

    .section-back {
        background-color: #000;
        height: 150px;
        align-items: center;
        justify-content: center;
        display: flex;
        gap: 0px;
    }

    .f-20 {
        font-size: 20px;
    }
}

.section-back {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: #000;
    height: 130px;
}

/* Image container */
.img-box {
    position: relative;
    width: 100%;
    min-height: 420px;
}

.img-left {
    width: 283px;
    border-radius: 4px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    left: -20px;
}

.img-right {
    width: 301px;
    position: absolute;
    right: -38px;
    top: 50px;
    z-index: 2;
    border-radius: 4px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .about-title {
        font-size: 48px;
    }

    .img-right {
        right: -28px;
        top: 58px;
    }
}

@media (max-width: 767px) {
    .about-title {
        font-size: 32px;
    }

    .img-box {
        display: flex;
        justify-content: center;
        gap: 18px;
        min-height: auto;
    }

    .img-left,
    .img-right {
        position: static;
        width: 45%;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    }
}

.pixelstrap a,
.pixelstrap a:hover,
.pixelstrap a:active {
    letter-spacing: 0.05em !important;
}

.img-who {
    border-radius: 10px;
}

.title-para {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.best-selling {
    padding: 6px 29px 6px 15px;
    background: #E5E5E5;
    border: none;
}


/* ---- PRODUCT GALLERY ---- */
.pd-gallery {
    text-align: center;
}

.pd-main img {
    object-fit: cover;
}

.pd-thumbs img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    cursor: pointer;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: 0.3s;
}

.pd-thumbs img:hover {
    border-color: #000;
}

/* Thumbnails */
.pd-thumbs img.thumb-img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid #eee;
    border-radius: 6px;
    transition: 0.3s;
}

.pd-thumbs img.thumb-img:hover,
.pd-thumbs img.thumb-img.active {
    border-color: #000;
}

.thumb-img {
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
}

.thumb-img:hover,
.thumb-img.active {
    border: 2px solid #000;
}


/* Main Image */
.pd-main img.main-img {
    object-fit: cover;
    border-radius: 6px;
}

/* ---- PRODUCT TITLES ---- */
.title-txt {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.5;
}

.paragraph-txt {
    line-height: 1.6;
    color: #444;
}

/* ---- PRICE ---- */
.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #222;
}

/* ---- BUTTONS ---- */
.size-wrap .btn {
    padding: 4px 12px;
    border-radius: 6px;
    background: #EEEEEE;
    transition: 0.3s;
}

.size-wrap .btn.active,
.size-wrap .btn:hover {
    border-color: #000;
    background: #000;
    color: #fff;
}

.btn-buy {
    background: #d32f2f;
    color: #fff;
    border-radius: 6px;
    padding: 8px 16px;
    transition: 0.3s;
}

.btn-buy:hover {
    background: #b71c1c;
    color: #fff;
}

/* ---- QTY SELECTOR ---- */
.qty {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}

.qty button {
    background: #fff;
    border: none;
    padding: 6px 12px;
    cursor: pointer;
}

.qty input {
    width: 40px;
    text-align: center;
    border: none;
    outline: none;
}

/* ---- CHIPS & SWATCHES ---- */
.chip {
    display: inline-block;
    padding: 4px 20px;
    border-radius: 5px;
    font-size: 0.85rem;
    background: #FAF4EA;
    color: #CE9E40;
}

.sizeback {
    background-color: #EEEEEE;
}

.swatch {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
}

/* ---- INFO BAR ---- */
.product-info-bar {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 0.9rem;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.product-info-bar .divider {
    width: 1px;
    height: 16px;
    background: #ddd;
}

.insta-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 14px;
    cursor: pointer;
    border: 1px solid #ccc;
}

.insta-btn i {
    color: #d62976;
}

/* ---- ACCORDION ---- */
.accordion-button {
    font-weight: 600;
    font-size: 0.85rem;
}

.accordion-body {
    font-size: 0.9rem;
    color: #444;
}

/* ---- PROMISE ICONS ---- */
.promise i {
    font-size: 1.5rem;
    color: #000;
}

.promise .title {
    font-size: 0.95rem;
    font-weight: 600;
}

.promise .muted {
    font-size: 0.8rem;
    color: #777;
}

/* ---- SHARE ---- */
.share i {
    font-size: 1.2rem;
    color: #555;
    transition: 0.3s;
}

.share i:hover {
    color: #000;
}

/* ---- RESPONSIVE FIXES ---- */
@media (max-width: 991px) {
    .pd-main img {
        max-height: 350px;
    }
}

@media (max-width: 576px) {
    .pd-thumbs img {
        width: 55px;
        height: 55px;
    }

    .title-txt {
        font-size: 1.2rem;
    }
}

.scrollable-content {
    height: 690px;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.scrollable-content::-webkit-scrollbar {
    display: none;
}

.customer-section {
    position: relative;
}

/* Arrow common styles */
.custom-prev-review,
.custom-next-review {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 20;
}

/* Left arrow */
.custom-prev-review {
    left: 20px;
}

/* Right arrow */
.custom-next-review {
    right: 20px;
}

/* Arrow icons */
.custom-prev-review i,
.custom-next-review i {
    font-size: 22px;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {

    .custom-prev-review,
    .custom-next-review {
        width: 35px;
        height: 35px;
    }

    .custom-prev-review i,
    .custom-next-review i {
        font-size: 18px;
    }
}


.review-thumbs img.thumb-img {
    width: 100%;
    height: 100px;
    cursor: pointer;
    border: 2px solid #eee;
    border-radius: 6px;
    transition: 0.3s;
}

.slick-dots li.slick-active button:before {
    color: #CE9E40 !important;
    opacity: .75;
}

/* Offcanvas Base */
.cart-offcanvas .offcanvas-header {
    border-bottom: 1px solid #eee;
    padding: 16px 20px;
}

.cart-offcanvas .offcanvas-title {
    font-size: 1.25rem;
    font-weight: 600;
    font-family: 'Nunito';
}

/* Offcanvas Body Padding */
.cart-offcanvas .offcanvas-body {
    padding: 20px;
}

/* Free Shipping Banner */
.free-shipping-banner {
    background: #f7f3eb;
    padding: 12px 15px;
    margin: 20px 0 25px;
    font-size: 1rem;
    line-height: 1.4;
    border-radius: 4px;
    font-family: 'Nunito';
}

.free-shipping-banner span {
    font-weight: 700;
    color: #000;
}

/* Cart Item */
.cart-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.cart-item img {
    width: 157px;
    height: 193px;
    border-radius: 6px;
    object-fit: cover;
}

.cart-item .item-details h6 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
    font-family: 'Nunito';
    color: #000;
}

.btn-variant {
    display: inline-block;
    border: 1px solid #aaa;
    background: #fff;
    padding: 5px 14px;
    font-size: 0.85rem;
    border-radius: 3px;
    margin-bottom: 8px;
    font-family: 'Nunito';
}

.remove {
    display: inline-block;
    font-size: 0.9rem;
    color: #242424;
    text-decoration: underline;
    font-family: 'Nunito';
}

/* Gift Wrap */
.gift-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 25px 0;
    font-size: 1rem;
    color: #000000;
    font-family: 'Nunito';
}

.gift-wrap input {
    width: 20px;
    height: 20px;
    accent-color: black;
}

.gift-wrap label strong {
    font-weight: 700;
    color: #000;
    font-family: 'Nunito';
}

hr.custom-hr {
    border: none;
    height: 1px;
    background-color: #000000;
    border-radius: 2px;
    margin: 30px 0;
}

/* Divider */
.cart-offcanvas hr {
    margin: 20px 0;
    border-color: #eee;
}

/* Subtotal */
.subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    margin-bottom: 25px;
    font-family: 'Nunito';
}

.subtotal .price {
    font-weight: 700;
    font-size: 1rem;
    font-family: 'Nunito';
}

/* Checkout Button */
.btn-checkout {
    display: block;
    width: 100%;
    background: #000;
    color: #fff;
    font-weight: 600;
    padding: 14px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: 0.3s ease;
    font-family: 'Nunito';
}

.btn-checkout:hover {
    background: #333;

}

/* View Cart Link */
.view-cart {
    text-align: center;
    font-family: 'Nunito';
    font-size: 1.4rem;
}

.view-cart a {
    font-size: 1rem;
    font-weight: 500;
    text-decoration: underline;
    color: #000;
}

.quick-view-modal .btn-close {
    background-color: #fff !important;
    color: #000 !important;
}

h2 {
    text-transform: capitalize !important;
}

.btnprice {
    width: 180px;
    right: 4px;
    padding: 5px 15px 5px 17px;
    border: none !important;
    background: #E5E5E5;
}

.dropdown-item.active,
.dropdown-item:active {
    color: #000 !important;
    text-decoration: none;
    background-color: white;
}

button#sortDropdown {
    color: #000;
}

span.fw-bold.btnprice.p {
    padding: 10px 30px 10px 30px;
}

.main-menu .menu-left .navbar {
    display: inline-block;
}

.form-control:focus {
    border: var(--bs-border-width) solid var(--bs-border-color) !important;
}

.text-red {
    color: red !important;
}

.category-review-slider {
    position: relative;
}

.w-70 {
    width: 70% !important;
}

.w-30 {
    width: 30% !important;
}

/* Arrows styling */
.cat-arrow {
    position: absolute;
    top: 25%;
    transform: translateY(-50%);
    background: #fff;
    color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

.cat-prev-category {
    left: -30px;
}

.cat-next-category {
    right: -30px;
}

.cat-arrow:hover {
    background: #ce9e40;
    color: #fff;
}

.category-slider-wrapper {
    position: relative;
}



.occasion-slider-wrapper {
    position: relative;
}

.occasion-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

.occasion-prev {
    left: -45px;
}

.occasion-next {
    right: -45px;
}

.occasion-arrow:hover {
    background: #f16a6a;
    color: #fff;
}

@media (max-width: 768px) {

    .occasion-prev,
    .cat-prev-category {
        left: -8px;
    }

    .occasion-next,
    .cat-next-category {
        right: -8px;
    }

    .service-block .media {
        padding-top: 16px !important;
        padding-bottom: 8px !important;
    }

    .why-text {
        font-size: 16px;
    }
}

.slick-dots {
    bottom: -30px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: #555;
    opacity: 0.7;
}

.slick-dots li.slick-active button:before {
    color: #f16a6a;
    opacity: 1;
}


.products-slider-dots .slick-dots {
    bottom: -30px;
    text-align: center;
}

.products-slider-dots .slick-dots li button:before {
    font-size: 12px;
    color: #555;
    opacity: 0.7;
}

.products-slider-dots .slick-dots li.slick-active button:before {
    color: #f16a6a;
    opacity: 1;
}

.custom-product-box {
    width: 100%;
}

.portfolio-section .isotopeSelector {
    margin-bottom: 3px !important;
    padding: 5px;
}



.btns {
    background-color: #000 !important;
}



/* arrow up too down */

tap-top {
    width: 42px;
    height: 42px;
    position: fixed;
    bottom: 50px;
    right: 30px;
    z-index: 1;
    display: none;
    color: #fff;
    text-align: center;
    background: #CE9E40 !important;
    border: none;
    font-size: 22px;
    padding: 4px;
    cursor: pointer;
}

/* contact */

.form-section {
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 40px;
}

.form-section h2 {
    font-weight: 600;
    margin-bottom: 10px;
}

.form-section p {
    color: #6c757d;
    margin-bottom: 30px;
}

.form-check {
    margin-bottom: 10px;
}

.btn-submit {
    background: #000;
    color: #fff;
    padding: 12px;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
}

.btn-submit:hover {
    background: #333;
}

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

label {
    margin-bottom: 0.5rem;
    margin-left: 10px;
}

.form-label {
    margin-bottom: .5rem;
    font-size: 14px;
    font-weight: 500;
}

.form-control {
    border-radius: 3px;
    font-size: 14px;
    padding: 9px;
    font-weight: 500;
}


/* checkout */

b,
strong {
    font-weight: 600;
    color: #CE9E40;
}

.checkout-section .form-control,
.checkout-section .form-select {
    height: 46px;
    font-size: 15px;
    border-color: #000;
    border-width: 0.3px;
}

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

.order-summary {
    background: #f7f7f7;
    border-radius: 6px;
    padding: 20px;
}

.product-img {
    width: 80px;
    border-radius: 4px;
}

.apply-btn {
    background: #000;
    color: #fff;
    border-radius: 4px;
}

.apply-btn:hover {
    background: #333;
}

.pay-btn {
    background: #000;
    color: #fff;
    width: 100%;
    border-radius: 4px;
    padding: 12px;
    font-weight: 500;
}

.pay-btn:hover {
    background: #333;
}

.form-check-label {
    font-size: 14px;
}

@media(max-width: 991px) {
    .checkout-section {
        padding: 20px;
    }
}

.button-cart-black {
    background: #000;
    color: #fff;
    padding: 14px 46px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    border: 0px solid;
}

.button-cart-theme {
    background: #CE9E40;
    color: #fff;
    padding: 14px 46px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    border: 0px solid;
}

.h-600 {
    height: 578px !important;
}

.service-block .media {
    align-items: start !important;
}

.service-block img {
    margin-top: -3px;
}

.service-block:hover h4 {
    color: var(--theme-color);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.fw-semibold {
    font-weight: 600 !important;
    color: #fff;
    text-align: start;
    font-size: 18px;
    line-height: auto;
}


@media (min-width: 1200px) {
    .main-nav-center .sm>li>a {
        padding-top: 20px;
        padding-bottom: 20px;
        color: #000;
        font-size: 16px;
        font-weight: bold;
    }
}

.summary-box {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px 16px;
}

.summary-box div {
    padding: 6px 0;
}

.summary-box div:last-child {
    font-size: 18px;
    font-weight: 600;
}

.apply-btn {
    background-color: #000;
    color: #fff;
    font-weight: 500;
}



.main-nav-center .sm>li>a:hover {
    color: #CE9E40;
    border-bottom: 2px solid #CE9E40;
    text-decoration: none;
}


.main-nav-center .sm>li>a.active {
    color: #CE9E40;
    border-bottom: 1px solid #CE9E40;
    font-weight: 600;
}

.tap-top {
    width: 42px;
    height: 42px;
    position: fixed;
    bottom: 50px;
    right: 30px;
    z-index: 1;
    display: none;
    color: #fff;
    text-align: center;
    background: var(--theme-color);
    border: none;
    font-size: 24px;
    font-weight: 800;
    padding: 4px;
    cursor: pointer;
    border-radius: 50px;
}

.price-body .wrapper {
    padding: 10px 0;
}

/* .range-slider {
    margin: 10px 0 15px;
} */

.range-slider {
    margin: 10px auto 15px;
    /* auto centers horizontally */
    width: 90%;
    /* full width parent */
    max-width: 600px;
    /* prevent overflow */
    position: relative;
}

.range-slider .irs {
    width: 100% !important;
}

.range-slider .irs-line,
.range-slider .irs-bar {
    margin: 0 auto;
    display: block;
}


.irs--round .irs-bar {
    background-color: #d4a017;
}

.irs--round .irs-handle {
    border: 2px solid #d4a017;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.irs--round .irs-line {
    background-color: #f1f1f1;
}

.irs--round .irs-single,
.irs--round .irs-from,
.irs--round .irs-to {
    background: #d4a017;
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
}


.filter-sidebar input[type="text"],
.filter-sidebar input[type="number"] {
    width: 80px;
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    outline: none;
    background: #f9f9f9;
    transition: 0.3s ease;
}

.filter-sidebar input[type="text"]:focus,
.filter-sidebar input[type="number"]:focus {
    border-color: #ff9800;
    background: #fff;
}

.collection-filter-block {
    background-color: #fff !important;
}

.collection-collapse-block .collection-accordion .accordion-item .accordion-header .accordion-button {
    background-color: #fff !important;
}

.collection-collapse-block .collection-accordion .accordion-item .accordion-body {
    background-color: #fff !important;
}

@media (max-width: 768px) {
    .sidenav {
        height: 100vh;
        width: 360px;
    }
}

.collection-collapse-block .collection-accordion .accordion-item {
    border-radius: 0;
    background-color: transparent;
    border-bottom: 1px solid #ccc !important;
    margin-bottom: 20px !important;
}

@media (max-width: 767px) {
    .img-logo {
        width: 68% !important;
    }
}

.login-reg {
    padding: 3px !important;
    padding-block: 0px !important;
    width: 80px;
    margin-bottom: 8px;
    margin-top: 5px;
}

.login-reg a {
    color: #ffffff;
}

.onhover-dropdown .onhover-show-div {
    top: 37px !important;
    background-color: #020202;
    right: 7px !important;
    left: -15px;
    padding: 15px 13px !important;
}



.text-decoration-none {
    text-decoration: none !important;
    font-size: 16px;
    font-weight: 400;
    color: #000;
}

h5 {
    font-size: 28px;
    font-weight: 500;
    color: #222;
    line-height: 24px;
    letter-spacing: 0.05em;
}

img.img-choose {
    border-radius: 12px;
}

.feature-box {
    background: #c2c2c22b;
    padding: 14px;
    justify-content: center;
    display: flex;
    border-radius: 5px;
    align-items: center;
    font-size: 24px;
}

.whyic {
    width: 28px;
    height: 28px;
    margin-right: 10px;
    flex-shrink: 0;
}


.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.form-select {
    padding-right: 4rem;
    /* space for icon */
}

.card-icon {
    position: absolute;
    right: 2.2rem;
    /* adjust for arrow */
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: auto;
    pointer-events: none;
}


@media (max-width: 575px) {
    .slick-list.draggable {
        padding: 0px 20px 0 0px !important;
    }

    .custom-product-detail {
        padding: 0px;
    }

    .product-name {
        font-size: 12px;
    }

    .rating-stars i {
        font-size: 12px;
    }

    .product-title a {
        font-size: 14px;
    }

    .current-price {
        font-size: 16px;
    }

    .original-price {
        font-size: 12px;
    }

    .product-divider {
        margin: 10px 0;
    }

    .custom-add-to-cart {
        font-size: 12px;
        padding: 6px 12px;
        min-height: 36px;
    }

    .hover-content {
        padding: 8px;
    }

    .hover-product-title {
        font-size: 12px;
        margin-bottom: 9px;
    }

    .hover-price {
        margin-bottom: 9px;
    }

    .hover-current-price {
        font-size: 16px;
    }

    .hover-original-price {
        font-size: 14px;
    }

    .rating-stars {
        gap: 2px;
        flex-shrink: 0;
    }

    .name-rating-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px;
        flex-wrap: nowrap;
    }
}


/* Mobile: style tabs */
@media (max-width: 576px) {
    .theme-tab .tabs.tab-title {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .theme-tab .tab-title li {
        flex: 1;
        text-align: center;
        padding: 6px 5px;
        /* smaller padding */
        font-size: 12px;
        /* smaller font size */
        background: #fff;
        border-radius: 14px;
        margin: 0 2px;
        /* small gap between tabs */
        white-space: nowrap;
    }

    .theme-tab .tab-title li.current {
        background: #ce9e40;
        /* active tab background */
        color: #fff;
        /* active tab font color */
        font-weight: 600;
        border-radius: 15px;
    }

    .theme-tab .tab-title li a {
        color: inherit;
        /* inherit li color */
        text-decoration: none;
        /* remove underline */
        display: block;
    }

    .hover-add-to-cart {
        font-size: 12px;
        padding: 3px 2px;
        min-height: 36px;
    }

    .hover-img-wrapper img {
        width: 100%;
        height: 240px;
    }
}

@media (max-width: 767px) {
    .hover-img-wrapper img {
        height: 277px !important;
        /* set the height you want */

    }
}

.customer-slider-nav button {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.location-section {
    position: relative;
    width: 100%;
    height: 500px;
    /* adjust as needed */
    overflow: hidden;
}

.location-section .bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.location-content {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
}

.location-content h2 {
    font-size: 52px;
    margin-bottom: 30px;
    color: white;
}

.location-content p {
    font-size: 18px;
    margin-bottom: 18px;
}

.location-content .btn-directions {
    display: inline-block;
    background-color: #cd9d3f;
    color: #fff;
    padding: 17px 32px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    transition: background 0.3s;
    margin-top: 20px;
}

.location-content .btn-directions:hover {
    background-color: #cd9d3f;
}

/* Responsive */
@media (max-width: 768px) {
    .location-section {
        height: 400px;
    }

    .location-content h2 {
        font-size: 24px;
    }

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

    .location-content {
        width: 403px;
    }

    .mapicon {
        width: 43px !important;
        /* smaller width on mobile */
        padding: 7px 14px;
        /* you can adjust padding if needed */
    }

    .portfolio-section .isotopeSelector {
        margin-bottom: 11px !important;
        padding: 5px;
    }

}

.mapicon {
    background: black;
    padding: 7px 14px;
    width: 50px;
    border-radius: 5px;
}

.cart_qty_cls {
    width: 20px;
    height: 20px;
    color: #ffffff;
    border-radius: 20px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    top: -10%;
    right: -2px;
}

@media (min-width: 1200px) {
    #main-menu {
        display: flex;
        gap: 30px;
    }

    #main-menu li a {
        display: inline-block;
        padding: 20px 0;
        color: #000;
        font-size: 16px;
        font-weight: bold;
        text-decoration: none;
        position: relative;
    }

    /* Active link underline */
    #main-menu li a.active {
        color: #CE9E40;
        font-weight: 600;
    }

    #main-menu li a.active::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        height: 2px;
        width: 100%;
        background-color: #CE9E40;
    }
}

.whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 100px;
    right: 27px;
    border-radius: 50%;
    text-align: center;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    background-color: #fff;
}

.whatsapp-float img {
    width: 40px;
    height: 40px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.footer-social li,
.social-white li {
    padding-right: 10px !important;
}

.irs--round .irs-from:before,
.irs--round .irs-to:before,
.irs--round .irs-single:before {
    border-top-color: var(--theme-color);
}

.breadcrumb-item.active {
    color: #000;
    font-weight: 800;
}


.font-18 {
    font-size: 16px;
}

.insta-btn-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #ffe8f0, #fde1cb, #f7d3ff);
    color: #7b4b8c;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    padding: 12px 28px;
    box-shadow: 0 4px 10px rgba(150, 47, 191, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(150, 47, 191, 0.1);
    font-size: 16px;
}

.insta-btn-light:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 18px rgba(150, 47, 191, 0.25);
    background: linear-gradient(135deg, #fff1f7, #f9e6ff, #fde9d8);
}

.insta-icon-light {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}








/* --------------dashboard------------ */


.dashboard-section .dashboard-sidebar {
    position: sticky;
    top: 0;
    left: 0;
    height: 100vh;
    background-color: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 100;
}

.sidebar-logo {
    max-width: 160px;
    height: auto;
}

@media (max-width: 992px) {
    .dashboard-section .dashboard-sidebar {
        height: auto;
        position: relative;
    }

    .faq-tab ul {
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
    }

    .faq-tab .nav-link {
        font-size: 14px;
        padding: 10px 15px;
    }
}

.dashboard-section .dashboard-sidebar .profile-top {
    margin: auto !important;

}

li.nav-item {
    padding: 10px;
}

a.nav-link {
    font-size: 20px !important;
    gap: 17px !important;
}
.dashboard-section .counter-section {
    padding:0px !important;
    background-color:#eee !important;
    border:0px solid #eee !important;
    border-radius:0 !important;
}
.dashboard-section .counter-section .counter-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    background-color: #fff;
    padding: 20px !important;
    border: 0 !important;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
}

.dashboard-section .counter-section .counter-box img {
    height: 40px;
    /* tweak as needed */
    width: auto;
    object-fit: contain;
    display: block;
}

/* Text style & spacing */
.dashboard-section .counter-section .counter-box p {
    margin: 0;
    font-size: 13px;
    color: #333;
    line-height: 1;
}

.dashboard-section .counter-section .counter-box span {
    display: block;
    margin-top: 2px;
    font-weight: 700;
    font-size: 16px;
    color: #111;
}

.d-flex.flex-column.bg-white.p-3.shadow-sm.br-5 {
    border-radius: 5px;
}

button.btn.btn-white-btn {
    border-radius: 37px;
    padding: 12px 20px !important;
    border: 1px solid #ccc;
}

button.btn.btn-white-btn-save {
    border-radius: 5px;
    padding: 12px 20px !important;
    border: 1px solid #ccc;
}

.payment-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease-in-out;
}

.payment-card:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.bg-default {
    background-color: #b48a3d;
    color: #fff;
    font-weight: 500;
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 13px;
}

.cursor-pointer {
    cursor: pointer;
}

.address-card {
    background: #fff;
    border-radius: 12px;
    border: 2px solid transparent;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.address-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.bg-default {
    background-color: #b48a3d;
    color: #fff;
    font-weight: 500;
    padding: 4px 12px;
    font-size: 13px;
}

.btn {
    font-weight: 500;
}

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

.review-icon {
    font-size: 3rem;
    color: #000;
    margin-bottom: 1rem;
}

.reviews-card {
    border-radius: 10px;
    padding: 10px 30px;
    width: 100%;
}

.btn-review {
    border-radius: 8px;
    border: 1px solid black;
    padding: 13px 51px;
    font-weight: 600;
    background-color: #E6E6E6;
    transition: all 0.3s ease;
    text-transform: lowercase;
}
.btn-review:hover {
    border-radius: 20px;
    padding: 10px 51px;
    font-weight: 600;
    background-color: #E6E6E6;
    transition: 0.2s ease-in;
    text-transform: lowercase;
}
.btn-size {
    padding: 15px 30px;
    border-radius: 10px;
}
.border-tops{
    border-top:.5px solid #292929
}


.order-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.3s ease;
  }

  .order-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .order-status {
    position: absolute;
    top: 20px;
    right: 20px;
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 500;
  }
  .order-deli {
    background-color: #D7F5F9;
    color: #008C9C;
  }
  .order-in {
    background-color: #FAF5EC;
    color: #CE9E40;
  }

  .order-cancel {
    background-color: #FFE8E2;
    color: #F23500;
  }

  .order-header h5 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 2px;
    color: #000;
  }

  .order-header p {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 0;
  }

  .order-details {
    margin-top: 15px;
  }

  .order-details p {
    margin-bottom: 6px;
    font-size: 14px;
    color: #000;
  }

  .order-details span {
    font-weight: 500;
  }

  .order-actions {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .order-actions .btn {
    border-radius: 30px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
  }

  @media (max-width: 768px) {
    .order-status {
      position: static;
      display: inline-block;
      margin-top: 10px;
    }
  }

  .dasboard-sc{
    background-color: #eee;
  }


  .dashboard-section .wallet-table .order-table th, .dashboard-section .wallet-table .order-table td {
    max-width: 220px;
    min-width: 130px;
    padding: 11px !important;
    color: #232323;
    border-bottom: 1px solid #eee;
    font-weight: 300;
    text-align: left;
    vertical-align: middle;
    background-color: transparent;
    font-size: 12px;
}
.ic-size{
    width: 20px;
}
.ic-size-lg{
    width: 40px;
}
.nav-link:focus, .nav-link:hover {
    color: goldenrod;
    background-color: #272218;
    border-radius: 25px;
}
.text-logout{
color: #939393;
}
.theme-card.p-3.mt-2 {
    border-radius: 8px;
}





.login-section {
    min-height: 50vh;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: start; /* center → start */
   
  }
  
  .login-left {
    background-color: #fff;
    padding: 40px 30px;
  }
  
  .login-title {
    font-size: 26px;
    font-weight: 600;
    color: #000;
  }
  
  .form-control {
    border-radius: 8px;
    padding: 12px;
    border-color: #CE9E40;
  }
  
  .btn-login {
    background-color: #000;
    color: #fff;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
    border: none;
  }
  
  .btn-login:hover {
    background-color: #333;
    color: #fff;
  }
  

  .otp-inputs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
  }

  .otp-inputs input {
    width: 55px;
    height: 55px;
    border-radius: 8px;
    border: 1px solid #ccc;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    outline: none;
    transition: 0.3s;
  }

  .otp-inputs input:focus {
    border-color: #CE9E40;
    box-shadow: 0 0 8px rgba(206, 158, 64, 0.4);
  }

  .resend-text,
  .resend-link {
    font-size: 15px;
    color: #777;
  }

  .resend-link {
    color: #CE9E40;
    text-decoration: none;
    font-weight: 600;
  }

  .resend-link:hover {
    text-decoration: underline;
  }
  .product-title .productTitle {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}
.modal-title {
    font-size: 20px;
}
.btn-theme-footer {
    background: #ce9e40;
    color: #fff;
    padding: 10px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin-top: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-theme-footer:hover:not(:disabled) {
    background: #b8860f;
    transform: translateY(-2px);
}

/* ✅ Disabled state for modal buttons */
.btn-theme-footer:disabled {
    background: #cccccc;
    color: #666;
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
}

/* Size and Color Selection Boxes */
.size-box,
.color-box {
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 8px;
    margin-bottom: 8px;
}

.size-box input[type="radio"],
.color-box input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0;
    height: 0;
}

.size-box span,
.color-box span {
    display: inline-block;
    /* padding: 8px 20px; */
    /* border: 1px solid #ddd; */
    border-radius: 6px;
    /* background-color: #EEEEEE; */
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
    min-width: 50px;
    text-align: center;
}

/* Hover effect */
.size-box:hover:not(.size-unavailable) span,
.color-box:hover span {
    border-color: #000;
    background-color: #e0e0e0;
    padding: 2px;
}

/* Selected state - Black background with white text */
.size-box input[type="radio"]:checked + span,
.color-box input[type="radio"]:checked + span {
    background-color: #000;
    border-color: #000;
    color: #fff;
    font-weight: 600;
    padding: 2px;
}

/* Disabled/Out of stock */
.size-box.size-unavailable {
    cursor: not-allowed;
    opacity: 0.5;
}

.size-box.size-unavailable span {
    background-color: #f5f5f5;
    color: #999;
    text-decoration: line-through;
    cursor: not-allowed;
}

.size-box.size-unavailable:hover span {
    border-color: #ddd;
    background-color: #f5f5f5;
}
.color-box{
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* ✅ Color Chip Design for Product Modal */
.color-chip-label {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.color-chip-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Color chip circle */
.color-chip {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #ddd;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Color name text */
.color-name {
    font-size: 12px;
    color: #666;
    font-weight: 500;
    text-align: center;
}

/* Hover state */
.color-chip-label:hover {
    background-color: #f5f5f5;
    border-color: #ddd;
}

.color-chip-label:hover .color-chip {
    border-color: #000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Selected state */
.color-chip-label input[type="radio"]:checked + .color-chip {
    border: 3px solid #000;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.color-chip-label input[type="radio"]:checked ~ .color-name {
    color: #000;
    font-weight: 600;
}

.color-chip-label input[type="radio"]:checked {
    background-color: #f0f0f0;
    border-color: #000;
}

/* Responsive for mobile */
@media (max-width: 576px) {
    .color-chip {
        width: 20px;
        height: 20px;
    }

    .color-name {
        font-size: 11px;
    }

    .color-chip-label {
        padding: 6px;
    }
}

/* Video volume button - positioned top-right with small icon */
.video-volume-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.video-volume-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.video-volume-btn i {
    color: white;
    font-size: 14px;
}

/* Announcement Slider Styles */
.announcement-slider-wrapper {
    width: 100%;
    overflow: hidden;
}

.announcement-slider {
    width: 100%;
}

.announcement-item {
    width: 100%;
}

.announcement-slider .slick-dots {
    display: none !important;
}

.announcement-slider .slick-arrow {
    display: none !important;
}