@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1400px;
    }
}

body {
    font-family: "Poppins", sans-serif;
}

section.home-banner {
    background-image: url(../img/home-banner-bg.png);
    padding: 300px 0px 290px;
    background-size: cover;
    background-position: center center;
}


.banner-content {
    text-align: center;
    color: white;
}

.section-heading h1 {
    font-size: 60px;
    font-weight: 400;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 20px;
    line-height: 32px;
    max-width: 760px;
    margin: 0 auto 30px;
}

.btn-white {
    background-color: white;
    border-radius: 50px;
    color: #28282B;
    font-size: 17px;
    font-weight: 500;
    padding: 10px 35px;
    border: 1px solid white;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
    border: 1px solid #E2E2E2;
}

.btn-black {
    background-color: black;
    border-radius: 50px;
    color: white;
    font-size: 17px;
    font-weight: 500;
    padding: 10px 35px;
    border: 1px solid white;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
}

.btn-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-white:before,
.btn-black:before {
    content: "";
    position: absolute;
    background-color: #CE8947;
    left: 0;
    width: 0;
    height: 100%;
    top: 0;
    z-index: 0;
    transition: all 0.4s ease;
    border-radius: 100px;
}

.btn-white span,
.btn-black span {
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.btn-white:hover:before,
.btn-black:hover:before {
    width: 100%;
}

.btn-white:hover,
.btn-black:hover {
    transform: translateY(-4px);
}

.btn-white:hover span,
.btn-black:hover span {
    color: white;
}

.offer-box {
    background-color: #000000;
    border-radius: 40px;
    color: #FFFFFF;
    padding: 30px 40px;
    text-align: center;
}

.offer-box-upper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #FFFFFFB3;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.offer-box-bottom {
    text-align: left;
}

.offer-box-inner h3 {
    color: #CE8947;
    font-size: 65px;
    line-height: 80px;
    font-weight: bold;
    margin: 0;
}

.offer-box-inner p {
    margin: 0;
    font-size: 17px;
}

.offer-box-bottom p {
    margin: 0;
    text-transform: capitalize;
    font-size: 18px;
    line-height: 28px;
}

.section-heading h2 {
    color: #000000;
    font-weight: 400;
    font-size: 50px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.offer-img img {
    max-width: 450px;
}

section.offer {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    margin-top: -40px;
    z-index: 4;
    position: relative;
    background-color: white;
    padding-top: 80px;
    padding-bottom: 80px;
}

section.best-seller {
    background-color: white;
    padding-top: 80px;
    padding-bottom: 100px;
}

.best-seller-top {
    margin-bottom: 50px;
}

.tag-heading {
    display: inline-block;
    color: #CE8947;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
}

.best-seller .section-heading h2 {
    margin-bottom: 0;
}

/* Toggle buttons re-use the existing btn-black / btn-white styles,
   just made smaller + placed side by side */
.toggle-btn-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toggle-btn-wrapper .btn-white {
    border: 1px solid #E2E2E2 !important;
    border-radius: 50px !important;
}

.toggle-btn-wrapper .btn.toggle-btn {
    padding: 10px 28px;
    font-size: 15px;
}

/* Product card */
.best-seller-slider {
    overflow: hidden;
    padding: 10px 0 30px;
}

.product-card {
    background-color: #F6F6F6;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    height: 100%;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(2, 14, 44, 0.08);
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    font-size: 13px;
    font-weight: 500;
    padding: 5px 16px;
    border-radius: 50px;
    color: white;
}

.badge-sale {
    background-color: #E4443C;
}

.badge-bestseller {
    background-color: #CE8947;
}

.product-img {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    margin-bottom: 20px;
    min-height: 400px;
    padding-bottom: 0;
}

.product-img img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
}

.product-info h4, .product-info h4 a {
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 4px;
    text-decoration: none;
}

.product-info>p {
    font-size: 15px;
    color: #5B5B5B;
    margin-bottom: 16px;
    min-height: 45px;
}

.product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price-row h5 {
    font-size: 22px;
    font-weight: 400;
    color: #000000;
    margin: 0;
}

.btn-cart {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #000000;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-cart:hover {
    background-color: #CE8947;
    transform: translateY(-3px);
}

/* Slider controls: progress bar + arrows */
.slider-controls {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 10px;
    justify-content: space-between;
}

.swiper-pagination-progress {
    position: relative;
    flex-grow: 1;
    height: 3px;
    background-color: #E2E2E2;
    border-radius: 10px;
    overflow: hidden;
    max-width: 320px;
}

.swiper-pagination-progress .swiper-pagination-progressbar-fill {
    background-color: #000000;
}

.slider-arrows {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.slider-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #C5C5C5;
    background-color: white;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background-color: #CE8947;
    border-color: #CE8947;
    color: white;
}

.swiper-button-disabled.slider-arrow {
    opacity: 1;
    pointer-events: none;
}

@media (max-width: 991px) {
    .toggle-btn-wrapper {
        margin-top: 20px;
        justify-content: flex-start !important;
    }
}

.btn-cart img {
    width: 22px;
}

.slider-arrow:hover img {
    filter: invert(1);
}

section.why-empire {
    background-color: #000000;
    padding-top: 100px;
    padding-bottom: 100px;
}

.why-empire .section-heading {
    margin-bottom: 80px;
}

.why-empire .section-heading h2 {
    color: #FFFFFF;
    margin-bottom: 0;
}

.why-empire .tag-heading {
    margin-bottom: 12px;
}

.why-empire-box {
    padding-right: 15px;
    margin-bottom: 0;
}

.why-empire-box-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 16px;
}

.why-empire-box-top h4 {
    color: #FFFFFF;
    font-size: 30px;
    font-weight: 400;
    line-height: 34px;
    margin: 0;
    max-width: 210px;
}

