html, body {
    display: flex;
    flex-direction: column;
}

body {
    overflow-x: hidden !important;
    margin: 0;
    flex: 1;
    height: 100%;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
    width: 100%;
    left: 0;
}

.container.body-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    height: 100%;
}

.no-scroll {
    overflow: hidden;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #0066CC, #FF7D00, #0066CC, #FF7D00);
    background-size: 400% 400%;
    animation: gradientRotate 10s linear infinite;
}

    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(135deg, #FF7D00, #0066CC, #FF7D00, #0066CC);
        background-size: 400% 400%;
        animation: gradientRotate 10s linear infinite;
    }

.body-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

h2 {
    color: #0066CC;
    font-size: 2rem;
    font-family: Anton, sans-serif;
    font-weight: 400;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 2.5rem;
    word-wrap: break-word;
}

h3 {
    color: #0066CC;
    font-size: 1.75rem;
    font-family: Anton, sans-serif;
    font-weight: 400;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 2.25rem;
    word-wrap: break-word;
}


.h1, .h2 {
    color: #0066CC;
    font-family: Anton, sans-serif;
    font-weight: 400;
    text-align: center;
}

.h3, .h4 {
    color: #0066CC;
    font-family: Anton, sans-serif;
    font-weight: 400;
    text-align: left;
}

#topBar {
    width: 100%;
    height: 2.375rem;
    padding-top: 0.5625rem;
    padding-bottom: 0.5625rem;
    background: linear-gradient(90deg, #0066CC, #0099FF, #0066CC);
    background-size: 200% 200%;
    animation: gradientMoveLeftRight 3s linear infinite;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    display: inline-flex;
    flex-wrap: nowrap;
}

    #topBar span {
        color: white;
        font-size: 1rem;
        font-family: Raleway;
        font-weight: 400;
        word-wrap: break-word;
    }

        #topBar span.underline {
            text-decoration: underline;
        }

#closeButton {
    width: 1.25rem;
    height: 1.25rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

    #closeButton i {
        color: white;
        font-size: 1.25rem;
    }

header .header-container {
    width: 100%;
    height: 3.75rem;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    display: inline-flex;
}

    header .header-container img {
        width: 3.75rem;
        height: 3.75rem;
    }

header .nav-links {
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
    display: flex;
}

    header .nav-links a {
        color: black;
        font-size: 1.25rem;
        font-family: Raleway;
        font-weight: 800;
        word-wrap: break-word;
        text-decoration: none;
        position: relative;
    }

        header .nav-links a.active {
            color: #FF7D00;
        }

        header .nav-links a.home-link {
            color: #FF7D00;
        }

        header .nav-links a:hover {
            cursor: pointer;
        }

        header .nav-links a.active::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 0.25rem;
            background-color: #FF7D00;
            top: -.40rem;
            left: 0;
        }

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

    #overlay.show {
        display: block;
        opacity: 1;
    }

header .icons {
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.875rem;
    display: flex;
    position: relative;
}

    header .icons a {
        color: black;
        font-size: 1.5rem;
        font-family: Raleway;
        font-weight: 800;
        word-wrap: break-word;
    }

    header .icons i {
        font-size: 1.5rem;
        color: #FF7D00;
    }

#helpContent, #informationContent {
    display: none;
    position: fixed;
    transform: translate(-50%, -50%);
    background: #0066CC;
    z-index: 999;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease-out;
    border-radius: 8px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}

    #helpContent.show, #informationContent.show {
        display: block;
        opacity: 1;
    }

    #helpContent.hide, #informationContent.hide {
        animation: slideUp 0.3s ease-out forwards;
        animation-fill-mode: forwards;
    }


.top-adjusted {
    top: 6.5rem;
}

.top-adjusted-no-bar {
    top: 4.125rem;
}

#helpContent .content-container, #informationContent .content-container {
    width: 100%;
    height: 8.4375rem;
    padding: 1.25rem 30.375rem 1.25rem 50.5625rem;
    background: #0066CC;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    display: inline-flex;
}

    #helpContent .content-container div, #informationContent .content-container div {
        color: white;
        font-size: 1.5rem;
        font-family: Raleway;
        font-weight: 800;
        line-height: 1.875rem;
        word-wrap: break-word;
    }

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

#helpContent.show, #informationContent.show {
    display: block;
    animation: slideDown 0.3s ease-out forwards;
}

#helpContent.hide, #informationContent.hide {
    animation: slideUp 0.3s ease-out forwards;
    animation-fill-mode: forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

#helpContent.show, #informationContent.show {
    display: block;
    animation: slideDown 0.3s ease-out forwards;
}

