@charset "UTF-8";

:root {
    --primary-color: #212529;
}

* {
    margin: 0px;
    padding: 0px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*::-moz-selection {
    color: #ffffff;
    background-color: #000000;
}

*::selection {
    color: #ffffff;
    background-color: #000000;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    font-size: 16px;
    font-weight: 400;
    background-color: #fff;
    overflow-x: clip;
    box-sizing: border-box;
}

p {
    font-family: "Lato", sans-serif;
    color: #555;
    font-weight: normal;
}

a {
    text-decoration: none;
    color: #000;
    transition: all 0.3s ease-in-out;
}

.bg-dark {
    --bs-bg-opacity: 1;
    background-color: #000000 !important;
    /* background-color: #000D19 !important; */
}

.form-control:focus {
    box-shadow: none;
    border-color: #111111;
}

.font-Kalnia {
    font-family: "Kalnia", serif;
}

/* Hide desktop navbar on mobile/tablet, show mobile nav only on mobile/tablet */
.desktop-navbar {
    display: none;
}

.mobile-navbar {
    display: flex;
}

.account-dropdown ul {
    padding: 0;
    top: 10px !important;
    border-radius: 6px;
    overflow: hidden;
}

.account-dropdown ul li a {
    padding: 8px 15px;
}

.account-dropdown li a:hover,
.mobile-navbar .dropdown-menu .dropdown-item:hover {
    background-color: #f6f6f6;
}

.dropdown-item.active,
.dropdown-item:active {
    color: #212529;
}

.navbar-right {
    font-size: 18px;
    gap: 20px;
}

.navbar-right .item {
    color: #ffffff;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 14px 8px 0;
}

.offcanvas-top .card .card-img-top {
    border-radius: 5px;
    border: 1px solid #e2e2e2;
}

/* Center logo in mobile nav */
.mobile-navbar {
    align-items: center;
    justify-content: space-between;
    height: 36px;
    padding: 0 10px;
    background: #fff;
    /* border-bottom: 1px solid #eee; */
    position: sticky;
    top: 0;
    z-index: 1040;
}

.mobile-navbar .navbar-logo {
    position: absolute;
    left: -34px;
    right: auto;
    ;
    margin: auto;
    text-align: center;
    width: 100%;
    pointer-events: none;
    z-index: 1;
}

.mobile-navbar .navbar-logo a {
    pointer-events: auto;
    color: #222;
    font-weight: bold;
    font-size: 1.3rem;
    text-decoration: none;
    letter-spacing: 1px;
}

.mobile-navbar .navbar-left,
.mobile-navbar .navbar-right {
    z-index: 2;
    display: flex;
    align-items: center;
}

.mobile-navbar .navbar-left {
    flex: 0 0 auto;
}

.mobile-navbar .navbar-right {
    flex: 0 0 auto;
    gap: 10px;
}

.mobile-navbar .icon-btn {
    background: none;
    border: none;
    font-size: 1.3rem;
    color: #222;
    padding: 6px 8px;
    cursor: pointer;
    outline: none;
}

.mobile-navbar .dropdown-menu {
    padding: 0;
    min-width: 120px;
    border-radius: 6px;
    overflow: hidden;
    right: 0;
    left: auto;
}

.mobile-navbar .dropdown-menu .dropdown-item {
    padding: 8px 14px;
}

.navbar-nav .nav-link {
    color: #ffffff;
}

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

/* Offcanvas custom width for menu */
.offcanvas-start {
    width: 80vw !important;
    max-width: 350px;
}

/* Responsive offcanvas search height */
#searchCanvas.offcanvas-top {
    height: 80vh !important;
    max-height: 100vh;
}

/* Hide the default clear button on input (for consistency) */
input[type="search"]::-webkit-search-cancel-button {
    display: none;
}

/* Make clear button clickable inside input */
#clearSearch {
    background: transparent;
    border: none;
    outline: none;
}

#clearSearch:active,
#clearSearch:focus {
    color: #00bcd4;
}

/* Hide close button outline */
.btn-close:focus {
    box-shadow: none;
}

