/* ==========================================
   ABOUT US SECTION
   ========================================== */

.aboutchoose-bg {
    background-image: url(../img/whybg-wrapper.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 50px;
    border-radius: 31px;
    border: 1px solid var(--border-line, #221d38);
    background-color: var(--bg-card, #0e0d19);
}

.us-content {
    font-family: var(--heading-regular, 'Cormorant Garamond', serif);
    color: var(--accent-gold, #e5c158);
    font-weight: 600;
    font-size: 24px;
    letter-spacing: 1px;
}

.apart-content {
    font-family: var(--heading-regular, 'Cormorant Garamond', serif);
    color: var(--text-main, #ffffff);
    font-weight: 700;
    font-size: 32px;
}

.content-re {
    font-family: var(--para-font, 'Inter', sans-serif);
    color: var(--text-sub, #9e9aa8);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
}

.iconchoose-aboutimg {
    width: -webkit-fill-available;
    height: 60px;
    object-fit: scale-down;
    background: var(--bg-card, #0e0d19);
    border: 1px solid var(--accent-gold, #e5c158);
    border-radius: 50px;
    max-width: 60px;
    margin-top: -80px;
    padding: 10px;
}

/* ==========================================
   MARQUEE SECTION
   ========================================== */

.stats-marquee-wrapper {
    background: linear-gradient(90deg, #1c1033, #381559, #1c1033);
    border-top: 1px solid var(--border-line, #221d38);
    border-bottom: 1px solid var(--border-line, #221d38);
    overflow: hidden;
    padding: 14px 0;
}

.stats-marquee {
    overflow: hidden;
    white-space: nowrap;
}

.stats-marquee-track {
    display: inline-block;
    animation: statsMarquee 20s linear infinite;
}

.stats-marquee-track span {
    color: var(--accent-gold, #e5c158);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    margin: 0 40px;
    text-transform: uppercase;
    font-family: var(--para-font, 'Inter', sans-serif);
}

@keyframes statsMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================
   COUNTER SECTION
   ========================================== */

.stats-counter-section {
    padding: 60px 0;
    background-color: var(--bg-main, #06050b);
}

.stats-item {
    position: relative;
}

.stats-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--border-line, #221d38);
}

.stats-number {
    font-family: var(--heading-regular, 'Cormorant Garamond', serif);
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-gold, #e5c158);
    text-shadow: 0 0 10px rgba(229, 193, 88, 0.2);
}

.stats-item p {
    margin-top: 8px;
    font-size: 14px;
    color: var(--text-sub, #9e9aa8);
    font-family: var(--para-font, 'Inter', sans-serif);
}

/* ==========================================
   SHOP DETAIL & GALLERY
   ========================================== */

.sd-shop-detail {
    color: var(--text-main, #ffffff);
}

.shop-detail-wrapper {
    width: 100%;
    border-radius: 30px;
    height: 100%;
    object-fit: fill;
}

.sd-gallery-wrapper {
    display: flex;
    gap: 20px;
}

.sd-main-slider {
    flex: 1;
    overflow: hidden;
}

.sd-main-img {
    width: 100%;
    height: 493px;
    object-fit: scale-down;
    border-radius: 14px;
    cursor: zoom-in;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-line, #221d38);
    background: var(--bg-card, #0e0d19);
}

.sd-thumb-slider {
    width: 100px;
    height: 493px;
}

.sd-thumb-slider .swiper-slide img {
    height: 90px !important;
    opacity: 0.4;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    object-fit: scale-down;
    background: var(--bg-card, #0e0d19);
    border: 1px solid var(--border-line, #221d38);
}

.sd-thumb-slider .swiper-slide-thumb-active img {
    opacity: 1;
    border-color: var(--accent-gold, #e5c158) !important;
    box-shadow: 0 0 10px rgba(229, 193, 88, 0.3);
}

.sd-badge {
    background: linear-gradient(90deg, #e5c158, #b38b2d);
    color: #06050b;
    padding: 6px 15px;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
}

.sd-title {
    font-family: var(--heading-regular, 'Cormorant Garamond', serif);
    font-weight: 700;
    font-size: 38px;
    color: var(--text-main, #ffffff);
}

.sd-description {
    color: var(--text-sub, #9e9aa8);
    line-height: 1.7;
    font-family: var(--para-font, 'Inter', sans-serif);
}

.sd-price {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(90deg, #fcebb6, #e5c158);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--heading-regular, 'Cormorant Garamond', serif);
}

.sd-quantity-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-line, #221d38);
    background: var(--bg-card, #0e0d19);
    padding: 4px 6px;
    border-radius: 8px;
}

.sd-quantity-wrapper button {
    background: rgba(229, 193, 88, 0.1);
    color: var(--accent-gold, #e5c158);
    border: 1px solid var(--border-line, #221d38);
    padding: 4px 13px;
    cursor: pointer;
    margin: 5px 6px;
    border-radius: 4px;
    height: 38px;
    width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.sd-quantity-wrapper button:hover {
    background: var(--accent-gold, #e5c158);
    color: #06050b;
}

.sd-quantity-wrapper input {
    width: 50px;
    text-align: center;
    border: none;
    background: transparent;
    color: var(--text-main, #ffffff);
    font-family: var(--para-font, 'Inter', sans-serif);
    font-weight: 600;
}

.list-product-detail li i {
    color: var(--accent-gold, #e5c158);
    margin-right: 10px;
}

.product-new-detail {
    background: var(--bg-card, #0e0d19);
    border: 1px solid var(--border-line, #221d38);
    border-radius: 16px;
    text-align: center;
    padding: 24px;
}

.product-new-detail h5 {
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(90deg, #fcebb6, #e5c158);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--heading-regular, 'Cormorant Garamond', serif);
}

ul.list-product-detail {
    list-style: none;
    padding: 0;
}

.list-product-detail li {
    color: var(--text-sub, #9e9aa8);
    line-height: 1.7;
    font-family: var(--para-font, 'Inter', sans-serif);
}

.sd-zoom-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 5, 11, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
}

.sd-zoomed-img {
    max-width: 85%;
    max-height: 85vh;
    border-radius: 15px;
    cursor: zoom-out;
    border: 1px solid var(--border-line, #221d38);
}

/* ==========================================
   USER PROFILE STYLES
   ========================================== */

.profile-tab-img figure img.img-fluid {
    max-width: 116px;
    height: 116px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold, #e5c158);
}

.profile-tabs {
    background-image: url(../img/pro-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    background-color: var(--bg-card, #0e0d19);
    border: 1px solid var(--border-line, #221d38);
}

.profile-section .profile-tabs .nav-pills .nav-link {
    padding: 18px 25px;
    border-left: 4px solid transparent;
    transition: 0.3s ease;
    border-radius: 0;
    font-family: var(--para-font, 'Inter', sans-serif);
    font-weight: 500;
    color: var(--text-sub, #9e9aa8);
}

.profile-section .profile-tabs .nav-pills .nav-link:hover {
    color: var(--text-main, #ffffff);
    background: rgba(229, 193, 88, 0.05);
}

.profile-section .profile-tabs .nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    color: #06050b !important;
    background: linear-gradient(90deg, #fcebb6, #e5c158) !important;
    border-left: 4px solid #ffffff;
    font-weight: 600;
}

.profile-tabs .nav-link i {
    width: 20px;
    font-size: 15px;
}

.profile-top-text {
    border-bottom: 1px solid var(--border-line, #221d38);
    padding-bottom: 20px;
}

.profile-section .profile-tabs .nav-pills .nav-item {
    border-bottom: 1px solid var(--border-line, #221d38);
}

.profile-section .profile-tabs .nav-pills .nav-item:last-child {
    border: 0;
}

section.profile-section input.form-control::placeholder {
    color: var(--text-sub, #9e9aa8);
    opacity: 0.8;
}

section.profile-section input.form-control {
    color: var(--text-main, #ffffff);
    background-color: rgba(14, 13, 25, 0.6);
    border: 1px solid var(--border-line, #221d38);
}

.profile-section .profile-icon {
    background: var(--border-line, #221d38);
    color: var(--accent-gold, #e5c158);
}

.profile-tabs-content {
    background: var(--bg-card, #0e0d19);
    border-radius: 12px;
    border: 1px solid var(--border-line, #221d38);
    padding: 25px;
}

.password___wrap button {
    color: var(--accent-gold, #e5c158);
}

.upload____wrapper {
    border: 2px dashed var(--border-line, #221d38);
    border-radius: 16px;
    background: rgba(14, 13, 25, 0.5);
}

/* Profile Address Cards */
.address-list .address-data {
    border: 1px solid var(--border-line, #221d38);
    cursor: pointer;
    transition: 0.3s ease;
    background-color: rgba(14, 13, 25, 0.7);
    background-image: url('../img/check-icon.svg');
    background-position: top 20px right 20px;
    background-repeat: no-repeat;
    border-radius: 12px;
    padding: 20px;
}

.address-list .single-address input:checked ~ .address-data {
    background-image: url('../img/checked.svg'), linear-gradient(135deg, #23123b, #0e0d19);
    background-position: top 20px right 20px, center;
    background-repeat: no-repeat;
    border-color: var(--accent-gold, #e5c158);
    box-shadow: 0 0 15px rgba(229, 193, 88, 0.2);
}

.profile-section .address-list .single-address input:checked ~ .address-data span,
.profile-section hr,
.profile-section input:checked ~ .address-data table {
    color: var(--text-main, #ffffff);
}

/* Loyalty Points */
.redeem-badge {
    background: rgba(229, 193, 88, 0.15);
    color: var(--accent-gold, #e5c158);
    border: 1px solid var(--accent-gold, #e5c158);
    padding: 4px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.loyalty____points____wrap {
    border-radius: 12px;
    padding: 25px;
    background: var(--bg-card, #0e0d19);
    border: 1px solid var(--border-line, #221d38);
}

.loyalty___icon {
    background: rgba(229, 193, 88, 0.1);
    color: var(--accent-gold, #e5c158);
    border-radius: 12px;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.edit___icon:hover {
    background: var(--accent-gold, #e5c158);
    color: #06050b;
}

/* Profile Modal Overrides */
.profile-section .modal-content {
    background-color: var(--bg-card, #0e0d19);
    border: 1px solid var(--border-line, #221d38);
    border-radius: 12px;
}

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

/* ==========================================
   AGE MODAL & PRIVACY STYLES
   ========================================== */

.age-modal .modal-content {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-line, #221d38);
    background: var(--bg-main, #06050b);
}

.custom-close {
    position: absolute;
    right: 15px;
    top: 15px;
    background-color: var(--border-line, #221d38) !important;
    color: var(--accent-gold, #e5c158);
    border-radius: 50%;
    opacity: 1;
    z-index: 10;
    padding: 10px;
}

.age-left img {
    height: 100%;
    object-fit: cover;
}

.age-right {
    padding: 40px 30px;
    background: var(--bg-card, #0e0d19);
}

.verify-small {
    color: var(--accent-gold, #e5c158);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.age-right h3 {
    margin: 10px 0 20px;
    font-family: var(--heading-regular, 'Cormorant Garamond', serif);
    font-weight: 700;
    color: var(--text-main, #ffffff);
    font-size: 28px;
}

.wrapper-privacy ul li,
.sd-shop-detail p,
.sd-shop-detail ul li {
    color: var(--text-sub, #9e9aa8);
    padding: 0;
    font-family: var(--para-font, 'Inter', sans-serif);
}

.age-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.age-socials a {
    color: var(--text-sub, #9e9aa8);
    font-size: 16px;
    transition: color 0.3s;
}

.age-socials a:hover {
    color: var(--accent-gold, #e5c158);
}

.terms-text {
    font-size: 12px;
    margin-top: 15px;
    color: var(--text-sub, #9e9aa8);
}

/* Custom Gold/Dark Checkbox */
.custom-check input { display: none; }

.custom-check label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-sub, #9e9aa8);
}

.custom-check label span {
    width: 18px;
    height: 18px;
    border: 1px solid var(--accent-gold, #e5c158);
    border-radius: 3px;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.custom-check input:checked + label span {
    background: var(--accent-gold, #e5c158);
    border-color: var(--accent-gold, #e5c158);
}

.custom-check input:checked + label span::after {
    content: '✔';
    position: absolute;
    color: #06050b;
    font-size: 11px;
    left: 3px;
    top: -1px;
    font-weight: bold;
}

.achcor-term {
    color: var(--accent-gold, #e5c158);
    font-weight: 700;
    text-align: center;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    background-color: var(--bg-main, #06050b);
}

::-webkit-scrollbar-track {
    background: var(--bg-main, #06050b);
}

::-webkit-scrollbar-thumb {
    background: var(--border-line, #221d38);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold, #e5c158);
}

/* Pagination Custom */
.middle-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card, #0e0d19);
    border: 1px solid var(--border-line, #221d38);
    color: var(--text-main, #ffffff);
    font-weight: 600;
    border-radius: 6px;
}

button.btn.btn-sm.middle-wrapper.pagination-btn.border.p-0.px-3.py-1.fs-6.text-white.active,
.pagination-btn:hover {
    background: var(--accent-gold, #e5c158) !important;
    color: #06050b !important;
    border-color: var(--accent-gold, #e5c158) !important;
}

/* ==========================================
   MEDIA QUERIES (RESPONSIVE ADAPTATIONS)
   ========================================== */

@media (max-width: 1367px) {
    .age-right h3 { font-size: 24px; }
    .age-right p { font-size: 14px; }
}

@media (max-width: 1119px) {
    .verify-small { font-size: 12px; }
    .age-right {
        padding: 40px 20px;
        background: var(--bg-card, #0e0d19);
    }
}

@media (max-width: 991px) {
    .sd-gallery-wrapper { display: unset; }
    .sd-main-img { height: 400px; }
    .sd-thumb-slider { width: 100%; height: auto; }
    .sd-thumb-slider .swiper-slide img { height: 100px !important; }
}

@media (max-width: 576px) {
    .aboutchoose-bg { padding: 30px 20px; }
    .stats-item:not(:last-child)::after { display: none; }
    .sd-quantity-wrapper { flex-direction: column; gap: 8px; }
    .age-right { padding: 30px 15px; }
}