/*************
1- Header and Footer Styles, Line:6
2- Home Page Styles, Line:115
*************/

.header {
    font-family: 'MyriadPro';
    background: transparent linear-gradient(270deg, #A26B13 0%, #DAA900 7%, #DEB636 30%, #E5C450 53%, #DEB636 74%, #DAA900 94%, #A26B13 100%);
}

.header .container-fluid {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.header .navbar-brand img {
    width: 9rem;
    height: 3.5rem;
}

.header nav .nav-item {
    white-space: nowrap;
}

.header nav .actions {
    gap: 1.5rem;
}

.header nav .actions .h-profile {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding-right: 1.5rem;
    border-right: 1px solid #000;
    text-decoration: none;
}

.header nav .actions .lang {
    font-size: 1.4rem;
    text-decoration: none;
}

.header nav .actions .h-profile p {
    margin-bottom: 0;
}

.header nav .actions>* {
    font-size: 1.6rem;
}

.header nav .actions #shopping-cart,
.header nav .actions #favorites {
    position: relative;
}

.header nav .actions #shopping-cart::before,
.header nav .actions #favorites::before {
    content: attr(data-items-count);
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -5px;
    right: -10px;
    width: 15px;
    height: 15px;
    font-size: 10px;
    color: #FFF;
    background-color: #000;
    padding: .5rem;
    border-radius: 50%;
}

.user-dropdown-menu {
    --bs-dropdown-padding-x: 0.5rem;
    --bs-dropdown-padding-y: 1rem;
    --bs-dropdown-border-color: #BABABA;
    --bs-dropdown-border-radius: 0;
    --bs-dropdown-link-hover-color: #DAA900;
    --bs-dropdown-link-hover-bg: transparent;
    --bs-dropdown-link-active-color: #000;
    --bs-dropdown-link-active-bg: #DAA900;
    min-width: 16rem;
    max-height: 18rem;
    overflow-y: auto;
    box-shadow: 0px 3px 6px #00000029;
}

.user-dropdown-menu::-webkit-scrollbar {
    width: 3px;
    color: #DAA900;
    background-color: #FFF;
}

.user-dropdown-menu::-webkit-scrollbar-thumb {
    background-color: #DAA900;
    margin: .5rem;
}

.user-dropdown-menu li:not(:last-of-type) {
    margin-bottom: 1rem;
}

.user-dropdown-menu li:hover a {
    text-decoration: underline;
}

.user-dropdown-menu li:hover a.logout-item {
    color: var(--error-color);
}

div:has(.grecaptcha-badge) {
    position: absolute;
}

footer .main-footer {
    padding: 2rem 0;
    background: #E9B607;
    background-image: url('./../images/footer-pattern.svg');
}

footer .logo img {
    margin: 0 auto;
}

.main-footer .content {
    margin-top: 2rem;
    gap: 5rem;
}

.main-footer .content>* {
    flex: 1;
}

.main-footer .links {
    flex-wrap: wrap;
    gap: 4rem;
}

.main-footer .links a {
    padding-top: 0rem;
}

.main-footer .contact-info {
    margin-top: 3rem;
}

.main-footer .contact-info a {
    text-decoration: none;
    margin-bottom: 1rem;
}