/* Hide scroll on body when offcanvas open (Bootstrap handles this, but for safety) */
body.offcanvas-backdrop {
    overflow: hidden;
}

.sticky-collection {
    display: inline;
}

.collection-sticky {
    position: sticky;
    top: 0;
    z-index: 10;
}

.sticky-collection-inner {
    padding: 30px 0 12px;
    background: #fff;
}

.collection-title {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
}

.colllection-img img {
    border-radius: 100%;
    /* border: 1px solid #EFEFEF; */
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.hover-underline {
    position: relative;
    display: inline-block;
}

.hover-underline:after {
    background-color: #000000;
    content: "";
    display: flex;
    width: 100%;
    height: 1px;
    position: relative;
    bottom: -3px;
    transform-origin: 100% 50%;
    transform: scale3d(0, 1, 1);
    transition: transform 0.3s;
}

.hover-underline:hover:after {
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
}

footer .hover-underline {
    position: relative;
    display: inline-block;
}

footer .hover-underline:after {
    background-color: #ffffff;
}

footer .hover-underline:after {
    background-color: #ffffff;
}

.navbar-nav .hover-underline:after {
    background-color: #e7ad47;
}

.collection-item:hover .hover-underline:after,
footer .hover-underline:hover .hover-underline:after {
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
}

.disable {
    opacity: 0.7;
    pointer-events: none;
}

.cursor-pointer {
    cursor: pointer !important;
}

/* footer css  */

footer {
    line-height: 1.8;
}

footer .footer-social a {
    margin-right: .5rem;
    width: 35px;
    height: 35px;
    display: inline-block;
    text-align: center;
    line-height: 2.2;
    background-color: #35383bbf;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

footer .footer-social a:hover {
    background-color: #313131bf;
    color: #cd9736 !important;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    margin-bottom: 6px;
}

.footer-contact li a {
    color: #ffffff;
}

.footer-contact li:last-child {
    margin-bottom: 0;
}

.footer-icon {
    color: #cd9736;
    font-size: 1.15em;
    min-width: 20px;
    text-align: center;
}

footer .copyright-para a {
    color: #a5a5a5;
}

footer .copyright-para a:hover {
    color: #ffffff;
}

/* profile page css */
.profile-container {
    max-width: 1100px;
    margin: 48px auto;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
    padding: 40px 24px;
}

.profile-header {
    border-bottom: 1px solid #ececec;
    padding-bottom: 24px;
    margin-bottom: 32px;
}

.profile-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.3rem;
    border: 3px solid #d4af37;
}

.gold {
    color: #d4af37 !important;
}

.profile-nav .nav-link {
    color: #111;
    font-weight: 500;
    border-radius: 26px;
    transition: background 0.18s;
}

.profile-nav .nav-link.active,
.profile-nav .nav-link:hover {
    background: #111;
    color: #fff;
}

.profile-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #111;
    border-left: 4px solid #d4af37;
    padding-left: 12px;
}

.order-card {
    background: #f8f9fa;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    padding: 20px 18px;
    margin-bottom: 18px;
}

.order-status {
    font-size: 0.98rem;
    font-weight: 500;
}

.order-status.completed {
    color: #388e3c;
}

.order-status.pending {
    color: #d4af37;
}

.order-status.cancelled {
    color: #b71c1c;
}

.profile-section .form-label {
    font-weight: 600;
}

.btn-gold {
    background: #d4af37;
    color: #fff;
    border-radius: 22px;
    border: none;
}

.btn-gold:hover {
    background: #bfa133;
    color: #fff;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: #f5f5f5;
}


/* Mobile Bottom Navigation */

/* Hide on md and above (≥768px), show only on <768px */
.mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 62px;
    background: #fff;
    border-top: 1px solid #eee;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
    z-index: 9;
    justify-content: space-around;
    align-items: center;
    transition: bottom 0.2s;
}

.mobile-bottom-nav a {
    flex: 1;
    text-align: center;
    color: #888;
    font-size: 13px;
    text-decoration: none;
    padding: 6px 0 0 0;
    transition: color 0.2s, background 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 8px 8px 0 0;
}

.mobile-bottom-nav a i {
    font-size: 22px;
    margin-bottom: 2px;
}

