.footer-middle {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
}
.text-right{
    text-align: right;
}
/*.pt-90 {*/
/*    padding-top: 90px !important;*/
/*}*/
.my-account__address-list {
    display: flex;
    gap: 1.625rem;
}

.form-floating>.form-control,
.form-floating>.form-select {
    height: 48px;
}
body {
    background-color: #f2f2f2 !important;
    background-image: none !important;
}

/* Logo styling moved to global layout for consistency */

/* Header and logo styling moved to global layout for consistency */


/* Reset default margins and paddings for parent containers */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Parent container to center content */
.trakkiez-main-banner-section {
    width: 100%;
    margin: 0;
    padding: 0;
}

.trakkiez-banner-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center children horizontally */
}

/* Banner Slider */
.banner-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; /* Maintain 1280x720 aspect ratio */
    overflow: hidden;
}

/* Enforce 720px height and full width for desktop/laptop */
@media screen and (min-width: 1025px) {
    .banner-slider {
        height: 720px;
        max-width: none; /* Remove max-width constraint */
        margin: 0; /* Remove centering */
    }
}

/* Responsive height for smaller screens */
@media screen and (max-width: 1024px) {
    .banner-slider {
        height: auto; /* Let aspect-ratio control height */
        max-width: 100%; /* Full width on mobile, as already set */
    }
}

.banner-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    transform: scale(1.1);
}

.banner-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.trakkiez-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Maintain aspect ratio */
    display: block;
}

/* Static Content Box Below Banner */
.static-content-box {
    width: 100%;
    max-width: 1280px; /* Match banner width */
    margin: 20px auto; /* Center horizontally */
    padding: 30px;
    background: #f8f8f8; /* Light background for elegance */
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Explicitly center in laptop view */
@media screen and (min-width: 1025px) {
    .static-content-box {
        margin-left: auto;
        margin-right: auto;
        padding-left: 30px;
        padding-right: 30px;
    }
}

.static-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.static-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

.static-button {
    background: #000000;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.static-button:hover {
    background: #333333;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #ffcc00; /* Golden active dot */
    transform: scale(1.2);
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .static-content-box {
        padding: 20px;
        margin: 15px auto;
    }

    .static-title {
        font-size: 1.8rem;
    }

    .static-subtitle {
        font-size: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .banner-slider {
        max-width: 100%; /* Full width on mobile */
    }

    .static-content-box {
        padding: 15px;
        margin: 10px auto;
        margin-top: 30px;
    }

    .static-title {
        font-size: 1.5rem;
    }

    .static-subtitle {
        font-size: 0.9rem;
    }

    .static-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .slider-dots {
        bottom: 10px;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
    }
}
.mb-4 {
    margin-bottom: 1.5rem !important;
    margin-top:1rem;
}
@media (max-width: 768px) {
.qty-control__increase {
    padding-right: 1rem;
    margin-top: -0.8rem;
}
.qty-control__reduce {
    padding-left: 1.25rem;
     margin-top: -0.8rem;
}
}
@media (max-width: 575.98px) {
    .product-single__details-tab > .nav-tabs .nav-link {
        width: max-content;
        margin-top: -8rem;
        margin-left: -1rem;
    }
}
@media (max-width: 768px) {
.checkout-form .billing-info__wrapper .form-floating > label,
.checkout-form .billing-info__wrapper .form-label-fixed > 
.form-label {
    color: #767676;
}
}
#cartModal .modal-body {
    padding: 20px;
}
#cartModal .cart-table th, #cartModal .cart-table td {
    vertical-align: middle;
}
#cartModal .cart-qty-increase, #cartModal .cart-qty-reduce {
    cursor: pointer;
    background: #000000;
    border: none;
    margin-right: 7px;
    margin-left: 6px;
    margin-top:3px;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#cartModal .cart-qty-increase:hover, #cartModal .cart-qty-reduce:hover {
    background: #333333;
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
#cartModal .cart-remove-item {
    padding: 6px 12px;
    margin-top: 100px;
    margin-left: -5rem;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(220, 53, 69, 0.2);
}

#cartModal .cart-remove-item:hover {
    background: #c82333;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(220, 53, 69, 0.3);
}
@media (max-width: 576px) {
    #cartModal .cart-table {
        font-size: 0.85rem;
    }
    #cartModal .cart-table img {
        width: 60px;
        height: 60px;
    }
    #cartModal .modal-footer {
        flex-direction: column;
        gap: 10px;
    }
    #cartModal .modal-footer .btn {
        width: 100%;
    }
}
.checkout-form .billing-info__wrapper .form-floating > label, .checkout-form .billing-info__wrapper .form-label-fixed > .form-label {
    color: #767676;
    margin-bottom: -10rem !important;
}
.qty-control__reduce, .qty-control__increase {
    position: absolute;
    top: 0;
    width: .75rem;
    padding: 0;
    cursor: pointer;
    user-select: none;
    -ms-user-select: none;
    background: none !important;
}
.product-single__addtocart .qty-control__increase {
    padding-right: 1.25rem;
    margin-top: .4px;
    margin-right: 5px;
}
.product-single__addtocart .qty-control__reduce {
    padding-left: 1.25rem;
    margin-top: .4px;
    margin-right:5px;
}
.loading {
    opacity: 0.5;
    cursor: not-allowed;
    position: relative;
}
.loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
#cartModal .cart-qty-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
}

#cartModal .cart-qty-reduce,
#cartModal .cart-qty-increase {
    cursor: pointer;
    background: #000000;
    border: none;
    padding: 0;
    font-size: 16px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#cartModal .cart-qty-reduce:hover,
#cartModal .cart-qty-increase:hover {
    background: #333333;
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

#cartModal .cart-qty-input {
    width: 36px;
    height: 30px;
    text-align: center;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    font-size: 16px;
    padding: 0;
    font-weight: 600;
    transition: all 0.3s ease;
}

#cartModal .cart-qty-input:focus {
    border-color: #000000;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
    outline: none;
}

/* Optional responsiveness for mobile screens */
@media (max-width: 480px) {
    #cartModal .cart-qty-reduce,
    #cartModal .cart-qty-increase,
    #cartModal .cart-qty-input {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    #cartModal .cart-qty-input {
        width: 32px;
    }
}