footer .general-info .container-fluid {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

footer .general-info p {
    margin: 0;
}

@media (min-width: 992px) {
    .header nav>* {
        flex: unset;
    }
    .header nav .nav-item {
        margin: 0 2.5rem;
    }
    footer .logo img {
        margin: 0;
    }
    .main-footer .content .description {
        max-width: 40ch;
    }
    .main-footer .links {
        flex: 2;
        gap: 7rem;
        flex-wrap: nowrap;
    }
}


/**************************
***************************
******* Home Page *********
***************************
**************************/

.highlights .carousel-indicators [data-bs-target] {
    border: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    opacity: 1;
    color: #FFF;
    background-color: #FFF;
}

.highlights .carousel-indicators [data-bs-target].active {
    color: #DAA900;
    background-color: #DAA900;
}

.highlights .carousel-bg-image {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.highlights .carousel-bg-image img {
    height: 100%;
    object-fit: cover;
}

.highlights .carousel-bg-image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: rgba(0, 0, 0, .5);
}

.highlights .carousel-caption {
    position: unset;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    gap: 7rem;
}

.highlights .carousel-caption>* {
    flex: 1;
    padding: 7rem 0;
    text-align: start;
}

.highlights .carousel-caption>img {
    max-width: 500px;
    border-radius: 50%;
}

.highlights .carousel-content h2 {
    font-size: 4rem;
    line-height: 8rem;
}

.highlights .carousel-content p {
    color: #FFF;
    margin-top: 6rem;
    margin-bottom: 4rem;
    font-size: 2rem;
    line-height: 4rem;
}

.products {
    background-color: #000;
}

.products .container-fluid {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
}

.products .cards {
    margin-top: 5rem;
}

.products .cards>div {
    padding: 3rem;
}

.products .card {
    background-color: transparent;
    text-align: center;
    align-items: center;
}

.products .card-content {
    position: relative;
    z-index: 1;
}

.products .card-content::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    margin: -5px;
    background: transparent linear-gradient(180deg, #FFFFFF 0%, #B8B8B8 100%)
}

.products .card-img {
    width: var(--img-card-width);
    height: 190px;
    object-fit: cover;
}

.products .card .new-product,
.products .card .sold-out-product {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    top: 0;
    transform: translate(-30%, -35%);
    z-index: 2;
    margin: 0;
    width: 8rem;
    height: 8rem;
    font-weight: bold;
    box-shadow: 0px 3px 6px #00000029;
    border: 2px solid #E3E3E3;
    border-radius: 50%;
    background: linear-gradient(127deg, #A26B13 0%, #DAA900 28%, #DEB636 35%, #E5C450 45%, #DEB636 61%, #DAA900 68%, #A26B13 100%);
}

.products .card .price {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    margin: 0 auto;
    padding: 2rem 4rem .5rem;
    overflow: hidden;
}

.products .card .price::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 250%;
    border-radius: 50%;
    background: #DAA900;
}

.products .card-actions {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .5s;
    background-color: rgba(0, 0, 0, .5);
    font-size: 5rem;
    gap: 2rem;
}

.products .card-actions>* {
    color: #FFF;
    cursor: pointer;
    font-size: 5rem;
    transition: transform .5s, color .3s;
    pointer-events: none;
}

.products .card-actions.enabled>* {
    pointer-events: initial;
}

.products .card-actions:hover {
    opacity: 1;
}

.products .card-actions .add-to-cart {
    opacity: 1;
    transition: opacity .5s ease-in, transform .5s, color .3s;
}

.products .card-actions .add-to-cart.send-to-cart {
    opacity: 0;
    transition: opacity 0s;
    pointer-events: none;
}

.products .card-actions .add-to-favorites.adding {
    pointer-events: none;
    animation: heartbeat 1s infinite alternate;
}

.products .card-actions .add-to-favorites .bi-heart-fill {
    color: #DAA900;
}

.moving-cart {
    position: absolute;
    color: #FFF;
    font-size: 5rem;
    z-index: 1;
}

.products .card-title {
    margin-top: 2rem;
}

.products .card-title a {
    font-size: 2rem;
    font-family: 'TrajanPro';
    color: #FFF;
    text-decoration: none;
}

.home .about-us {
    position: relative;
}

.home .about-us:focus-visible {
    border: none;
    outline: none;
}

.home .about-us h2 {
    color: #000;
    margin-top: 8rem;
}

.home .about-us .pattern {
    position: absolute;
    top: 0;
    left: 0;
    max-height: 20rem;
}

.home .about-us .content {
    margin-top: 10rem;
    margin-bottom: 5rem;
    align-items: center;
}

.home .about-us .content p {
    font-size: 1.6rem;
    line-height: 3rem;
}

.home .about-us .content .btn {
    margin-top: 5rem;
}

.home .about-us .content img {
    max-width: 400px;
}

.home .offers {
    background-color: #000;
    min-height: 5rem;
}

.home .offers img {
    margin: 0 auto;
}

.home .testimonials {
    position: relative;
}

.home .testimonials::before,
.home .testimonials::after {
    position: absolute;
    width: 14rem;
    height: 12rem;
    margin: 2rem;
}

.home .testimonials::before {
    background: url('../images/open-quotes.svg') no-repeat;
    background-size: 130px;
    top: 0;
    left: 0;
}

.home .testimonials::after {
    background: url('../images/close-quotes.svg') no-repeat;
    background-size: 130px;
    bottom: 0;
    right: 0;
}

.home .testimonials h2 {
    margin-top: 8rem;
    color: #000;
}

.home .testimonial-card {
    background-color: #000;
    padding: 3rem 2rem 5rem;
    max-width: 60rem;
}

.home .testimonial-card .user-info {
    gap: 1rem;
    width: fit-content;
    margin: 0 auto 3rem;
}

.home .testimonial-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 3px solid #DAA900;
    border-radius: 50%;
}

.home .testimonial-card .username {
    margin-bottom: .5rem;
    font-size: 1.8rem;
    color: #FFF;
}

.home .testimonial-card .ocupation {
    font-size: 1.2rem;
    color: #A5722A;
}

p.text-center>a:nth-child(1) {
    font-size: 1.2rem;
    color: #A5722A;
}

.home .testimonial-card .testimonial-content {
    line-height: 2.5rem;
    color: #FFF;
    font-size: 1.5rem;
}

@media (min-width: 576px) {
    .home .testimonials::before,
    .home .testimonials::after {
        content: "";
    }
}

@media (min-width: 992px) {
    .highlights .carousel-content h2 {
        font-size: 4.5rem;
    }
    .highlights .carousel-caption>* {
        padding-top: 3rem;
    }
    .home .about-us .pattern {
        max-height: 30rem;
    }
    .home .testimonials::before,
    .home .testimonials::after {
        margin: 3rem 5rem;
        background-size: initial;
        width: 19rem;
        height: 16rem;
    }
    .home .testimonial-card {
        padding: 3rem 5rem 5rem;
    }
}