.why-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 6px;
    transition: all 0.4s ease;
}

.why-empire-box p {
    color: #969696;
    font-size: 16px;
    line-height: 26px;
    margin: 0;
}

@media (max-width: 991px) {
    .why-empire-box {
        padding-right: 0;
    }
}

@media (max-width: 575px) {

    .why-empire-box-top h4,
    .why-empire-box p {
        max-width: 100%;
    }
}

.why-empire-box:hover .why-arrow {
    transform: rotate(45deg);
}

section.how-it-works {
    background-color: #CE8947;
    padding-top: 100px;
    padding-bottom: 100px;
}

.how-it-works .tag-heading {
    color: #000000;
}

.how-it-works .section-heading h2 {
    color: #000000;
    margin-bottom: 30px;
}

.how-it-works-content p {
    color: #000000;
    font-size: 16px;
    line-height: 26px;
    max-width: 410px;
    margin-bottom: 30px;
    margin-top: 160px;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid #14110A;
    border-radius: 50px;
    color: #14110A;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 30px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.btn-outline:hover {
    transform: translateY(-4px);
}

.steps-wrapper {
    display: flex;
    flex-direction: column;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 28px 0;
    border-bottom: 1px solid #000000;
}

.step-item:first-child {
    padding-top: 0;
}

.step-number {
    font-size: 100px;
    font-weight: 400;
    color: #674523;
    line-height: 90px;
    min-width: 110px;
}

.step-content h4 {
    font-size: 24px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 16px;
    line-height: 26px;
    color: #000000;
    margin: 0;
    max-width: 480px;
}

@media (max-width: 991px) {
    .step-number {
        font-size: 50px;
        min-width: 80px;
    }

    .how-it-works-content {
        margin-bottom: 50px;
    }
}

section.ebay-cta {
    background-color: #000000;
    background-image: radial-gradient(circle at 12% 100%, rgba(206, 137, 71, 0.28), transparent 45%), radial-gradient(circle at 100% 0%, rgba(206, 137, 71, 0.2), transparent 45%);
    padding-top: 90px;
    padding-bottom: 90px;
    position: relative;
    overflow: hidden;
    border-top: 2px solid #CE8947;
}

.ebay-cta .section-heading h2 {
    color: #FFFFFF;
    margin-bottom: 25px;
}

.ebay-logo img {
    max-width: 250px;
    margin-bottom: 30px;
    display: block;
}

.ebay-text {
    color: #FFFFFF;
    font-size: 15px;
    line-height: 24px;
    max-width: 700px;
    margin: 0;
}

.ebay-qr-card {
    background-color: #000000;
    border: 1px solid #818181;
    border-radius: 30px;
    padding: 30px;
    text-align: center;
    max-width: 300px;
    margin-left: auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.ebay-qr-img {
    margin-bottom: 20px;
}

.ebay-qr-img img {
    width: 80%;
    display: block;
    margin: 0 auto;
}

.ebay-qr-card h5 {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.ebay-qr-card p {
    color: #9C9C9C;
    font-size: 13px;
    margin-bottom: 20px;
}

.ebay-qr-card .btn-white {
    padding: 10px 20px;
    font-size: 14px;
    display: inline-block;
    /* width: 100%; */
}

@media (max-width: 991px) {
    .ebay-qr-card {
        margin: 40px auto 0;
    }
}

section.featured-cards {
    background-color: #FFFFFF;
    padding-top: 80px;
    padding-bottom: 100px;
}

.featured-cards-top {
    margin-bottom: 50px;
}

.featured-cards .section-heading h2 {
    margin-bottom: 0;
}

.featured-cards .col-lg-3 {
    margin-bottom: 30px;
}

.badge-new {
    background-color: #000000;
}

.btn-view-more {
    border: 1px solid black;
    padding: 10px 28px;
    font-size: 15px;
}

section.popular-players {
    background-color: #000000;
    padding-top: 100px;
    padding-bottom: 100px;
}

.popular-players-top {
    margin-bottom: 40px;
}

.popular-players .section-heading h2 {
    color: #FFFFFF;
    margin-bottom: 0;
}

.popular-players .tag-heading {
    color: white;
}

.player-slider {
    overflow: hidden;
    padding: 10px 0 30px;
}

.player-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3 / 4.5;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.player-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
}

.player-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.player-card:hover img {
    transform: scale(1.08);
}

.player-card-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 55%;
    background: linear-gradient(to top, #CE8947 0%, rgba(20, 12, 6, 0.85) 40%, transparent 100%);
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.player-card:hover .player-card-overlay {
    opacity: 0.85;
}

.player-card-info {
    position: absolute;
    left: 20px;
    bottom: 18px;
    z-index: 2;
    transition: transform 0.4s ease;
}

.player-card:hover .player-card-info {
    transform: translateY(-4px);
}

.player-card-info h4 {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 2px;
}

.player-card-info p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    margin: 0;
}

/* dark-background overrides for the shared slider controls */
.popular-players .slider-arrow {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.popular-players .slider-arrow img {
    filter: invert(1);
}

.popular-players .slider-arrow:hover {
    background-color: #CE8947;
    border-color: #CE8947;
}

.popular-players .swiper-pagination-progress {
    background-color: rgba(255, 255, 255, 0.15);
}

.popular-players .swiper-pagination-progress .swiper-pagination-progressbar-fill {
    background-color: #FFFFFF;
}

section.app-cta {
    background-color: #FFFFFF;
    padding-top: 100px;
    padding-bottom: 100px;
    overflow: hidden;
}

.app-mockup {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-mockup-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    background-color: #CE8947;
    border-radius: 50%;
    z-index: 0;
}

.app-phone-img {
    position: relative;
    z-index: 1;
    max-width: 450px;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.35));
}