.mobile-bottom-nav a.active,
.mobile-bottom-nav a:active,
.mobile-bottom-nav a:focus {
    color: #00bcd4;
    background: #f0fcfd;
}

.mobile-bottom-nav a:hover {
    color: #0097a7;
    background: #f0fcfd;
}

#filterCanvas {
    padding: 0;
}

#clearAllBtnOffcanvas,
#offcanvas-apply-btn {
    padding: 2px 10px 5px;
}

.offcanvas-start .offcanvas-header {
    background-color: #000D19;
    color: #e1dedede;
}

.offcanvas-start .offcanvas-header button {
    background-color: #ffffff;
    border-radius: 0;
    width: 10px;
    height: 10px;
    font-size: 12px;
}

/* Hero Swiper Height Responsive */
.myHeroSwiper {
    width: 100%;
    height: 34vw;
    max-height: 664px;
    min-height: 320px;
    /* border-radius: 18px; */
    overflow: hidden;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.11);
    position: relative;
    margin-bottom: 32px;
}

/* Swiper Slide Image Fit */
.myHeroSwiper .swiper-slide img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
}

/* Pagination dots outside slider */
.myHeroSwiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: -16px;
    margin-bottom: 16px;
    min-height: 30px;
    position: relative;
    z-index: 1;
}

/* Swiper Dots */
.myHeroSwiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #3d3d3d;
    border: none;
    opacity: 1;
    border-radius: 50%;
    transition: border-color .3s, background .3s;
    position: relative;
    outline: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.09);
    cursor: pointer;
}

/* Active dot with colored border and ::after outer circle */
.myHeroSwiper-pagination .swiper-pagination-bullet-active {
    background: #747474;
    border: none;
}

.myHeroSwiper-pagination .swiper-pagination-bullet-active::after {
    content: '';
    position: absolute;
    left: -4.9px;
    top: -4.8px;
    width: 18px;
    height: 18px;
    border: 1px solid #676767;
    border-radius: 50%;
    box-sizing: border-box;
    pointer-events: none;
    opacity: 0.7;
    z-index: 2;
}

.section-heading {
    font-size: 35px;
    line-height: 49.55px;
    font-weight: 400;
    margin-bottom: 10px;
    font-family: "Kalnia", serif;
}

.combo-section .section-heading {
    margin-bottom: 36px;
}

.section-sub-heading {
    font-size: var(--section-sub-heading-size);
    line-height: var(--section-sub-heading-line-height);
    letter-spacing: var(--section-sub-heading-ls);
    color: var(--sub-heading-color);
    margin-bottom: 15px;
}

.section-heading span {
    position: relative;
    z-index: 1;
    font-weight: var(--font-weight-600);
}

/* Swiper arrows styling */
.category-swiper-arrow,
.video-swiper-arrow {
    color: #222 !important;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.09);
    width: 38px !important;
    height: 38px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50% !important;
    transform: translateY(-50%) !important;
    border: 1.5px solid #e0e0e0 !important;
    transition: background 0.2s, color 0.2s, border 0.2s;
}

.category-swiper-arrow.swiper-button-disabled,
.video-swiper-arrow.swiper-button-disabled {
    opacity: 0.45;
    cursor: not-allowed;
    background: #f5f5f5;
    color: #aaa;
    border-color: #eee;
}

.category-swiper-arrow::after,
.video-swiper-arrow::after {
    font-size: 1.1rem !important;
    font-weight: bold;
}

.swiper.categorySwiper {
    padding: 12px 0 24px 0;
}

.categorySwiper .swiper-slide {
    width: 180px;
    /* Adjust as needed */
    max-width: 100%;
}

.categorySwiper .card {
    height: auto;
    aspect-ratio: 3 / 3.6;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.categorySwiper .card:hover img {
    transform: scale(1.06);
}

.categorySwiper .card img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    filter: brightness(0.45);
    transition: all 0.5s ease-in-out;
}

.categorySwiper .card a {
    height: 100%;
}

.categorySwiper .card h2 {
    position: absolute;
    top: 51%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 9;
    font-size: 1.6rem;
    font-weight: 400;
    font-family: 'Kalnia', serif;
    margin-bottom: 0;
    width: 80%;
    text-align: center;
}