@media (min-width: 1200px) {
    .highlights .carousel-caption>img {
        max-width: 600px;
    }
    .home .about-us .content img {
        max-width: 500px;
    }
}


/********************
*****Static Pages****
********************/

.static-page h2 {
    color: #000;
    font-weight: bold;
    font-size: 2.5rem;
    margin: 3rem 0;
}

.static-page .content li {
    margin: 2rem 1rem;
    list-style-type: auto;
}

.privacy-policy .content {
    margin-top: 7rem;
}


/********************
*****Auth Pages*****
********************/

.register-header {
    text-align: center;
    margin-bottom: 4rem;
}

.register-header a {
    color: #DAA900;
    text-decoration: none;
    transition: color .5s;
}

#register-form .form-group {
    padding-bottom: 1rem;
}

#register-header a:is(:hover,
 :focus,
 :focus-visible) {
    color: #A26B13;
}

#reset-password-form .password-group input,
#edit-account-form .password-group input,
#register-form .password-group input,
#login-form .password-group input {
    border-right: none !important;
    clip-path: inset(-10px 0px -10px -10px);
}

#reset-password-form .password-group .password-icon,
#edit-account-form .password-group .password-icon,
#register-form .password-group .password-icon,
#login-form .password-group .password-icon {
    font-size: 1.5rem;
    border: #000 1px solid;
    border-left: none;
    border-radius: 0;
    background-color: transparent;
    clip-path: inset(-10px -10px -10px 0px);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

input:is(:focus,
 :focus-visible)~.password-icon {
    box-shadow: 0 0 0 0.25rem rgb(218 169 0 / 50%) !important;
}

body>main>div>div>form>div:nth-child(5)>div>div>input[type="file"]::file-selector-button {
    background-color: #e9b607;
    border: #e9b607;
    margin-left: 0.3pt;
}

body>main>div>div.center {
    width: 400px;
    margin: 0 auto;
    padding-top: 7.8em;
}

input.is-invalid~.password-icon {
    border-color: var(--error-color) !important;
}

input.is-invalid:focus~.password-icon {
    box-shadow: 0px 0px 0 0.25rem rgb(220 53 69 / 25%) !important;
}

#register-form .form-btn {
    margin: 6rem auto;
}

.form-check {
    padding: .75rem;
}

.form-check-label {
    display: inline;
}

.form-check-input {
    width: 1.4rem;
    height: 1.4rem;
    margin: 0.25rem .5rem 0 0 !important;
}

.inner-page.login {
    position: relative;
}

.login-pattern {
    display: none;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    width: 30rem;
}

#login-form .basic-btn {
    padding: 1rem 3.5rem;
}

.login-instructions {
    background-color: #FCDBDB;
    border: 1px #AB515B solid;
    margin: 2rem 1rem 2rem 0;
}

.login-instructions p {
    font-size: 1.4rem;
    color: #AB515B;
}

.login-container {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.login-container .register-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #DAA900;
    padding: 4rem;
}

.login-container .register-section h2 {
    font-size: 2.4rem;
    color: #000;
    margin-bottom: 5rem;
}

.login-container .register-section p {
    font-weight: bold;
    margin-bottom: 3.5rem;
}

.login-container .register-section li {
    list-style-type: disc;
    margin-bottom: 1rem;
}

.login-container .register-section a {
    align-self: flex-start;
    background-color: #000;
    color: #fff;
    margin-top: 2rem;
    padding: 1rem 3rem;
    text-decoration: none;
}

.send-reset-email .alert-success,
.verify-email .alert-success {
    --bs-alert-bg: transparent;
    --bs-alert-border-color: transparent;
    --bs-alert-padding-x: 0;
}

.send-reset-email form,
.reset-password form {
    max-width: 40rem;
    margin: 5rem auto 8rem;
}

.send-reset-email button,
.reset-password button,
.verify-email button {
    background-color: #DAA900;
    border-radius: 0;
}

.send-reset-email button:is(:hover,
 :active),
.reset-password button:is(:hover,
 :active),
.verify-email button:is(:hover,
 :active) {
    background-color: #A26B13;
}

.verify-email .content {
    margin: 5rem auto 8rem;
}

@media (min-width: 992px) {
    .login-container {
        margin-top: 8rem;
        margin-bottom: 8rem;
    }
    .login-pattern {
        display: block;
    }
}

.email-password-header {
    text-align: center;
    margin-bottom: 4rem;
    font-family: 'OpenSans';
}

.email-password-header p {
    color: #DAA900;
    text-decoration: none;
    transition: color .5s;
}


/********************
****Profile Pages****
********************/

.profile .options {
    margin-top: 4rem;
    margin-bottom: 8rem;
}

.profile-card {
    border: 1px #000 solid;
    font-size: 4rem;
    margin-bottom: 2.5rem;
    padding: 3rem 0 3rem 3rem;
    gap: 3rem;
    transition: color .5s, border-color .5s;
    text-decoration: none;
}

.profile-card h2 {
    color: #000;
    font-size: 1.6rem;
    margin: 0;
    transition: color .5s;
}

.profile-card p {
    color: #7E7E7E;
    font-size: 1.2rem;
    margin: 0;
}