.app-cta .section-heading h2 {
    margin-bottom: 20px;
}

.app-cta-text {
    color: #000000;
    font-size: 18px;
    line-height: 25px;
    max-width: 620px;
    margin-bottom: 30px;
}

.app-qr-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 5px;
}

.app-qr-img {
    width: auto;
    height: 160px;
}

.app-qr-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.app-store-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.app-store-badges img {
    height: 46px;
}

.app-scan-text {
    display: block;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .app-mockup {
        margin-bottom: 40px;
    }
}

section.support-cta {
    background-color: #CE8947;
    padding-top: 70px;
    padding-bottom: 70px;
}

.support-cta .tag-heading {
    color: #000000;
    margin-bottom: 6px;
}

.support-cta .section-heading h2 {
    color: #000000;
    font-size: 60px;
    margin-bottom: 16px;
    text-transform: none;
}

.support-cta-text {
    color: #000000;
    font-size: 16px;
    line-height: 22px;
    max-width: 100%;
    margin: 0 auto 26px;
}

.btn-outline:before {
    content: "";
    position: absolute;
    background-color: #CE8947;
    left: 0;
    width: 0;
    height: 100%;
    top: 0;
    z-index: 0;
    transition: all 0.4s ease;
    border-radius: 100px;
}

.btn-outline:hover:before {
    width: 100%;
}