/* home about section  */

.home-about-section {
    background-color: #ecebdc66;
    padding: 3.5rem 0;
}

.home-about-section-left h2 {
    letter-spacing: 1px;
    color: #212121;
    font-weight: 300;
}

.home-about-section-left h2 span {
    color: #a74b2c;
    font-weight: 600;
    font-family: math;
}

.home-about-section-left .list-unstyled i:before {
    color: #a74b2c;
}

.home-about-section-left .btn-primary {
    color: #ffffff;
    font-weight: 500;
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.home-about-section-left .btn-primary:hover {
    color: var(--primary-color);
    background-color: #ecebdc66;
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 10px #d5d5d5 !important;
}

.home-about-section-left p {
    color: #444444;
}

.home-about-section-right {
    position: sticky;
    top: 8rem;
}

/* tab content css  */

.tabs-section {
    background-color: #fff;
    padding: 60px 0px;
}

.tabs-section .tab-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    margin-top: 35px;
}

.tabs-section .tab-btn {
    padding: 6px 20px 8px;
    background-color: #f2f2f2;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #333;
    font-size: 16px;
}

.tabs-section .tab-btn:hover,
.tabs-section .tab-btn.active {
    background-color: #222;
    color: #fff;
}

.tabs-section .tab-contents {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tabs-section .tab-content {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.tabs-section .tab-content.active {
    display: block;
}

.tabs-section .tab-content .coming-soon-text {
    text-align: center;
    font-size: 40px;
    letter-spacing: 0.8px;
    color: #c5c5c5;
    font-weight: 300;
    font-family: 'Lato';
    margin-top: 30px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.tab-content .shop-wrapper {
    gap: 14px;
    justify-content: center;
}

.tab-content .product-box {
    width: calc(26.33% - 44px);
    border-radius: 10px;
    height: 100%;
}

.product-box .box-inner {
    border: 1px solid #efefef;
}

.product-box .box-inner {
    background-color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 10px;
    padding: 16px;
}

.product-box .product-header {
    height: fit-content;
    overflow: hidden;
}

.product-box .product-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.product-box .product-footer {
    padding-top: 10px;
    text-align: center;
}

.product-box .product-footer .product-title {
    color: #000;
    text-decoration: none;
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
}

.product-box .product-footer .product-dec {
    color: gray;
    font-size: 16px;
    line-height: 18px;
    margin: 14px 0;
    font-weight: 400;
}

.product-box .product-footer .price-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.product-box .product-footer .selling-price {
    font-weight: 700;
    font-size: 20px;
}

.product-content .selling-price {
    font-size: 1.2rem;
    font-weight: 700;
}

.product-content .old-price {
    color: #666;
    text-decoration: line-through;
}

.product-box .product-footer .old-price {
    color: gray;
    font-weight: 500;
    font-size: 16px;
}

.product-box .product-footer .cart-btn {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    background-color: #222;
    color: #fff;
    display: block;
    width: 100%;
    padding: 10px 10px;
    line-height: 1.2;
    border-radius: 26px;
    text-align: center;
    margin-top: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tab-content .shop-wrapper .view-more-btn {
    text-decoration: none;
    font-size: 18px;
    color: var(--primary-color);
    padding: 10px 34px 12px;
    border-radius: 25px;
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.tab-content .shop-wrapper .view-more-btn:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 10px 10px #cdcdcd;
}

/* combo css  */
.combo-section {
    padding-top: 60px;
}

.combo-item .combo-image-wrapper img {
    border-radius: 8px;
}

.combo-item .combo-title {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: "Red Hat Text", sans-serif;
    /* font-family: "Poiret One", sans-serif; */
}

/* testimonial css */

.testimonial-section {
    background: #F7F7F1;
    padding: 60px 0;
}

.testimonialSwiper {
    margin-top: 3rem;
}

.testimonialSwiper .swiper-slide {
    display: flex;
    height: auto;
}

.testimonialSwiper .testi-item {
    height: 100%;
    border: 1px solid #272727;
}

.testimonialSwiper .testi-item .rounded-circle {
    width: 56px;
    height: 56px;
    object-fit: cover;
}

.testi-item .testi-rating-wrapper {
    border: 1px solid #a2a2a263;
    padding: 3px 14px;
    width: fit-content;
    border-radius: 25px;
    margin: 0.5rem 0 0.25rem;
}

.testi-item .testi-rating-wrapper .star-box {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.testi-item .testi-rating-wrapper .text-muted {
    font-size: 18px;
    font-weight: 600;
}

/* video section */

.video-section {
    padding-top: 60px;
}

.video-swiper-arrow {
    color: #0097a7;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.09);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 45%;
    transform: translateY(-50%);
    border: 2px solid #e0f7fa;
    transition: background 0.2s, color 0.2s, border 0.2s;
}

.video-swiper-arrow.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f5f5f5;
    color: #bbb;
    border-color: #eee;
}

.video-swiper-arrow::after {
    font-size: 1.5rem;
    font-weight: bold;
}

/* about page css  */

.about-section .about-heading-1,
.about-section .about-heading-2 {
    font-family: "Kalnia", sans-serif;
    font-size: 2rem;
    font-weight: 400;
}

.videoSwiper {
    padding: 20px 5px !important;
}

.video-slide {
    position: relative;
    width: 100%;
    height: 440px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    outline: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 10px rgb(172 172 172);
    ;
}

.video-slide:focus,
.video-slide:hover {
    box-shadow: 0 0 0 3px #d4af37;
}

.video-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    filter: brightness(0.7);
    border-radius: 10px;
}

.video-title {
    position: relative;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    color: #fff;
    font-weight: 600;
    padding: 20px 16px 12px;
    font-size: 1rem;
    z-index: 2;
    user-select: none;
    text-align: left;
}

.enlarge-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffe9b8 0%, #d4af37 60%, #b8860b 100%);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: box-shadow 0.18s, transform 0.18s, background 0.18s;
    opacity: 0.92;
}

.enlarge-btn::before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    mask: url('data:image/svg+xml;utf8,<svg fill="white" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M3 3h7V1H1v9h2V3zm18 0v7h2V1h-9v2h7zm0 18h-7v2h9v-9h-2v7zM3 21v-7H1v9h9v-2H3z"/></svg>') center/contain no-repeat;
    background: #fff;
}

.enlarge-btn:hover,
.enlarge-btn:focus {
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.33);
    background: linear-gradient(135deg, #fffbe6 0%, #d4af37 100%);
    outline: none;
    transform: scale(1.09);
}


/* Video modal overlay */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    transition: opacity 0.3s ease;
    opacity: 0;
}

