/* ==========================================
   THEME STYLES & ACCENTS (PURPLE & GOLD)
   ========================================== */

/* Base Styles */
body {
    background-color: var(--bg-main, #06050b);
    color: var(--text-main, #ffffff);
    font-family: var(--para-font, 'Inter', sans-serif);
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
    font-family: var(--para-font, 'Inter', sans-serif);
}

/* Base Headings (Cormorant Garamond) */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-regular, 'Cormorant Garamond', serif);
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-main, #ffffff);
}

/* Paragraph Classes (Inter) */
p {
    font-family: var(--para-font, 'Inter', sans-serif);
    color: var(--text-sub, #9e9aa8);
    font-size: 16px;
    letter-spacing: 0.3px;
    margin-bottom: 0;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: 0.4s all;
}

.btn-gradient {
    font-family: var(--para-font, 'Inter', sans-serif);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 15px 35px;
    background: linear-gradient(72deg, #ba9829, #ba9730, #b1800e, #d6a84a);
    color: #06050b;
    border: 1px solid #e5c158;
    border-radius: 4px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 0 15px rgba(229, 193, 88, 0.35);
    text-transform: uppercase;
    width: fit-content;
}

.btn-gradient-danger:hover {
    background: linear-gradient(90deg, #c9184a, #a4133c, #800f2f);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(201, 24, 74, 0.5);
}

/* Primary Button: Luxury Gold Gradient Style */
.btn-gradient {
    font-family: var(--para-font, 'Inter', sans-serif);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 15px 35px;
    background: linear-gradient(90deg, #fcebb6, #e5c158, #b38b2d);
    color: #06050b;
    border: 1px solid #e5c158;
    border-radius: 4px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 0 15px rgba(229, 193, 88, 0.35);
    text-transform: uppercase;
    width: fit-content;
}

.btn-gradient:hover {
    background: linear-gradient(90deg, #b38b2d, #e5c158, #fcebb6);
    color: #06050b;
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(229, 193, 88, 0.6);
}

/* Form Control Utilities */
.form-control-1::placeholder {
    color: var(--text-sub, #9e9aa8);
    overflow-wrap: break-word;
}

.form-label {
    font-size: 13px;
    font-family: var(--para-font, 'Inter', sans-serif);
    color: var(--text-main, #ffffff);
    margin-bottom: 2px;
}

.form-control-1 {
    border: 1px solid var(--border-line, #221d38);
    font-size: 14px;
    color: var(--text-main, #ffffff);
    border-radius: 8px;
    padding: 14px 23px;
    display: block;
    width: 100%;
    background: rgba(14, 13, 25, 0.6);
    font-family: var(--para-font, 'Inter', sans-serif);
}

.form-control-1:focus,
.form-control-1:focus-visible {
    outline: 1px solid var(--accent-gold, #e5c158);
}

.dark-mode .form-control-1 {
    background-color: transparent;
}

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

.input-pass-btn {
    top: 12px;
    right: 10px;
}

.input-pass-btn i {
    color: var(--text-sub, #9e9aa8);
    font-size: 20px;
}

.form-control {
    background-color: transparent;
    border: 1px solid var(--border-line, #221d38);
    padding: 12px 16px;
    font-size: 14px;
    font-family: var(--para-font, 'Inter', sans-serif);
    font-weight: 400;
    resize: none;
    border-radius: 30px;
    color: var(--text-main, #ffffff);
    overflow-wrap: break-word;
}

.form-control::placeholder {
    font-family: var(--para-font, 'Inter', sans-serif);
    color: var(--text-sub, #9e9aa8) !important;
    overflow-wrap: break-word;
}

.form-control:focus {
    border-color: var(--accent-gold, #e5c158);
    box-shadow: 0 0 0 0.15rem rgba(229, 193, 88, 0.25);
}

/* Button Type A: Gold Solid */
.btn-primary {
    background: linear-gradient(90deg, #e5c158, #b38b2d);
    color: #06050b;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(229, 193, 88, 0.3);
    transition: 0.3s;
}

.btn-primary:hover {
    box-shadow: 0 0 25px rgba(229, 193, 88, 0.5);
}

/* Button Type B: Outline Gold Glow */
.btn-outline {
    background: transparent;
    color: var(--accent-gold, #e5c158);
    padding: 15px 30px;
    border: 1px solid var(--accent-gold, #e5c158);
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
    box-shadow: inset 0 0 10px rgba(229, 193, 88, 0.15);
}

.btn-outline:hover {
    background: rgba(229, 193, 88, 0.1);
    box-shadow: 0 0 15px rgba(229, 193, 88, 0.4);
}

/* Custom Checkbox */
.custom-checkbox label {
    position: relative;
    cursor: pointer;
}

.custom-checkbox label:before {
    content: '';
    appearance: none;
    background-color: transparent;
    border: 1px solid var(--accent-gold, #e5c158);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    padding: 7px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    border-radius: 2px;
    margin-right: 5px;
}

.custom-checkbox input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    left: 6px;
    width: 4px;
    height: 9px;
    border: solid var(--accent-gold, #e5c158);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Floating Animation */
.seller-img img.img-fluid {
    animation: floatDown 4s ease-in-out infinite;
    transform: translateY(15px);
}

@keyframes floatDown {
    0%,
    100% {
        transform: translateY(-15px);
    }
    25%,
    50% {
        transform: translateY(15px);
    }
    75% {
        transform: translateY(-15px);
    }
}

/* Site Loader CSS */
.loader-wrap {
    height: 100vh;
    width: 100vw;
    position: fixed;
    left: 0px;
    top: 0px;
    background-color: var(--bg-main, #06050b);
    z-index: 99999;
}

.loader {
    animation: spin 1.5s linear alternate infinite;
    background: #0e0d19;
    border-radius: 50%;
    height: 120px;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    border: 1px solid var(--border-line, #221d38);
}

.loader:before {
    background: var(--accent-gold, #e5c158);
    border-radius: 50%;
    content: '';
    display: block;
    height: 0.5em;
    width: 0.5em;
    z-index: 2;
}

.loader:after {
    background: #8a3ffc;
    border-radius: 50%;
    box-shadow:
        0em -2.6em #e5c158,
        2.25em -4.02em #e5c158,
        2.25em -1.25em #e5c158,
        4.6em 0em #e5c158,
        2.25em 1.25em #e5c158,
        2.25em 4.02em #e5c158,
        0em 2.6em #e5c158,
        -2.25em 4.02em #e5c158,
        -2.25em 1.25em #e5c158,
        -4.6em 0em #e5c158,
        -2.25em -1.25em #e5c158,
        -2.25em -4.02em #e5c158;
    content: '';
    display: block;
    height: 2em;
    width: 2em;
}

.inner {
    animation: load 1.5s linear alternate infinite;
    border: solid 1px var(--accent-gold, #e5c158);
    border-radius: 50%;
    height: 1.75em;
    width: 1.75em;
    z-index: 1;
}

.loader,
.loader:before,
.loader:after,
.inner {
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
}

@keyframes load {
    0% {
        box-shadow:
            0em -2.6em #8a3ffc,
            2.25em -1.25em #8a3ffc,
            2.25em 1.25em #8a3ffc,
            0em 2.6em #8a3ffc,
            -2.25em 1.25em #8a3ffc,
            -2.25em -1.25em #8a3ffc;
    }
    100% {
        box-shadow:
            0em -2.6em #e5c158,
            2.25em -1.25em #e5c158,
            2.25em 1.25em #e5c158,
            0em 2.6em #e5c158,
            -2.25em 1.25em #e5c158,
            -2.25em -1.25em #e5c158;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Custom Radio */
.custom-radio-1:checked ~ .radio-here,
.custom-radio-1:not(:checked) ~ .radio-here {
    position: relative;
    padding-left: 32px;
    cursor: pointer;
    display: block;
    width: 18px;
    height: 15px;
}

.custom-radio-1:checked ~ .radio-here:before,
.custom-radio-1:not(:checked) ~ .radio-here:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    border: 1px solid var(--accent-gold, #e5c158);
    border-radius: 100%;
    background: transparent;
}

.custom-radio-1:checked ~ .radio-here:after,
.custom-radio-1:not(:checked) ~ .radio-here:after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--accent-gold, #e5c158);
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    transition: all 0.2s ease;
}

.custom-radio-1:not(:checked) ~ .radio-here:after {
    opacity: 0;
    transform: scale(0);
}

.custom-radio-1:checked ~ .radio-here:after {
    opacity: 1;
    transform: scale(1);
}

.custom-radio-1:checked + .radio-here + .label-span {
    font-weight: 600;
}

/* FAQ Titles */
.faq-title {
    font-family: var(--heading-regular, 'Cormorant Garamond', serif);
    font-weight: 700;
    font-size: 36px;
    color: var(--accent-gold, #e5c158);
}

.faq-subtitle {
    color: var(--text-sub, #9e9aa8);
    font-size: 14px;
}

/* ==========================================
   LUXURY DARK/PURPLE ACCORDION
   ========================================== */

.custom-accordion .accordion-item {
    background: rgba(14, 13, 25, 0.8) !important;
    border: 1px solid var(--border-line, #221d38) !important;
    border-radius: 6px !important;
    margin-bottom: 15px;
    padding: 5px 20px;
    transition: all 0.3s ease-in-out;
}

.custom-accordion .accordion-item:hover {
    border-color: rgba(229, 193, 88, 0.4) !important;
    box-shadow: 0 0 15px rgba(138, 63, 252, 0.15);
}

.custom-accordion .accordion-button {
    background: transparent !important;
    color: var(--text-main, #ffffff) !important;
    box-shadow: none !important;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.5px;
    padding: 20px 40px 20px 0;
    position: relative;
    transition: all 0.3s ease;
}

/* Text Glow Utility */
.text-glow-gold,
.text-glow-cyan {
    color: var(--accent-gold, #e5c158) !important;
    text-shadow: 0 0 10px rgba(229, 193, 88, 0.5);
    font-weight: 700;
    letter-spacing: 1px;
}

.custom-accordion .accordion-button::after {
    display: none !important;
}

.custom-accordion .accordion-button::before {
    content: '+';
    font-family: var(--para-font, 'Inter', sans-serif);
    font-size: 22px;
    font-weight: 300;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    color: var(--accent-gold, #e5c158);
    transition:
        transform 0.3s ease,
        color 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--accent-gold, #e5c158) !important;
    text-shadow: 0 0 8px rgba(229, 193, 88, 0.3);
}

.custom-accordion .accordion-button:not(.collapsed)::before {
    content: '−';
    color: var(--accent-gold, #e5c158);
    transform: rotate(180deg);
}

.custom-accordion .accordion-body {
    font-size: 15px;
    color: var(--text-sub, #9e9aa8);
    line-height: 1.6;
    padding: 10px 0 25px 0;
    border-top: 1px solid var(--border-line, #221d38);
    margin-top: -5px;
}

.products-accordion-wrapper .accordion-body {
    background: var(--bg-card, #0e0d19);
    padding: 20px 30px;
}

.products-accordion-wrapper .accordion-body .accordion-desc:last-child {
    border-bottom: 0px;
    margin: 0;
}

/* Banner CSS */
.page-banner {
    background-image: url(../img/page-banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 210px;
}

.slider-sec .slider-space {
    padding: 0px 50px;
}

/* Orders Table */
.my-orders-wrapper .orders-table-wrapper table.table td {
    background: var(--bg-card, #0e0d19);
    color: var(--text-main, #ffffff);
}

.my-orders-wrapper .orders-table-wrapper table.table td:first-child {
    border-radius: 7px 0px 0px 7px;
}

.my-orders-wrapper .orders-table-wrapper table.table td:last-child {
    border-radius: 0px 7px 7px 0px;
}

.my-orders-wrapper .orders-table-wrapper table.table {
    border-collapse: separate;
    border-spacing: 0px 10px;
}

.my-orders-wrapper .orders-table-wrapper .table > :not(caption) > * > * {
    border-bottom-width: 0;
}

/* General Utilities */
.dark-mode .light-image {
    filter: brightness(0) invert(1);
}

.border-rounded {
    border-radius: 60px;
}
.radius-100 {
    border-radius: 50%;
}
.border-7 {
    border-radius: 7px;
}
.radius-12 {
    border-radius: 12px;
}

.icon-border {
    border: 1px solid var(--border-line, #221d38);
    border-radius: 2px;
}

.border-down {
    border-bottom: 1px solid var(--border-line, #221d38);
}

.border-roundness-0 {
    border-radius: 0px;
}
.border-top-radius {
    border-radius: 7px 7px 0px 0px;
}
.border-bottom-radius {
    border-radius: 0px 0px 7px 7px;
}
.cursor-pointer {
    cursor: pointer;
}
.right-0 {
    right: 0px;
}
.left-0 {
    left: 0px;
}
.space-nowrap {
    white-space: nowrap;
}

.icon-badge {
    background-color: var(--bg-card, #0e0d19);
    border: 1px solid var(--border-line, #221d38);
    height: 40px;
    width: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold, #e5c158);
    text-decoration: none;
}

.social-icon {
    background-color: var(--bg-card, #0e0d19);
    height: 35px;
    width: 35px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold, #e5c158);
    text-decoration: none;
    transition: 0.3s all;
}

.social-icon:hover {
    transform: scale(1.1);
    color: #ffffff;
    background-color: var(--accent-gold, #e5c158);
}

.icon-badge.sm {
    height: 29px;
    width: 29px;
}
.icon-badge.md {
    height: 33px;
    width: 33px;
}
.icon-badge.sm i {
    font-size: 13px;
}
.icon-badge.md i {
    font-size: 16px;
}

.icon-badge:hover {
    background: transparent;
    border-color: var(--accent-gold, #e5c158);
    color: var(--accent-gold, #e5c158);
}

.writting-mode-lr {
    writing-mode: vertical-lr;
    rotate: 180deg;
}
figure {
    margin-bottom: 0px;
}

.secondary-border {
    border: 1px solid var(--border-line, #221d38);
}

.box-shadow-1 {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 12px;
}

.w-fit {
    width: fit-content;
}
.column-count-2 {
    column-count: 2;
}

.border-line {
    background-color: var(--border-line, #221d38);
    width: 1px;
    height: 10px;
    display: inline-block;
}

.z-index-1 {
    z-index: 1;
}

.header-icons a {
    color: var(--text-main, #ffffff);
    text-decoration: none;
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

.dark-color-hover:hover {
    color: var(--accent-gold, #e5c158);
}
.dark-hover:hover {
    color: var(--accent-gold, #e5c158);
}
.light-hover:hover {
    color: var(--text-sub, #9e9aa8);
}

.line-clamp-1,
.line-clamp-2,
.line-clamp-3,
.line-clamp-4,
.line-clamp-5 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-1 {
    -webkit-line-clamp: 1;
}
.line-clamp-2 {
    -webkit-line-clamp: 2;
}
.line-clamp-3 {
    -webkit-line-clamp: 3;
}
.line-clamp-4 {
    -webkit-line-clamp: 4;
}
.line-clamp-5 {
    -webkit-line-clamp: 5;
}

.object-cover {
    object-fit: cover;
}
.section {
    padding: 60px 0px 68px;
}

/* Number Inputs */
.number-input::-webkit-outer-spin-button,
.number-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.number-input[type='number'] {
    -moz-appearance: textfield;
}

/* Links */
.link-hover:hover {
    color: var(--accent-gold, #e5c158);
}

.link-here:before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold, #e5c158);
    bottom: 0;
    left: 0;
    transition: 0.8s;
}

.site-header .header-nav .link-here:hover {
    color: var(--accent-gold, #e5c158);
}

.link-here:hover:before {
    width: 100%;
}
.link-here {
    position: relative;
    padding-bottom: 4px;
}

.header-link.active {
    color: var(--accent-gold, #e5c158);
    font-weight: 600;
}

.font-unset {
    font-size: unset;
}
.line-height-normal {
    line-height: normal;
}

.opacity-03 {
    opacity: 0.3;
}
.opacity-60 {
    opacity: 0.6;
}
.opacity-80 {
    opacity: 0.8;
}

.icon-height {
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-header .icon-height {
    border: 1px solid var(--border-line, #221d38);
}

/* Custom Video Player */
.video-player {
    position: relative;
}
.video-player .custom-controls {
    position: absolute;
}

.video-player .custom-controls button {
    position: relative;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: transparent;
    border: 3px solid var(--accent-gold, #e5c158);
    cursor: pointer;
}

.video-player .custom-controls button::before,
.video-player .custom-controls button::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(229, 193, 88, 0.4);
    opacity: 0;
    animation: pulseBorder 2.5s infinite;
}

.video-player .custom-controls button::after {
    animation-delay: 1.25s;
}

.video-player .custom-controls button i {
    font-size: 48px;
    color: var(--accent-gold, #e5c158);
}

@keyframes pulseBorder {
    0% {
        transform: scale(1);
        opacity: 0;
    }
    30% {
        opacity: 0.6;
    }
    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

/* Swiper Elements */
.swiper-scrollbar-drag {
    background-color: var(--accent-gold, #e5c158);
}

.swiper-scrollbar.swiper-scrollbar-horizontal {
    width: 80%;
}

.testimonials-section .swiper-button-next,
.swiper-rtl .swiper-button-prev {
    top: unset;
    background: var(--bg-card, #0e0d19);
    border: 1px solid var(--border-line, #221d38);
    padding: 30px;
    border-radius: 2px;
    bottom: 0;
}

.testimonials-section .swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    color: var(--accent-gold, #e5c158);
}

.testimonials-section .swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: auto;
    right: var(--swiper-navigation-sides-offset, 100px);
    top: unset;
    bottom: 0;
    background: var(--bg-card, #0e0d19);
    border: 1px solid var(--border-line, #221d38);
    padding: 30px;
    border-radius: 2px;
    opacity: 1;
}

.video-wrapper .custom-controls button {
    cursor: pointer;
    color: #fff;
    border-radius: 18px;
    height: 55px;
    width: 100px;
    background-color: var(--bg-card, #0e0d19);
    border: 1px solid var(--accent-gold, #e5c158);
    overflow: hidden;
    background-position: center;
}

.video-wrapper .custom-controls button i {
    font-size: 25px;
    color: var(--accent-gold, #e5c158);
}

.video-slide {
    margin: 0px 20px;
}

/* Scrollbars */
.checkout-scroll {
    overflow-y: scroll;
    padding: 0px 10px;
    height: 400px;
}

.checkout-scroll::-webkit-scrollbar {
    width: 5px;
}

.checkout-scroll::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

.checkout-scroll::-webkit-scrollbar-thumb {
    background-color: var(--accent-gold, #e5c158);
}

/* Modals */
@media (min-width: 576px) {
    .site__modal .modal-dialog {
        max-width: 700px;
    }
}

.site__modal .modal-dialog .modal-content {
    background: var(--bg-card, #0e0d19);
    border: 1px solid var(--border-line, #221d38);
}

.site__modal .modal-dialog .modal-content .btn-close {
    opacity: 1;
    filter: invert(1);
}

.page-heading {
    border-bottom: 1px solid var(--border-line, #221d38);
}

/* Counter */
.counter {
    border: 1px solid var(--border-line, #221d38);
    background: var(--bg-card, #0e0d19);
    height: 40px;
    max-width: 140px;
    width: 100%;
}

.productsdetail-section .counter {
    height: 35px;
    max-width: 100px;
}

.counter .counter-value {
    outline: none;
    border-right: 1px solid var(--border-line, #221d38);
    border-left: 1px solid var(--border-line, #221d38);
    height: 100%;
    flex: 2;
    color: var(--text-main, #ffffff);
}

.counter .plus,
.counter .minus {
    flex: 1;
    color: var(--accent-gold, #e5c158);
}

/* Slick Slider Controls */
.slider-sec .slick-prev,
.slick-next {
    width: 40px;
    height: 40px;
    border-radius: 2px;
    color: var(--accent-gold, #e5c158);
    border: 1px solid var(--accent-gold, #e5c158);
    background: var(--bg-card, #0e0d19);
}

.slider-sec .slick-prev:before {
    content: '\f104';
    font-family: 'FontAwesome';
    opacity: 1 !important;
    color: var(--accent-gold, #e5c158);
    font-size: 32px;
}

.slider-sec .slick-next:before {
    content: '\f105';
    font-family: 'FontAwesome';
    opacity: 1 !important;
    color: var(--accent-gold, #e5c158);
    font-size: 32px;
}

.slider-sec .slick-prev {
    left: 10px;
}
.slider-sec .slick-next {
    right: 10px;
}

.slider-sec .slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    cursor: pointer;
    bottom: -50px;
    left: 0;
}

.slider-sec .slick-dots li {
    background: #221d38;
    height: 10px;
    width: 10px;
    margin: 0 6px;
    border-radius: 50%;
    transition: 0.4s ease;
}

.slider-sec .slick-dots li.slick-active {
    background: var(--accent-gold, #e5c158);
}

.slider-sec .slick-dots button {
    display: none;
}

/* Ratings */
.rate:not(:checked) > label {
    width: 20px;
    overflow: hidden;
    cursor: pointer;
    color: #3b3552;
}

.rate > input:checked ~ label,
.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label,
.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
    color: var(--accent-gold, #e5c158);
}

/* Pagination */
/* ==========================================================================
   PAGINATION - LUXURY DARK & GOLD THEME CSS
   ========================================================================== */

/* Pagination Container */
.pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 12px;
    margin-top: 45px;
    padding: 10px 0;
    flex-wrap: wrap;
}

/* Base Button Styling */
.pagination-btn {
    min-width: 45px;
    height: 45px;
    padding: 0 10px;
    border-radius: 50%; /* Perfect circles for a luxury feel */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #8e95a5; /* Muted modern gray for dark mode */
    font-size: 1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    user-select: none;
}

/* Hover State (Applies only to clickable items) */
.pagination-btn:hover:not(:disabled):not(.active) {
    background: rgba(212, 175, 55, 0.08); /* Subtle gold tint */
    border-color: rgba(212, 175, 55, 0.6); /* Gold border */
    color: #d4af37; /* Gold text/icon */
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.15);
}

/* Active Page State */
.pagination-btn.active {
    background: linear-gradient(135deg, #f5e1a4 0%, #d4af37 50%, #aa7c11 100%);
    color: #07080b; /* Dark text for high contrast */
    border-color: #d4af37;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.35); /* Gold glow */
    cursor: default;
}

/* Disabled State (For Previous/Next when at limits) */
.pagination-btn:disabled {
    background: rgba(255, 255, 255, 0.015);
    border-color: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.15);
    cursor: not-allowed;
    opacity: 0.6;
}

/* Icon Alignment and Hover Animation */
.pagination-btn i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

/* Move chevron left on hover */
.pagination-btn:hover:not(:disabled) i.fa-chevron-left {
    transform: translateX(-3px);
}

/* Move chevron right on hover */
.pagination-btn:hover:not(:disabled) i.fa-chevron-right {
    transform: translateX(3px);
}
.site-pagination .page-item.active .page-link {
    background-color: var(--accent-gold, #e5c158);
    color: #06050b;
}

.site-pagination .page-item .page-link {
    height: 37px;
    width: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: var(--accent-gold, #e5c158);
    background: transparent;
    border: 1px solid var(--accent-gold, #e5c158);
    font-family: var(--para-font, 'Inter', sans-serif);
}

.site-pagination .pagination-para {
    color: var(--text-sub, #9e9aa8);
}

.site-pagination .page-item .page-link.pagination-btn i {
    font-size: 20px;
    color: #06050b;
    position: relative;
    top: 3px;
}

.page-link.pagination-btn[aria-label='Previous'] {
    background-color: transparent !important;
    border: 1px solid var(--accent-gold, #e5c158) !important;
}

.page-link.pagination-btn[aria-label='Previous'] span i {
    color: var(--accent-gold, #e5c158) !important;
}

.site-pagination .page-item .page-link.pagination-btn {
    background: var(--accent-gold, #e5c158);
}

.text-bg {
    background-image: url(../img/text-bg.png);
    background-repeat: no-repeat;
    background-position: left;
}

/* ==========================================
   GLOBAL RESPONSIVE STYLES
   ========================================== */

@media (max-width: 1536px) {
    .level-1 {
        font-size: 55px;
    }
}

@media (max-width: 1400px) {
    .level-1 {
        font-size: 45px;
    }
    .level-2-lg {
        font-size: 40px;
    }
    .level-2 {
        font-size: 30px;
    }
    .level-4-lg {
        font-size: 22px;
    }
    .level-4 {
        font-size: 19px;
    }
    .level-5 {
        font-size: 16px;
    }
    .level-6 {
        font-size: 14px;
    }
    .level-7 {
        font-size: 13px;
    }
    .custom-checkbox input:checked + label:after {
        top: 3px;
    }
}

@media (max-width: 1200px) {
    .level-1 {
        font-size: 43px;
    }
    .level-2-lg {
        font-size: 40px;
    }
    .level-2 {
        font-size: 26px;
    }
    .level-3 {
        font-size: 22px;
    }
    .level-4 {
        font-size: 18px;
    }
    .level-5 {
        font-size: 17px;
    }
    .level-6 {
        font-size: 15px;
    }
    .level-7 {
        font-size: 14px;
    }
    .level-8 {
        font-size: 12px;
    }
    .icon-badge {
        height: 37px;
        width: 37px;
    }
    .icon-badge.sm {
        height: 25px;
        width: 25px;
    }
    .icon-badge.md {
        height: 29px;
        width: 29px;
    }
    .section {
        padding: 50px 0px 56px;
    }
    .products-accordion-wrapper .accordion-button:not(.collapsed):before {
        left: 50%;
    }
}

@media (max-width: 991px) {
    .level-1 {
        font-size: 40px;
    }
    .level-2-lg {
        font-size: 36px;
    }
    .level-2 {
        font-size: 24px;
    }
    .level-3 {
        font-size: 20px;
    }
    .level-4 {
        font-size: 17px;
    }
    .level-5 {
        font-size: 16px;
    }
    .level-6 {
        font-size: 14px;
    }
    .level-7 {
        font-size: 13px;
    }
    .icon-badge {
        height: 34px;
        width: 34px;
    }
    .level-3-sm {
        font-size: 20px;
    }
    .section {
        padding: 40px 0px 44px;
    }
    .product-desc-right i {
        font-size: 10px;
    }
    .video-wrapper .custom-controls button {
        height: 40px;
        width: 75px;
    }
    .video-wrapper .custom-controls button i {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .level-1 {
        font-size: 35px;
    }
    .level-2-lg {
        font-size: 32px;
    }
    .level-2 {
        font-size: 22px;
    }
    .level-3 {
        font-size: 19px;
    }
    .level-4 {
        font-size: 16px;
    }
    .level-5 {
        font-size: 15px;
    }
    .level-6 {
        font-size: 14px;
    }
    .level-7 {
        font-size: 13px;
    }
    .level-8 {
        font-size: 12px;
    }
    .level-10 {
        font-size: 10px;
    }
    .icon-badge {
        height: 32px;
        width: 32px;
    }
    .icon-badge.sm {
        height: 21px;
        width: 21px;
    }
    .icon-badge.md {
        height: 25px;
        width: 25px;
    }
    .table-content-wrapper table.table {
        min-width: 580px;
    }
    .video-player .custom-controls button {
        height: 83px;
        width: 83px;
    }
    .video-player .custom-controls button i {
        font-size: 38px;
    }
    .video-wrapper .custom-controls button i {
        font-size: 18px;
    }
    .video-wrapper .custom-controls button {
        height: 40px;
        width: 75px;
    }
    .testimonials-section .swiper-button-prev,
    .swiper-rtl .swiper-button-next {
        right: var(--swiper-navigation-sides-offset, 57px);
        padding: 16px;
    }
    .testimonials-section .swiper-button-next,
    .swiper-rtl .swiper-button-prev {
        padding: 16px;
    }
    .testimonials-section .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .level-1 {
        font-size: 23px;
    }
    .level-2-lg {
        font-size: 21px;
    }
    .level-2 {
        font-size: 19px;
    }
    .level-3 {
        font-size: 17px;
    }
    .level-4 {
        font-size: 14px;
    }
    .level-5 {
        font-size: 13px;
    }
    .level-6 {
        font-size: 13px;
    }
    .level-7 {
        font-size: 12px;
    }
    .level-8 {
        font-size: 11px;
    }
    .level-10 {
        font-size: 9px;
    }
    .icon-badge {
        height: 30px;
        width: 30px;
    }
    .icon-badge.sm {
        height: 21px;
        width: 21px;
    }
    .icon-badge.md {
        height: 25px;
        width: 25px;
    }
    .py-xs-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    .mb-xs-4 {
        margin-bottom: 1.5rem !important;
    }
    .accordion-button::after {
        width: 12px;
        height: 12px;
        background-size: 12px;
    }
    .btn,
    .shop-btn,
    .form-btn {
        font-size: 11px;
        width: 100%;
        display: block;
    }
    .slider-sec .slider-space {
        padding: 0px 0px;
    }
    .video-slide {
        margin: 0px 0px;
    }
    .video-wrapper .custom-controls button {
        height: 30px;
        width: 65px;
    }
    .video-wrapper .custom-controls button i {
        font-size: 13px;
    }
    .video-section {
        padding: 0px;
    }
    .site-pagination .page-item .page-link {
        height: 34px;
        width: 34px;
    }
    .site-pagination .page-item .page-link.pagination-btn i {
        font-size: 16px;
    }
    p {
        font-size: 11px;
    }
}