.btn-outline span {
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.btn-outline:hover span {
    color: white;
}

footer.site-footer {
    background-color: #000000;
    padding-top: 80px;
    border-top: 2px solid #CE8947;
}

.footer-top {
    padding-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo-text h4 {
    color: #CE8947;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1;
}

.footer-logo-text span {
    color: #9C9C9C;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-tagline {
    color: white;
    font-size: 14px;
    line-height: 22px;
    max-width: 400px;
    margin: 0;
}

.footer-col h5 {
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-links-grid {
    display: flex;
    gap: 40px;
}

.footer-links-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-grid a {
    color: white;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-grid a:hover {
    color: #CE8947;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-list .footer-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-list span:last-child {
    color: white;
    font-size: 15px;
    line-height: 20px;
}

.footer-bottom {
    border-top: 1px solid #808080;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 20px;
}

.footer-copyright {
    color: white;
    font-size: 15px;
    margin: 0;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.footer-social span {
    color: white;
    font-size: 15px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background-color: #CE8947;
    border-color: #CE8947;
}

@media (max-width: 991px) {
    .footer-col {
        margin-top: 40px;
    }

    .footer-social {
        justify-content: flex-start;
        margin-top: 15px;
    }
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    padding-top: 25px;
}

header .navbar.bg-light {
    background-color: transparent !important;
    padding: 0;
}

header .navbar-brand img {
    height: 120px;
}

/* Desktop pill nav */
@media (min-width: 992px) {
    header .navbar-collapse {
        background-color: #FFFFFF;
        border-radius: 50px;
        padding: 12px 20px 12px 40px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
        flex-grow: 0;
        width: 84%;
        justify-content: space-between;
    }

    header .navbar-nav {
        gap: 30px;
    }
}

header .nav-link {
    color: #28282B;
    font-size: 15px;
    font-weight: 500;
    padding: 0 !important;
    position: relative;
}

header .nav-link.active,
header .nav-link:hover {
    color: #CE8947 !important;
}

header .header-search {
    display: flex;
    align-items: center;
    background-color: #F5F5F5;
    border-radius: 50px;
    padding: 6px 8px 6px 20px;
    gap: 8px;
}

header .header-search .form-control {
    border: none;
    background: transparent;
    box-shadow: none;
    font-size: 14px;
    color: #28282B;
    padding: 6px 0;
    min-width: 200px;
}

header .header-search .form-control::placeholder {
    color: #ABABAB;
}

header .header-search .form-control:focus {
    box-shadow: none;
}

header .header-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    color: #28282B;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
}

header .header-icon-btn:hover {
    background-color: #14110A;
    color: #FFFFFF;
}

header .cart-icon-btn .cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background-color: #CE8947;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile toggler + collapsed panel */
header .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
    header .navbar-collapse {
        background-color: #FFFFFF;
        border-radius: 20px;
        padding: 20px;
        margin-top: 15px;
    }

    header .header-search {
        margin-top: 15px;
    }
}

.navbar-light .navbar-nav .nav-link {
    color: #000000;
    font-weight: 400;
    font-size: 16px;
}

/* =====================================================
   ABOUT US PAGE
   ===================================================== */

/* ---- Page hero (shorter version of the home banner) ---- */
section.home-banner.about-hero {
    padding: 240px 0px 150px;
}

/* .about-hero .banner-content p {
    max-width: 650px;
} */
/* .about-hero .banner-content p {
    max-width: 650px;
} */

/* ---- Intro / "A Better Way To Buy Sports Cards" ---- */
section.about-intro {
    background-color: #FFFFFF;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    margin-top: -40px;
    position: relative;
    z-index: 4;
    padding-top: 90px;
    padding-bottom: 90px;
}

.about-intro-text {
    color: #5B5B5B;
    font-size: 16px;
    line-height: 26px;
    /* max-width: 620px; */
    margin: 0 auto;
}

/* ---- Empire Cards Difference ---- */
section.why-diff {
    background-color: #000000;
    padding-top: 100px;
    padding-bottom: 100px;
}

.why-diff-heading h2 {
    color: #FFFFFF;
    font-size: 42px;
    margin-bottom: 0;
}

.why-diff-heading {
    margin-bottom: 30px;
}

.why-diff .why-empire-box-top h4 {
    font-size: 26px;
    line-height: 32px;
    max-width: 100%;
}

.why-diff .why-empire-box {
    padding-right: 20px;
}

@media (max-width: 991px) {
    .why-diff-heading {
        margin-bottom: 40px;
    }
}

/* ---- Commitment banner reuses .support-cta, no extra rules needed ---- */

/* ---- Fast & Secure Shipping (alternating image / content rows) ---- */
section.fast-secure {
    background-color: transparent;
    padding-top: 250px;
    padding-bottom: 250px;
    overflow: hidden;
}

.fast-secure-content {
    padding-left: 20px;
}

.fast-secure-alt .fast-secure-content {
    padding-left: 0;
    padding-right: 20px;
}


.numbered-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.numbered-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 18px;
    color: #000000;
}

.btn-row {
    display: flex;
    gap: 20px;
}

.num-circle {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #14110A;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---- Placeholder photo blocks (swap with real photography) ---- */
.img-placeholder {
    width: 100%;
    border-radius: 30px;
    /* background-image: linear-gradient(135deg, #14110A 0%, #3a3128 55%, #CE8947 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
}

.img-placeholder span {
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    max-width: 260px;
    opacity: 0.9;
}

.img-placeholder-tall {
    aspect-ratio: 4 / 5;
}

.img-placeholder-wide {
    aspect-ratio: 6 / 5;
}

.fast-secure-alt {
    background-image: url('../img/Frame1707482282.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    background-color: #f2f2f2;
    margin-top: -180px;
    height: 500px;
}

.works {
    background-image: url('../img/Frame1707482282.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    background-color: #f2f2f2;
    margin-top: 100px;
    height: 500px;
    padding: 0 !important;
}


.fast-secure-alt1 {
    background-image: url('../img/cross.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.bg-vector {
    position: absolute;
    margin-top: -100px;
    width: 100%;
    z-index: 0;
    height: 150px;
}


@media (max-width: 991px) {
    section.home-banner.about-hero {
        padding: 170px 0px 100px;
    }

    section.about-intro,
    section.why-diff,
    section.fast-secure {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .fast-secure-content,
    .fast-secure-alt .fast-secure-content {
        padding-left: 0;
        padding-right: 0;
        margin-top: 40px;
    }

    .fast-secure-alt .row.flex-lg-row-reverse {
        flex-direction: column-reverse;
    }
}

@media (max-width: 575px) {

    .why-diff-heading h2,
    .fast-secure .section-heading h2 {
        font-size: 32px;
    }
}



/* //////////////////////////// contact page css  //////////////////////////// */


/* Left card - Member Log In */
.form-card {
    background: #f5f5f5;
    border-radius: 10px;
    padding: 30px;
}

.form-card-title {
    font-weight: 400;
    font-size: 28px;
    color: #000000;
    margin-bottom: 20px;
}

.form-label-custom {
    font-size: 18px;
    color: #000000;
    margin-bottom: 10px;
    display: block;
}

.form-control-custom {
    background: #F5F5F5;
    border: 1px solid #C5C5C5;
    border-radius: 100px;
    padding: 13px 25px;
    font-size: 16px;
    width: 100%;
    margin-bottom: 18px;
}

input.form-control-custom::placeholder {
    color: #C5C5C5;
}

textarea.form-control-custom {
    resize: none;
    height: 100px;
    border-radius: 20px;

}

.send-btn {
    background: #000000;
    color: #ffffff;
    border: none;
    border-radius: 100px;
    padding: 13px 30px;
    font-size: 18px;
}

.send-btn:hover {
    background: #000000;
    color: #ffffff;
}

/* Right card - Contact Information */
.contact-card {
    background: #000;
    border-radius: 10px;
    padding: 30px;
    color: #ffffff;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-label {
    font-weight: 400;
    font-size: 25px;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 18px;
    color: #dddddd;
}



/* //////////////////////////// how it works css  //////////////////////////// */



.step-eyebrow {
    font-size: 25px;
    color: #000;
    margin-bottom: 8px;
}

.section-step2 .section-heading h2 {
    color: #fff;
    font-weight: 400;
    font-size: 50px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.step-eyebrow.orange {
    color: #d97a3e;
}


.step-desc {
    font-size: 18px;
    color: #000;
    max-width: 500px;
    margin-bottom: 24px;

}

.section-step1 .step-desc {
    margin-top: 200px;
}

.step-desc.light {
    color: #fff;
}

.btn-outline-custom {
    border: 1px solid #cccccc;
    border-radius: 30px;
    padding: 8px 22px;
    font-size: 13px;
    background: transparent;
    color: #000000;
}

.btn-outline-custom:hover {
    background: #000000;
    color: #ffffff;
}

/* ---------- STEP 01 ---------- */
.section-step1 {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    margin-top: -40px;
    background-color: #fff;
    padding: 70px 0;
    
}
.products-content{
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    margin-top: -40px;
    background-color: #fff;
    padding: 80px 0px;
}

    .contact-content{
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    margin-top: -40px;
    background-color: #fff;    
    padding: 70px 0;
}



.sale-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #D30000;
    color: #ffffff;
    font-size: 18px;
    padding: 3px 15px;
    border-radius: 100px;
    z-index: 2;
}

.section-step1 .product-img-wrap,
.products-grid .product-img-wrap {
    border-radius: 8px;
    overflow: hidden;
    padding: 40px;
    margin-bottom: 14px;
    display: flex;
    justify-content: center;
}

.section-step1 .product-img-wrap img {
    width: 234px;
    height: 351px;
    object-fit: contain;
}

.product-name, .product-name a {
    font-size: 22px;
    color: #000;
    margin-bottom: 2px;
    text-decoration: none;
}

.product-sub {
    font-size: 17px;
    color: #5B5B5B;
    margin-bottom: 6px;
}

.product-price {
    font-size: 22px;
    color: #000 !important;
}

.step2-card .product-price {
    font-size: 35px;
}

.cart-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #000000;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    flex: 0 0 42px;
}

.cart-btn svg {
    width: 20px;
    height: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    gap: 5px;
}

.btn-dark-pill {
    background: #000000;
    color: #ffffff;
    border-radius: 100px;
    padding: 13px 30px;
    font-size: 17px;
    width: 100%;
    border: none;
    margin-bottom: 8px;
    border: 1px solid #000000;

}

.btn-light-pill {
    background: white;
    color: #28282B;
    border: 1px solid #E2E2E2;
    border-radius: 100px;
    padding: 13px 30px;
    font-size: 17px;
    width: 100%;
    margin-bottom: 8px;
}

.btn-outline-custom {
    background: #FFFFFF;
    color: #000000;
    border: 1px solid #000000;
    border-radius: 100px;
    padding: 13px 30px;
    font-size: 18px;
    margin-bottom: 8px;
    text-decoration: none;
}

/* ---------- STEP 02 ---------- */
.section-step2 {
    background: #000000;
    color: #ffffff;
    padding: 70px 0;
}

.step2-card {
    background: #f6f6f6;
    color: #000000;
    border-radius: 10px;
    padding: 40px;
    max-width: 600px;
    margin-left: auto;
}

.step2-card .product-img-wrap {
    width: auto;
    display: inline-block;
    margin-bottom: 0;
    vertical-align: top;
}

.step2-card .product-img-wrap img {
    width: 97.4px;
    height: 146.1px;
}


.step2-mini-badge {
    position: absolute;
    background: #D30000;
    color: #fff;
    font-size: 12px;
    padding: 2px 9px;
    border-radius: 100px;
    top: -30px;
    left: -60px;
}


.section-step2 .numbered-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.section-step2 .numbered-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 18px;
    color: #fff;
}

.section-step2 .num-circle {
    width: 30px;
    height: 30px;
    min-width: 20px;
    border-radius: 50%;
    background: #fff;
    color: #000000;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step2-card .d-flex {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    padding-left: 30px;
    justify-content: flex-start;
    gap: 60px !important;
}

/* ---------- STEP 03 ---------- */
.section-step3 {
    padding: 70px 0;
}

.ship-img {
    width: 100%;
    border-radius: 10px;
}

.numbered-list.dark li {
    color: #333333;
}

.numbered-list.dark .num-circle {
    background: #000000;
}

.fast-secure-content p {
    font-size: 18px;
    color: #000;
    max-width: 500px;
    margin-bottom: 24px;
}

/* ---------- BOTTOM BAND ---------- */
.section-band {
    background: #CE8947;
    color: #000000;
    padding: 80px 0 0 0;
}

.band-eyebrow {
    font-size: 25px;
    color: #000;
    margin-bottom: 8px;
}

.band-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.band-desc {
    font-size: 18px;
    max-width: 600px;
}

.band-btn {
    background: transparent;
    color: #000000;
    border: 1px solid #000000;
    border-radius: 100px;
    padding: 13px 30px;
    font-size: 18px;
    margin-bottom: 8px;
}

.band-divider {
    border-top: 1px solid #000;
    margin-top: 40px;
}

.band-feature-title {
    font-weight: 400;
    font-size: 25px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.band-feature-title .fa-arrow-right {
    transform: rotate(-45deg);
    margin-right: 20px;
}

.band-feature-desc {
    font-size: 18px;
    color: #111;
}

.band-features-row {
    padding: 30px 0 80px 0;
}


/* //////////////////////////// Browse Cards css  //////////////////////////// */



/* ===== Filters Sidebar ===== */
.filters-title {
    color: #020E2C;
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 24px;
}

.filter-group {
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid #eeeeee;
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-group-title {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 12px;
    color: #000;
}

.filter-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #5B5B5B;
}

.filter-check input {
    width: 15px;
    height: 15px;
    border-radius: 4px;
    border: 1px solid #cccccc;
}

/* ===== Top Bar ===== */
.results-title {
    font-size: 30px;
    font-weight: 400;
    color: #020E2C;
}

.sort-select {
    border: 1px solid #dddddd;
    border-radius: 30px;
    padding: 10px 30px;
    font-size: 16px;
    background: #ffffff;
    min-width: 150px;
}

.view-toggle-btn {
    width: 45px;
    height: 45px;
    border-radius: 100px;
    border: 1px solid #dddddd;
    background: #E6E6E6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.fa-border-all {
    font-size: 22px;
}

.badge-best {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #CE8947;
    color: #ffffff;
    font-size: 18px;
    padding: 3px 15px;
    border-radius: 100px;
    z-index: 2;
}

section.support-cta .btn-outline:hover:before {
    background-color: white;
}

section.support-cta .btn-outline:hover span {
    color: black;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    background-color: black;
    color: white;
}

/* //////////////////////////// Card Detail Page css //////////////////////////// */

.product-detail-section {
    padding-top: 100px;
    padding-bottom: 90px;
}

.breadcrumb-text {
    font-size: 15px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin: 0 !important;
    max-width: none !important;
}

.breadcrumb-text a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-text a:hover {
    color: #CE8947;
}

.breadcrumb-text span {
    color: #CE8947;
}

/* ===== Gallery ===== */
.detail-gallery {
    position: relative;
    background-color: #F6F6F6;
    border-radius: 20px;
    padding: 30px;
}

.detail-main-img {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}

.detail-main-img img {
    max-width: 100%;
    max-height: 420px;
    object-fit: contain;
}

.detail-thumb-row {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.detail-thumb {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    background-color: #FFFFFF;
    border: 1px solid #E2E2E2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.detail-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.detail-thumb.active,
.detail-thumb:hover {
    border-color: #CE8947;
}

/* ===== Info column ===== */
.detail-info {
    padding-left: 20px;
}

.detail-badge-row {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.grade-badge {
    display: inline-block;
    background-color: #000000;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 18px;
    border-radius: 50px;
}

.grade-badge-outline {
    background-color: transparent;
    color: #CE8947;
    border: 1px solid #CE8947;
}

.detail-title {
    font-size: 38px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 6px;
    text-transform: capitalize;
}

.detail-sub {
    font-size: 17px;
    color: #5B5B5B;
    margin-bottom: 18px;
}

.detail-price-row {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 18px;
}

.detail-price {
    font-size: 34px;
    font-weight: 400;
    color: #000000;
}

.detail-price-old {
    font-size: 20px;
    color: #ABABAB;
    text-decoration: line-through;
}

.detail-short-desc {
    font-size: 16px;
    line-height: 26px;
    color: #5B5B5B;
    margin-bottom: 18px;
}

.detail-stock-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #000000;
    margin-bottom: 26px;
}

.stock-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
}

.stock-in {
    background-color: #2E8B57;
}

.stock-out {
    background-color: #D30000;
}

.stock-count {
    color: #ABABAB;
    font-size: 14px;
}

/* ===== Qty + cart actions ===== */
.detail-action-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.qty-stepper {
    display: flex;
    align-items: center;
    border: 1px solid #C5C5C5;
    border-radius: 100px;
    overflow: hidden;
    flex-shrink: 0;
}

.qty-btn {
    width: 42px;
    height: 48px;
    border: none;
    background-color: #F6F6F6;
    color: #000000;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background-color: #CE8947;
    color: #FFFFFF;
}

.qty-input {
    width: 50px;
    height: 48px;
    border: none;
    border-left: 1px solid #C5C5C5;
    border-right: 1px solid #C5C5C5;
    text-align: center;
    font-size: 16px;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.detail-add-btn {
    flex-grow: 1;
    margin-bottom: 0 !important;
}

.detail-buy-btn {
    width: 35%;
    flex: 0 0 35%;
}

.btn-dark-pill:disabled,
.btn-light-pill:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ===== Trust strip ===== */
.detail-trust-strip {
    display: flex;
    gap: 16px;
    padding: 0;
    margin-bottom: 30px;
    justify-content: space-between;
}

.detail-trust-item {
    background: #F6F6F6;
    padding: 20px;
    border-radius: 16px;
    flex: 0 0 32%;
}

.detail-trust-item .why-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #000000;
    flex-shrink: 0;
    margin-top: 0;
    margin-bottom: 13px;
}

.detail-trust-item .why-arrow img {
    width: 14px;
}

.detail-trust-item h6 {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    margin: 0;
    line-height: 22px;
}

.detail-trust-item p {
    font-size: 14px;
    color: #5B5B5B;
    margin: 0;
}

/* ===== Accordion ===== */
.detail-accordion-item {
    border-bottom: 1px solid #eeeeee;
}

.detail-accordion-item:first-child {
    border-top: 1px solid #eeeeee;
}

.detail-accordion-toggle {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 18px 0;
    font-size: 18px;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.acc-icon {
    font-size: 20px;
    color: #CE8947;
    transition: transform 0.3s ease;
}

.detail-accordion-toggle.active .acc-icon {
    transform: rotate(45deg);
}

.detail-accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.detail-accordion-panel p {
    font-size: 15px;
    line-height: 24px;
    color: #5B5B5B;
    padding-bottom: 18px;
    margin: 0;
}

.detail-spec-list {
    list-style: none;
    margin: 0;
    padding: 0 0 18px;
}

.detail-spec-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 15px;
    border-bottom: 1px dashed #eeeeee;
}

.detail-spec-list li:last-child {
    border-bottom: none;
}

.detail-spec-list li span:first-child {
    color: #5B5B5B;
}

.detail-spec-list li span:last-child {
    color: #000000;
    font-weight: 500;
}

@media (max-width: 991px) {
    .detail-info {
        padding-left: 0;
        margin-top: 40px;
    }

    .detail-title {
        font-size: 30px;
    }
}

/* ===== Grading details row (above price) ===== */
.detail-grading-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 20px;
}

.detail-grading-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
    background-color: #F6F6F6;
    border-radius: 14px;
    padding: 18px 20px;
}

.detail-grading-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ABABAB;
}

.detail-grading-value {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
}

@media (max-width: 575px) {
    .detail-grading-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

form.detail-cart-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

/* ===== Fancybox zoom trigger ===== */
.detail-main-img-link {
    position: relative;
    display: block;
    cursor: zoom-in;
}

.detail-zoom-btn {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #000000;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.detail-main-img-link:hover .detail-zoom-btn {
    background-color: #CE8947;
    transform: scale(1.08);
}

/* Fancybox brand-color tweaks */
.fancybox__container {
    --fancybox-color: #ffffff;
    --fancybox-bg: rgba(0, 0, 0, 0.92);
    --fancybox-thumbs-width: 80px;
}

.fancybox__toolbar,
.fancybox__nav {
    --f-button-hover-color: #CE8947;
}

/* ===== Add-to-cart toast ===== */
.cart-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #000000;
    color: #FFFFFF;
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    max-width: 320px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.35s ease;
}

.cart-toast-visible {
    opacity: 1;
    transform: translateY(0);
}

.cart-toast-msg {
    font-size: 15px;
    line-height: 22px;
    margin: 0 0 14px;
    padding-right: 20px;
}

.cart-toast-btn {
    background-color: #CE8947;
    border-color: #CE8947;
    width: auto;
    display: inline-block;
    padding: 10px 26px;
    font-size: 14px;
    margin-bottom: 0;
    text-decoration: none;
}

.cart-toast-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 18px;
    line-height: 1;
    opacity: 0.6;
}