.profile-card:is(:hover,
 :focus,
 :focus-visible) {
    cursor: pointer;
    color: #DAA900;
    border-color: #DAA900;
}

.profile-card:is(:hover,
 :focus,
 :focus-visible) h2 {
    color: #DAA900;
}

.profile-card.logout-card:is(:hover,
 :focus,
 :focus-visible) {
    cursor: pointer;
    color: var(--error-color);
    border-color: var(--error-color);
}

.profile-card.logout-card:is(:hover,
 :focus,
 :focus-visible) h2 {
    color: var(--error-color);
}

.account #edit-account-form {
    max-width: 80rem;
    margin: 7rem auto;
}

.account h2 {
    font-size: 2rem;
    color: #000;
}

.account h2+small {
    font-size: 1.1rem;
    color: var(--success-color);
}

.account .form-group {
    margin-top: .6rem;
}

.account label {
    color: #A9A9A9;
}

.account .form-btn {
    margin: 5rem auto 0;
}

.account .change-password-section {
    margin-top: 1rem;
    text-decoration: underline;
}

.account .change-password-section[aria-expanded=true] {
    color: #DAA900;
}

.account #change-password {
    margin-top: 3rem;
}

.wishlist .products {
    margin-top: 6rem;
    margin-bottom: 6rem;
    background-color: transparent;
}

.wishlist .products .card {
    --card-distance: 2rem;
    border: none;
    margin-bottom: 2rem;
}

.wishlist .products .card-title a {
    color: #000;
}

.wishlist .card-content::after {
    background: transparent linear-gradient(180deg, #858585 0%, #B8B8B8 100%)
}

.address-header {
    text-align: center;
}

.address-header h1 {
    margin-bottom: 0 !important;
}

.address-header a {
    color: #DAA900;
}

.address-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    grid-gap: 2rem;
    justify-items: center;
    margin: 3rem auto;
}

.address-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 31rem;
    padding: 3rem 3.5rem 2.5rem;
    border: 1px solid #000;
}

.address-card.default {
    background-color: #DAA900;
}

.address-card h2 {
    color: #000;
    font-weight: bold;
}

.address-card .title {
    font-weight: bold;
}

.address-card ul {
    padding: 0;
}

.address-card li {
    margin: .5rem 0;
}

.address-card li>* {
    display: inline;
}

.address-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0 0;
}

.address-actions button,
.address-actions a {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.address-card.default .set-default {
    opacity: .5;
    cursor: not-allowed;
    pointer-events: none;
}

.address-actions i {
    font-size: 2rem;
}


/* ORDER */

.order-header {
    text-align: center;
}

.order-details {
    background-color: #e9b607;
    width: 35rem !important;
}

.order-header h1 {
    margin-bottom: 0 !important;
}

.order-header a {
    color: #DAA900;
}

@media (min-width: 992px) {
    .order-cards {
        width: fit-content;
        grid-auto-flow: column;
    }
}

.order-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    grid-gap: 2rem;
    justify-items: center;
    margin: 3rem auto;
}

.order-cards-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    grid-gap: 2rem;
    justify-items: center;
    margin: 3rem auto;
}

.order-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 31rem;
    padding: 3rem 3.5rem 2.5rem;
    border: 1px solid #000;
}

.order-card.default {
    background-color: #DAA900;
}

.order-card h2 {
    color: #000;
    font-weight: bold;
}

.order-card .title {
    font-weight: bold;
}

.order-card ul {
    padding: 0;
}

.order-card li {
    margin: .5rem 0;
}

.order-card li>* {
    display: inline;
}

.order-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0 0;
}

.order-actions button,
.order-actions a {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.order-card.default .set-default {
    opacity: .5;
    cursor: not-allowed;
    pointer-events: none;
}

.order-actions i {
    font-size: 2rem;
}


/* ORDER */

.country-selector+.select2.select2-container .select2-selection,
.city-selector+.select2.select2-container .select2-selection {
    height: 4rem;
}

#shipping-address-form button.submit {
    margin: 2rem 0;
}

#shipping-address-form .form-switch {
    display: flex;
    align-items: center;
    gap: 1rem;
}

#shipping-address-form .default {
    width: 4rem;
    height: 2.5rem;
    border-radius: 2em !important;
}

#shipping-address-form .default:focus:not(:checked) {
    background-image: url('../images/switch-circle.svg');
}

.address-modal {
    --bs-modal-border-radius: 0;
    --bs-modal-header-padding: 2rem 1rem 1rem;
    --bs-modal-header-border-width: 0;
    --bs-modal-padding: 0 1rem;
    --bs-modal-footer-border-width: 0;
}

.address-modal .modal-content {
    position: relative;
}

.address-modal .btn-close {
    position: absolute;
    left: 0;
    top: 0;
    width: 1rem;
    height: 1rem;
    transform: translate(-30%, -30%);
    padding: 1.25rem;
    opacity: 1;
    background-color: #DAA900;
    border-radius: 50%;
}

.address-modal .modal-content h3 {
    color: #000;
    font-size: 1.6rem;
    font-weight: bold;
    margin: 0 auto;
}

.address-modal .modal-body p {
    width: fit-content;
    margin: 0 auto;
}