.video-modal[aria-hidden="false"] {
    display: flex;
    opacity: 1;
}

.video-modal-content {
    position: relative;
    max-width: 640px;
    max-height: 80vh;
    width: 100%;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 40px rgb(211 211 211 / 70%);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.video-modal[aria-hidden="false"] .video-modal-content {
    transform: scale(1);
}

.video-modal video,
.video-modal iframe {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
}

.video-modal-close {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 2.4rem;
    color: #d4af37;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s ease, transform 0.2s ease;
}

.video-modal-close:hover,
.video-modal-close:focus {
    color: #fff;
    transform: rotate(90deg);
    outline: none;
}

/* product page css  */

/* Main image zoom on hover */
.zoom-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
}

.zoom-img-wrapper .main-img {
    width: 100%;
    border-radius: 0.5rem;
    transition: transform 0.2s;
    will-change: transform;
    pointer-events: none;
    /* Prevents image selection while dragging */
}

.zoom-img-wrapper:hover .main-img {
    transform: scale(1.15);
}

.thumbSwiper {
    width: 80px;
    height: 400px;
}

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

.thumbSwiper .swiper-slide {
    height: 80px !important;
    opacity: 0.5;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 8px;
    border: 2px solid transparent;
    transition: border 0.2s, opacity 0.2s;
}

.thumbSwiper .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid #212529;
}

.mainSwiper,
.mainSwiper .swiper-slide {
    height: 34rem;
}