.cart-toast-close:hover {
    opacity: 1;
}

@media (max-width: 575px) {
    .cart-toast {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
    }
}

/* ===== Cart page ===== */
.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #F6F6F6;
    border-radius: 16px;
    padding: 20px 30px;
    margin-bottom: 16px;
}

.cart-item-img {
    height: 120px;
    flex-shrink: 0;
    background-color: #FFFFFF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.cart-item-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-name {
    display: block;
    font-size: 18px;
    color: #000000;
    text-decoration: none;
    margin-bottom: 4px;
}

.cart-item-name:hover {
    color: #CE8947;
}

.cart-item-price {
    font-size: 14px;
    color: #5B5B5B;
    margin-bottom: 12px;
}

.cart-item-qty-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.qty-stepper-sm .qty-btn {
    width: 34px;
    height: 38px;
    font-size: 15px;
}

.qty-stepper-sm .qty-input {
    width: 42px;
    height: 38px;
    font-size: 14px;
}

.cart-remove-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: #D30000;
    font-size: 14px;
    padding: 0;
}

.cart-remove-btn:hover {
    text-decoration: underline;
}

.cart-item-line-total {
    font-size: 20px;
    color: #000000;
    flex-shrink: 0;
    min-width: 90px;
    text-align: right;
}

/* ===== Summary card ===== */
.cart-summary-card {
    background-color: #F6F6F6;
    border-radius: 16px;
    padding: 28px 20px;
}