.address-modal .modal-footer {
    padding: 2.5rem 1rem;
    margin: 0 auto;
}

.address-modal .modal-footer button {
    font-size: 1.4rem;
    color: #000;
    border-radius: 0;
}

.address-modal .modal-footer button.btn-primary {
    border-color: #DAA900;
    background-color: #DAA900;
}

@media (min-width: 768px) {
    .wishlist .products .card {
        width: fit-content;
    }
    .wishlist .products .col-md-6:nth-child(odd) .card {
        margin-right: var(--card-distance);
        margin-left: auto;
    }
    .wishlist .products .col-md-6:nth-child(even) .card {
        margin-left: var(--card-distance);
        margin-right: auto;
    }
}

@media (min-width: 992px) {
    .profile .options {
        margin-top: 6rem;
    }
    .profile-card {
        max-width: 36rem;
    }
    .profile-card-container:nth-child(odd) .profile-card {
        margin-right: 0;
        margin-left: auto;
    }
    .profile-card-container:nth-child(odd) .order-card {
        margin-right: 0;
        margin-left: auto;
    }
    .address-cards {
        width: fit-content;
        grid-auto-flow: column;
    }
    .address-card:nth-child(3n+1) {
        grid-column: 1;
    }
    .address-card:nth-child(3n+2) {
        grid-column: 2;
    }
    .address-card:nth-child(3n+3) {
        grid-column: 3;
    }
}


/********************
*****Inner Pages*****
********************/

.inner-page {
    min-height: 50vh;
}

.inner-page h1 {
    width: fit-content;
    margin: 4rem auto 1rem;
}

.all-products-header {
    width: fit-content;
    margin: 0rem auto 3rem;
}

.all-products-header p {
    color: #7E7E7E;
    border-bottom: 1px #7E7E7E solid;
    line-height: 0.1rem;
}

.all-products-header p>span {
    background-color: #FFF;
    padding: .5rem 1rem;
}

.all-products .filter-section {
    background-color: #FFF;
    background-clip: content-box;
}

.all-products .filter-content {
    border: #000 1px solid;
    z-index: 1000;
    margin: 0 3rem 3rem;
}

.all-products .filter-section .filter-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0.8rem;
}

.all-products .filter-title h2 {
    color: #000;
    font-size: 1.8rem;
    margin: 0;
}

.all-products .filter-title .icon {
    font-size: 1.8rem;
    color: #000;
    transition: rotate .5s;
}

.all-products .filter-content.open .filter-title .icon {
    rotate: -180deg;
}

.all-products .accordion {
    position: absolute;
    width: 100%;
    background-color: rgba(0, 0, 0, .8);
    max-height: 0rem;
    overflow-y: scroll;
    transition: max-height .5s;
}

.all-products .filter-content.open .accordion {
    max-height: 20rem;
}

.all-products .accordion::-webkit-scrollbar {
    width: 3px;
    color: #DAA900;
}

.all-products .accordion::-webkit-scrollbar-thumb {
    background-color: #DAA900;
}

.all-products .accordion {
    --bs-accordion-color: #FFF;
    --bs-accordion-bg: transparent;
    --bs-accordion-active-bg: transparent;
    --bs-accordion-inner-border-radius: 0;
    --bs-accordion-border-width: 0;
    --bs-accordion-btn-color: #FFF;
    --bs-accordion-active-color: #FFF;
    --bs-accordion-btn-padding-y: 0;
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-body-padding-x: 1rem;
    --bs-accordion-body-padding-y: .5rem;
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.all-products .accordion-item {
    margin: 2rem 0;
}

.all-products .accordion-button {
    font-size: 1.2rem;
}

.all-products .form-check {
    padding-bottom: 0;
}

.all-products .form-check-input[type=checkbox] {
    background-image: none;
    border-radius: 50% !important;
}

.all-products .products-container {
    margin-top: 5px;
}

.all-products .products {
    background-color: transparent;
}

.all-products .products .card {
    border: none;
    margin-bottom: 2rem;
}

.all-products .card-content::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    margin: -5px;
    background: transparent linear-gradient(180deg, #858585 0%, #B8B8B8 100%)
}

.all-products .card-title a {
    color: #000;
}

.all-products .load-more {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 6rem;
}

.all-products .load-more a {
    cursor: pointer;
    color: #DAA900;
}

.all-products .load-more a.disabled {
    color: #7E7E7E;
    pointer-events: none;
    cursor: auto;
}

.all-products .load-more a+.spinner-border {
    display: none;
    color: #7E7E7E !important;
}

.all-products .load-more a.disabled+.spinner-border {
    display: block;
}

@media (min-width: 768px) {
    .all-products-header {
        margin: 0rem auto 6rem;
    }
    .all-products .filter-section {
        background-color: #000;
    }
    .all-products .filter-content {
        padding: 3rem 3.5rem;
        border: none;
        margin: 0;
    }
    .all-products .filter-section .filter-title {
        border-bottom: 1px #FFF solid;
        padding: 0;
        padding-bottom: 1.5rem;
    }
    .all-products .filter-title h2 {
        color: #FFF;
    }
    .all-products .filter-title .icon {
        display: none;
    }
    .all-products .accordion {
        position: initial;
        background-color: none;
        max-height: unset !important;
        overflow-y: unset;
    }
}

.product {
    margin-top: 5rem;
}

.product h1 {
    font-size: 2rem;
    font-weight: bold;
    margin: 0 0 1rem;
}

.product .cart-section {
    display: flex;
    gap: 1rem;
    font-size: 1.2rem;
    margin-top: auto;
}

.product .quantity,
.cart-card .quantity {
    position: relative;
    border: 1px #000 solid;
    padding: 1rem;
    display: flex;
    gap: 1.5rem;
}

.product .quantity .remove,
.product .quantity .add,
.cart-card .quantity .remove,
.cart-card .quantity .add {
    cursor: pointer;
}

.product .quantity .remove.disabled,
.cart-card .quantity .remove.disabled {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.3;
}

.product .quantity::after,
.cart-card .quantity::after {
    position: absolute;
    content: attr(data-pair);
    background-color: #FFF;
    color: #000;
    left: 50%;
    padding: 0 0.5rem;
    bottom: 0;
    transform: translate(-50%, 50%);
}

.product .add-to-cart {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-grow: 1;
    background-color: #000;
    cursor: pointer;
    padding: 1rem;
    border: none;
}

.product .add-to-cart p {
    color: #fff;
    margin-bottom: 0;
}

.product .add-to-cart .adding {
    display: none;
}

.product .add-to-cart.disabled {
    opacity: .5;
    pointer-events: none;
}

.product .add-to-cart.disabled .adding {
    display: block;
}

.product .add-to-cart .added-success {
    color: #fff;
    font-size: 1.6rem;
    display: none;
}

.product #lightSlider {
    max-height: 26rem;
    margin-bottom: 0.5rem;
}

