.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.top-bar-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.account-page-content {
    padding: 4rem 1rem;
    text-align: center;
}

/* Sticky footer styles */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-content {
    flex: 1;
}

/* Footer Custom Styles */
.footer.style7 .footer-content-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.footer.style7 .footer-logo-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer.style7 .socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: nowrap;
}

.footer.style7 .footer-menu-column {
    text-align: center;
}

/* Home slider hero: white text */
.home-slider .slider-infor .title-small,
.home-slider .slider-infor .title-big,
.home-slider .slider-infor .price,
.home-slider .slider-infor .when-code {
    color: #ffffff;
}

/* Global call-to-action button style */
.button.btn-shop-now {
    padding: 10px 32px;
    border-radius: 30px;
    background-color: #ab8e66;
    border: 1px solid #ab8e66;
    color: #ffffff;
}

.button.btn-shop-now:hover {
    background-color: #947656;
    border-color: #947656;
    color: #ffffff;
}

/* Home promotional banners: white text on dark backgrounds */
.banner-video-wrapp .item-banner .banner-content .stelina-subtitle,
.banner-video-wrapp .item-banner .banner-content .title,
.banner-pinmap-wrapp .item-banner .banner-content-inner .stelina-subtitle,
.banner-pinmap-wrapp .item-banner .banner-content-inner .title {
    color: #ffffff;
}

/* Ensure banner CTAs use gold background and white text */
.banner-video-wrapp .item-banner .banner-content .button.btn-shop-now,
.banner-pinmap-wrapp .item-banner .banner-content-inner .button.btn-shop-now {
    background-color: #ab8e66;
    border-color: #ab8e66;
    color: #ffffff;
}

/* Home bottom banner: increase height to better showcase hero image */
.banner-pinmap-wrapp .item-banner.style15 .inner {
    height: 600px;
    background-size: cover;
}

/* Checkout: order summary styling */
.checkout-wrapp .your-order {
    background-color: #faf7f2;
    border-radius: 16px;
    padding: 24px 24px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.checkout-wrapp .your-order .title-form {
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.checkout-wrapp .list-product-order {
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
}

.checkout-wrapp .list-product-order .product-item-order {
    display: flex;
    gap: 16px;
    padding: 12px 0 16px;
    border-bottom: 1px solid #e8e1d6;
    overflow: visible;
}

.checkout-wrapp .list-product-order .product-thumb img {
    border-radius: 10px;
}

.checkout-wrapp .product-order-inner .product-name a {
    font-size: 15px;
    font-weight: 500;
}

.checkout-wrapp .product-order-inner .price {
    margin-top: 4px;
    font-size: 14px;
    font-weight: 600;
}

.checkout-wrapp .product-order-inner .qty-control {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.checkout-wrapp .product-order-inner .qty-stepper-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkout-wrapp .product-order-inner .qty-control .input-text {
    max-width: 70px;
    width: 70px;
    box-sizing: border-box;
    padding: 6px 8px;
    border-radius: 999px;
    border: 1px solid #e0d4c2;
    font-size: 13px;
    text-align: center;
    background-color: #ffffff;
    height: 34px;
    line-height: 34px;
}

.checkout-wrapp .product-order-inner .qty-stepper {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid #e0d4c2;
    background-color: #ffffff;
    font-size: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.checkout-wrapp .product-order-inner .qty-stepper.js-qty-minus::before {
    content: "−";
    font-size: 18px;
    line-height: 1;
    color: #ab8e66;
    font-weight: 600;
}

.checkout-wrapp .product-order-inner .qty-stepper.js-qty-plus::before {
    content: "+";
    font-size: 18px;
    line-height: 1;
    color: #ab8e66;
    font-weight: 600;
}

.checkout-wrapp .product-order-inner .qty-remove {
    padding: 6px 18px;
    font-size: 12px;
    border-radius: 999px;
}

/* Tidy up number input spinners so quantity field looks consistent */
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;
}

.checkout-wrapp .product-order-inner .line-subtotal {
    margin-top: 4px;
    font-size: 13px;
    color: #777777;
}

.checkout-wrapp .order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    padding: 4px 0;
}

.checkout-wrapp .order-total .title {
    color: #777777;
}

.checkout-wrapp .order-total .total-price {
    font-weight: 600;
}

.checkout-wrapp .order-total:last-of-type {
    border-top: 1px solid #e8e1d6;
    margin-top: 8px;
    padding-top: 10px;
    font-size: 16px;
}

.checkout-wrapp .order-total:last-of-type .total-price {
    color: #ab8e66;
    font-weight: 700;
}

/* Checkout: disabled Proceed to Payment button */
.button.button-payment[disabled] {
    background-color: #cccccc !important;
    border-color: #cccccc !important;
    color: #777777 !important;
    cursor: not-allowed;
    opacity: 1;
}

.button.button-payment[disabled]:hover,
.button.button-payment[disabled]:focus {
    background-color: #cccccc !important;
    border-color: #cccccc !important;
    color: #777777 !important;
}

/* Footer mobile layout */
@media (max-width: 767px) {
    .checkout-wrapp .list-product-order .product-item-order {
        align-items: flex-start;
    }

    .checkout-wrapp .list-product-order .product-thumb {
        flex: 0 0 90px;
    }

    .checkout-wrapp .list-product-order .product-thumb img {
        width: 100%;
        height: auto;
    }

    .checkout-wrapp .product-order-inner {
        flex: 1;
    }

    .footer.style7 .footer-content-row {
        flex-direction: column;
        align-items: center;
    }

    .footer.style7 .box-footer {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 30px;
        text-align: center;
    }

    .footer.style7 .footer-menu-column .widgettitle {
        margin-top: 0;
    }
}