.cart-summary-card h4 {
    font-size: 22px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 20px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 17px;
    color: #000000;
    margin-bottom: 6px;
}

.cart-summary-note {
    font-size: 13px;
    color: #ABABAB;
    margin-bottom: 22px;
}

@media (max-width: 575px) {
    .cart-item {
        flex-wrap: wrap;
    }

    .cart-item-line-total {
        text-align: left;
        margin-top: 10px;
    }
}

.cart-summary-btn {
    display: flex;
    margin-top: 20px;
    gap: 10px;
}

.cart-summary-btn a {
    text-decoration: none;
    padding: 12px 0;
    font-size: 15px;
    text-align: center;
    width: 50%;
}

form#order-place input {
    background: #F5F5F5;
    border: 1px solid #C5C5C5;
    border-radius: 100px;
    padding: 13px 25px;
    font-size: 16px;
    width: 100%;
    margin-bottom: 25px;
}

form#order-place label {
    font-size: 16px;
    color: #000000;
    margin-bottom: 10px;
    display: block;
}

.left-checkout {
    display: flex;
    flex-wrap: wrap;
    background: #f5f5f5;
    border-radius: 10px;
    padding: 30px;
}

section.checkout {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    margin-top: -40px;
    z-index: 4;
    position: relative;
    background-color: white;
    padding-top: 80px;
    padding-bottom: 80px;
}