.product .lslide img {
    width: 100%;
}

.product .lSSlideOuter .lSPager.lSGallery img {
    width: 100%;
    max-height: 7rem;
    object-fit: cover;
}

.product .details {
    margin-top: 10rem;
    margin-bottom: 5rem;
}

.product .details .nav {
    --bs-nav-link-color: #000;
    --bs-nav-link-font-weight: bold;
    --bs-nav-tabs-link-active-color: #000;
    --bs-nav-tabs-border-radius: 0;
    --bs-nav-tabs-border-color: #000;
    --bs-nav-link-padding-x: .5rem;
    --bs-nav-link-hover-color: #DAA900;
    --bs-nav-tabs-border-width: 1px;
    --bs-nav-tabs-link-active-bg: #DAA900;
    --bs-nav-tabs-link-active-border-color: #000;
}

.product .nav-tabs .nav-link.active {
    border-width: 1px 1px 0 1px;
    border-color: transparent #000 #000 #000;
}

.product .nav-tabs .nav-item:first-of-type .nav-link.active {
    border-width: 1px 1px 0 0;
}

.product .nav-tabs .nav-item:last-of-type .nav-link.active {
    border-width: 1px 0 0 1px;
}

.product .tab-pane {
    margin-top: 3rem;
}

.product .tab-pane p {
    max-width: 80ch;
}

.product .table {
    border: 1px #000 solid;
    width: fit-content;
    --bs-table-border-color: #000;
}

.product .table th,
.product .table td {
    padding: .5rem 1rem;
}

.product .table th:not(:last-of-type),
.product .table td:not(:last-of-type) {
    border-right: 1px #000 solid;
}

.cart .empty-cart {
    margin-top: 6rem;
    margin-bottom: 10rem;
}

.cart .empty-cart img {
    max-width: 9rem;
    margin: 0 auto;
    margin-bottom: 4rem;
}

.cart h2 {
    font-weight: bold;
    font-size: 2rem;
    color: #000;
}

.cart .empty-cart .btn {
    font-size: 1.2rem;
    background-color: #DAA900;
    border: none;
    border-radius: 0;
    padding: 1.5rem 6rem;
    margin-top: 3rem;
}

.cart .cart-container {
    margin-top: 5rem;
    margin-bottom: 6rem;
}

.cart .cards-titles {
    display: none;
    padding: 0 1.6rem;
}

.cart .cards-titles .title-p {
    width: var(--img-card-width);
    text-align: center;
}

.titles-details {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 3rem;
}

.cart .cart-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border: 1px #000 solid;
    padding: 1.6rem;
    margin-bottom: 2rem;
}

.cart .cart-card .remove-product {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 29px;
    height: 29px;
    top: 0;
    left: 0;
    transform: translate(-20%, -50%);
    font-size: 2rem;
    background-color: #DAA900;
    border-radius: 50%;
    cursor: pointer;
}

.cart .cart-card .product-image {
    position: relative;
    background-color: #000;
    margin: .5rem;
}

.cart .cart-card .product-image::after {
    position: absolute;
    inset: -.5rem;
    content: "";
    background-color: #000;
    z-index: -1;
}

.cart .cart-card .product-image img {
    width: var(--img-card-width);
    ;
    height: 190px;
    object-fit: cover;
}

.cart .cart-card h2 {
    margin-top: 1rem;
    text-align: center;
}