#helpContent.hide, #informationContent.hide {
    animation: slideUp 0.3s ease-out forwards;
    animation-fill-mode: forwards;
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #0066CC, #FF7D00, #0066CC, #FF7D00);
    background-size: 400% 400%;
    animation: gradientRotate 10s linear infinite;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: none;
    opacity: 0; 
    z-index: 1001;
}

    .back-to-top.show {
        display: flex;
        animation: fadeIn 0.5s forwards;
    }

    .back-to-top:hover {
        transform: scale(1.1);
        opacity: 0.8;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

footer {
    border-top: 1px solid #e5e5e5;
    text-align: center;
    padding: 0;
    color: #6c757d;
    position: sticky;
    margin-top: 2rem;
}

    footer .footer-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1rem;
    }

    footer .footer-background {
        width: 100%;
        height: 100%;
        left: 0;
        top: 5.625rem;
        position: absolute;
        background: #F0F0F0;
        z-index: -1;
    }

    footer .footer-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 2rem;
    }

        footer .footer-content .subscribe-container {
            width: 80%;
            padding: 2.25rem 4rem;
            background: linear-gradient(90deg, #0066CC, #0099FF, #0066CC);
            background-size: 200% 200%;
            animation: gradientMove 3s linear infinite;
            border-radius: 0.625rem;
            overflow: hidden;
            justify-content: space-between;
            align-items: center;
            display: inline-flex;
        }

            footer .footer-content .subscribe-container div {
                color: white;
                font-size: 2.5rem;
                font-family: Anton;
                font-weight: 400;
                line-height: 2.8125rem;
                word-wrap: break-word;
            }

            footer .footer-content .subscribe-container .input-container {
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
                gap: 0.875rem;
                display: inline-flex;
            }

                footer .footer-content .subscribe-container .input-container .input-box,
                footer .footer-content .subscribe-container .input-container .subscribe-button {
                    width: 21.8125rem;
                    padding: 0.75rem 1rem;
                    background: white;
                    border-radius: 3.875rem;
                    overflow: hidden;
                    display: inline-flex;
                    align-items: center;
                    gap: 0.75rem;
                    text-align: center;
                    align-items: center;
                    justify-content: center;
                }

                    footer .footer-content .subscribe-container .input-container .input-box input {
                        border: none;
                        outline: none;
                        color: rgba(0, 0, 0, 0.40);
                        font-size: 1rem;
                        font-family: Raleway;
                        font-weight: 400;
                        flex-grow: 1;
                    }

                    footer .footer-content .subscribe-container .input-container .input-box i,
                    footer .footer-content .subscribe-container .input-container .subscribe-button button {
                        color: rgba(0, 0, 0, 0.40);
                        font-size: 1.5rem;
                        background: none;
                        border: none;
                        cursor: pointer;
                    }

    footer .footer-links {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        text-align: left;
        padding-top: 1rem;
        gap: 18rem;
    }

        footer .footer-links .link-group .contact-info {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
        }

            footer .footer-links .link-group .contact-info img {
                width: 3.75rem;
                height: 3.75rem;
                margin-bottom: 1rem;
                margin-left: 10rem;
            }

            footer .footer-links .link-group .contact-info div {
                color: rgba(0, 0, 0, 0.60);
                font-size: 0.875rem;
                font-family: Raleway;
                font-weight: 400;
                line-height: 1.375rem;
                margin-left: 10rem;
            }

        footer .footer-links .social-icons {
            display: flex;
            gap: 0.625rem;
            margin-top: 1rem;
            margin-left: 10rem;
        }

            footer .footer-links .social-icons i {
                font-size: 1.75rem;
                color: #0066CC;
            }

        footer .footer-links .help div,
        footer .footer-links .faq div {
            color: black;
            font-size: 1rem;
            font-family: Raleway;
            font-weight: 400;
            line-height: 1.125rem;
            letter-spacing: 0.1875rem;
            margin-bottom: 1rem;
        }

        footer .footer-links .help a,
        footer .footer-links .faq a {
            color: rgba(0, 0, 0, 0.60);
            font-size: 1rem;
            font-family: Raleway;
            font-weight: 400;
            line-height: 1.1875rem;
            text-decoration: none;
        }

    footer .footer-divider {
        width: 90%;
        height: 0;
        border: 0.0625rem rgba(0, 0, 0, 0.10) solid;
        margin: 2rem auto;
    }

    footer .footer-copyright {
        color: rgba(0, 0, 0, 0.60);
        font-size: 0.875rem;
        font-family: Raleway;
        font-weight: 400;
        text-align: center;
        margin-bottom: 1rem;
    }

    footer .footer-payment {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

        footer .footer-payment img {
            width: 2.913125rem;
            height: 1.876875rem;
            object-fit: contain;
        }

.divider {
    width: 80%;
    height: 0;
    border: 0.0625rem rgba(0, 0, 0, 0.10) solid;
    margin: 2rem auto;
    z-index: -20;
}

.gen-btn, .sell-now-btn, .faq-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    border-radius: 3.875rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    font-family: Raleway, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    width: 9.25rem;
    height: auto;
    background-color: #0066CC;
    color: white;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

    .gen-btn:hover, .sell-now-btn:hover, .faq-btn:hover {
        background-color: #FF7D00;
        color: white;
    }

.sell-now-btn {
    margin-top: 8rem;
}

.faq-btn {
    width: 8rem;
    margin: 0 auto;
    display: block;
}

.gen-btn-text {
    color: white;
    font-size: 1rem;
    font-family: Raleway;
    font-weight: 400;
}

.left-center-container {
    position: absolute;
    top: 40%;
    left: 0;
    transform: translateY(-50%);
    padding-left: 5rem;
}

    .left-center-container .main-heading {
        color: #FF7D00;
        font-size: 4rem;
        font-family: Anton;
        font-weight: 400;
        text-transform: capitalize;
        line-height: 4rem;
        word-wrap: break-word;
        text-shadow: 0.25rem 0.25rem 0.625rem rgba(0, 0, 0, 1);
        margin-bottom: 2rem;
    }

    .left-center-container .sub-heading {
        color: #FF7D00;
        font-size: 1.5rem;
        font-family: Anton;
        font-weight: 400;
        line-height: 2rem;
        word-wrap: break-word;
        text-shadow: 0.25rem 0.25rem 0.625rem rgba(0, 0, 0, 1);
    }

    .left-center-container .sell-now-btn {
        margin-top: 2rem;
    }

.home-page-container {
    width: 100%;
    height: 49.0625rem;
    position: relative;
    background: url('../images/system/home-bg.png') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
}

    .home-page-container .main-heading {
        color: #FF7D00;
        font-size: 4rem;
        font-family: Anton;
        font-weight: 400;
        text-transform: capitalize;
        line-height: 4rem;
        word-wrap: break-word;
        text-shadow: 0.25rem 0.25rem 0.625rem rgba(0, 0, 0, 1);
        margin-bottom: 2rem;
    }

    .home-page-container .sub-heading {
        color: #FF7D00;
        font-size: 1.5rem;
        font-family: Anton;
        font-weight: 400;
        line-height: 2rem;
        word-wrap: break-word;
        text-shadow: 0.25rem 0.25rem 0.625rem rgba(0, 0, 0, 1);
    }

    .home-page-container .features {
        width: 100%;
        position: absolute;
        bottom: 0rem;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        background: linear-gradient(90deg, #0066CC, #0099FF, #0066CC);
        background-size: 200% 200%;
        animation: gradientMoveLeftRight 3s linear infinite;
        padding: 1rem 0;
        margin-top: auto;
    }

        .home-page-container .features .horizontal-divider {
            width: 0.25rem;
            height: 5rem;
            background-color: rgba(255, 255, 255, 0.10);
        }

        .home-page-container .features .feature {
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            display: inline-flex;
        }

            .home-page-container .features .feature .feature-title {
                color: white;
                font-size: 2.5rem;
                font-family: Anton;
                font-weight: 400;
                word-wrap: break-word;
            }

            .home-page-container .features .feature .feature-description {
                color: rgba(255, 255, 255, 0.60);
                font-size: 1rem;
                font-family: Raleway;
                font-weight: 400;
                line-height: 1.375rem;
                word-wrap: break-word;
            }

.how-it-works-container {
    width: 100%;
    padding: 6rem 0;
    position: relative;
    overflow-x: hidden;
}

    .how-it-works-container .title {
        text-align: center;
        color: #0066CC;
        font-size: 3rem;
        font-family: Anton;
        font-weight: 400;
        margin-bottom: 2rem;
    }

    .how-it-works-container .steps {
        display: flex;
        grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
        gap: 1rem;
        justify-items: center;
        justify-content: center;
    }

    .how-it-works-container .step {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 1rem;
    }

    .how-it-works-container .step-box {
        background: radial-gradient(38.61% 50.88% at 50% 50%, rgba(0, 102, 204, 0.40) 0%, rgba(0, 102, 204, 0) 100%);
        box-shadow: -0.3125rem -0.3125rem 15.625rem rgba(255, 255, 255, 0.02) inset;
        border-radius: 0.625rem;
        padding: 1.5rem;
        margin-bottom: 1rem;
        width: 100%;
        margin: 0 auto;
        align-items: center;
    }

        .how-it-works-container .step-box img {
            width: 9.625rem;
            height: 9.625rem;
        }

    .how-it-works-container .step-title {
        color: #0066CC;
        font-size: 1.5rem;
        font-family: Anton;
        font-weight: 400;
        margin-top: 1rem;
    }

    .how-it-works-container .step-content {
        max-width: 18.4375rem;
    }

    .how-it-works-container .step-description {
        color: black;
        font-size: 1rem;
        font-family: Raleway;
        font-weight: 400;
        margin-bottom: 1rem;
    }

    .how-it-works-container .step-highlight {
        color: #FF7D00;
        font-size: 1.75rem;
        font-family: Anton;
        font-weight: 400;
    }

    .how-it-works-container .credit-cards {
        width: 25.875rem;
        height: 28.5rem;
        position: absolute;
        right: -7.5rem;
        top: 32.25rem;
        background: url('~/images/credit-cards.png') no-repeat center center;
        background-size: contain;
        transform-origin: 0 0;
    }

    .how-it-works-container .shopping-cart {
        width: auto;
        height: auto;
        position: absolute;
        left: -5.375rem;
        top: 30rem;
        background: url('~/images/red-shopping-cart.png') no-repeat center center;
        background-size: contain;
        transform-origin: 0 0;
    }

    .how-it-works-container .magnifier {
        width: 20%;
        height: auto;
        position: absolute;
        top: -1.5rem;
        left: -4.375rem;
        background: url('~/images/magnifier.png') no-repeat center center;
        background-size: contain;
        transform-origin: 0 0;
    }

@keyframes cartEnter {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.how-it-works-container .shopping-cart {
    animation: cartEnter 6s ease-out;
}


@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

.how-it-works-container .step-box img {
    animation: bounce 2s infinite;
}

@keyframes flip {
    0% {
        transform: perspective(400px) rotateY(0);
    }

    100% {
        transform: perspective(400px) rotateY(360deg);
    }
}

.how-it-works-container .step-box:hover {
    animation: flip 1s ease-in-out;
}

@keyframes teeter {
    0%, 100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(3deg);
    }
}

.how-it-works-container .credit-cards,
.how-it-works-container .magnifier {
    animation: teeter 2s infinite;
}

.what-we-buy-container {
    width: 100%;
    height: auto;
    position: relative;
}

.what-we-buy-header {
    width: 100%;
    position: relative;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    display: inline-flex;
    margin-bottom: 2rem;
}

.what-we-buy-title {
    width: 246px;
    height: 133px;
    text-align: center;
    color: #0066CC;
    font-size: 48px;
    font-family: Anton;
    font-weight: 400;
    word-wrap: break-word;
}

.what-we-buy-description {
    width: 675px;
    align-self: stretch;
    color: rgba(0, 0, 0, 0.60);
    font-size: 16px;
    font-family: Raleway;
    font-weight: 400;
    line-height: 22px;
    word-wrap: break-word;
}

    .what-we-buy-description .bold {
        font-weight: 700;
    }

.product-row {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    position: relative;
}

    .product-row .left-right-gradient {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 35%;
        transform: translateY(-50%);
        z-index: -1;
    }

    .product-row .product-link {
        position: relative;
        width: 336px;
        height: 336px;
        border-radius: 0.625rem;
        overflow: hidden;
        margin: 0 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .product-row .product-link .image {
            width: 300px;
            height: 300px;
            position: absolute;
            object-fit: cover;
            clip-path: inset(0 0 50px 0);
            border-radius: 0.625rem;
        }

        .product-row .product-link .text {
            position: absolute;
            text-align: center;
            color: white;
            font-size: 32px;
            font-family: Raleway;
            font-weight: 700;
            word-wrap: break-word;
            width: 100%;
            bottom: 1rem;
            left: 0;
            border-radius: 0.625rem;
        }

.product-link {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .product-link:hover {
        transform: scale(1.05);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
    }

.rotating-gradient {
    background: linear-gradient(135deg, #0066CC, #FF7D00, #0066CC, #FF7D00);
    background-size: 400% 400%;
    animation: gradientRotate 10s linear infinite;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0.625rem;
}

.rotating-gradient-bg {
    position: relative;
}

    .rotating-gradient-bg::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, #FF7D00, #0066CC, #FF7D00);
        background-size: 200% 200%;
        animation: gradientMove 10s ease infinite;
        z-index: -1;
    }

@keyframes gradientRotate {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.left-right-gradient {
    background: linear-gradient(90deg, #0066CC, #0099FF, #0066CC);
    background-size: 200% 200%;
    animation: gradientMoveLeftRight 3s linear infinite;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}


@keyframes gradientMoveLeftRight {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.customer-feedbacks-container {
    width: 100%;
    padding: 4rem 0;
    position: relative;
    text-align: left;
    margin-top: 2rem;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

    .customer-feedbacks-container .feedback-title {
        color: #FF7D00;
        font-size: 2.5rem;
        font-family: Anton;
        font-weight: 400;
        margin-left: 4rem;
        margin-bottom: 2rem;
    }

    .customer-feedbacks-container .feedback-cards {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    .customer-feedbacks-container .feedback-card {
        min-width: 20rem;
        margin: 0 1rem;
        padding: 2rem;
        border-radius: 1rem;
        background-color: #f9f9f9;
        box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
        text-align: left;
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        border: 1px solid #e0e0e0;
        position: relative;
        overflow: hidden;
    }

        .customer-feedbacks-container .feedback-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.1) 100%);
            transform: rotate(45deg);
            transition: all 0.5s ease-in-out;
        }

        .customer-feedbacks-container .feedback-card:hover::before {
            top: -50%;
            left: 150%;
            transition: all 0.5s ease-in-out;
        }

        .customer-feedbacks-container .feedback-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
        }

        .customer-feedbacks-container .feedback-card .feedback-author {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

            .customer-feedbacks-container .feedback-card .feedback-author .feedback-icon {
                width: 2rem;
                height: 2rem;
                border-radius: 50%;
                background-color: #01AB31;
                margin-right: 0.5rem;
            }

            .customer-feedbacks-container .feedback-card .feedback-author .feedback-name {
                font-size: 1.125rem;
                font-weight: 700;
                color: #333;
            }

        .customer-feedbacks-container .feedback-card .feedback-text {
            font-size: 1rem;
            color: #666;
            line-height: 1.5;
        }

.carousel-controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 60%;
    width: 100%;
    transform: translateY(-50%);
}

    .carousel-controls button {
        background: none;
        border: none;
        font-size: 2rem;
        cursor: pointer;
        color: #0066CC;
    }

.feedback-card.blur {
    filter: blur(5px);
    transition: filter 0.3s ease-in-out;
}

.feedback-cards {
    display: flex;
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 1s;
}

.feedback-card {
    min-width: 20rem;
    margin: 0 1rem;
    padding: 1.5rem;
    border-radius: 1rem;
    background-color: white;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
    text-align: left;
    transform-style: preserve-3d;
    transition: transform 1s, filter 0.3s ease-in-out;
}

    .feedback-card.blur {
        filter: blur(5px);
    }

.donations-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    gap: 2rem;
    position: relative;
}

    .donations-container .title {
        text-align: center;
        color: #0066CC;
        font-size: 3rem;
        font-family: Anton;
        font-weight: 400;
        word-wrap: break-word;
        margin-bottom: 1rem;
    }

    .donations-container .description {
        width: 40.6875rem;
        color: rgba(0, 0, 0, 0.60);
        font-size: 1rem;
        font-family: Raleway;
        font-weight: 400;
        line-height: 1.375rem;
        word-wrap: break-word;
        text-align: left;
        margin-bottom: 1rem;
    }

        .donations-container .description p {
            margin: 0;
        }

        .donations-container .description .bold {
            font-weight: 700;
        }

    .donations-container .image {
        width: 28.5rem;
        height: 28.5rem;
        animation: teeter 2s infinite;
    }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRightFlipped {
    from {
        opacity: 0;
        transform: translateX(100%) scaleX(-1);
    }

    to {
        opacity: 1;
        transform: translateX(0) scaleX(-1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 2.5s forwards;
}

.privacy-policy-container {
    width: 1070px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow-x: hidden;
}

.breadcrumb {
    width: 50%;
    height: 19px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    margin-top: 1rem;
    padding: 0.5rem 2rem;
}

.breadcrumb-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
}

.breadcrumb-text {
    color: rgba(0, 0, 0, 0.60);
    font-size: 16px;
    font-family: Raleway;
    font-weight: 400;
    transition: color 0.3s;
    text-decoration: none;
}

.breadcrumb-icon {
    width: 16px;
    height: 16px;
    padding: 5.25px 2.25px 4.25px 2.25px;
    transform: rotate(-90deg);
    transform-origin: 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.breadcrumb-text:hover {
    color: #0066CC;
}

.breadcrumb-arrow {
    width: 11.50px;
    height: 6.50px;
    background: rgba(0, 0, 0, 0.60);
}

.breadcrumb-separator {
    color: rgba(0, 0, 0, 0.60);
    font-size: 16px;
    font-family: Raleway;
    font-weight: 400;
    margin: 0 4px;
}

.privacy-policy-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 41px;
}

.privacy-policy-title {
    width: 585px;
    text-align: center;
    color: #0066CC;
    font-size: 45px;
    font-family: Anton;
    font-weight: 400;
    line-height: 76px;
    word-wrap: break-word;
}

.privacy-policy-text, .terms-and-conditions-text {
    text-align: justify;
}

.privacy-policy-title, .terms-and-conditions-title {
    padding-top: 2rem;
}

.privacy-policy-text {
    width: 100%;
    color: black;
    font-size: 20px;
    font-family: Raleway;
    font-weight: 400;
    line-height: 40px;
    word-wrap: break-word;
}

    .privacy-policy-text .italic {
        font-style: italic;
    }

.terms-and-conditions-container {
    width: 1070px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow-x: hidden;
}

.terms-and-conditions-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.terms-and-conditions-title {
    width: 90%;
    text-align: center;
    color: #0066CC;
    font-size: 45px;
    font-family: Anton;
    font-weight: 400;
    line-height: 76px;
    word-wrap: break-word;
}

.terms-and-conditions-text {
    width: 100%;
    color: black;
    font-size: 20px;
    font-family: Raleway;
    font-weight: 400;
    line-height: 40px;
    word-wrap: break-word;
}

    .terms-and-conditions-text .italic {
        font-style: italic;
    }

    .terms-and-conditions-text p,
    .privacy-policy-text p {
        margin-bottom: 2rem;
    }

.sell-now-container {
    display: flex;
    flex-direction: column;
}


.breadcrumb-search-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    width: 100%;
    padding-right: 3rem;
}

.search-bar {
    width: 39rem;
    padding: 0.75rem 1rem;
    background: #F0F0F0;
    border: 1px solid #e0e0e0;
    border-radius: 3.875rem;
    overflow: hidden;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    margin-top: 0;
    margin-left: auto;
}

    .search-bar .search-icon {
        width: 1.5rem;
        height: 1.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .search-bar .search-icon i {
            color: rgba(0, 0, 0, 0.40);
            font-size: 1.25rem;
        }

    .search-bar .search-text {
        border: none;
        outline: none;
        color: rgba(0, 0, 0, 0.60);
        font-size: 1rem;
        font-family: Raleway;
        font-weight: 400;
        flex-grow: 1;
        background: none;
    }

.products-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    gap: 2rem;
    width: 100%;
    min-width: 100%;
    margin: 0 auto;
    padding-left: 5rem;
    padding-right: 5rem;
}

.product-section {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.product-card {
    flex: 1 1 calc(25% - 1rem);
    box-sizing: border-box;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
    margin-bottom: 1rem;
}


.sell-now-container .category-list {
    width: 10%;
    background: white;
    border-radius: 1.25rem;
    box-shadow: 0.25rem 0.25rem 1.875rem rgba(0, 0, 0, 0.10);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    white-space: nowrap;
}

    .sell-now-container .category-list .category-item {
        width: 100%;
        height: 3.125rem;
        background: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 0.625rem;
        cursor: pointer;
        transition: background 0.3s, color 0.3s, height 0.3s;
        flex-shrink: 0;
    }

        .sell-now-container .category-list .category-item .category-text {
            color: #665050;
            font-size: 1rem;
            font-family: Raleway;
            font-weight: 400;
            word-wrap: break-word;
        }

        .sell-now-container .category-list .category-item.active {
            background: linear-gradient(135deg, #0066CC 0%, #FF7D00 100%);
            border: 0.125rem #0066CC solid;
            color: white;
            height: 6.25rem;
        }

            .sell-now-container .category-list .category-item.active .category-text {
                color: white;
            }

            .sell-now-container .category-list .category-item.active img {
                display: block;
            }

        .sell-now-container .category-list .category-item img {
            width: 3.125rem;
            height: 3.125rem;
            margin-bottom: 0.625rem;
            display: none;
        }

.sell-now-container .product-section {
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    width: 60%;
}

    .sell-now-container .product-section .product-card {
        width: 14rem;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: white;
        border-radius: 1.875rem;
        box-shadow: 0.25rem 0.25rem 1.875rem rgba(0, 0, 0, 0.10);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        padding: 0.75rem;
        position: relative;
    }

        .sell-now-container .product-section .product-card img {
            width: 12rem;
            width: 12rem;
            border-radius: 1.25rem;
        }

        .sell-now-container .product-section .product-card .product-name {
            color: black;
            font-size: 1.5rem;
            font-family: Raleway;
            font-weight: 400;
            line-height: 2.71875rem;
            text-align: center;
            padding: 0rem 1rem;
        }

        .sell-now-container .product-section .product-card .product-price {
            color: black;
            font-size: 2rem;
            font-family: Raleway;
            font-weight: 700;
            word-wrap: break-word;
            text-align: center;
            flex-grow: 1;
        }

        .sell-now-container .product-section .product-card .product-button {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 1rem;
            border-radius: 3.875rem;
            margin-top: auto;
        }

            .sell-now-container .product-section .product-card .product-button button {
                width: auto;
                height: 3.25rem;
                padding: 0.75rem 1rem;
                background: #0066CC;
                border-radius: 3.875rem;
                color: white;
                font-size: 1rem;
                font-family: Raleway;
                font-weight: 400;
                text-align: center;
                border: none;
                cursor: pointer;
                transition: background 0.3s ease;
                margin-top: auto;
            }

                .sell-now-container .product-section .product-card .product-button button:hover {
                    width: auto;
                    background: #FF7D00;
                    border-radius: 3.875rem;
                }

.product-card .product-border {
    border: 5px solid transparent;
}

.sell-now-container .product-section .product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
    border-radius: 1.875rem;
}

.sell-now-container .product-section .product-card .product-price,
.sell-now-container .product-section .product-card .product-name {
    transition: color 0.3s ease;
}

.sell-now-container .product-section .product-card:hover .product-price,
.sell-now-container .product-section .product-card:hover .product-name {
    color: #0066CC;
}

.sell-now-container .category-list .category-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}

.instructions-container {
    width: 100%;
    height: auto;
    position: relative;
    padding: 2rem;
    margin: 0 auto;
    overflow-x: hidden;
}
    .instructions-container .instructions-content {
        width: 100%;
        height: auto;
        position: relative;
    }

        .instructions-container .instructions-content .text .line i {
            margin-right: 1rem;
        }

        .instructions-container .instructions-content .icon {
            width: 1.5rem;
            height: 1.5rem;
            position: relative;
            font-size: 1.5rem;
            margin-right: 0.5rem;
        }

            .instructions-container .instructions-content .icon.warning {
                color: #FF7D00;
                left: 0;
            }

            .instructions-container .instructions-content .icon.success {
                color: #0066CC;
                margin-right: 0.5rem;
            }

        .instructions-container .instructions-content .text {
            width: 80%;
            height: auto;
            top: 0;
            position: relative;
            color: black;
            font-size: 1.25rem;
            font-family: Raleway;
            font-weight: 400;
            line-height: 2.5rem;
            word-wrap: break-word;
            padding: 1rem;
        }

            .instructions-container .instructions-content .text .line {
                display: flex;
                margin-bottom: 1rem;
            }

                .instructions-container .instructions-content .text .line .success {
                    color: #0066CC;
                }

                .instructions-container .instructions-content .text .line .warning {
                    color: #FF7D00;
                }

    .instructions-container .instructions-title {
        width: 100%;
        text-align: center;
        color: #0066CC;
        font-size: 2.8125rem;
        font-family: Anton;
        font-weight: 400;
        line-height: 4.75rem;
        word-wrap: break-word;
        margin: 2rem 0;
    }

    .instructions-container .instructions-image {
        width: 30rem;
        height: auto;
        right: -5.5rem;
        top: 40rem;
        margin: 2rem auto;
        position: absolute;
        display: block;
    }

    .instructions-container .instructions-video {
        width: 60%;
        height: auto;
        margin-top: 1rem;
        border-radius: 1rem;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        margin: 0 auto;
        display: block;
    }

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.video-banner {
    background: linear-gradient(135deg, #0066CC, #FF7D00, #0066CC, #FF7D00);
    background-size: 400% 400%;
    animation: gradientRotate 10s linear infinite;
    padding: 1rem;
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40%;
}

@keyframes gradientRotate {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.video-wrapper {
    position: relative;
    display: inline-block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066CC, #FF7D00);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

    .play-button i {
        color: white;
        font-size: 24px;
    }

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        box-shadow: 0 0 20px rgba(0, 102, 204, 0.7), 0 0 20px rgba(255, 125, 0, 0.7);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    }
}

@keyframes upDown {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }
}

.instructions-image {
    animation: upDown 3s infinite;
}

.product-detail-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    margin: 0 auto;
    position: relative;
    margin-bottom: 2rem;
    padding-left: 5rem;
    padding-right: 5rem;
    margin-top: 3rem;
}

.product-detail-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 300px;
}

.product-detail-image {
    width: 100%;
    max-width: 27.375rem;
    height: auto;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0.625rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .product-detail-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #0066CC, #FF7D00, #0066CC, #FF7D00);
        background-size: 400% 400%;
        animation: gradientRotate 10s linear infinite;
        z-index: -1;
        border-radius: 0.625rem;
    }

    .product-detail-image:hover {
        transform: scale(1.05);
        box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.2);
    }

    .product-detail-image div {
        position: relative;
        display: flex;
        gap: 1rem;
    }

    .product-detail-image img {
        width: 100%;
        height: auto;
        position: relative;
        border-radius: 0.625rem;
        transition: transform 0.3s ease;
    }


.product-detail-info {
    padding: 0;
    margin: 0;
}

    .product-detail-info .title {
        color: #0066CC;
        font-size: 2rem;
        font-family: Anton;
        font-weight: 400;
    }

    .product-detail-info .price-container {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
    }

    .product-detail-info .price {
        color: black;
        font-size: 1.5rem;
        font-family: Raleway;
        font-weight: 700;
    }

    .product-detail-info .description {
        color: black;
        font-size: 1rem;
        font-family: Raleway;
        font-weight: 400;
        line-height: 1.5rem;
    }

.product-detail-divider {
    width: 100%;
    height: 1px;
    border: 1px rgba(0, 0, 0, 0.10) solid;
}

.product-detail-condition, .product-detail-expiration {
    flex-direction: column;
    justify-content: center;
    display: flex;
    gap: 0.5rem;
}

    .product-detail-condition span, .product-detail-expiration span, .product-detail-span {
        color: rgba(0, 0, 0, 0.60);
        font-size: 1rem;
        font-family: Raleway;
        font-weight: 400;
        word-wrap: break-word;
    }

.product-detail-condition-options {
    align-self: stretch;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
    display: inline-flex;
}

.product-detail-condition-option {
    padding: 0.75rem 1.5rem;
    border-radius: 62px;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    display: flex;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    border: none;
    outline: none;
}

    .product-detail-condition-option.mint {
        background: #F0F0F0;
    }

        .product-detail-condition-option.mint span {
            color: rgba(0, 0, 0, 0.60);
            font-size: 1rem;
            font-family: Raleway;
            font-weight: 400;
            word-wrap: break-word;
        }

    .product-detail-condition-option.good {
        background: #F0F0F0;
    }

        .product-detail-condition-option.good span {
            color: rgba(0, 0, 0, 0.60);
            font-size: 1rem;
            font-family: Raleway;
            font-weight: 400;
            word-wrap: break-word;
        }

    .product-detail-condition-option:hover {
        background: #FF7D00;
        color: white;
    }

    .product-detail-condition-option.active {
        background: #0066CC;
        color: white;
    }

        .product-detail-condition-option.active span {
            color: white;
        }

.expiration-dropdown {
    padding: 0.75rem 2rem;
    padding-right: 3rem;
    border-radius: 62px;
    background: #F0F0F0;
    color: rgba(0, 0, 0, 0.60);
    font-size: 1rem;
    font-family: Raleway;
    font-weight: 400;
    cursor: pointer;
    border: none;
    outline: none;
    transition: background 0.3s ease, color 0.3s ease;
    appearance: none;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEuNjY2NjcgNC4zMzMzM0w4IDExLjY2NjZMMTQuMzMzMyA0LjMzMzMzIiBzdHJva2U9IiMwMDAiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtZG9pbmNhcD0ic3F1YXJlIi8+Cjwvc3ZnPgo=');
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

    .expiration-dropdown:hover {
        background: #FF7D00;
        color: white;
    }

    .expiration-dropdown.selected {
        background: #0066CC;
        color: white;
    }

    .expiration-dropdown option {
        background: #F0F0F0;
        color: black;
    }


    .expiration-dropdown.selected {
        background: #0066CC;
        color: white;
    }

    .expiration-dropdown option {
        background: #F0F0F0;
        color: black;
        animation: dropdownFadeIn 0.3s ease-out;
    }

    .expiration-dropdown.selected {
        background: #0066CC;
        color: white;
    }


.product-detail-actions {
    width: 100%;
    justify-content: center;
    align-items: flex-start;
    display: flex;
    gap: 1rem;
}

.product-detail-quantity, .cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #F0F0F0;
    border-radius: 62px;
    padding: 0.5rem;
}

.quantity-button {
    padding: 0.75rem 1.5rem;
    border-radius: 62px;
    background: #F0F0F0;
    color: rgba(0, 0, 0, 0.60);
    font-size: 1rem;
    font-family: Raleway;
    font-weight: 700;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .quantity-button:hover {
        background: #FF7D00;
        color: white;
    }

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.quantity-input {
    width: 3rem;
    text-align: center;
    font-size: 1rem;
    font-family: Raleway;
    font-weight: 400;
    color: black;
    background: #F0F0F0;
    border: none;
    outline: none;
}

.product-detail-add-to-cart {
    display: flex;
    width: 100%;
    border-radius: 62px;
    cursor: pointer;
    gap: 1rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

    .product-detail-add-to-cart span {
        color: white;
        font-size: 1rem;
        font-family: Raleway;
        font-weight: 400;
        word-wrap: break-word;
    }

.detail-add-to-cart-btn {
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    border-radius: 3.875rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    font-family: Raleway, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    width: 9.25rem;
    height: auto;
    background-color: #0066CC;
    color: white;
}

    .detail-add-to-cart-btn:hover {
        background-color: #FF7D00;
        color: white;
    }

.detail-quick-checkout-btn {
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    border-radius: 3.875rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    font-family: Raleway, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    width: 9.25rem;
    height: auto;
    background-color: #FF7D00;
    color: white;
}

    .detail-quick-checkout-btn:hover {
        background-color: #0066CC;
        color: white;
    }

.cart-item-count {
    position: absolute;
    top: 0rem;
    right: 4.25rem;
    background-color: #0066CC;
    color: white;
    border-radius: 50%;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-family: Raleway, sans-serif;
    font-weight: 700;
}

@keyframes moveToCart {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }

    100% {
        transform: translate(var(--translate-x), var(--translate-y));
        opacity: 0;
    }
}

.product-fly {
    position: absolute;
    z-index: 1000;
    width: 50px;
    height: 50px;
    background-color: #FF7D00;
    border-radius: 50%;
    animation: moveToCart 1s ease-in-out forwards;
}

.rotating-gradient-white-blue {
    background: linear-gradient(135deg, #FFFFFF, #0066CC, #FFFFFF, #0066CC);
    background-size: 400% 400%;
    animation: gradientRotate 10s linear infinite;
    width: 100%;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
    border-radius: 0.625rem;
}

.similar-products-container {
    width: 100%;
    height: auto;
    position: relative;
    padding: 2rem 0;
}

    .similar-products-container .left-right-gradient {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 35%;
        transform: translateY(-50%);
        z-index: -1;
    }

.similar-products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    padding: 1rem;
}

.similar-product-card {
    box-sizing: border-box;
    margin: 0.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 0.625rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 5px solid transparent;
    background-clip: padding-box;
}

    .similar-product-card::before {
        content: '';
        position: absolute;
        top: -0.3125rem;
        left: -0.3125rem;
        right: -0.3125rem;
        bottom: -0.3125rem;
        border-radius: 0.625rem;
        background: linear-gradient(135deg, #FFFFFF, #0066CC, #FFFFFF, #0066CC);
        background-size: 400% 400%;
        animation: gradientRotate 10s linear infinite;
        z-index: -1;
    }

    .similar-product-card:hover {
        transform: scale(1.05);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
    }

        .similar-product-card:hover::before {
            background: linear-gradient(135deg, #FF7D00, #0066CC, #FF7D00, #0066CC);
            background-size: 400% 400%;
            animation: gradientRotate 10s linear infinite;
        }

        .similar-product-card:hover .similar-product-title {
            color: white;
        }

        .similar-product-card:hover .similar-product-price {
            color: white;
        }

        .similar-product-card:hover .similar-sell-now-button button {
            background: white;
            color: #0066CC;
        }


    .similar-product-card .similar-product-image-container {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        overflow: hidden;
    }

        .similar-product-card .similar-product-image-container img {
            max-width: 9.375rem;
            max-height: 9.375rem;
            position: relative;
            z-index: 1;
        }

.similar-product-image-container .rotating-gradient-white-blue {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.similar-product-card .similar-product-title,
.similar-product-card .similar-product-price,
.similar-product-card .similar-sell-now-button {
    text-align: center;
    width: 100%;
}

.similar-product-card .similar-product-title {
    color: #0066CC;
    font-size: 1.5rem;
    font-family: Raleway;
    font-weight: 400;
}

.similar-product-card .similar-product-price {
    color: black;
    font-size: 1.875rem;
    font-family: Raleway;
    font-weight: 700;
}

.similar-sell-now-button button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: #0066CC;
    color: white;
    font-size: 1rem;
    font-family: Raleway;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: 3.875rem;
    border: none;
    outline: none;
}

.similar-product-card .similar-sell-now-button button:hover {
    background: #0066CC;
    color: white;
}

.similar-sell-now-button {
    display: flex;
    justify-content: center;
    width: 100%;
}

.similar-products-title {
    position: relative;
    text-align: center;
    color: #0066CC;
    font-size: 3rem;
    font-family: Anton;
    font-weight: 400;
    word-wrap: break-word;
    margin-bottom: 2rem;
}

.cart-container {
    max-width: 100%;
    padding: 2rem;
    overflow-x: hidden;
}

.cart-content {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
    z-index: 1;
}

.user-cart-title {
    color: #06C;
    font-family: Anton;
    font-size: 40px;
    font-weight: 400;
    padding: 0.5rem 2rem;
}

.empty-cart-message {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    font-size: 1.5rem;
    color: #FF7D00;
    font-family: Raleway, sans-serif;
    font-weight: 700;
    margin: 2rem 0;
}

.empty-cart-container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-image {
    position: absolute;
    right: -3%;
    top: 60%;
    transform: scaleX(-1);
    animation: slideInRightFlipped 6s ease-out;
    z-index: -8;
}

.cart-total {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 1.25rem;
}

.cart-total-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-total-header, .cart-checkout-button, .cart-item {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
}

.cart-total-text, .cart-total-amount, .cart-item-title, .cart-item-attribute, .cart-item-attribute-value, .cart-item-price, .cart-item-quantity-value {
    color: black;
    font-family: Raleway;
    font-weight: 400;
    word-wrap: break-word;
}

.cart-total-text, .cart-item-title {
    font-size: 1.25rem;
}

.cart-total-amount, .cart-item-price {
    font-size: 1.5rem;
}

.cart-checkout-button {
    height: 3.75rem;
    padding: 1rem 3.375rem;
    background: #0066CC;
    border-radius: 3.875rem;
    gap: 0.75rem;
    color: white;
    font-size: 1rem;
    font-family: Raleway, sans-serif;
    font-weight: 400;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

    .cart-checkout-button:hover {
        background: #FF7D00;
        color: white;
        transform: scale(1.05);
    }

.cart-checkout-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .cart-checkout-icon i {
        font-size: 1.5rem;
        color: white;
    }

.cart-item-container {
    display: flex;
    flex: 1;
    padding: 1.25rem 1.5rem;
    border-radius: 1.25rem;
    border: 0.0625rem rgba(0, 0, 0, 0.10) solid;
    gap: 1.5rem;
    flex-direction: column;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
}

.cart-item-image {
    width: 7.8125rem;
    height: 7.8125rem;
}

.cart-item-details {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cart-item-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.cart-item-attributes {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cart-item-attribute-value {
    color: rgba(0, 0, 0, 0.60);
    font-size: 0.875rem;
}

.cart-item-price {
    font-size: 1.25rem;
    font-weight: 700;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item-remove {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 1rem;
}

    .cart-item-remove:hover {
        transform: scale(1.1);
    }

    .cart-item-remove i {
        color: red;
        font-size: 1rem;
    }

.remove-button {
    background: none;
    border: none;
    color: inherit;
    font-size: inherit;
    cursor: pointer;
    padding: 0;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-item-quantity-decrease, .cart-item-quantity-increase {
    width: 1.25rem;
    height: 1.25rem;
    padding: 0.1375rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-item-quantity-decrease-icon, .cart-item-quantity-increase-icon {
    background: black;
}

.cart-item-quantity-decrease-icon {
    width: 0.975rem;
    height: 0.1175rem;
}

.cart-item-quantity-increase-icon {
    width: 0.975rem;
    height: 0.975rem;
}

.checkout-container {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 4rem;
    position: relative;
    justify-content: center;
    overflow-x: hidden;
}

.checkout-sections {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.checkout-shipping-info {
    width: 100%;
    max-width: 49.8125rem;
    background: white;
    box-shadow: 0 0.1875rem 0.45rem 0.4375rem rgba(0, 0, 0, 0.25);
    border-radius: 1.25rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.checkout-shipping-info-title {
    color: #0066CC;
    font-size: 1.875rem;
    font-family: Anton;
    font-weight: 400;
    margin-bottom: 2rem;
}

.checkout-shipping-info-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.checkout-shipping-info-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.checkout-title {
    color: #0C0C0D;
    font-size: 1rem;
    font-family: Raleway;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.checkout-shipping-info-field-value {
    background: #F0F0F0;
    border-radius: 1.25rem;
    padding: 1rem;
}

select.checkout-shipping-info-field-input option {
    background: #F0F0F0;
    color: black;
    transition: background 0.3s ease, color 0.3s ease;
}

    select.checkout-shipping-info-field-input option:hover {
        background: #FF7D00;
        color: white;
    }

.checkout-shipping-info-field-input {
    width: 100%;
    padding: 0.75rem;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-family: Raleway;
    font-weight: 400;
    box-sizing: border-box;
    outline: none;
}

.checkout-payment-method {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.checkout-payment-method-value {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #F0F0F0;
    border-radius: 1.25rem;
    padding: 1rem;
}

.checkout-payment-method-row {
    display: flex;
    gap: 1rem;
}

.checkout-payment-method, .checkout-account-name {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.phone-number-container {
    display: flex;
    align-items: center;
}

.country-code {
    margin-left: 0.2rem;
    font-size: 1rem;
    font-family: Raleway;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.60);
}

.payment-message {
    color: #0066CC;
    font-size: 1rem;
    font-family: Raleway, sans-serif;
    font-weight: 400;
    margin-top: 0.5rem;
    display: none;
    text-align: right;
}

.checkout-upload-photo-area {
    background: #F0F0F0;
    border-radius: 1.25rem;
    padding: 2rem;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    border: 2px dashed black;
}

#uploadedPhotos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

    #uploadedPhotos img {
        max-width: 12.5rem;
        margin: 0.5rem;
    }

.upload-icon {
    font-size: 2rem;
}

.upload-text {
    color: rgba(0, 0, 0, 0.60);
    font-size: 1rem;
    font-family: Raleway;
    font-weight: 400;
}

.checkout-upload-photo-input {
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
}


.checkout-notes {
    width: 100%;
    max-width: 45.9375rem;
    margin-bottom: 2rem;
}

.checkout-notes-area {
    background: #F0F0F0;
    border-radius: 1.25rem;
    padding: 1rem;
}

.checkout-notes-textarea {
    width: 100%;
    padding: 0.75rem;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-family: Raleway;
    font-weight: 400;
    box-sizing: border-box;
    outline: none;
    height: 100px;
    resize: vertical;
}

.checkout-submit-section {
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
}

.checkout-submit-terms {
    color: #0C0C0D;
    font-size: 1rem;
    font-family: Raleway;
    font-weight: 500;
    text-align: right;
    margin-bottom: 1rem;
}

.checkout-submit-terms-link {
    color: #0066CC;
    cursor: pointer;
    text-decoration: none;
}

.checkout-submit-divider {
    width: 100%;
    height: 0.0625rem;
    background: #E2E8F0;
    margin-bottom: 1rem;
    z-index: -20;
}

.checkout-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    align-items: center;
}

.checkout-cancel-order {
    background: none;
    border: none;
    color: #4A5568;
    font-size: 1rem;
    font-family: Raleway;
    font-weight: 500;
    cursor: pointer;
    align-self: center;
    padding: 0.75rem 1.5rem;
    border-radius: 3.875rem;
    transition: background 0.3s ease, color 0.3s ease;
}

    .checkout-cancel-order:hover {
        background: #FF7D00;
        color: white;
    }


.checkout-order-summary {
    width: 100%;
    max-width: 32.0625rem;
    background: #0066CC;
    box-shadow: 0 0.1875rem 0.45rem 0.4375rem rgba(0, 0, 0, 0.25);
    border-radius: 1.25rem;
    margin-bottom: 2rem;
    padding: 2rem;
    align-self: flex-start;
}

.checkout-order-summary-title,
.checkout-order-summary-item,
.checkout-order-summary-price,
.checkout-order-summary-total,
.checkout-order-summary-total-price {
    color: white;
    font-family: Raleway;
    word-wrap: break-word;
}

.checkout-order-summary-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.checkout-order-summary-item {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.checkout-order-summary-price {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.slider {
    position: relative;
    width: 100%;
    max-width: 26.3125rem;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 1.25rem;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-item {
    min-width: 100%;
    box-sizing: border-box;
    padding: 1rem;
    text-align: center;
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: #0066CC;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    z-index: 10;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    line-height: 1;
}

.slider-prev {
    left: 0.5rem;
}

.slider-next {
    right: 0.5rem;
}

    .slider-prev:hover, .slider-next:hover {
        color: #FF7D00;
    }

.checkout-order-summary-items {
    margin-bottom: 1rem;
    color: white;
    font-size: 1rem;
    font-family: Raleway;
    font-weight: 400;
    word-wrap: break-word;
}

.checkout-order-summary-total {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.checkout-order-summary-total-price {
    font-size: 1.25rem;
    font-weight: 500;
}

.checkout-order-summary-image {
    width: 100%;
    max-width: 26.3125rem;
    height: auto;
    box-shadow: 0 0.25rem 0.4375rem 0.125rem rgba(0, 0, 0, 0.25);
    border-radius: 1.25rem;
    margin-bottom: 2rem;
}

.acknowledge-text {
    text-align: right;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #ffffff;
    padding: 1.25rem;
    border: 0.0625rem solid #e5e5e5;
    width: 80%;
    max-width: 31.25rem;
    border-radius: 0.625rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    font-family: Raleway, sans-serif;
    position: relative;
    margin: auto;
}

.close {
    color: #aaa;
    position: absolute;
    top: 0.625rem;
    right: 1.5rem;
    font-size: 1.75rem;
    font-weight: bold;
}

    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

.modal-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1rem;
}

.modal-button {
    padding: 0.75rem 1.5rem;
    border-radius: 3.875rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    font-family: Raleway, sans-serif;
    font-size: 1rem;
    font-weight: 400;
}

    .modal-button.cancel {
        background: #0066CC;
        color: white;
    }

        .modal-button.cancel:hover {
            background: #004C99;
        }

    .modal-button.confirm {
        background: #FF0000;
        color: white;
    }

        .modal-button.confirm:hover {
            background: #CC0000;
        }

.modal-divider {
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
    margin: 1rem 0;
}

#deleteModal {
    display: none;
    position: fixed;
    z-index: 1000;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

    #deleteModal .modal-content {
        background-color: #ffffff;
        padding: 1.25rem;
        border: 0.0625rem solid #e5e5e5;
        width: 80%;
        max-width: 31.25rem;
        border-radius: 0.625rem;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
        font-family: Raleway, sans-serif;
        position: relative;
        margin: auto;
        text-align: center;
    }

    #deleteModal .close {
        color: #aaa;
        position: absolute;
        top: 0.625rem;
        right: 1.5rem;
        font-size: 1.75rem;
        font-weight: bold;
    }

        #deleteModal .close:hover,
        #deleteModal .close:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }

    #deleteModal .modal-buttons {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 1rem;
    }

    #deleteModal .modal-button {
        padding: 0.75rem 1.5rem;
        border-radius: 3.875rem;
        border: none;
        cursor: pointer;
        transition: background 0.3s ease, color 0.3s ease;
        font-family: Raleway, sans-serif;
        font-size: 1rem;
        font-weight: 400;
    }

        #deleteModal .modal-button.cancel {
            background: #0066CC;
            color: white;
        }

            #deleteModal .modal-button.cancel:hover {
                background: #004C99;
            }

        #deleteModal .modal-button.confirm {
            background: #FF0000;
            color: white;
        }

            #deleteModal .modal-button.confirm:hover {
                background: #CC0000;
            }

#termsModal, #submitOrderModal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

    #termsModal .modal-content, #submitOrderModal .modal-content {
        background-color: #ffffff;
        padding: 1.25rem;
        border: 0.0625rem solid #e5e5e5;
        width: 80%;
        max-width: 31.25rem;
        border-radius: 0.625rem;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
        font-family: Raleway, sans-serif;
        position: relative;
    }

    #termsModal .close, #submitOrderModal .close {
        color: #aaa;
        position: absolute;
        top: 0.625rem;
        right: 1.5rem;
        font-size: 1.75rem;
        font-weight: bold;
    }

        #termsModal .close:hover, #termsModal .close:focus, #submitOrderModal .close:hover, #submitOrderModal .close:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }

    #termsModal .modal-buttons, #submitOrderModal .modal-buttons {
        display: flex;
        justify-content: flex-end;
        gap: 1rem;
        margin-top: 1rem;
    }

    #termsModal .modal-button, #submitOrderModal .modal-button {
        padding: 0.75rem 1.5rem;
        border-radius: 3.875rem;
        border: none;
        cursor: pointer;
        transition: background 0.3s ease, color 0.3s ease;
        font-family: Raleway, sans-serif;
        font-size: 1rem;
        font-weight: 400;
    }

        #termsModal .modal-button.cancel, #submitOrderModal .modal-button.cancel {
            background: #0066CC;
            color: white;
        }

            #termsModal .modal-button.cancel:hover, #submitOrderModal .modal-button.cancel:hover {
                background: #004C99;
            }

        #termsModal .modal-button.confirm, #submitOrderModal .modal-button.confirm {
            background: #FF0000;
            color: white;
        }

            #termsModal .modal-button.confirm:hover, #submitOrderModal .modal-button.confirm:hover {
                background: #CC0000;
            }

    #termsModal .modal-checkboxes, #submitOrderModal .modal-checkboxes {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
    }

        #termsModal .modal-checkboxes label, #submitOrderModal .modal-checkboxes label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-family: Raleway, sans-serif;
            font-size: 1rem;
            font-weight: 400;
            color: #333;
        }

        #termsModal .modal-checkboxes input[type="checkbox"], #submitOrderModal .modal-checkboxes input[type="checkbox"] {
            width: 1rem;
            height: 1rem;
            flex-shrink: 0;
        }

    #termsModal .emphasized-text, #submitOrderModal .emphasized-text {
        font-size: 1.5rem;
        font-weight: bold;
        color: #FF7D00;
        text-align: center;
        margin-bottom: 1rem;
    }

    #termsModal .error-message, #submitOrderModal .error-message {
        color: red;
        font-size: 1rem;
        font-family: Raleway, sans-serif;
        margin-top: 0.5rem;
        text-align: right;
    }