.lower-btn-wrapper .add-to-cart {
    flex: 1;
}

.product-detail-section .product-name {
    font-family: "Poiret One", sans-serif;
    font-weight: 400;
    font-size: 2rem;
    font-style: normal;
}

.review-title,
.related-title {
    font-family: "Lato", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.review-list .review-box .text-warning {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1px;
}

.product-detail-section .product-content {
    position: sticky;
    top: 6.5rem;
}

#writeReviewBtn {
    color: #ffffff;
    font-size: 15px;
    background-color: #222;
    padding: 7px 14px;
    width: fit-content;
    margin: 1.5rem auto 0;
}

.tabs-section .tab-nav {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e3e3e3;
}

/* about page css  */
.about-hero {
    background: linear-gradient(120deg, #fff 70%, #f8fafc 100%);
    border-radius: 24px;
    padding: 56px 24px 40px 24px;
    text-align: center;
    margin-bottom: 48px;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06);
}

.about-hero h1 {
    font-size: 2.7rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.about-hero p {
    font-size: 1.25rem;
    color: #444;
    max-width: 600px;
    margin: 0 auto;
}

.about-section {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.about-content {
    flex: 1 1 320px;
    min-width: 280px;
}

.about-img {
    flex: 1 1 260px;
    min-width: 260px;
    text-align: center;
}

.about-img img {
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.09);
    object-fit: cover;
}

.about-section .accordion-button {
    background: #fff;
    color: #111;
    font-weight: 500;
    font-size: 1.08rem;
    border-radius: 10px 10px 0 0 !important;
    box-shadow: none;
    border: none;
    transition: background 0.18s;
}

.about-section .accordion-button:not(.collapsed) {
    color: #000000;
    background-color: #cfcfcf91;
}

.about-section .accordion-button:focus {
    box-shadow: none;
}

.about-section .accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 12px;
}

.about-section .accordion-body {
    /* background: #f8f9fa; */
    border-radius: 0 0 12px 12px;
    color: #333;
    font-size: 1rem;
}

/* category page css  */
.product-section .main-row {
    align-items: flex-start;
    justify-content: space-between;
}

.product-section .category-banner {
    max-height: 100%;
    object-fit: cover;
}

.product-section .sidebar {
    min-width: 220px;
    border: 1px solid #efefef;
    position: sticky;
    top: 5rem;
}

.product-section .sidebar-title {
    font-family: 'Lato', sans-serif;
    padding-bottom: 10px;
    border-bottom: 1px solid #dddddd;
}

#clearAllBtn,
#lg-applyBtn {
    padding: 3px 12px 5px;
}

.product-section .product-box {
    display: none;
    opacity: 0;
    transition: opacity 0.4s;
    margin-bottom: 1rem;
}

.product-section .product-box.visible {
    display: block;
    opacity: 1;
}

.custom-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.custom-checkbox {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    font-size: 1rem;
    user-select: none;
    color: #222;
    line-height: 1.5;
}

.custom-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-checkbox .checkmark {
    position: absolute;
    left: 0;
    top: 2px;
    height: 20px;
    width: 20px;
    background-color: #f7f7f7;
    border: 1px solid #222;
    border-radius: 5px;
    transition: background 0.2s, border 0.2s;
    display: inline-block;
}

.custom-checkbox:hover .checkmark {
    background-color: #e0e0e0;
}

.custom-checkbox input:checked~.checkmark {
    background-color: #fff;
    border-color: #222;
}

.custom-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked~.checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid #111;
    border-width: 0 3px 3px 0;
    border-radius: 2px;
    transform: rotate(45deg);
    content: '';
}

/* Custom Checkbox/Radio for dropdown */
#product-toolbar .custom-checkbox {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    font-size: 1rem;
    user-select: none;
    color: #222;
    line-height: 1.5;
    display: flex;
    align-items: center;
}

#product-toolbar .custom-checkbox input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

#product-toolbar .custom-checkbox .checkmark {
    position: absolute;
    left: 0;
    top: 1px;
    height: 20px;
    width: 20px;
    background-color: #f5f5f5;
    border: 2px solid #222;
    border-radius: 50%;
    transition: background 0.2s, border 0.2s;
    display: inline-block;
}