.cart .cart-card .product-quantity {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
    flex-wrap: nowrap;
}

.cart .bill,
.checkout .bill {
    background-color: #E9B607;
    padding: 2rem;
    margin-bottom: 1rem;
}

.cart .bill h2,
.checkout .bill h2 {
    color: #000;
}

.cart .bill ul,
.checkout .bill ul {
    padding: 0;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.cart .bill .bill-item,
.checkout .bill .bill-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    color: #000;
}

.cart .bill .bill-item.linethrough,
.checkout .bill .bill-item.linethrough {
    position: relative;
}

.cart .bill .bill-item.linethrough>*,
.checkout .bill .bill-item.linethrough>* {
    opacity: .5;
}

.cart .bill .bill-item.linethrough::after,
.checkout .bill .bill-item.linethrough::after {
    content: "";
    position: absolute;
    width: 100%;
    inset: 0;
    height: 0.1px;
    background: #000;
    top: 50%;
    transform: translateY(-50%);
}

.cart .bill-item h3,
.checkout .bill-item h3 {
    font-family: 'OpenSans';
    font-weight: normal;
    font-size: 1.4rem;
    color: #000;
    margin: auto 0;
}

.cart .bill-item p,
.checkout .bill-item p {
    margin: 0;
}

.cart .bill-item.total-item h3,
.checkout .bill-item.total-item h3 {
    font-weight: bold;
}

.cart .bill .checkout-btn,
.checkout .bill .checkout-btn {
    font-size: 1.2rem;
    background-color: #000;
    color: #fff;
    text-align: center;
    border: none;
    border-radius: 0;
    padding: 1rem 1.3rem;
}

.checkout .paypal-btn {
    background-color: #ffc439;
    border-radius: 4px;
    padding: 2rem 5rem;
}

.checkout .checkout-stepper {
    --border-width: 1.5px;
    --circle-width: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 80rem;
    padding: calc(var(--circle-width)/2) 0;
    margin: 3rem auto;
}

.checkout .checkout-stepper .step {
    position: relative;
    flex: 1;
    padding: calc((var(--circle-width) / 2) + .75rem) 1rem;
    text-align: center;
    border-top: var(--border-width) solid #0000004d;
}

.checkout .checkout-stepper .step::before {
    content: attr(data-step-number);
    position: absolute;
    top: 0;
    right: 50%;
    transform: translate(50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: calc(var(--circle-width)/2 - .5rem);
    font-family: bootstrap-icons;
    color: #0000004d;
    width: var(--circle-width);
    height: var(--circle-width);
    background-color: #FFF;
    border: var(--border-width) solid #0000004d;
    border-radius: 50%;
}

.checkout .checkout-stepper .step.active {
    border-color: #000;
}

.checkout .checkout-stepper .step.active::before {
    color: #000;
    border-color: #000;
}

.checkout .checkout-stepper h2 {
    color: #0000004d;
    font-size: 2.5rem;
}

.checkout .checkout-stepper a {
    text-decoration: none;
}

.checkout .checkout-stepper .step.active h2 {
    color: #000;
}

.checkout h1 {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.checkout .select-address {
    color: #000;
    font-size: 2rem;
}

.checkout .form-select {
    border-radius: 0;
    font-size: 1.4rem;
}

.checkout .form-select:focus {
    border-color: #DAA900;
    box-shadow: 0 0 0 0.25rem rgb(218, 169, 0, .5);
}

.checkout .checkout-address-card {
    border: 1px solid #000;
    padding: 1rem 2rem 2rem;
    margin: 2rem 0;
}

.checkout .checkout-address-card .address-info {
    display: flex;
    gap: 1rem;
}

.checkout .checkout-address-card .address-info:last-of-type p {
    margin-bottom: 0;
}

.checkout .checkout-address-card .address-info p:first-of-type {
    font-weight: bold;
}

.checkout .add-address-form {
    margin: 1rem 0;
}

.checkout .form-btn {
    width: fit-content;
    margin: 1rem auto
}


/* POPUP MODAL */

.modal {
    position: block;
}

.modal-dialog {
    display: flex;
    align-items: center;
    min-height: calc(100% - 0rem);
}

.modal-success-popup {
    width: 650px;
    height: 120px;
    border-left: 10px solid #6ba332;
}

.modal-content-popup {
    left: -60px;
}

.modal-error-popup {
    width: 650px;
    height: 120px;
    border-left: 10px solid #f04242;
}

.modal-box {
    width: 640px;
    height: 120px;
}

.modal-image {
    display: inline-block;
    margin-right: 54px;
    width: 80px;
    margin-top: -25px;
    margin-left: 50px;
}

.popup {
    overflow: hidden;
}

.sub-text {
    font-size: 17px;
    font-weight: bold;
}

.main-text-modal {
    display: inline-block;
    margin-top: 36px;
    line-height: 10pt;
}

#logoutModal>div>div>form>button {
    background-color: #daa900;
    border-radius: 20px;
    margin-right: -12px;
    margin-top: -10px;
    opacity: 1;
    position: relative;
    left: -9px;
    width: 20px;
    height: 20px;
    font-size: 1.1em;
    bottom: 2px;
}

#buy_two_get_one_modal>div>div>button {
    background-color: #daa900;
    border-radius: 20px;
    margin-right: -12px;
    margin-top: -10px;
    opacity: 1;
    position: relative;
    left: -9px;
    width: 20px;
    height: 20px;
    font-size: 1.1em;
    bottom: 2px;
}