#continueCheckoutModal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

    #continueCheckoutModal .modal-content {
        background-color: #ffffff;
        padding: 1.25rem;
        border: 0.0625rem solid #e5e5e5;
        width: 80%;
        max-width: 31.25rem;
        border-radius: 0.625rem;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
        font-family: Raleway, sans-serif;
        position: relative;
    }

    #continueCheckoutModal .close {
        color: #aaa;
        position: absolute;
        top: 0.625rem;
        right: 1.5rem;
        font-size: 1.75rem;
        font-weight: bold;
    }

        #continueCheckoutModal .close:hover,
        #continueCheckoutModal .close:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }

    #continueCheckoutModal .modal-buttons {
        display: flex;
        justify-content: flex-end;
        gap: 1rem;
        margin-top: 1rem;
    }

    #continueCheckoutModal .modal-button {
        padding: 0.75rem 1.5rem;
        border-radius: 3.875rem;
        border: none;
        cursor: pointer;
        transition: background 0.3s ease, color 0.3s ease;
        font-family: Raleway, sans-serif;
        font-size: 1rem;
        font-weight: 400;
    }

        #continueCheckoutModal .modal-button.cancel {
            background: #0066CC;
            color: white;
        }

            #continueCheckoutModal .modal-button.cancel:hover {
                background: #004C99;
            }

        #continueCheckoutModal .modal-button.confirm {
            background: #FF0000;
            color: white;
        }

            #continueCheckoutModal .modal-button.confirm:hover {
                background: #CC0000;
            }

#cancelOrderModal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

    #cancelOrderModal .modal-content {
        background-color: #ffffff;
        padding: 1.25rem;
        border: 0.0625rem solid #e5e5e5;
        width: 80%;
        max-width: 31.25rem;
        border-radius: 0.625rem;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
        font-family: Raleway, sans-serif;
        position: relative;
    }

    #cancelOrderModal .close {
        color: #aaa;
        position: absolute;
        top: 0.625rem;
        right: 1.5rem;
        font-size: 1.75rem;
        font-weight: bold;
    }

        #cancelOrderModal .close:hover,
        #cancelOrderModal .close:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }

    #cancelOrderModal .modal-buttons {
        display: flex;
        justify-content: flex-end;
        gap: 1rem;
        margin-top: 1rem;
    }

    #cancelOrderModal .modal-button {
        padding: 0.75rem 1.5rem;
        border-radius: 3.875rem;
        border: none;
        cursor: pointer;
        transition: background 0.3s ease, color 0.3s ease;
        font-family: Raleway, sans-serif;
        font-size: 1rem;
        font-weight: 400;
    }

        #cancelOrderModal .modal-button.cancel {
            background: #0066CC;
            color: white;
        }

            #cancelOrderModal .modal-button.cancel:hover {
                background: #004C99;
            }

        #cancelOrderModal .modal-button.confirm {
            background: #FF0000;
            color: white;
        }

            #cancelOrderModal .modal-button.confirm:hover {
                background: #CC0000;
            }

.success-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    margin-top: 2rem;
    justify-content: center;
}

.order-summary {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 2rem;
    gap: 1rem;
}

.order-summary-left,
.order-summary-right {
    flex: 1;
}

.order-summary-left {
    display: flex;
    flex-direction: column;
}

.order-summary-right {
    display: flex;
    flex-direction: column;
}

.download-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 3.875rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    font-family: Raleway, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    background-color: #0066CC;
    color: white;
}

    .download-btn:hover {
        background-color: #FF7D00;
        color: white;
    }

    .download-btn i {
        margin-right: 0.5rem;
    }

.order-items {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 0;
}

.packaging-instructions {
    max-width: 100%;
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
}

.green-check {
    color: green;
}

.red-warning {
    color: red;
}

.success-instructions-slider .slider-item img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
}

.item-card {
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
    text-align: left;
    display: flex;
    align-items: center;
}

.item-card-content {
    display: flex;
    align-items: center;
}

.product-image {
    width: 100px;
    height: auto;
    margin-right: 1rem;
}

.item-details {
    display: flex;
    flex-direction: column;
}

.shipping-label-preview {
    background: #F0F0F0;
    border-radius: 0.625rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    padding: 1rem;
    margin-bottom: 2rem;
    overflow: hidden;
    flex: 2;
    position: relative;
}

    .shipping-label-preview h3 {
        color: #0066CC;
        font-size: 1.5rem;
        font-family: Anton, sans-serif;
        font-weight: 400;
    }

    .shipping-label-preview iframe {
        margin-top: 1rem;
        border: none;
        border-radius: 0.625rem;
        box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
        justify-content: center;
        align-content: center;
    }