.form-group.info-section {
    margin-right: 8px;
    margin-left: 8px;
}

.left-checkout .col-lg-12 p {
    font-size: 18px;
    margin-left: 8px;
    margin-bottom: 25px;
    font-weight: 400;
    color: #000000;
}

.left-checkout .col-lg-12 p a {
    text-decoration: none;
    color: #CE8947;
}

input#check-1 {
    display: inline-block;
    width: auto !important;
    margin-right: 10px;
    margin-bottom: 0 !important;
}

.Your-Order {
    background: #f5f5f5;
    border-radius: 10px;
    padding: 30px;
}

.Your-Order > h2 {
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 16px;
}

/* ===== Payment loader ===== */
.payment-loader-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.payment-loader-overlay.active {
    display: flex;
}

.payment-loader-box {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 36px 44px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.payment-loader-spinner {
    width: 44px;
    height: 44px;
    border: 4px solid #F0F0F0;
    border-top-color: #CE8947;
    border-radius: 50%;
    margin: 0 auto 16px;
    animation: payment-spin 0.8s linear infinite;
}

.payment-loader-box p {
    font-size: 15px;
    color: #000000;
    margin: 0;
}

@keyframes payment-spin {
    to { transform: rotate(360deg); }
}

/* Inline spinner state for the Pay Now button itself */
#stripe-submit.is-loading {
    opacity: 0.75;
    pointer-events: none;
    position: relative;
}

#stripe-submit.is-loading span {
    visibility: hidden;
}

#stripe-submit.is-loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    margin: -9px 0 0 -9px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #FFFFFF;
    border-radius: 50%;
    animation: payment-spin 0.7s linear infinite;
}

#stripe-submit.is-loading:before {
    width: 100%;
}

.clear-filters-btn {
    border: 1px solid #dddddd;
    border-radius: 30px;
    padding: 10px 22px;
    font-size: 15px;
    color: #020E2C;
    background: #ffffff;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.clear-filters-btn:hover {
    background-color: #CE8947;
    border-color: #CE8947;
    color: #ffffff;
}

.form-card a {
    color: #CE8947;
    text-decoration: none;
}

.password-field-wrap {
    position: relative;
}

.password-field-wrap .form-control-custom {
    padding-right: 50px;
}

.password-toggle-btn {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #ABABAB;
    display: flex;
    align-items: center;
    padding: 0;
}

.password-toggle-btn:hover {
    color: #CE8947;
}

/* ===== Account / Dashboard pages ===== */
.account-sidebar {
    background-color: #F6F6F6;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.account-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 10px;
    color: #28282B;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.account-nav-link i {
    width: 18px;
    text-align: center;
}