#logoutModal>div>div>form>div>button {
    background-color: #daa900;
    border-radius: 0;
    margin: 1em auto;
}

#buy_two_get_one_modal>div>div>div>button {
    background-color: #daa900;
    border-radius: 0;
    margin: 1em auto;
}

#saveTestimonial {
    padding: 1rem 3.5rem;
}

.checkout .pricing-container {
    text-align: center;
    max-width: 45rem;
    margin: 0rem auto 2rem;
}

#logoutModal>div>div>form>button {
    border-radius: 50%;
    color: #ffc439;
}

#buy_two_get_one_modal>div>div>button {
    border-radius: 50%;
    color: #ffc439;
}

.checkout .pricing-container p span {
    font-weight: bold;
}

.error-content {
    margin-top: 7rem;
    margin-bottom: 5rem;
}

.error-content h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 12rem;
    color: #000;
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.error-content h2 img {
    max-height: 12rem;
    align-self: flex-start;
}

.error-content p {
    max-width: 85ch;
    font-size: 1.5rem;
    margin: 0 auto;
    padding: 0 .5rem;
}

.error-content .btn {
    background-color: #DAA900;
    font-size: 1.5rem;
    margin-top: 3rem;
    padding: 1rem 2.5rem;
    border-radius: 0;
}

@media (min-width: 768px) {
    .cart .cart-container {
        margin-top: 10rem;
    }
    .cart .cart-card .remove-product {
        transform: translate(-50%, -50%);
    }
}

@media (min-width: 992px) {
    .product {
        margin-top: 10rem;
    }
    .product .lSSlideOuter .lSPager.lSGallery img {
        max-height: 12rem;
    }
    .product .details .nav {
        --bs-nav-link-padding-x: 3rem;
    }
    .cart .cards-titles {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .cart .cart-card {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.contact-us .container .content {
    margin: 4rem 0;
}

.contact-us h2 {
    color: #000;
    font-size: 1.6rem;
    font-family: 'OpenSans';
    font-weight: bold;
}

.contact-us .info-msg {
    display: none;
    font-size: 1.4rem;
}

.contact-us .success-msg {
    color: var(--success-color);
}

.contact-us .error-msg {
    color: var(--error-color);
}

.contact-us .contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-us .contact-info>* {
    display: flex;
    align-items: center;
}

.contact-us .contact-info p {
    margin: 0;
}

.contact-us .contact-info a {
    text-decoration: none;
}

.contact-us .contact-info i {
    color: #DAA839;
    font-size: 2rem;
    margin-right: 1rem;
}

.contact-us .contact_us_form {
    padding: 4rem;
    background-color: #DAA900;
}

.contact-us .contact_us_form h2 {
    font-size: 2rem;
    font-family: 'TrajanPro';
    text-align: center;
}

.contact-us .form-group {
    margin-bottom: 1.5rem;
}

.contact-us input,
.contact-us textarea {
    width: 100%;
    border: none !important;
    font-size: 1.2rem;
    padding: 0.5rem;
}

.contact-us input:is(:focus,
 :focus-visible),
.contact-us textarea:is(:focus,
 :focus-visible) {
    border: #000 1px solid !important;
}

.contact-us .contact_us_form button {
    width: 100%;
    font-size: 1.4rem;
    color: #FFF;
    background-color: #000;
    padding: .8rem;
    border-radius: 0;
}

.contact-us .contact_us_form button[disabled=true] {
    opacity: .5;
}

@media (min-width: 768px) {
    .contact-us .contact-info {
        flex-direction: column;
        align-items: flex-start;
    }
}

@keyframes heartbeat {
    0% {
        transform: scale(.75);
    }
    20% {
        transform: scale(1.1);
    }
    40% {
        transform: scale(.75);
    }
    60% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(.75);
    }
}

@media (hover: hover) {
    .home .products .card-actions>*:hover {
        color: #DAA900;
        transform: scale(1.1);
    }
}

.dhl_validation_error_msg {
    font-size: 12px!important;
}

.hide {
    display: none!important;
}

.order-reference-number {
    font-size: 2rem;
}

.hand {
    cursor: pointer;
}


/* Whatsapp Support */

.bk-top {
    position: fixed;
    bottom: 60px;
    right: 30px;
    border-radius: 3px;
    z-index: 90;
    display: none;
    width: 55px;
    height: 55px;
    background: #daa900;
    color: #f2f2f0;
    border-radius: 50%;
    display: table;
    box-shadow: 0 5px 15px rgb(0 0 0 / 10%);
}

#whatsapp-support .bk-top-txt,
#whatsapp-support .bk-top-txt:hover {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    font-size: 25px;
    color: #f2f2f0;
}

.offers-alert {
    font-size: 14px;
    text-align: center;
    /* top: 71px; */
    border-radius: 0;
}