.faq-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    width: 90%;
    margin: 0 auto;
    background: #f9f9f9;
    border-radius: 1.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.faq-content {
    display: flex;
    gap: 2rem;
    width: 100%;
}

.faq-main {
    flex: 2;
}

.faq-form {
    flex: 1;
}

.faq-header {
    color: #0066CC;
    font-size: 2.8125rem;
    font-family: Anton;
    font-weight: 400;
    line-height: 4.75rem;
    word-wrap: break-word;
    margin-bottom: 2rem;
    text-align: center;
}

.faq-categories {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.faq-category {
    padding: 0.625rem 1.25rem;
    border-radius: 3.875rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    border: none;
    background: none;
}

    .faq-category.active {
        background: #FF7D00;
    }

    .faq-category.inactive {
        background: #F0F0F0;
    }

.faq-category-text {
    font-size: 0.875rem;
    font-family: Raleway;
    font-weight: 400;
    word-wrap: break-word;
    transition: color 0.3s;
}

    .faq-category-text.active {
        color: white;
    }

    .faq-category-text.inactive {
        color: rgba(0, 0, 0, 0.60);
    }

.faq-questions {
    margin-top: 2rem;
}

.faq-question {
    width: 100%;
    margin: 1rem auto;
    padding: 1rem;
    background: white;
    border-radius: 1.25rem;
    border: 0.0625rem #CFCFCF solid;
    position: relative;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .faq-question:hover {
        transform: scale(1.02);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
    }

.faq-question-title {
    color: black;
    font-size: 1.375rem;
    font-family: Raleway;
    font-weight: 800;
    margin-bottom: 1rem;
}

.faq-question-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.faq-question-icon-line {
    width: 0.125rem;
    height: 1.25rem;
    background: #3D3D3D;
    border-radius: 1.25rem;
}

    .faq-question-icon-line.rotate {
        transform: rotate(90deg);
        transform-origin: 0 0;
    }

.faq-question-text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
    color: black;
    font-size: 1rem;
    font-family: Raleway;
    font-weight: 500;
    line-height: 1.9375rem;
}

    .faq-question-text.show {
        max-height: 1000px;
        opacity: 1;
    }

.faq-question-icon i.rotate {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.faq-form-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    position: relative;
}

.faq-form-background {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 1.25rem;
    border: 0.0625rem #CFCFCF solid;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.faq-form-icon {
    width: 4.1875rem;
    height: 3.9375rem;
    margin: 2rem auto;
    background: black;
    border-radius: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .faq-form-icon i {
        color: white;
        font-size: 2rem;
    }

.faq-form-title {
    text-align: center;
    color: black;
    font-size: 1.375rem;
    font-family: Raleway;
    font-weight: 800;
    margin: 1rem 0;
}

.faq-form-button {
    width: 80%;
    height: 4.3125rem;
    padding: 1rem 3.375rem;
    margin: 2rem auto;
    background: #0066CC;
    border-radius: 3.875rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-size: 1rem;
    font-family: Raleway, sans-serif;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
    outline: none;
}

    .faq-form-button:hover {
        background: #FF7D00;
        transform: scale(1.05);
    }

.faq-form-button-text {
    color: white;
    font-size: 1rem;
    font-family: Raleway;
    font-weight: 400;
}

.faq-form-label {
    width: 100%;
    max-width: 21.0625rem;
    margin: 1rem auto 0.5rem;
    color: #0C0C0D;
    font-size: 1rem;
    font-family: Raleway;
    font-weight: 500;
}

.faq-form-input {
    display: flex;
    justify-content: center;
    width: 100%;
}

.faq-form-input-text {
    width: 100%;
    max-width: 21.0625rem;
    margin: 0 auto 1rem;
    color: #2D3748;
    font-size: 1rem;
    font-family: Raleway;
    font-weight: 500;
    padding: 1rem;
    background: #F0F0F0;
    border-radius: 1.25rem;
}

.faq-form-input input {
    max-width: 80%;
    width: 100%;
    padding: 0.75rem 1rem;
    background: #F0F0F0;
    border: 1px solid #e0e0e0;
    border-radius: 1.25rem;
    font-size: 1rem;
    font-family: Raleway, sans-serif;
    color: #2D3748;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    .faq-form-input input:focus {
        border-color: #0066CC;
        box-shadow: 0 0 0.5rem rgba(0, 102, 204, 0.25);
    }

@keyframes bounceTwiceFlip {
    0%, 100% {
        transform: translateY(0) rotateY(0);
    }

    20%, 60% {
        transform: translateY(-30px) rotateY(0);
    }

    40%, 80% {
        transform: translateY(0) rotateY(0);
    }

    90% {
        transform: translateY(0) rotateY(180deg);
    }
}

.bounce-twice-flip {
    animation: bounceTwiceFlip 5s infinite;
}

.contact-us-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    width: 90%;
    margin: 0 auto;
}

.contact-us-info {
    max-width: 70%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-us-header {
    color: #0066CC;
    font-size: 2.8125rem;
    font-family: Anton;
    font-weight: 400;
    line-height: 3.75rem;
}

.contact-us-description {
    color: #1B1B1B;
    font-size: 1.375rem;
    font-family: Raleway;
    font-weight: 400;
    line-height: 1.75rem;
    margin-bottom: 2rem;
    padding: 1rem;
}

.contact-us-info-title {
    color: #1B1B1B;
    font-size: 1.375rem;
    font-family: Raleway;
    font-weight: 500;
    line-height: 1.75rem;
}

.contact-us-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-us-info-icon {
    width: 1.5rem;
    width: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-us-info-text {
    flex: 1;
    color: #1B1B1B;
    font-size: 1rem;
    font-family: Raleway;
    font-weight: 400;
    line-height: 1.75rem;
    text-align: justify;
}

.contact-us-info-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-us-info-location-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-us-info-location-text {
    color: #1B1B1B;
    font-size: 1rem;
    font-family: Raleway;
    font-weight: 400;
    line-height: 1.75rem;
}

.contact-us-image {
    position: absolute;
    left: -3%;
    bottom: -18rem;
    width: 20%;
    height: auto;
    z-index: -1;
    animation: teeter 2s infinite;
}


.contact-us-form-container {
    width: 100%;
    background: rgba(0, 102, 204, 0.80);
    box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
    border-radius: 1.5rem;
    backdrop-filter: blur(0.9375rem);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-us-form-title {
    color: white;
    font-size: 1.75rem;
    font-family: Raleway;
    font-weight: 700;
}

.contact-us-form-subtitle {
    color: white;
    font-size: 1rem;
    font-family: Raleway;
    font-weight: 400;
    line-height: 1.5rem;
}

.contact-us-input-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-us-input-label {
    color: white;
    font-size: 1rem;
    font-family: Raleway;
    font-weight: 500;
}

.contact-us-input {
    width: 100%;
    height: auto;
    background: #F0F0F0;
    border-radius: 1.25rem;
    border: none;
    outline: none;
    padding: 1rem;
    font-size: 1rem;
    font-family: Raleway;
    font-weight: 500;
    color: #2D3748;
}

.contact-us-textarea-label {
    color: white;
    font-size: 1rem;
    font-family: Raleway;
    font-weight: 500;
}

.contact-us-textarea {
    width: 100%;
    height: auto;
    padding: 1rem;
    background: #F0F0F0;
    border-radius: 1.25rem;
    border: none;
    outline: none;
    resize: vertical;
    font-size: 1rem;
    font-family: Raleway;
    font-weight: 500;
    color: #2D3748;
    overflow: hidden;
}

.contact-us-submit-button {
    width: 100%;
    height: 4.3125rem;
    background: #FF7D00;
    box-shadow: 0 0.125rem 0.4375rem 0.4375rem rgba(0, 0, 0, 0.25);
    border-radius: 3.875rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    border: none;
    outline: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

    .contact-us-submit-button:hover {
        background: #0066CC;
        transform: scale(1.05);
        box-shadow: 0 0.125rem 0.4375rem 0.4375rem rgba(255, 255, 255, 0.25);
    }

.contact-us-submit-button-text {
    color: white;
    font-size: 1rem;
    font-family: Raleway;
    font-weight: 700;
}

.account-container {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    margin-top: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 1.25rem;
    box-shadow: 0 0.1875rem 0.45rem 0.4375rem rgba(0, 0, 0, 0.25);
    position: relative;
    overflow-x:hidden;
}

.account-header {
    text-align: center;
    color: #0066CC;
    font-size: 2.5rem;
    font-family: Anton;
    font-weight: 400;
    margin-bottom: 2rem;
}

.account-header-container {
    display: flex;
    justify-content: space-between;
}

.account-subheader {
    color: #333;
    font-size: 1.5rem;
    font-family: Raleway;
    font-weight: 400;
    margin-bottom: 1rem;
}

.sold-products-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

    .sold-products-table th, .sold-products-table td {
        border: 1px solid #e5e5e5;
        padding: 1rem 0.75rem;
        vertical-align: top;
        text-align: left;
        font-family: Raleway, sans-serif;
        font-size: 0.875rem;
        color: #333;
    }

    .sold-products-table th {
        background: #f5f7fa;
        color: #222;
        font-size: 1rem;
        font-family: 'Raleway', sans-serif;
        font-weight: 600;
        border-top: 2px solid #e0e0e0;
        border-bottom: 2px solid #e0e0e0;
        text-align: center;
        padding: 0.85rem 0.75rem;
        letter-spacing: 0.02em;
        box-shadow: none;
        vertical-align: middle;
    }

    .sold-products-table td {
        background-color: #fff;
        font-weight: 400;
    }

    .sold-products-table tr:nth-child(even) td {
        background-color: #f8f9fa;
    }

    .sold-products-table tr:hover td {
        background-color: #e9ecef;
    }

.sold-products-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
}

.sold-product-item {
    flex: 1 1 calc(50% - 1.5rem);
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    min-width: 180px;
    margin: 0 0.5rem;
    border: 1px solid #e0e0e0;
}

    .sold-product-item img {
        max-width: 50px;
        height: auto;
        border-radius: 0.5rem;
        margin-bottom: 0.25rem;
    }

.product-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.875rem;
}

.product-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.product-price, .product-quantity {
    font-size: 1rem;
    color: #333;
}

.product-description, .product-price, .product-quantity {
    font-size: 0.875rem;
}

.quote-photo-item img {
    max-width: 50px;
    height: auto;
    margin: 0.25rem;
}

.logout-button, .login-button {
    padding: 0.5rem 1rem;
    margin-left: 1rem;
    font-size: 1rem;
    font-family: Raleway, sans-serif;
    font-weight: 400;
    cursor: pointer;
    border: none;
    background-color: #0066CC;
    color: white;
    border-radius: 0.375rem;
    transition: background 0.3s ease, color 0.3s ease;
}

    .logout-button:hover, .login-button:hover {
        background-color: #FF7D00;
        color: white;
    }

.identity-container {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    padding: 1rem;
    box-sizing: border-box;
    background: transparent;
}

    .identity-container p,
    .identity-container li {
        color: white;
    }

.identity-section {
    width: 100%;
    max-width: 50rem;
    padding: 2rem;
    background: linear-gradient(90deg, rgba(0, 102, 204, 0.8) 45%, rgba(0, 102, 204, 0.8) 100%);
    border-radius: 1.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    overflow: hidden;
}

    .identity-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('../images/home-bg.png') no-repeat center center;
        background-size: cover;
        opacity: 0.5;
        z-index: -1;
    }

.identity-section-content {
    width: 100%;
}

.identity-image {
    width: 5rem;
    height: 5rem;
    margin-bottom: 1rem;
}

.identity-section-title {
    color: rgba(255, 255, 255, 0.70);
    font-size: 1rem;
    font-family: Raleway;
    font-weight: 600;
    margin-bottom: 1rem;
}

.identity-section-heading {
    color: white;
    font-size: 2rem;
    font-family: Anton;
    font-weight: 400;
    margin-bottom: 1rem;
}

.identity-section-subheading {
    color: #1D90F4;
    font-size: 2rem;
    font-family: Anton;
    font-weight: 400;
}

.identity-input {
    width: 70%;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #F0F0F0;
    border-radius: 0.625rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.identity-input-label {
    color: rgba(0, 0, 0, 0.50);
    font-size: 0.75rem;
    font-family: Raleway;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.identity-input input {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-family: Raleway;
    font-weight: 400;
    color: black;
    outline: none;
}

.identity-button {
    width: 100%;
    padding: 1rem;
    border-radius: 3.875rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    background-color: #FF7D00;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
}

    .identity-button:hover {
        background-color: white;
        color: black;
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
        transform: scale(1.05);
    }

.identity-button-text {
    color: inherit;
    font-size: 1rem;
    font-family: Raleway;
    font-weight: 700;
}

.identity-section-footer {
    color: rgba(255, 255, 255, 0.70);
    font-size: 1rem;
    font-family: Raleway;
    font-weight: 400;
    margin-top: 1rem;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.identity-section-footer-link a {
    color: black;
    text-decoration: none;
    font-weight: 700;
}

    .identity-section-footer-link a:hover {
        text-decoration: underline;
    }

.custom-checkbox {
    display: flex;
    gap: 0.5rem;
    cursor: pointer;
}

    .custom-checkbox input[type="checkbox"] {
        appearance: none;
        width: 1rem;
        height: 1rem;
        border-radius: 0.25rem;
        position: relative;
        cursor: pointer;
        transition: background 0.3s, border-color 0.3s;
    }

    .custom-checkbox label {
        color: rgba(0, 0, 0, 0.60);
        font-size: 1rem;
        font-family: Raleway;
        font-weight: 400;
    }

.identity-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

    .identity-links a {
        color: white;
        font-size: 1rem;
        font-family: Raleway, sans-serif;
        font-weight: 400;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .identity-links a:hover {
            color: white;
            text-decoration: none;
        }

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

body.identity-layout {
    display: flex;
    flex-direction: column;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.identity-input-group {
    display: flex;
    gap: 1rem;
}

.identity-input {
    flex: 1;
}

.identity-section h2 {
    color: white;
    font-size: 1.25rem;
    font-family: Raleway, sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: left;
}

.price-right {
    text-align: right;
    flex-grow: 1;
}

.checkout-order-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout-order-summary-item-details {
    display: flex;
    flex-direction: column;
}

.price-right {
    text-align: right;
    flex-grow: 1;
}

.order-details-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    text-align: left;
    margin: 0 auto;
}

    .order-details-table td {
        padding: 1rem;
        border: 1px solid #e5e5e5;
        font-family: Raleway, sans-serif;
        font-size: 1rem;
        font-weight: 400;
        color: #333;
        background-color: #f9f9f9;
    }

        .order-details-table td a {
            color: #0066CC;
            text-decoration: none;
        }

            .order-details-table td a:hover {
                text-decoration: underline;
            }

.button-group {
    display: flex;
    gap: 1rem;
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    border-radius: 3.875rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    font-family: Raleway, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    width: 9.25rem;
    height: auto;
    background-color: #0066CC;
    color: white;
}

    .button:hover {
        background-color: #FF7D00;
        color: white;
    }

    .button i {
        margin-right: 0.5rem;
    }

.manage-account-container {
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 1.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    margin: 2rem auto;
    max-width: 80rem;
}

.manage-account-title {
    color: #0066CC;
    font-size: 2.5rem;
    font-family: Anton, sans-serif;
    font-weight: 400;
    text-align: center;
    margin-bottom: 1rem;
}

.manage-account-content {
    background-color: white;
    padding: 2rem;
    border-radius: 1.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.manage-account-subtitle {
    color: #0066CC;
    font-size: 1.5rem;
    font-family: Raleway, sans-serif;
    font-weight: 400;
    margin-bottom: 1rem;
    text-align: center;
}

.manage-nav {
    background-color: #f8f9fa;
    border-radius: 0.25rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    padding: 1rem;
    margin-bottom: 1rem;
}

    .manage-nav .nav-link {
        color: #0066CC;
        font-size: 1rem;
        font-family: Raleway, sans-serif;
        font-weight: 400;
        text-decoration: none;
        padding: 0.5rem 1rem;
        border-radius: 0.25rem;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

        .manage-nav .nav-link:hover {
            background-color: #e9ecef;
            color: #FF7D00;
        }

        .manage-nav .nav-link.active {
            background-color: #0066CC;
            color: white;
        }

.rotating-gradient-background {
    background: linear-gradient(135deg, #0066CC, #FF7D00, #0066CC, #FF7D00);
    background-size: 400% 400%;
    animation: gradientRotate 10s linear infinite;
}

p {
    color: #333;
    font-size: 1rem;
    font-family: Raleway, sans-serif;
    font-weight: 400;
    line-height: 1.5rem;
    margin-bottom: 1rem;
}

.form-control {
    border: 2px solid #0066CC;
    border-radius: 0.625rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: Raleway, sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-label {
    color: #0066CC;
    font-size: 1rem;
    font-family: Raleway, sans-serif;
    font-weight: 500;
}

.form-control:focus {
    border-color: #FF7D00;
    box-shadow: 0 0 0.5rem rgba(255, 125, 0, 0.25);
    outline: none;
}

.text-danger {
    color: #FF0000;
    font-size: 0.875rem;
    font-family: Raleway, sans-serif;
    font-weight: 400;
}

.gen-btn-danger {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    border-radius: 3.875rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    font-family: Raleway, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    width: 9.25rem;
    height: auto;
    background-color: #dc3545;
    color: white;
}

    .gen-btn-danger:hover {
        background-color: #c82333;
        color: white;
    }

.admin-panel-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    min-height: 100vh;
    height: auto;
    background: white;
    flex: 1;
    overflow-x: hidden;
}

.admin-panel-sidebar {
    width: 15rem;
    background: #0066CC;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-shrink: 0;
    min-height: 250vh;
    height: 100%;
    animation: slideIn 0.5s ease-out;
}

.admin-panel-content {
    flex: 1;
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.admin-panel-content-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    animation: fadeIn 1s ease-in;
}

.admin-panel-main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 2rem;
    background: white;
    min-height: 100vh;
}

.admin-panel-table-container {
    flex: 1;
    padding: 1.5rem;
    background: white;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.admin-panel-title {
    color: #0066CC;
    font-size: 4.25rem;
    font-family: Anton;
    font-weight: 400;
    letter-spacing: 0.01125rem;
}

.admin-panel-header {
    width: 100%;
    height: 5.6875rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 0.5rem;
}

    .admin-panel-header img {
        width: 3.75rem;
        height: 3.75rem;
    }

    .admin-panel-header .icon-container {
        width: 2.5rem;
        height: 2.5rem;
        background: white;
        box-shadow: 0 0.5rem 2rem rgba(206, 212, 218, 0.15);
        border-radius: 0.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .admin-panel-header .icon-container .icon {
            width: 1.25rem;
            height: 1.25rem;
            position: relative;
        }

            .admin-panel-header .icon-container .icon::before {
                content: '';
                width: 0.755rem;
                height: 0.546875rem;
                position: absolute;
                border: 0.078125rem #212529 solid;
            }

.admin-panel-menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.admin-panel-menu-item {
    width: 11rem;
    height: 3rem;
    padding: 0 0.75rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

    .admin-panel-menu-item.active {
        background-color: #FF7D00;
        color: white;
    }

    .admin-panel-menu-item .icon {
        width: 1.5rem;
        height: 1.5rem;
        position: relative;
        margin-right: 0.5rem;
    }

        .admin-panel-menu-item .icon i {
            color: white;
            font-size: 1.5rem;
        }

    .admin-panel-menu-item.active .icon i {
        color: white;
    }

    .admin-panel-menu-item .icon div {
        width: 0.90625rem;
        height: 0.90625rem;
        position: absolute;
        border: 0.09375rem white solid;
    }

    .admin-panel-menu-item .text {
        flex: 1;
        color: white;
        font-size: 0.875rem;
        font-family: Raleway;
        font-weight: 400;
        text-transform: uppercase;
        line-height: 1.5rem;
        letter-spacing: 0.021875rem;
        word-wrap: break-word;
    }

.admin-panel-settings {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-panel-settings-title {
    color: white;
    font-size: 0.875rem;
    font-family: Raleway;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.5rem;
    letter-spacing: 0.021875rem;
    word-wrap: break-word;
}

.admin-panel-settings-menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.admin-panel-settings-menu-item {
    width: 11rem;
    height: 3rem;
    padding: 0 0.75rem;
    background: #0066CC;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .admin-panel-settings-menu-item .icon {
        width: 1.5rem;
        height: 1.5rem;
        position: relative;
    }

        .admin-panel-settings-menu-item .icon div {
            width: 0.90625rem;
            height: 0.78125rem;
            position: absolute;
            border: 0.09375rem white solid;
        }

    .admin-panel-settings-menu-item .text {
        flex: 1;
        color: white;
        font-size: 0.875rem;
        font-family: Raleway;
        font-weight: 400;
        text-transform: uppercase;
        line-height: 1.5rem;
        letter-spacing: 0.021875rem;
        word-wrap: break-word;
    }

.orders-section, .sellers-section, .multipliers-section, .month-ranges-section, .products-section, .categories-section, .feedback-section, .archive-section {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.search-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.search-container {
    display: flex;
    align-items: center;
    background: #f0f0f0;
    border-radius: 3.875rem;
    padding: 0.5rem 1rem;
    box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
}

    .search-container:hover {
        background: #e0e0e0;
    }

.search-input {
    border: none;
    outline: none;
    background: none;
    font-size: 1rem;
    font-family: Raleway, sans-serif;
    color: rgba(0, 0, 0, 0.60);
    padding: 0.5rem;
    border-radius: 3.875rem;
    transition: background 0.3s ease, color 0.3s ease;
}

    .search-input::placeholder {
        color: rgba(0, 0, 0, 0.40);
    }

    .search-input:focus {
        background: white;
        color: black;
        box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
    }

.search-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .search-box .icon {
        color: rgba(0, 0, 0, 0.40);
        font-size: 1.25rem;
    }

.table-container {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 1.5rem;
    font-family: Raleway;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    border-radius: 0.75rem;
    overflow: hidden;
}

    .table-container th, .table-container td {
        border: 1px solid #e5e5e5;
        padding: 1rem;
        text-align: left;
        border-radius: 0.75rem;
    }

    .table-container th {
        background-color: #f8f9fa;
        color: #333;
        font-weight: 700;
        position: relative;
    }

        .table-container th .icon-container {
            position: absolute;
            right: 0.5rem;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            gap: 0.5rem;
        }

    .table-container td {
        background-color: #fff;
        color: #333;
    }

    .table-container tr:nth-child(even) td {
        background-color: #f8f9fa;
    }

.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

.pagination-buttons {
    display: flex;
    gap: 0.75rem;
}

.pagination-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: Raleway;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}

    .pagination-button.inactive {
        background-color: #e5e5e5;
        cursor: not-allowed;
    }

    .pagination-button.active {
        background-color: #0066cc;
        color: white;
    }

    .pagination-button.default {
        background-color: white;
        border: 1px solid #e5e5e5;
    }

    .pagination-button:hover:not(.inactive) {
        background-color: #f0f0f0;
    }

.pagination-ellipsis {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px; 
    font-size: 1.2em;
    color: #888;
    user-select: none;
}

@media (max-width: 600px) {
    .pagination-container {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .pagination-buttons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .pagination-button {
        min-width: 2rem;
        width: 2.25rem;
        height: 2.25rem;
        font-size: 1rem;
        padding: 0.25rem;
    }

    .pagination-ellipsis {
        min-width: 1.5rem;
        font-size: 1rem;
    }
}

.admin-panel-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: white;
    border-bottom: 1px solid #e5e5e5;
}

    .admin-panel-header-container .icon-box {
        height: 2.5rem;
        padding: 0.5rem;
        background: white;
        border-radius: 0.5rem;
        border: 0.0625rem #E9ECEF solid;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
    }

        .admin-panel-header-container .icon-box .icon {
            width: 1.5rem;
            height: 1.5rem;
            position: relative;
        }

            .admin-panel-header-container .icon-box .icon div {
                width: 0.90625rem;
                height: 0.78125rem;
                position: absolute;
                border: 0.09375rem #212529 solid;
            }

    .admin-panel-header-container .admin-box {
        padding: 0.5rem;
        background: white;
        border-radius: 0.5rem;
        border: 0.0625rem #E9ECEF solid;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
    }

        .admin-panel-header-container .admin-box .admin-text {
            color: #343A40;
            font-size: 0.875rem;
            font-family: Raleway;
            font-weight: 500;
            line-height: 1.5rem;
            word-wrap: break-word;
            text-decoration: none;
        }

        .admin-panel-header-container .admin-box .icon {
            width: 1.5rem;
            height: 1.5rem;
            position: relative;
        }

            .admin-panel-header-container .admin-box .icon div {
                width: 0.40625rem;
                height: 0.21875rem;
                position: absolute;
                border: 0.09375rem #ADB5BD solid;
            }

.dashboard-section {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.dashboard-metrics {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.metric {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1;
}

.metric-title {
    font-family: 'Raleway', sans-serif;
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.metric-value {
    font-size: 2rem;
    color: #0066CC;
    font-family: 'Anton', sans-serif;
}

.recent-orders {
    margin-top: 2rem;
}

    .recent-orders table {
        width: 100%;
        border-collapse: collapse;
    }

    .recent-orders th, .recent-orders td {
        padding: 0.75rem;
        border: 1px solid #ddd;
        text-align: left;
    }

    .recent-orders th {
        background: #f0f0f0;
    }

    .recent-orders td {
        background: #fff;
    }

.edit-popup {
    max-height: 90vh;
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow: auto;
}

.edit-popup-content {
    position: relative;
}

.edit-product-container {
    padding: 2rem;
    background: linear-gradient(135deg, #0066CC, #FF7D00);
    border-radius: 1.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    margin: 2rem auto;
    max-width: 40rem;
}

.edit-product-content {
    background-color: white;
    padding: 2rem;
    border-radius: 1.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.form-control.form-select {
    padding: 0.75rem 1rem;
    border: 2px solid #0066CC;
    border-radius: 0.625rem;
    font-size: 1rem;
    font-family: Raleway, sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    .form-control.form-select:focus {
        border-color: #FF7D00;
        box-shadow: 0 0 0.5rem rgba(255, 125, 0, 0.25);
        outline: none;
    }

@media (max-width: 768px) {
    footer .footer-container {
        flex-direction: column;
        align-items: center;
        padding: 1rem;
    }

    footer .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    footer .footer-background,
    footer .footer-links,
    footer .footer-copyright,
    footer .footer-payment {
        left: 0;
    }

    footer .footer-content .subscribe-container {
        width: 100%;
        padding: 1rem;
        flex-direction: column;
        align-items: center;
    }

        footer .footer-content .subscribe-container div {
            font-size: 1.5rem;
            text-align: center;
        }

        footer .footer-content .subscribe-container .input-container {
            width: 100%;
            align-items: center;
        }

            footer .footer-content .subscribe-container .input-container .input-box,
            footer .footer-content .subscribe-container .input-container .subscribe-button {
                width: 100%;
                justify-content: center;
            }

    footer .footer-links {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 1rem;
        gap: 3rem;
    }

        footer .footer-links .link-group,
        footer .footer-links .help,
        footer .footer-links .faq {
            width: 100%;
            align-items: center;
            text-align: center;
        }

            footer .footer-links .link-group .contact-info {
                flex-direction: column;
                align-items: center;
            }

                footer .footer-links .link-group .contact-info img {
                    margin-left: 0rem;
                }

                footer .footer-links .link-group .contact-info div {
                    text-align: center;
                    margin-left: 0rem;
                }

        footer .footer-links .social-icons {
            justify-content: center;
            margin-left: 0rem;
        }

    footer .footer-divider {
        width: 100%;
        margin: 1rem 0;
    }

    footer .footer-copyright {
        text-align: center;
        width: 100%;
        margin-top: 1rem;
    }

    footer .footer-payment {
        justify-content: center;
        width: 100%;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .home-page-container {
        width: 100%;
        text-align: center;
        left: 0;
    }

        .home-page-container .main-heading {
            width: 100%;
            font-size: 2rem;
            left: 0;
            top: 2rem;
            position: relative;
        }

        .home-page-container .sub-heading {
            width: 100%;
            font-size: 1rem;
            left: 0;
            top: 4rem;
            position: relative;
            text-align: center;
        }

        .home-page-container .sell-now-button {
            width: 50%;
            left: 0;
            top: 6rem;
            position: relative;
            padding: 1rem;
        }

        .home-page-container .features {
            flex-direction: column;
            padding: 1rem 0;
            gap: 0.5rem;
        }

            .home-page-container .features .horizontal-divider {
                width: 100%;
                height: 0.25rem;
                background-color: rgba(255, 255, 255, 0.10);
                margin: 0 auto;
            }

            .home-page-container .features .feature {
                align-items: center;
                text-align: center;
            }

                .home-page-container .features .feature .feature-title {
                    font-size: 1.5rem;
                }

                .home-page-container .features .feature .feature-description {
                    font-size: 0.875rem;
                }
}

@media (max-width: 768px) {
    .left-center-container {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        padding-left: 1rem;
        padding-right: 1rem;
        text-align: center;
    }

        .left-center-container .main-heading {
            font-size: 2rem;
            line-height: 2.5rem;
        }

        .left-center-container .sub-heading {
            font-size: 1rem;
            line-height: 1.5rem;
        }

        .left-center-container .sell-now-btn {
            width: 40%;
            padding: 1rem;
            font-size: 1rem;
            margin-top: 5rem;
        }
}

@media (max-width: 768px) {
    .breadcrumb {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        padding: 0.5rem;
    }

    .breadcrumb-item {
        flex-direction: row;
        align-items: center;
        gap: 0.25rem;
    }

    .breadcrumb-separator {
        display: inline;
    }

    .breadcrumb-text {
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .how-it-works-container {
        padding: 2rem 1rem;
    }

        .how-it-works-container .steps {
            flex-direction: column;
            align-items: center;
        }

        .how-it-works-container .step {
            width: 100%;
            margin-bottom: 2rem;
        }

        .how-it-works-container .step-box {
            width: 60%;
            text-align: center;
        }

        .how-it-works-container .step-title {
            font-size: 1.25rem;
        }

        .how-it-works-container .step-content {
            text-align: center;
        }

        .how-it-works-container .step-description {
            font-size: 0.875rem;
        }

        .how-it-works-container .faq-button {
            width: 100%;
            text-align: center;
        }

        .how-it-works-container .credit-cards,
        .how-it-works-container .shopping-cart,
        .how-it-works-container .magnifier {
            width: 9rem;
            height: auto;
            position: absolute;
        }

        .how-it-works-container .magnifier {
            left: -1.5rem;
            top: 7rem;
        }

        .how-it-works-container .credit-cards {
            left: auto;
            right: -2rem;
            top: auto;
            bottom: 6rem;
        }

        .how-it-works-container .shopping-cart {
            left: -1.5rem;
            top: auto;
            bottom: 1rem;
        }
}

@media (max-width: 768px) {
    .what-we-buy-container {
        padding: 1rem;
    }

    .what-we-buy-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0rem;
        margin-bottom: 0rem;
    }

    .what-we-buy-title {
        font-size: 3rem;
    }

    .what-we-buy-description {
        font-size: 1rem;
        width: 100%;
        margin-top: 0rem;
        margin-bottom: 2rem;
    }

    .product-row {
        flex-direction: column;
        align-items: center;
        margin-top: 0rem;
    }

        .product-row .left-right-gradient {
            display: none;
        }

    .product-link {
        width: 100%;
        margin-bottom: 1rem;
    }

        .product-link .image {
            width: 100%;
            height: auto;
        }

        .product-link .text {
            font-size: 1.25rem;
        }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .how-it-works-container .credit-cards,
    .how-it-works-container .shopping-cart,
    .how-it-works-container .magnifier {
        width: 15rem;
        height: auto;
    }

    .how-it-works-container .magnifier {
        left: -2rem;
        top: 1rem;
    }

    .how-it-works-container .credit-cards {
        left: auto;
        right: -8rem;
        top: auto;
        bottom: 1rem;
    }

    .how-it-works-container .shopping-cart {
        left: -2rem;
        top: auto;
        bottom: 2rem;
    }

    .product-row {
        flex-wrap: wrap;
        justify-content: center;
    }

        .product-row .left-right-gradient {
            height: 20%;
        }

    .product-link {
        width: 45%;
        margin: 1rem;
    }

        .product-link .image {
            width: 100%;
            height: auto;
        }

        .product-link .text {
            font-size: 1.5rem;
        }
}

@media (min-width: 1025px) {
    .how-it-works-container .credit-cards,
    .how-it-works-container .shopping-cart,
    .how-it-works-container .magnifier {
        width: 20rem;
        height: auto;
    }

    .how-it-works-container .magnifier {
        left: -2rem;
        top: 1rem;
    }

    .how-it-works-container .credit-cards {
        left: auto;
        right: -8rem;
        top: auto;
        bottom: 1rem;
    }

    .how-it-works-container .shopping-cart {
        left: -2rem;
        top: auto;
        bottom: 2rem;
    }
}

@media (min-width: 1025px) {
    .product-row .left-right-gradient {
        height: 35%;
    }
}

@media (max-width: 768px) {
    .sell-now-container {
        flex-direction: column;
        padding: 1rem;
    }

    .breadcrumb-search-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-bar {
        width: 100%;
        margin-top: 1rem;
    }

    .products-wrapper {
        flex-direction: column;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .sell-now-container .category-list {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
        padding: 0.5rem 0;
        align-items: center;
    }

        .sell-now-container .category-list .category-item {
            flex: 1;
            text-align: center;
            padding: 0.5rem;
        }

    .sell-now-container .product-section {
        width: 100%;
    }

        .sell-now-container .product-section .product-card {
            width: 100%;
            margin-bottom: 1rem;
        }
}

@media (max-width: 768px) {
    .contact-us-container {
        flex-direction: column;
    }

    .contact-us-form-container {
        order: 2;
        width: 100%;
        margin-top: 1rem;
    }

    .contact-us-info {
        order: 1;
        width: 100%;
    }
}

@media (max-width: 768px) {

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes slideOut {
        from {
            opacity: 1;
            transform: translateY(0);
        }

        to {
            opacity: 0;
            transform: translateY(-20px);
        }
    }

    header .header-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        height: auto;
        padding: 1rem 0;
    }

    header .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        display: none;
    }

        header .nav-links.show {
            display: flex;
            animation: slideIn 0.3s ease-out forwards;
        }

        header .nav-links.hide {
            animation: slideOut 0.3s ease-out forwards;
            animation-fill-mode: forwards;
        }

    header .icons {
        justify-content: center;
    }

    header .nav-links a.active::before {
        content: none;
    }

    .menu-toggle {
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
}

@media (max-width: 768px) {
    .donations-container {
        flex-direction: column;
        align-items: center;
        padding: 1rem;
    }

        .donations-container .description {
            width: 100%;
            text-align: center;
        }

        .donations-container .image {
            width: 100%;
            height: auto;
        }
}

@media (max-width: 768px) {
    .order-details-table {
        display: flex;
        width: 100%;
    }

        .order-details-table tbody {
            width: 100%;
        }

        .order-details-table tr {
            display: block;
            margin-bottom: 1rem;
            width: 100%;
        }

        .order-details-table td {
            display: flex;
            justify-content: space-between;
            padding: 0.5rem;
            border: none;
            border-bottom: 1px solid #e5e5e5;
            width: 100%;
        }

            .order-details-table td:last-child {
                border-bottom: none;
            }

            .order-details-table td strong {
                margin-right: 1rem;
            }
}

@media (max-width: 768px) {
    .contact-us-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-us-info, .contact-us-form-container {
        max-width: 100%;
        align-items: center;
    }

    .contact-us-info-item {
        justify-content: center;
        text-align: center;
    }

    .contact-us-info-icon {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .cart-image {
        width: 20rem;
        max-width: 20rem;
        right: -25%;
    }
}

@media (max-width: 1280px) {
    .instructions-container {
        padding: 1rem;
    }

        .instructions-container .instructions-content {
            height: auto;
        }

            .instructions-container .instructions-content .text {
                line-height: 1.25rem;
                width: 100%;
                padding: 0 1rem;
                box-sizing: border-box;
            }

                .instructions-container .instructions-content .text .line {
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                }

                    .instructions-container .instructions-content .text .line i {
                        margin-right: 0;
                        margin-bottom: 0.5rem;
                    }

            .instructions-container .instructions-content .icon {
                font-size: 1.25rem;
            }

    .instructions-image {
        width: 5rem;
        max-width: 5rem;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        z-index: -8;
    }
}

@media (max-width: 768px) {
    .instructions-container {
        padding: 1rem;
    }

    .instructions-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .instructions-content {
        padding: 1rem;
    }

    .instructions-container .instructions-content .text .line {
        flex-direction: row;
    }

        .instructions-container .instructions-content .text .line i {
            margin-right: 0.5rem;
            margin-bottom: 0;
        }

    .video-banner {
        margin-bottom: 2rem;
    }

    .instructions-video {
        width: 100%;
        height: auto;
    }

    .text {
        font-size: 0.875rem;
    }

    .line {
        flex-direction: row;
        align-items: flex-start;
    }

        .line i {
            margin-bottom: 0.5rem;
        }

    .instructions-image {
        width: 100px;
        height: auto;
        margin: 2rem auto;
        display: block;
        right: 0rem;
    }
}

@media (max-width: 1280px) {
    .privacy-policy-container, .terms-and-conditions-container {
        padding: 1rem;
        align-items: center;
        position: relative;
        flex-direction: column;
        line-height: 1.25rem;
        width: 100%;
        padding-left: 5rem;
        padding-right: 5rem;
    }
}

@media (max-width: 768px) {
    .privacy-policy-container, .terms-and-conditions-container {
        width: 80%;
        padding: 0 1rem;
    }
}

@media (max-width: 1080px) {
    .product-detail-container {
        flex-direction: column;
        padding: 1rem;
    }

    .product-detail-column {
        width: 100%;
        flex-direction: column;
        padding-left: 8rem;
        padding-right: 8rem;
    }

        .product-detail-column .price-container {
            display: flex;
            justify-content: center;
            align-items: center;
        }

    .product-detail-image {
        max-width: 100%;
        margin: 0 auto;
    }

    .product-detail-info {
        align-items: center;
        text-align: center;
    }

    .product-detail-condition-options {
        justify-content: center;
    }

    .product-detail-condition-option {
        min-width: 80px;
    }

    .product-detail-actions {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .quantity-input {
        width: 2rem;
    }

    .detail-add-to-cart-btn, .detail-quick-checkout-btn {
        width: 100%;
    }

    .detail-quick-checkout-btn {
        margin-top: 0.5rem;
    }

    .donations-container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .product-detail-container {
        flex-direction: column;
        align-items: center;
        padding: 1rem;
    }

    .product-detail-column {
        width: 100%;
        padding: 0;
        margin-bottom: 1rem;
    }

    .product-detail-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .product-detail-info {
        text-align: center;
    }

    .product-detail-condition-options {
        flex-direction: column;
        align-items: center;
    }

    .product-detail-condition-option {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .product-detail-expiration-date {
        width: 100%;
        text-align: center;
    }

    .product-detail-actions {
        flex-direction: column;
        align-items: center;
    }

    .product-detail-quantity {
        margin-bottom: 1rem;
    }

    .product-detail-add-to-cart {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .detail-add-to-cart-btn {
        width: 100%;
        padding: 1rem;
        font-size: 1.25rem;
        justify-content: center;
    }

    .similar-products-grid {
        flex-direction: column;
        align-items: center;
    }

    .similar-product-card {
        width: 100%;
        max-width: 300px;
        margin-bottom: 1rem;
    }

    .donations-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

        .donations-container .description {
            width: 100%;
        }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .product-detail-container {
        flex-direction: row;
        align-items: flex-start;
        padding: 2rem;
    }

    .product-detail-column {
        width: 50%;
        padding: 1rem;
    }

    .product-detail-image {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .product-detail-info {
        text-align: left;
    }

    .product-detail-condition-options {
        flex-direction: row;
        align-items: flex-start;
    }

    .product-detail-condition-option {
        width: auto;
        margin-right: 0.5rem;
    }

    .product-detail-expiration-date {
        width: auto;
        text-align: left;
    }

    .product-detail-actions {
        flex-direction: row;
        align-items: center;
    }

    .product-detail-quantity {
        margin-right: 1rem;
    }

    .product-detail-add-to-cart {
        width: auto;
        text-align: left;
    }

    .similar-products-grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .similar-product-card {
        width: 45%;
        max-width: 300px;
        margin: 0.5rem;
    }

    .donations-container {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }

        .donations-container .description {
            width: 50%;
        }
}

@media (max-width: 1200px) {
    .product-card {
        flex: 1 1 calc(33.333% - 1rem);
    }
}

@media (max-width: 768px) {
    .product-card {
        flex: 1 1 calc(50% - 1rem);
    }

    @media (max-width: 480px) {
        .product-card {
            flex: 1 1 calc(100% - 1rem);
        }
    }

    @media (max-width: 768px) {
        .sell-now-container .category-list {
            width: 100%;
            flex-direction: row;
            overflow-x: auto;
            white-space: nowrap;
            padding: 0.5rem 0;
            align-items: center;
        }

            .sell-now-container .category-list .category-item {
                flex: 1;
                text-align: center;
                padding: 0.5rem;
            }

        .breadcrumb-search-wrapper {
            padding-right: 0rem;
        }
    }

    @media (max-width: 768px) {
        .order-summary {
            display: flex;
            flex-direction: column;
        }

        .order-items {
            order: 1;
        }

        .shipping-label-preview {
            order: 2;
        }
    }
}

@media (max-width: 768px) {
    .faq-container {
        padding: 1rem;
    }

    .faq-content {
        flex-direction: column;
        align-items: center;
    }

    .faq-main {
        width: 100%;
    }

    .faq-categories {
        flex-direction: column;
        align-items: center;
    }

    .faq-category {
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .faq-questions {
        width: 100%;
    }

    .faq-question {
        width: 100%;
        margin: 1rem 0;
        padding: 1rem;
        background: white;
        border-radius: 1.25rem;
        border: 0.0625rem #CFCFCF solid;
        box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .faq-question-title {
        font-size: 1.25rem;
    }

    .faq-question-text {
        font-size: 1rem;
    }

    .faq-question {
        width: 100%;
    }

    .faq-form {
        width: 100%;
        margin-top: 2rem;
    }

    .faq-form-inner {
        width: 100%;
    }

    .faq-form-background {
        padding: 1rem;
    }

    .faq-form-input {
        width: 100%;
    }

    .faq-form-button {
        width: 70%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .checkout-container {
        padding: 1rem;
    }

    .checkout-sections {
        flex-direction: column;
    }

    .checkout-order-summary {
        order: 1;
        width: 100%;
        margin-top: 2rem;
    }

    .checkout-shipping-info {
        order: 2;
    }

    .checkout-shipping-info-row {
        flex-direction: column;
    }

    .checkout-shipping-info-field {
        width: 100%;
        margin-bottom: 1rem;
    }

    .checkout-payment-method-row {
        flex-direction: column;
    }

    .checkout-payment-method,
    .checkout-account-name {
        width: 100%;
        margin-bottom: 1rem;
    }

    .checkout-upload-photo-area {
        width: 100%;
        text-align: center;
    }

    .checkout-notes-area {
        width: 100%;
    }

    .checkout-buttons {
        flex-direction: column;
        align-items: center;
    }

    .checkout-cancel-order,
    .gen-btn {
        width: 100%;
        margin-bottom: 1rem;
    }

    .checkout-order-summary-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .checkout-order-summary-item-details {
        width: 100%;
        margin-bottom: 1rem;
    }

    .checkout-order-summary-item-price {
        width: 100%;
        text-align: left;
    }

    .checkout-order-summary-total,
    .checkout-order-summary-total-price {
        text-align: left;
    }
}

@media (max-width: 1024px) {
    .checkout-container {
        padding: 1rem;
    }

    .checkout-sections {
        flex-direction: column;
    }

    .checkout-order-summary {
        order: 1;
        width: 100%;
        margin-top: 2rem;
    }

    .checkout-shipping-info {
        order: 2;
    }

    .checkout-shipping-info-row {
        flex-direction: column;
    }

    .checkout-shipping-info-field {
        width: 100%;
        margin-bottom: 1rem;
    }

    .checkout-payment-method-row {
        flex-direction: column;
    }

    .checkout-payment-method,
    .checkout-account-name {
        width: 100%;
        margin-bottom: 1rem;
    }

    .checkout-upload-photo-area {
        width: 100%;
        text-align: center;
    }

    .checkout-notes-area {
        width: 100%;
    }

    .checkout-buttons {
        flex-direction: column;
        align-items: center;
    }

    .checkout-cancel-order,
    .gen-btn {
        width: 100%;
        margin-bottom: 1rem;
    }

    .checkout-order-summary-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .checkout-order-summary-item-details {
        width: 100%;
        margin-bottom: 1rem;
    }

    .checkout-order-summary-item-price {
        width: 100%;
        text-align: left;
    }

    .checkout-order-summary-total,
    .checkout-order-summary-total-price {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .cart-container {
        padding: 1rem;
    }

    .cart-content {
        flex-direction: column;
        align-items: center;
    }

    .cart-item-container {
        width: 100%;
    }

    .cart-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        position: relative;
    }

    .cart-item-image {
        width: 100%;
        max-width: 200px;
        margin-bottom: 1rem;
    }

    .cart-item-details {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .cart-item-info {
        width: 100%;
    }

    .cart-item-title {
        font-size: 1.25rem;
    }

    .cart-item-attributes {
        flex-direction: column;
        align-items: center;
    }

    .cart-item-attribute {
        margin-bottom: 0.5rem;
    }

    .cart-item-price {
        font-size: 1.5rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .cart-item-actions {
        flex-direction: column;
        align-items: center;
        margin-top: 1rem;
    }

    .cart-item-remove {
        position: absolute;
        top: 1rem;
        right: 1rem;
        padding-right: 0;
    }

        .cart-item-remove:hover {
            transform: scale(1.1);
        }

        .cart-item-remove i {
            color: red;
            font-size: 1rem;
        }

    .cart-item-quantity {
        margin-bottom: 1rem;
    }

    .cart-total {
        width: 100%;
        text-align: center;
        margin-top: 2rem;
    }

    .cart-total-header {
        flex-direction: column;
        align-items: center;
    }

    .cart-total-text, .cart-total-amount {
        font-size: 1.5rem;
    }

    .cart-checkout-button {
        width: 100%;
        padding: 1rem;
        font-size: 1.25rem;
        justify-content: center;
    }

    .cart-image {
        position: absolute;
        right: -1rem;
        top: auto;
        display: block;
        width: 100%;
        max-width: 150px;
    }
}

@media (max-width: 768px) {
    .account-container {
        padding: 1rem;
    }

    .account-header-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .account-header {
        font-size: 1.5rem;
    }

    .account-actions {
        margin-top: 1rem;
    }

    .button-group {
        flex-direction: column;
        align-items: center;
    }

    .button {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .sold-products-table {
        display: block;
        width: 100%;
        overflow-x: auto;
    }

        .sold-products-table thead {
            display: none;
        }

        .sold-products-table tbody {
            display: block;
            width: 100%;
        }

            .sold-products-table tbody tr {
                border-bottom: 2px solid #0066CC;
            }

                .sold-products-table tbody tr:last-child {
                    border-bottom: none;
                }


        .sold-products-table tr {
            display: block;
            margin-bottom: 1rem;
            width: 100%;
            border: 1px solid #e5e5e5;
            border-radius: 0.5rem;
            padding: 1rem;
            transition: box-shadow 0.2s, background 0.2s;
        }

            .sold-products-table tr:hover td {
                background: #f0f6ff;
                box-shadow: 0 2px 8px rgba(0,102,204,0.08);
            }

        .sold-products-table td {
            display: flex;
            justify-content: space-between;
            padding: 0.5rem;
            border: none;
            border-bottom: 1px solid #e5e5e5;
            width: 100%;
        }

            .sold-products-table td:last-child {
                border-bottom: none;
            }

            .sold-products-table td::before {
                content: attr(data-label);
                font-weight: bold;
                margin-right: 1rem;
            }

    .sold-products-list {
        flex-direction: column;
        align-items: center;
    }

    .sold-product-item {
        width: 100%;
        margin-bottom: 1rem;
    }

    .product-image {
        width: 100%;
        max-width: 150px;
        margin-bottom: 1rem;
    }

    .product-details {
        text-align: center;
    }

    .quote-photos-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .quote-photo-item {
        margin: 0.5rem;
    }

    .quote-photo {
        width: 100%;
        max-width: 100px;
    }

    .section-header {
        margin-top: 2rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .search-bar {
        width: 100%;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .packaging-instructions {
        max-width: 100%;
        padding: 0.5rem;
    }
}

.payment-methods-table, .shipping-info-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

    .payment-methods-table th, .shipping-info-table th,
    .payment-methods-table td, .shipping-info-table td {
        border: 1px solid #e5e5e5;
        padding: 0.5rem;
        text-align: left;
        font-family: Raleway, sans-serif;
        font-size: 0.875rem;
        color: #333;
    }

    .payment-methods-table th, .shipping-info-table th {
        background-color: #f8f9fa;
        font-weight: 600;
    }

    .payment-methods-table td, .shipping-info-table td {
        background-color: #fff;
        font-weight: 400;
    }

    .payment-methods-table tr:nth-child(even) td, .shipping-info-table tr:nth-child(even) td {
        background-color: #f8f9fa;
    }

    .payment-methods-table tr:hover td, .shipping-info-table tr:hover td {
        background-color: #e9ecef;
    }

.empty-message {
    color: #FF7D00;
    font-size: 1rem;
    font-family: Raleway, sans-serif;
    font-weight: 400;
    text-align: center;
    margin-top: 1rem;
}

.right-aligned {
    margin-left: auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

    .section-header h3 {
        margin: 0;
    }

.add-button {
    background: none;
    border: none;
    color: #0066CC;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

    .add-button:hover {
        color: #FF7D00;
    }

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 3.875rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    font-family: Raleway, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    width: auto;
    height: auto;
    background-color: #0066CC;
    color: white;
}

    .button:hover {
        background-color: #FF7D00;
        color: white;
    }

    .button i {
        margin-right: 0.5rem;
    }

.default-item {
    background-color: #e0f7fa;
}

.default-indicator {
    color: #00796b;
    font-weight: bold;
    margin-left: 10px;
}

.quote-photo {
    width: 50%;
    height: auto;
}

.order-notes {
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
}

.no-products {
    font-size: 1.25rem;
    color: #FF7D00;
    font-family: Raleway, sans-serif;
    font-weight: 700;
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.no-photos-message {
    text-align: center;
    margin: auto;
    color: #FF7D00;
    font-size: 1rem;
    font-family: Raleway, sans-serif;
    font-weight: 400;
}

@media (max-width: 768px) {
    #helpContent .content-container, #informationContent .content-container {
        flex-direction: column;
        align-items: center;
        padding: 1rem;
    }

        #helpContent .content-container div, #informationContent .content-container div {
            text-align: center;
        }

    header .header-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        height: auto;
        padding: 1rem 0;
    }

    header .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        display: none;
    }

        header .nav-links.show {
            display: flex;
        }

    header .icons {
        justify-content: center;
    }

    header .nav-links a.active::before {
        content: none;
    }

    .menu-toggle {
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
}
.about-us-page {
    width: 100%;
    position: relative;
}

.trusted-buyer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    overflow-x: hidden;
}

.about-us-container {
    text-align: left;
    background: url('../images/home-bg.png') no-repeat center center;
    background-size: cover;
    padding: 8rem;
    height: 30rem;
    position: relative;
    overflow: hidden;
}
    .about-us-container::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100px;
        background: white;
        border-radius: 50% 50% 0 0 / 100px 50px 0 0;
        transform: scaleX(1.2) translateY(10px); 
        z-index: 1;
    }


.about-us-title, .about-us-description {
    color: white;
    position: relative;
    z-index: 2;
    top: -4rem;
    max-width: 45%;
}

.about-us-title {
    font-size: 3rem;
    font-family: Anton, sans-serif;
    font-weight: 400;
}

.about-us-description {
    font-size: 1.5rem;
    font-family: Raleway, sans-serif;
    font-weight: 400;
}

.trusted-buyer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 2rem;
}

.trusted-buyer-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
}

.trusted-buyer-title-container {
    margin-bottom: 1rem;
}

.trusted-buyer-title {
    font-size: 3rem;
    font-family: Anton, sans-serif;
    font-weight: 400;
    color: #0066CC;
}

.trusted-buyer-description-container {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.trusted-buyer-divider {
    width: 5px;
    height: 50px;
    background-color: #0066CC;
    margin-right: 1rem;
    width: 1rem;
}

.trusted-buyer-description {
    font-size: 1rem;
    font-family: Raleway, sans-serif;
    font-weight: 400;
    color: #666;
}

.trusted-buyer-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mission-button, .vision-button {
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-family: Raleway, sans-serif;
    font-weight: 400;
}

.mission-button {
    background-color: #FF7D00;
    color: white;
}

.vision-button {
    background-color: #F0F0F0;
    color: #666;
}

.trusted-buyer-footer {
    margin-top: 1rem;
}

.trusted-buyer-footer-text {
    font-size: 1rem;
    font-family: Raleway, sans-serif;
    font-weight: 400;
    color: #666;
}

.trusted-buyer-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.trusted-buyer-image {
    width: 50%;
    height: 60vh;
    object-fit: cover;
}

.mission-button, .vision-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.625rem 1.25rem;
    border-radius: 3.875rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    font-family: Raleway, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    text-decoration: none;
    background: #F0F0F0;
    color: rgba(0, 0, 0, 0.60);
}

    .mission-button:hover, .vision-button:hover {
        background: #FF7D00;
        color: white;
    }

    .mission-button.active, .vision-button.active {
        background: #FF7D00;
        color: white;
    }

.seller-deserve-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    position: relative;
}

    .seller-deserve-container .shopping-cart,
    .seller-deserve-container .donations {
        position: absolute;
        width: 25%;
        height: auto;
    }

    .seller-deserve-container .shopping-cart {
        right: -1.375rem;
        top: 30rem;
        transform: scaleX(-1);
        animation: slideInRightFlipped 6s ease-out;
    }

    .seller-deserve-container .donations {
        left: -1.375rem;
        top: 30rem;
        animation: teeter 2s infinite;
    }

.seller-deserve-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.seller-deserve-box-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}

.seller-deserve-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
}

.seller-deserve-icon {
    width: 50px;
    height: 50px;
    background-color: #108824;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
}

.seller-deserve-header {
    text-align: center;
    margin-bottom: 2rem;
}

.seller-deserve-title {
    font-size: 3rem;
    font-family: Anton, sans-serif;
    font-weight: 400;
    color: #0066CC;
    margin-bottom: 1rem;
}

.seller-deserve-description {
    font-size: 1rem;
    font-family: Raleway, sans-serif;
    font-weight: 400;
    color: #666;
}

.seller-deserve-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    margin-bottom: 2rem;
}

.seller-deserve-icon {
    width: 50px;
    height: 50px;
    background-color: #108824;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.seller-deserve-box-title {
    font-size: 1.25rem;
    font-family: Raleway, sans-serif;
    font-weight: 700;
    color: #07260E;
    margin-bottom: 0.5rem;
}

.seller-deserve-box-description {
    font-size: 1rem;
    font-family: Raleway, sans-serif;
    font-weight: 400;
    color: #666;
}

.satisfied-customers-container {
    text-align: center;
    margin-top: 20rem;
    background: url('../images/home-bg.png') no-repeat center center;
    background-size: cover;
    padding: 8rem;
    height: 50rem;
    position: relative;
    overflow: hidden;
}

    .satisfied-customers-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 10rem;
        background: white;
        border-radius: 0 0 50% 50% / 0 0 100px 100px;
        transform: scaleX(1.2) translateY(-10px);
        z-index: 1;
    }

    .satisfied-customers-container::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 10rem;
        background: white;
        border-radius: 50% 50% 0 0 / 100px 50px 0 0;
        transform: scaleX(1.2) translateY(10px);
        z-index: 1;
    }

.satisfied-customers-content {
    color: white;
    position: relative;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
}


.satisfied-customers-title {
    font-size: 2rem;
    font-family: Anton, sans-serif;
    font-weight: 400;
    max-width: 45%
}

.satisfied-customers-description {
    font-size: 1rem;
    font-family: Raleway, sans-serif;
    font-weight: 400;
    max-width: 45%
}
.credit-cards-section {
    position: relative;
    overflow: hidden;
    height: 50rem; 
}

.credit-cards-image {
    position: absolute;
    left: -4.375rem;
    top: 8rem; 
    width: 40%;
    height: auto;
    z-index: -1;
    animation: teeter 2s infinite;
}

.ready-impact-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    margin-bottom: 2rem;
    height: 100%;
}

.ready-impact-image {
    max-width: 40%;
    height: 100%;
    object-fit: cover;
    border-bottom-left-radius: 10rem;
    border-top-left-radius: 10rem;
}

.ready-impact-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    padding: 2rem;
    border-radius: 2rem;
    width: 40%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.ready-impact-title {
    font-size: 2.5rem;
    font-family: Anton, sans-serif;
    font-weight: 400;
    color: #0066CC;
    margin-bottom: 1rem;
}

.ready-impact-description {
    font-size: 1.5rem;
    font-family: Raleway, sans-serif;
    font-weight: 400;
    color: #666;
    margin-bottom: 1rem;
}

.sell-now-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    border-radius: 3.875rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    font-family: Raleway, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    width: 9.25rem;
    height: auto;
    background-color: #0066CC;
    color: white;
}

    .sell-now-button:hover {
        background-color: #FF7D00;
        color: white;
    }

    .sell-now-button i {
        margin-right: 0.5rem;
    }

@media (max-width: 768px) {
    .about-us-container {
        padding-top: 7rem;
        height: auto;
        padding-left: 2rem;
    }

    .about-us-title, .satisfied-customers-title {
        font-size: 2rem;
        max-width: 60%;
    }

    .about-us-description, .satisfied-customers-description {
        font-size: 1rem;
        max-width: 60%;
    }

    .trusted-buyer-content {
        flex-direction: column;
        align-items: center;
    }

    .trusted-buyer-column {
        width: 100%;
        text-align: center;
    }

    .trusted-buyer-image-container {
        width: 100%;
        margin-top: 2rem;
    }

    .trusted-buyer-image {
        width: 100%;
        height: auto;
    }

    .seller-deserve-container {
        overflow-x: hidden;
    }

    .seller-deserve-box-container {
        grid-template-columns: 1fr;
    }

    .satisfied-customers-container {
        margin-top: 1rem;
        padding-top: 20rem;
        height: auto;
        padding-left: 2rem;
    }

    .satisfied-customers-title, .satisfied-customers-description {
        max-width: 100%;
    }

    .ready-impact-container {
        align-items: center;
    }

    .ready-impact-content {
        width: 80%;
        margin-top: 2rem;
    }
}

.icon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    gap: 0;
}

    .icon-container i {
        font-size: 1.5rem;
        margin: 0;
    }
    .icon-container .fa-caret-up {
        margin-bottom: -0.5rem;
    }

    .icon-container .fa-caret-down {
        margin-top: -0.5em;
    }

.action-buttons {
    display: flex;
    gap: 0.5rem;
}

.delete-button {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: #FF0000;
    color: white;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    line-height: 0;
}

    .delete-button:hover {
        background-color: #CC0000;
        transform: scale(1.1);
    }

    .delete-button i {
        font-size: 1rem;
        margin: 0;
        padding: 0;
    }

.view-button {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: #0066CC;
    color: white;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    line-height: 0;
}

    .view-button:hover {
        background-color: #004C99;
        transform: scale(1.1);
    }

    .view-button i {
        font-size: 1rem;
        margin: 0;
        padding: 0;
    }

.restore-button {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: #28a745;
    color: white;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    line-height: 0;
}

    .restore-button:hover {
        background-color: #218838;
        transform: scale(1.1);
    }

    .restore-button i {
        font-size: 1rem;
        margin: 0;
        padding: 0;
    }

.edit-button-container {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    z-index: 20;
}

.edit-button {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: #0066CC;
    color: white;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    line-height: 0;
    z-index: 20;
}

    .edit-button:hover {
        background-color: #FF7D00;
        transform: scale(1.1);
    }

    .edit-button i {
        font-size: 1rem;
        margin: 0;
        padding: 0;
    }

#imageActionButtons {
    display: flex;
    gap: 0.5rem;
    flex-direction: row-reverse;
}


.save-button {
    background-color: #FFD700;
}

    .save-button:hover {
        background-color: #FFC107;
    }

.cancel-button {
    background-color: #FF0000; 
}

    .cancel-button:hover {
        background-color: #CC0000;
    }

@media (max-width: 768px) {
    .admin-panel-container {
        flex-direction: column;
    }

    .admin-panel-sidebar {
        width: 100%;
        height: auto;
        min-height: 0vh;
    }

    .admin-panel-main {
        width: 100%;
        padding: 1rem;
    }

    .admin-panel-header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-panel-header {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .admin-panel-title {
        font-size: 2rem;
        text-align: center;
        width: 100%;
    }

}

@media (max-width: 768px) {
    .admin-panel-sidebar {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 60vw;
        height: 100vh;
        z-index: 2000;
        background: #0066CC;
        box-shadow: 2px 0 8px rgba(0,0,0,0.2);
        animation: slideIn 0.3s;
    }

        .admin-panel-sidebar.show {
            display: flex;
            flex-direction: column;
        }

    .admin-burger {
        display: block;
        position: fixed;
        top: 1rem;
        left: 1rem;
        z-index: 2100;
        background: none;
        border: none;
        font-size: 2rem;
        color: #0066CC;
    }
        .admin-burger.active {
            color: white;
        }
}

@media (min-width: 769px) {
    .admin-burger {
        display: none;
    }
}

@media (max-width: 768px) {
    .dashboard-section {
        padding: 1rem;
    }

    .dashboard-metrics {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        padding: 0;
    }

    .metric {
        width: 100%;
        margin-bottom: 0;
        padding: 1rem 0.5rem;
        font-size: 0.95rem;
    }

    .metric-title {
        font-size: 1rem;
    }

    .metric-value {
        font-size: 1.25rem;
    }

    .admin-panel-table-container {
        padding: 1rem;
    }
}

@media (max-width: 1024px) {
    .dashboard-metrics {
        flex-wrap: wrap;
        justify-content: center;
    }

    .metric {
        flex: 1 1 calc(50% - 1rem);
        margin: 0.5rem;
    }
}

@media (max-width: 768px) {
    .table-container {
        display: block;
        width: 100%;
        overflow-x: auto;
    }

        .table-container table {
            width: 100%;
            border-collapse: collapse;
        }

        .table-container th, .table-container td {
            padding: 0.75rem;
            border: 1px solid #ddd;
            text-align: left;
        }

        .table-container th {
            background: #f0f0f0;
        }

        .table-container td {
            background: #fff;
        }

        .table-container tr:nth-child(even) td {
            background: #f8f9fa;
        }

        .table-container tr:hover td {
            background: #e9ecef;
        }
}

.table-container th {
    position: relative;
    padding-right: 2rem;
}

.icon-container {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.order-photo {
    max-width: 20%;
    height: auto;
    border-radius: 0.625rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

li {
    color: #0066CC;
    font-size: 1rem;
    font-family: Raleway, sans-serif;
    font-weight: 400;
    line-height: 1.5rem;
    word-wrap: break-word;
}

@media (max-width: 768px) {
    .edit-popup {
        width: 90%;
        height: auto;
        padding: 1rem;
    }

    .edit-popup-content {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .edit-popup {
        width: 100%;
        height: auto;
        padding: 0.5rem;
    }

    .edit-popup-content {
        padding: 0.5rem;
    }
}


@media (min-width: 769px) and (max-width: 1024px) {
    header .header-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        height: auto;
        padding: 1rem 0;
    }

    header .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        display: none;
    }

        header .nav-links.show {
            display: flex;
        }

    header .icons {
        justify-content: center;
    }

    header .nav-links a.active::before {
        content: none;
    }

    .menu-toggle {
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .container.body-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .footer .footer-container {
        flex-direction: column;
        align-items: center;
        padding: 1rem;
    }

    .footer .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer .footer-background,
    .footer .footer-links,
    .footer .footer-copyright,
    .footer .footer-payment {
        left: 0;
    }

    .footer .footer-content .subscribe-container {
        width: 100%;
        padding: 1rem;
        flex-direction: column;
        align-items: center;
    }

        .footer .footer-content .subscribe-container div {
            font-size: 1.5rem;
            text-align: center;
        }

        .footer .footer-content .subscribe-container .input-container {
            width: 100%;
            align-items: center;
        }

            .footer .footer-content .subscribe-container .input-container .input-box,
            .footer .footer-content .subscribe-container .input-container .subscribe-button {
                width: 100%;
                justify-content: center;
            }

    .footer .footer-links {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 1rem;
        gap: 3rem;
    }

        .footer .footer-links .link-group,
        .footer .footer-links .help,
        .footer .footer-links .faq {
            width: 100%;
            align-items: center;
            text-align: center;
        }

            .footer .footer-links .link-group .contact-info {
                flex-direction: column;
                align-items: center;
            }

                .footer .footer-links .link-group .contact-info img {
                    margin-left: 0rem;
                }

                .footer .footer-links .link-group .contact-info div {
                    text-align: center;
                    margin-left: 0rem;
                }

        .footer .footer-links .social-icons {
            justify-content: center;
            margin-left: 0rem;
        }

    .footer .footer-divider {
        width: 100%;
        margin: 1rem 0;
    }

    .footer .footer-copyright {
        text-align: center;
        width: 100%;
        margin-top: 1rem;
    }

    .footer .footer-payment {
        justify-content: center;
        width: 100%;
        margin-top: 1rem;
    }
}

@media (max-width: 1024px) {
    .sell-now-container {
        flex-direction: column;
        padding: 1rem;
    }

    .breadcrumb-search-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-bar {
        width: 100%;
        margin-top: 1rem;
    }

    .products-wrapper {
        flex-direction: column;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .sell-now-container .category-list {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
        padding: 0.5rem 0;
        align-items: center;
    }

        .sell-now-container .category-list .category-item {
            flex: 1;
            text-align: center;
            padding: 0.5rem;
        }

    .sell-now-container .product-section {
        width: 100%;
    }

        .sell-now-container .product-section .product-card {
            width: 100%;
            margin-bottom: 1rem;
        }
}

@media (max-width: 1200px) {
    .product-card {
        flex: 1 1 calc(33.333% - 1rem);
    }
}

@media (max-width: 768px) {
    .product-card {
        flex: 1 1 calc(50% - 1rem);
    }
}

@media (max-width: 480px) {
    .product-card {
        flex: 1 1 calc(100% - 1rem);
    }
}

@media (max-width: 1024px) {
    .donations-container {
        flex-direction: column;
        align-items: center;
        padding: 1rem;
    }

        .donations-container .description {
            width: 100%;
            text-align: center;
        }

        .donations-container .image {
            width: 100%;
            height: auto;
        }
}

@media (max-width: 768px) {
    #topBar {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        padding: 0.5rem;
    }

        #topBar span {
            display: inline; 
            margin-bottom: 0;
            font-size: 1.1rem;
        }

        #topBar .active-promo-contact span {
            font-size: 0.675rem !important;
        }

    #closeButton {
        position: absolute;
        top: 0.75rem;
        right: 0.5rem;
    }
}


@media (max-width: 1024px) {
    #helpContent .content-container, #informationContent .content-container {
        flex-direction: column;
        align-items: center;
        padding: 1rem;
    }

        #helpContent .content-container div, #informationContent .content-container div {
            text-align: center;
        }

    header .header-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        height: auto;
        padding: 1rem 0;
    }

    header .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        display: none;
    }

        header .nav-links.show {
            display: flex;
        }

    header .icons {
        justify-content: center;
    }

    header .nav-links a.active::before {
        content: none;
    }

    .menu-toggle {
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .faq-container {
        padding: 1rem;
    }

    .faq-content {
        flex-direction: column;
        align-items: center;
    }

    .faq-main {
        width: 100%;
    }

    .faq-categories {
        flex-direction: column;
        align-items: center;
    }

    .faq-category {
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .faq-questions {
        width: 100%;
    }

    .faq-question {
        width: 100%;
        margin: 1rem 0;
        padding: 1rem;
        background: white;
        border-radius: 1.25rem;
        border: 0.0625rem #CFCFCF solid;
        box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .faq-question-title {
        font-size: 1.25rem;
    }

    .faq-question-text {
        font-size: 1rem;
    }

    .faq-question {
        width: 100%;
    }

    .faq-form {
        width: 100%;
        margin-top: 2rem;
    }

    .faq-form-inner {
        width: 100%;
    }

    .faq-form-background {
        padding: 1rem;
    }

    .faq-form-input {
        width: 100%;
    }

    .faq-form-button {
        width: 70%;
        justify-content: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .contact-us-container {
        flex-direction: column;
        align-items: center;
        padding: 1rem;
    }

    .contact-us-info {
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }

    .contact-us-form-container {
        width: 100%;
    }

    .contact-us-info-item {
        justify-content: center;
        text-align: center;
    }

    .contact-us-info-icon {
        margin-bottom: 1rem;
    }

    .contact-us-info-text {
        text-align: center;
    }

    .contact-us-info-location {
        justify-content: center;
        text-align: center;
    }

    .contact-us-info-location-icon {
        margin-bottom: 1rem;
    }

    .contact-us-info-location-text {
        text-align: center;
    }

    .contact-us-image {
        width: 100%;
        height: auto;
        margin-top: 1rem;
    }

    .contact-us-form-title {
        text-align: center;
    }

    .contact-us-form-subtitle {
        text-align: center;
    }

    .contact-us-input-container {
        width: 100%;
    }

    .contact-us-input {
        width: 100%;
    }

    .contact-us-textarea {
        width: 100%;
    }

    .contact-us-submit-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .carousel-controls {
        top: 70%;
    }
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

    .image-container img {
        max-width: 100%;
    }

    .image-container p {
        font-size: 1rem;
        color: #666;
    }


.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    flex-direction: column;
}

.spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-text {
    color: white;
    margin-top: 1rem;
    font-size: 1.2rem;
}

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 3px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
}

.cookie-consent-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 90%;
    margin: 0 auto;
    padding: 2px;
}

    .cookie-consent-content p {
        margin: 0;
        padding: 10px 0;
        color: white;
        font-size: 1rem;
        line-height: 1.5;
    }

    .cookie-consent-content button {
        background-color: #0066CC;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        font-size: 1rem;
        margin-top: 10px;
    }

        .cookie-consent-content button:hover {
            background-color: #FF7D00;
        }

@media (min-width: 768px) {
    .cookie-consent-content {
        max-width: 90%;
        flex-direction: row;
        align-items: center;
    }

        .cookie-consent-content p {
            padding-right: 20px;
            padding-bottom: 0;
        }

        .cookie-consent-content button {
            margin-top: 0;
        }
}

@media (max-width: 768px) {
    .account-container {
        padding: 1rem;
    }

    .account-header-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .account-header {
        font-size: 1.5rem;
    }

    .button-group {
        margin-top: 1rem;
    }

    .section-header {
        flex-direction: column;
        align-items: center;
    }

        .section-header h3 {
            margin-bottom: 1rem;
        }

    .add-button {
        width: 100%;
        text-align: center;
    }

    .payment-methods-table, .shipping-info-table {
        display: block;
        width: 100%;
        overflow-x: auto;
    }

        .payment-methods-table thead, .shipping-info-table thead {
            display: none;
        }

        .payment-methods-table tbody, .shipping-info-table tbody {
            display: block;
            width: 100%;
        }

        .payment-methods-table tr, .shipping-info-table tr {
            display: block;
            margin-bottom: 1rem;
            width: 100%;
            border: 1px solid #e5e5e5;
            border-radius: 0.5rem;
            padding: 1rem;
        }

        .payment-methods-table td, .shipping-info-table td {
            display: flex;
            justify-content: space-between;
            padding: 0.5rem;
            border: none;
            border-bottom: 1px solid #e5e5e5;
            width: 100%;
        }

            .payment-methods-table td:last-child, .shipping-info-table td:last-child {
                border-bottom: none;
            }

            .payment-methods-table td::before, .shipping-info-table td::before {
                content: attr(data-label);
                font-weight: bold;
                margin-right: 1rem;
            }

    .modal-content {
        width: 90%;
        padding: 1rem;
    }

    .modal-buttons {
        flex-direction: column;
        align-items: center;
    }

    .modal-button {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 768px) {
    .shipping-label-preview {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .shipping-label-preview h3 {
            text-align: center;
        }

    .download-btn {
        margin-top: 1rem;
        position: static;
    }

    .download-btn-container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
}

.photo-item img {
    pointer-events: auto;
    cursor: pointer;
    width: 100%;
}

.enlarged-image {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    z-index: 1001;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
    border-radius: 0.5rem;
}

.enlarged-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

.close-button {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: #0066CC;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1002;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
    line-height: 1;
}

    .close-button:hover {
        background: #004C99;
    }

.order-photo {
    max-width: 100%;
    height: auto;
    border-radius: 0.625rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.photo-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.photo-item {
    flex: 1 1 calc(33.333% - 1rem);
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .photo-item {
        flex: 1 1 calc(50% - 1rem);
    }
}

@media (max-width: 480px) {
    .photo-item {
        flex: 1 1 100%;
    }
}

.order-details-container {
    width: 100%;
    max-width: 100%;
    padding: 1rem;
    box-sizing: border-box;
    overflow-x: hidden;
}

    .order-details-container p {
        word-wrap: break-word;
        white-space: normal;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .order-details-container ul {
        padding-left: 1.5rem;
    }

        .order-details-container ul li {
            word-wrap: break-word;
            white-space: normal;
            overflow: hidden;
            text-overflow: ellipsis;
        }


.form-check {
    display: flex;
    align-items: center;
    line-height: 1;
    gap: 0.5rem;
}

.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    margin: 0;
}

.form-check-label {
    font-size: 1rem;
    color: #333;
    font-family: Raleway, sans-serif;
}

.expired-message {
    font-size: 0.875rem;
    color: #FF7D00;
    font-family: Raleway, sans-serif;
    line-height: 1;
}

.payment-warning {
    color: red;
    font-weight: bold;
    margin-bottom: 2.5rem;
    font-family: Raleway, sans-serif;
    text-align: justify;
}

.instruction-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 2rem;
}

.instruction-slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.instruction-slide {
    min-width: 100%;
    box-sizing: border-box;
    cursor: pointer;
}

    .instruction-slide img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        display: block;
        border-radius: 10px;
    }

.instruction-slider-prev,
.instruction-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #0066CC;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease, color 0.3s ease;
}

    .instruction-slider-prev:hover,
    .instruction-slider-next:hover {
        background: #FF7D00;
        color: white;
    }

.instruction-slider-prev {
    left: 1rem;
}

.instruction-slider-next {
    right: 1rem;
}

.float-right {
    float: right;
}

.capitalize {
    text-transform: capitalize;
}

.custom-radio {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

    .custom-radio input[type="radio"] {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        width: 1rem;
        height: 1rem;
        border: 2px solid #0066CC;
        border-radius: 50%;
        margin-right: 0.5rem;
        position: relative;
        cursor: pointer;
        outline: none;
        transition: background 0.3s ease, border-color 0.3s ease;
    }

        .custom-radio input[type="radio"]:checked::before {
            content: '';
            width: 0.5rem;
            height: 0.5rem;
            background: #0066CC;
            border-radius: 50%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .custom-radio input[type="radio"]:disabled {
            border-color: #ccc;
            cursor: not-allowed;
        }

            .custom-radio input[type="radio"]:disabled::before {
                background: #ccc;
            }

    .custom-radio label {
        color: #333;
        font-size: 1rem;
        font-family: Raleway, sans-serif;
        font-weight: 400;
        transition: color 0.3s ease;
    }

    .custom-radio input[type="radio"]:disabled + label {
        color: #ccc;
    }

.product-detail-expiration-container {
    display: flex;
    flex-direction: row;
    gap: 10rem;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .product-detail-expiration-container {
        gap: 1rem; 
    }
}

    .product-detail-expiration-table table {
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid #e0e0e0;
        border-collapse: separate;
        border-spacing: 0;
    }

    .product-detail-expiration-table th:first-child {
        border-top-left-radius: 8px;
    }

    .product-detail-expiration-table th:last-child {
        border-top-right-radius: 8px;
    }

    .product-detail-expiration-table tr:last-child td:first-child {
        border-bottom-left-radius: 8px;
    }

    .product-detail-expiration-table tr:last-child td:last-child {
        border-bottom-right-radius: 8px;
    }

    .product-detail-expiration-table th,
    .product-detail-expiration-table td {
        border: 1px solid #e0e0e0;
        padding: 0.75rem;
        text-align: left;
        font-family: Raleway, sans-serif;
        font-size: 1rem;
        color: #333;
    }

    .product-detail-expiration-table th {
        background-color: #f8f9fa;
        font-weight: 600;
    }

    .product-detail-expiration-table td {
        background-color: #fff;
    }

    .product-detail-expiration-table tr:nth-child(even) td {
        background-color: #f8f9fa;
    }

    .product-detail-expiration-table tr:hover td {
        background-color: #e9ecef;
    }

    .expiration-option {
        font-weight: 600;
        color: #0066CC;
    }

    .product-detail-expiration-options {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

.g-recaptcha {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
}

.contact-us-form-container .g-recaptcha {
    border: 1px solid #e0e0e0;
    border-radius: 0.625rem;
    padding: 1rem;
    background: #f9f9f9;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

@keyframes backButtonHover {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-5px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes backButtonClick {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}

.admin-box a.admin-text {
    transition: color 0.3s ease, transform 0.3s ease;
}

    .admin-box a.admin-text:hover {
        color: #FF7D00;
        animation: backButtonHover 0.5s ease-in-out;
    }

    .admin-box a.admin-text:active {
        animation: backButtonClick 0.2s ease-in-out;
    }

.multipliers-section .table {
    width: 100%;
    margin-bottom: 1rem;
    color: #333;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 0.5rem;
    overflow: hidden;
}

    .multipliers-section .table th,
    .multipliers-section .table td {
        padding: 1rem;
        text-align: left;
        border: 1px solid #e5e5e5;
        font-family: Raleway, sans-serif;
    }

    .multipliers-section .table th {
        background-color: #0066CC;
        color: white;
        font-weight: 600;
    }

    .multipliers-section .table td {
        background-color: white;
    }

    .multipliers-section .table tr:nth-child(even) td {
        background-color: #f8f9fa;
    }

    .multipliers-section .table tr:hover td {
        background-color: #e9ecef;
    }

.multipliers-section .form-control {
    border: 1px solid #e5e5e5;
    border-radius: 0.5rem;
    padding: 0.75rem;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    .multipliers-section .form-control:focus {
        border-color: #0066CC;
        box-shadow: 0 0 0.5rem rgba(0, 102, 204, 0.25);
        outline: none;
    }

.month-ranges-section .form-group {
    margin-bottom: 1.5rem;
}

    .month-ranges-section .form-group label {
        font-weight: bold;
        color: #333;
    }

.month-ranges-section .form-control {
    border: 1px solid #ccc;
    border-radius: 0.375rem;
    padding: 0.75rem;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    .month-ranges-section .form-control:focus {
        border-color: #0066CC;
        box-shadow: 0 0 0.5rem rgba(0, 102, 204, 0.25);
        outline: none;
    }

.month-ranges-section .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.month-ranges-section .btn-primary {
    background-color: #0066CC;
    color: white;
    border: none;
}

    .month-ranges-section .btn-primary:hover {
        background-color: #004C99;
        transform: scale(1.05);
    }

.month-ranges-section .btn-danger {
    background-color: #FF0000;
    color: white;
    border: none;
}

    .month-ranges-section .btn-danger:hover {
        background-color: #CC0000;
        transform: scale(1.05);
    }

.month-ranges-section .table {
    width: 100%;
    margin-bottom: 1.5rem;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 0.375rem;
    overflow: hidden;
}

    .month-ranges-section .table th,
    .month-ranges-section .table td {
        padding: 1rem;
        text-align: left;
        border: 1px solid #e5e5e5;
        font-family: Raleway, sans-serif;
    }

    .month-ranges-section .table th {
        background-color: #0066CC;
        color: white;
        font-weight: 600;
    }

    .month-ranges-section .table td {
        background-color: white;
    }

    .month-ranges-section .table tr:nth-child(even) td {
        background-color: #f8f9fa;
    }

    .month-ranges-section .table tr:hover td {
        background-color: #e9ecef;
    }

.month-ranges-section .alert {
    padding: 1rem;
    border-radius: 0.375rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.month-ranges-section .alert-info {
    background-color: #e7f3fe;
    color: #31708f;
    border: 1px solid #bce8f1;
}

@media (max-width: 768px) {
    .month-ranges-section .row {
        flex-direction: column;
    }

    .month-ranges-section .col-md-6 {
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .month-ranges-section .form-group {
        margin-bottom: 1rem;
    }

    .month-ranges-section .btn {
        width: 100%;
        margin-bottom: 1rem;
    }

    .month-ranges-section .table-responsive {
        overflow-x: auto;
    }

    .month-ranges-section .table th,
    .month-ranges-section .table td {
        padding: 0.5rem;
    }
}

.sidebar-divider {
    border: 0;
    border-top: 1px solid #e0e0e0;
    margin: 0.5rem 0;
}

.quantity-dropdown {
    padding: 0.5rem 3rem;
    border-radius: 0.625rem;
    background: #F0F0F0;
    color: rgba(0, 0, 0, 0.60);
    font-size: 1rem;
    font-family: Raleway, sans-serif;
    border: 1px solid #e0e0e0;
    outline: none;
    transition: background 0.3s ease, color 0.3s ease;
    appearance: none;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEuNjY2NjcgNC4zMzMzM0w4IDExLjY2NjZMMTQuMzMzMyA0LjMzMzMzIiBzdHJva2U9IiMwMDAiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtZG9pbmNhcD0ic3F1YXJlIi8+Cjwvc3ZnPgo=');
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

    .quantity-dropdown option {
        background: #F0F0F0;
        color: black;
    }

.detail-add-another-item-btn {
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    border-radius: 3.875rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    font-family: Raleway, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    width: 9.25rem;
    height: auto;
    background-color: #0066CC;
    color: white;
}

    .detail-add-another-item-btn:hover {
        background-color: #FF7D00;
        color: white;
    }

@media (max-width: 768px) {
    .product-detail-add-to-cart {
        flex-direction: column;
        align-items: center;
    }

    .detail-add-to-cart-btn,
    .detail-quick-checkout-btn,
    .detail-add-another-item-btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .detail-add-another-item-btn {
        margin-left: 0;
    }
}

.quantity-label {
    margin-right: 0.5rem;
    margin-left: 0.5rem;
    font-size: 1rem;
    font-family: Raleway, sans-serif;
    font-weight: 400;
    color: #333;
}

.error-container {
    text-align: center;
    padding: 2rem;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 0.625rem;
    color: #721c24;
    margin: 2rem auto;
    max-width: 600px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    font-family: Raleway, sans-serif;
}

    .error-container h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: #FF7D00;
        font-family: Anton, sans-serif;
    }

    .error-container h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        color: #0066CC;
        font-family: Anton, sans-serif;
    }

    .error-container p {
        font-size: 1rem;
        margin-bottom: 1rem;
        color: #333;
    }

    .error-container a {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        padding: 1rem 2rem;
        border-radius: 3.875rem;
        border: none;
        cursor: pointer;
        transition: background 0.3s ease, color 0.3s ease;
        font-family: Raleway, sans-serif;
        font-size: 1rem;
        font-weight: 400;
        text-decoration: none;
        background-color: #0066CC;
        color: white;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    }

        .error-container a:hover {
            background-color: #FF7D00;
            color: white;
        }

.red-text {
    color: red !important;
}

.dashboard-charts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.dashboard-chart-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.08);
    padding: 2rem 1rem 1rem 1rem;
    flex: 1 1 320px;
    min-width: 280px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 400px;
    height: 100%;
}

    .dashboard-chart-card canvas {
        width: 100% !important;
        height: 100% !important; 
        max-width: 100%;
        min-height: 200px; 
        aspect-ratio: 2/1; 
        display: block;
    }

@media (max-width: 600px) {
    .dashboard-charts {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.sort-controls {
    margin-top: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sort-dropdown-container {
    position: relative;
    display: flex;
    align-items: center;
}

.sort-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: #0066CC;
    padding: 0.2rem;
    border-radius: 50%;
    transition: background 0.2s;
    padding-left: 1rem;
    white-space: nowrap;
}

    .sort-icon-btn:hover {
        color: #FF7D00;
    }

.sort-dropdown-form {
    display: none;
    position: absolute;
    top: 2.5rem;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.08);
    padding: 0.5rem 1rem;
    z-index: 10;
    min-width: 200px;
}

    .sort-dropdown-form.show {
        display: block;
    }

    .sort-dropdown-form select {
        width: 100%;
        padding: 0.5rem 1rem;
        border-radius: 1rem;
        border: 1px solid #e0e0e0;
        font-size: 1rem;
        font-family: Raleway, sans-serif;
        background: #F0F0F0;
        color: #333;
    }


.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.pagination-btn, .pagination-current {
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    border: none;
    background: #F0F0F0;
    color: #0066CC;
    font-family: Raleway, sans-serif;
    font-size: 1rem;
    text-decoration: none;
    margin: 0 0.25rem;
    cursor: pointer;
    transition: background 0.2s;
}

    .pagination-btn:hover {
        background: #FF7D00;
        color: #fff;
    }

.pagination-current {
    background: #0066CC;
    color: #fff;
    font-weight: bold;
}

.search-sort-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.sold-product-item {
    position: relative;
}

    .sold-product-item .product-details {
        position: static;
        opacity: 1;
        pointer-events: auto;
        box-shadow: none;
        background: none;
        padding: 0;
        margin-top: 0;
        font-size: 0.95rem;
        color: #333;
        visibility: visible;
    }

    .sold-product-item:hover .product-details,
    .sold-product-item:focus-within .product-details {
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
    }

@media (max-width: 600px) {
    .sold-product-item .product-details {
        left: 0;
        right: 0;
        transform: none;
        min-width: unset;
        max-width: 100vw;
        width: 95vw;
        margin: 0 auto;
        font-size: 0.95rem;
        padding: 0.75rem;
    }
}

@media (max-width: 600px) {
    .sold-products-list {
        flex-direction: column;
        gap: 0.5rem;
    }

    .sold-product-item {
        width: 100%;
        min-width: 0;
    }
}

.sold-product-item img {
    max-width: 60px;
    margin-bottom: 0.5rem;
    width: 100%;
    height: auto;
}

@media (max-width: 600px) {
    .sold-product-item img {
        max-width: 120px;
    }
}

@media (max-width: 600px) {
    .sold-products-table td {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.75rem 0.5rem;
    }

    .sold-products-list {
        flex-direction: column;
        gap: 0.5rem;
        overflow-x: visible;
    }

    .sold-product-item {
        min-width: 0;
        max-width: 100%;
    }

    .slider .quote-photo {
        max-width: 80px;
    }
}

.sold-product-info-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    color: #0066CC;
    font-size: 1.5rem;
    z-index: 10;
    cursor: pointer;
    transition: color 0.2s;
}

    .sold-product-info-btn:hover {
        color: #FF7D00;
    }

.sold-product-info-modal {
    display: none;
    position: absolute;
    top: 2.5rem;
    right: 0.5rem;
    z-index: 100;
    background: #fff;
    border-radius: 0.625rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
    padding: 1.25rem;
    min-width: 220px;
    max-width: 320px;
    width: max-content;
    border: 1px solid #e0e0e0;
}

    .sold-product-info-modal.show {
        display: block;
        animation: fadeInPanel 0.2s;
    }

@keyframes fadeInPanel {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sold-product-info-modal-close {
    color: #aaa;
    position: absolute;
    top: 0.625rem;
    right: 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
}

    .sold-product-info-modal-close:hover {
        color: #000;
    }

.sold-product-item {
    position: relative;
}

.metric-float-btn {
    position: absolute;
    right: -0.7rem;
    bottom: -0.7rem;
    z-index: 2;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #FF7D00;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    border: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    cursor: pointer;
    outline: none;
}

    .metric-float-btn:hover {
        background: #0066CC;
        color: #fff;
        transform: scale(1.1);
    }

.metric.has-float-btn {
    position: relative;
    overflow: visible;
}

.sold-product-info-modal-content {
    text-align: left;
    color: #222;
    font-family: Raleway, sans-serif;
    padding: 0.5rem 0;
}

    .sold-product-info-modal-content strong {
        color: #0066CC;
        font-size: 1.1rem;
        display: block;
        margin-bottom: 0.25rem;
    }

    .sold-product-info-modal-content .product-description {
        font-style: italic;
        color: #444;
        margin-bottom: 0.25rem;
        display: block;
    }

    .sold-product-info-modal-content .product-price {
        color: #FF7D00;
        font-weight: 700;
        display: block;
        margin-bottom: 0.15rem;
    }

    .sold-product-info-modal-content .product-quantity {
        color: #0066CC;
        font-weight: 600;
        display: block;
    }

    input:invalid {
    border-color: #FF7D00;
    background-color: #fff7f0;
}

.tab-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 2rem;
    overflow-x: auto;
}

.tab-btn {
    background: #f0f0f0;
    color: #0066CC;
    border: none;
    border-radius: 1.5rem 1.5rem 0 0;
    padding: 0.75rem 1.5rem;
    font-family: Raleway, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    margin-bottom: 0.5rem;
    white-space: nowrap;
}

    .tab-btn.active,
    .tab-btn:focus {
        background: #0066CC;
        color: #fff;
        outline: none;
    }

    .tab-btn:hover {
        background: #FF7D00;
        color: #fff;
    }

.tab-content {
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 600px) {
    .tab-container {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .tab-btn {
        width: 100%;
        text-align: left;
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }
}

.filter-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.switch-label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-family: Raleway, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    gap: 0.5rem;
    user-select: none;
}

    .switch-label input[type="checkbox"] {
        display: none;
    }

.switch-slider {
    width: 2.5rem;
    height: 1.25rem;
    background: #F0F0F0;
    border-radius: 1.25rem;
    position: relative;
    transition: background 0.3s;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.08);
}

    .switch-slider::before {
        content: "";
        position: absolute;
        left: 0.15rem;
        top: 0.15rem;
        width: 0.95rem;
        height: 0.95rem;
        background: #0066CC;
        border-radius: 50%;
        transition: transform 0.3s, background 0.3s;
    }

.switch-label input[type="checkbox"]:checked + .switch-slider {
    background: linear-gradient(90deg, #0066CC, #0099FF, #0066CC);
}

    .switch-label input[type="checkbox"]:checked + .switch-slider::before {
        transform: translateX(1.25rem);
        background: #FF7D00;
    }

.switch-text {
    margin-left: 0.5rem;
    color: #333;
    font-family: Raleway, sans-serif;
    font-size: 1rem;
}

@media (max-width: 900px) {
    .multipliers-section .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }

    .multipliers-section .table {
        min-width: 600px;
        width: 100%;
    }

        .multipliers-section .table th,
        .multipliers-section .table td {
            white-space: nowrap;
        }
}

@media (max-width: 600px) {
    .multipliers-section .tab-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 0.5rem;
        display: flex;
    }

    .multipliers-section .tab-btn {
        min-width: 180px;
        flex: 0 0 auto;
    }
}

@media (max-width: 600px) {
    .multipliers-section .table th,
    .multipliers-section .table td {
        padding: 0.5rem;
    }
}

.states-clock-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8faff;
    border-radius: 1rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.05);
}

.states-clock-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.state-clock {
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.07);
    padding: 1rem 2rem;
    min-width: 180px;
    text-align: center;
    font-family: Raleway, sans-serif;
}

.clock-label {
    display: block;
    font-size: 1rem;
    color: #0066CC;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.clock-time {
    font-size: 1.5rem;
    color: #FF7D00;
    font-family: Anton, sans-serif;
    font-weight: 400;
}

.clocky-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
    color: #FF7D00;
    animation: clockySpin 2s linear infinite;
}

@keyframes clockySpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.clocky-tick {
    display: block;
    font-size: 2rem;
    color: #FF7D00;
    font-family: Anton, sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
    animation: clockyTick 1s steps(1) infinite;
}

@keyframes clockyTick {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear,
input[type="password"]::-webkit-credentials-auto-fill-button,
input[type="password"]::-webkit-input-decoration-container {
    display: none !important;
}

.password-input-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

    .password-input-wrapper input {
        flex: 1 1 auto;
        width: 100%;
    }

.toggle-password {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    height: 1.5rem;
}

.promo-bonus {
    background: linear-gradient(90deg, #FFEFBA 0%, #FFFFFF 100%);
    border: 2px solid #FF7D00;
    color: #FF7D00;
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 1.25rem;
    padding: 0.75rem 1.5rem;
    margin: 1rem 0;
    box-shadow: 0 2px 8px rgba(255, 125, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    letter-spacing: 0.02em;
    animation: promoPulse 1.5s infinite alternate;
}

    .promo-bonus strong {
        color: #FF7D00;
        font-size: 1.15rem;
        font-style: italic;
    }

    .promo-bonus span {
        color: #0066CC;
        font-size: 1.2rem;
        font-weight: 800;
    }

@keyframes promoPulse {
    0% {
        box-shadow: 0 2px 12px 2px rgba(255, 125, 0, 0.18), 0 0 0 0 rgba(255, 125, 0, 0.15);
    }

    50% {
        box-shadow: 0 6px 32px 6px rgba(255, 125, 0, 0.28), 0 0 16px 4px rgba(255, 125, 0, 0.25);
    }

    100% {
        box-shadow: 0 2px 12px 2px rgba(255, 125, 0, 0.18), 0 0 0 0 rgba(255, 125, 0, 0.15);
    }
}

.promo-encouragement {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(90deg, #e3f0ff 0%, #fff 100%);
    border-left: 6px solid #0066CC;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(0,102,204,0.07);
    padding: 1.25rem 1.5rem;
    margin: 1.25rem 0 0.5rem 0;
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #0066CC;
    transition: box-shadow 0.2s;
}

    .promo-encouragement strong {
        color: #FF7D00;
        font-size: 1.15rem;
        font-weight: 700;
        margin-right: 0.5rem;
    }

    .promo-encouragement .promo-desc {
        color: #0066CC;
        font-weight: 700;
        font-size: 1.1rem;
        margin-left: 0.5rem;
        background: #eaf6ff;
        padding: 0.2rem 0.7rem;
        border-radius: 0.5rem;
    }

.order-notice {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
    overflow: hidden;
}

.order-notice img {
    display: block;
    width: 100%;              /* scale down on small screens */
    max-width: 900px;         /* never wider than this on large screens */
    height: auto;
    max-height: 360px;        /* cap height so image can't dominate the page */
    object-fit: contain;      /* maintain aspect ratio, avoid cropping */
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Tighter limits on small screens */
@media (max-width: 768px) {
    .order-notice img {
        max-width: 100%;
        max-height: 220px;
    }
}

/* Admin notices styling - append this block to the end of site.css or in a sensible admin-section area */

/* Container */
.admin-notices {
    max-width: 680px;
    margin: 1.5rem auto;
    padding: 1.25rem;
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.06);
    border: 1px solid #e6eef8;
}

    /* Headings and description */
    .admin-notices h2 {
        margin-top: 0;
        margin-bottom: 0.5rem;
        font-size: 1.5rem;
        color: #0066CC;
        text-align: left;
    }

    .admin-notices p {
        margin-top: 0;
        margin-bottom: 1rem;
        color: rgba(0,0,0,0.7);
    }

/* Preview container */
.notice-preview-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    min-height: 120px;
    background: #f8fbff;
    border-radius: 0.5rem;
    padding: 0.75rem;
    border: 1px dashed rgba(0,102,204,0.08);
}

/* Preview image */
.notice-preview-img {
    max-width: 100%;
    max-height: 320px;
    display: none;
    border-radius: 6px;
    border: 1px solid #e0e6ef;
    padding: 8px;
    box-shadow: 0 6px 18px rgba(3, 44, 76, 0.04);
    cursor: zoom-in;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

    .notice-preview-img:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 24px rgba(3, 44, 76, 0.08);
    }

/* Controls */
.notice-controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: center;
}

.file-input-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #F0F6FF;
    color: #0066CC;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    border: 1px solid rgba(0,102,204,0.06);
}

    .file-input-label input[type="file"] {
        display: none;
    }

.notice-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

/* Message */
.notice-message {
    margin-top: 0.75rem;
    font-size: 0.95rem;
}

/* Make remove button a bit more prominent in admin */
.gen-btn.gen-btn-danger {
    background: #c0392b;
    color: white;
    border: none;
}

    .gen-btn.gen-btn-danger:hover {
        background: #a92f28;
    }

/* Responsiveness */
@media (max-width: 600px) {
    .admin-notices {
        padding: 1rem;
        margin: 1rem;
    }

    .notice-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .notice-actions {
        justify-content: flex-start;
    }

    .file-input-label {
        width: 100%;
        justify-content: center;
    }
}