.account-nav-link:hover {
    background-color: #FFFFFF;
    color: #CE8947;
}

.account-nav-link.active {
    background-color: #000000;
    color: #FFFFFF;
}

.account-content-card {
    background-color: #F6F6F6;
    border-radius: 16px;
    padding: 32px;
}

.account-welcome h2 {
    font-size: 32px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 10px;
}

.account-welcome-text {
    font-size: 15px;
    color: #5B5B5B;
    margin-bottom: 20px;
}

.account-logout-link {
    color: #CE8947;
    text-decoration: underline;
}

.account-desc {
    font-size: 15px;
    line-height: 24px;
    color: #5B5B5B;
    margin-bottom: 30px;
}

.dashboard-stat-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: #FFFFFF;
    border-radius: 14px;
    padding: 22px;
    text-decoration: none;
    height: 100%;
    transition: all 0.3s ease;
}

.dashboard-stat-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.dashboard-stat-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #000000;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.dashboard-stat-box h4 {
    font-size: 17px;
    font-weight: 500;
    color: #000000;
    margin: 0 0 4px;
}

.dashboard-stat-box p {
    font-size: 13px;
    color: #ABABAB;
    margin: 0;
}

@media (max-width: 991px) {
    .account-sidebar {
        margin-bottom: 24px;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .account-content-card {
        padding: 22px;
    }
}

.account-page-title {
    font-size: 32px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 26px;
}

.order-history-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.order-history-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background-color: #FFFFFF;
    border-radius: 14px;
    padding: 20px 24px;
}

.order-history-invoice {
    font-size: 16px;
    color: #000000;
    margin-bottom: 2px;
}

.order-history-date {
    font-size: 13px;
    color: #ABABAB;
}

.order-history-amount {
    font-size: 18px;
    color: #000000;
    flex-shrink: 0;
}

.order-history-view-btn {
    background-color: #000000;
    color: #FFFFFF;
    border-radius: 50px;
    padding: 10px 24px;
    font-size: 14px;
    text-decoration: none;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.order-history-view-btn:hover {
    background-color: #CE8947;
    color: #FFFFFF;
}

.order-history-empty {
    text-align: center;
    padding: 40px 0;
}

.order-history-empty p {
    font-size: 15px;
    color: #5B5B5B;
    margin-bottom: 20px;
}

@media (max-width: 575px) {
    .order-history-item {
        flex-wrap: wrap;
    }

    .order-history-view-btn {
        width: 100%;
        text-align: center;
    }
}

.settings-avatar-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 34px;
}

.settings-avatar-wrap {
    position: relative;
    width: 90px;
    height: 90px;
    flex-shrink: 0;
}

.settings-avatar-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FFFFFF;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.settings-avatar-edit {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #000000;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.settings-avatar-edit:hover {
    background-color: #CE8947;
}

.settings-avatar-name {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    margin: 0 0 4px;
}

.settings-avatar-hint {
    font-size: 13px;
    color: #ABABAB;
    margin: 0;
}

.settings-section-title {
    font-size: 18px;
    color: #000000;
    font-weight: 500;
    margin: 26px 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eeeeee;
}

.form-control-custom:disabled {
    background-color: #EFEFEF;
    color: #8A8A8A;
    cursor: not-allowed;
}

.settings-submit-btn {
    width: auto;
    display: inline-block;
    padding: 13px 40px;
    margin-top: 10px;
}

.confirmation-hero {
    text-align: center;
    margin-bottom: 30px;
}

.confirmation-check {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #000000;
    color: #CE8947;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.confirmation-hero h2 {
    font-size: 30px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 10px;
}

.confirmation-hero p {
    font-size: 15px;
    color: #5B5B5B;
    max-width: 600px;
    margin: 0 auto;
    line-height: 24px;
}

.confirmation-meta-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    background-color: #F6F6F6;
    border-radius: 16px;
    padding: 22px;
    margin-bottom: 30px;
}

.confirmation-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.confirmation-meta-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ABABAB;
}

.confirmation-meta-value {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
}

.confirmation-amount {
    color: #CE8947;
}

.confirmation-panel {
    background-color: #F6F6F6;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    height: 100%;
}

.confirmation-panel h4 {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 18px;
}

.confirmation-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #E2E2E2;
}

.confirmation-item:first-of-type {
    padding-top: 0;
}

.confirmation-item-img {
    width: 50px;
    height: 68px;
    flex-shrink: 0;
    background-color: #FFFFFF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.confirmation-item-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.confirmation-item-info {
    flex-grow: 1;
}

.confirmation-item-name {
    font-size: 15px;
    color: #000000;
}

.confirmation-item-qty {
    font-size: 12px;
    color: #ABABAB;
}

.confirmation-item-price {
    font-size: 15px;
    color: #000000;
    flex-shrink: 0;
}

.confirmation-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 17px;
    color: #000000;
    font-weight: 500;
    padding-top: 16px;
    margin-top: 6px;
}

.confirmation-detail-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.confirmation-detail-list li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px dashed #E2E2E2;
    font-size: 15px;
}

.confirmation-detail-list li:last-child {
    border-bottom: none;
}

.confirmation-detail-list li span:first-child {
    color: #5B5B5B;
    flex-shrink: 0;
}

.confirmation-detail-list li span:last-child {
    color: #000000;
    text-align: right;
}

.confirmation-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.confirmation-actions .btn-dark-pill,
.confirmation-actions .btn-light-pill {
    width: auto;
    padding: 13px 36px;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .confirmation-meta-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .confirmation-actions {
        flex-direction: column;
        align-items: stretch;
    }
}