#product-toolbar .custom-checkbox:hover .checkmark {
    background-color: #e0e0e0;
}

#product-toolbar .custom-checkbox input:checked~.checkmark {
    background-color: #fff;
    border-color: #222;
}

#product-toolbar .custom-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

#product-toolbar .custom-checkbox input:checked~.checkmark:after {
    display: block;
}

#product-toolbar .custom-checkbox .checkmark:after {
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #111;
    content: '';
}

#product-toolbar .dropdown-menu {
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

/* login / signup css  */

.login-section,
.signup-section,
.forgot-password-section {
    color: #fff;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 14px;
}

.login-section {
    min-height: 80vh;
}

.signup-section {
    min-height: 100vh;
}

.forgot-password-section {
    min-height: 70vh;
}


.login-auth-card,
.signup-auth-card,
.forgot-password-auth-card {
    background: #fff;
    color: #111;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgb(113 113 113 / 15%);
    padding: 36px;
    width: 100%;
    text-align: center;
}

.login-auth-card {
    max-width: 400px;
}

.signup-auth-card {
    max-width: 60%;
}

.forgot-password-auth-card {
    max-width: 400px;
}

.auth-title {
    font-weight: 700;
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 24px;
    letter-spacing: 1.2px;
}

.login-section .form-label,
.signup-section .form-label,
.forgot-password-section .form-label {
    font-weight: 600;
    color: #111;
    text-align: left;
    display: block;
    margin-bottom: 6px;
}

.login-section .form-control,
.signup-section .form-control,
.forgot-password-section .form-control {
    border-radius: 22px;
    border: 1.5px solid #d0d0d0;
    background: #f7f7f7;
    color: #111;
    font-size: 1rem;
    padding: 10px 16px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.login-section .form-control:focus,
.signup-section .form-control:focus,
.forgot-password-section .form-control:focus {
    border-color: #d4af37;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
    outline: none;
    background: #fff;
}

.login-btn {
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 22px;
    border: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 12px 0;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.login-btn:hover {
    opacity: 0.8;
    color: #ffffff;
    background-color: var(--primary-color);
}

.form-check {
    margin-top: 12px;
    text-align: left;
}

.form-check-input[type="checkbox"] {
    border-radius: 4px;
    border: 1.5px solid #d4af37;
    width: 1.1em;
    height: 1.1em;
    margin-top: 0;
    margin-right: 8px;
    vertical-align: middle;
    cursor: pointer;
}

.form-check-input[type="checkbox"]:checked {
    background-color: #d4af37;
    border-color: #d4af37;
}

.form-check-input {
    cursor: pointer;
    width: 1.15em;
    height: 1.15em;
    border-radius: 4px;
    border: 1.5px solid #d4af37;
    margin-top: 0.3rem;
    margin-right: 10px;
}

.form-check-label {
    font-weight: 600;
    cursor: pointer;
    color: #111;
    user-select: none;
}

.auth-link {
    color: #d4af37;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.auth-link:hover {
    color: #bfa133;
    text-decoration: underline;
}

.login-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 28px 0 24px;
    color: #999;
    font-weight: 600;
    font-size: 0.9rem;
}

.login-divider::before,
.login-divider::after {
    content: "";
    flex: 1;
    border-bottom: 1.5px solid #ccc;
    margin: 0 12px;
}

/* Google button container */
#googleSignInBtn {
    margin-bottom: 6px;
    display: flex;
    justify-content: center;
}

.nsm7Bb-HzV7m-LgbsSe {
    border-radius: 25px !important;
    padding: 0 18px !important;
}

.forgot-password-divider {
    border-bottom: 1.5px solid #eee;
    margin: 24px 0 18px 0;
}

/* marquee css  */

.promo-marquee {
    width: 100%;
    background: #000000;
    padding: 0.5rem 0;
    overflow: hidden;
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid #343434;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: marquee 24s linear infinite;
    cursor: pointer;
    font-size: 0.94rem;
    color: #e7ad47;
    font-family: 'Red Hat Text';
    font-weight: 600;
    letter-spacing: 0.5px;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}