/* Consolidated MyBooze Template CSS */
/* This file consolidates all inline styles from template files to prevent conflicts with critical CSS */

/* CSS Variables - Template Settings */
:root {
    --primary-color: #FF6B35;
    --secondary-color: #67001b;
    --primary-hover: #e55a2b;
    --secondary-hover: #4d0014;
    --accent-color: #ff9f1a;
    --accent-hover: #e68900;
    --text-primary: #333333;
    --text-secondary: #6c757d;
    --text-light: #ffffff;
    --border-color: #e0e0e0;
    --background-color: #ffffff;
    --background-light: #f8f9fa;
    --success-color: #28a745;
    --success-hover: #218838;
    --danger-color: #dc3545;
    --danger-hover: #c82333;
}

/* Essential Bootstrap Flexbox Utilities - Added to fix centering issues */
.d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.justify-content-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
}

.justify-content-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}

.justify-content-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.align-items-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
}

.align-items-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
}

/* Template dynamic variables will be injected inline for customization */

/* ================== INDEX PAGE STYLES ================== */

/* Mobile Responsive Styles */
@media (max-width: 767px) {
    .similar-header {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-direction: row !important;
    }
}

/* Carousel Image Optimization */
.carousel-hero-image {
    width: 100% !important;
    max-height: 700px !important;
    object-fit: cover !important;
}

@media (max-width: 768px) {
    .carousel-hero-image {
        max-height: 400px !important;
    }
}

/* ================== CAROUSEL STYLES ================== */

/* Bootstrap Carousel Base Styles - Fixed for proper hiding */
.carousel {
    position: relative !important;
    display: block !important;
}

.carousel-inner {
    position: relative !important;
    width: 100% !important;
    overflow: hidden !important;
    display: block !important;
    /* height: 300px !important; Reduced height from 400px to 300px */
}

.carousel-item {
    position: absolute !important; /* Changed from relative to absolute */
    top: 0 !important;
    left: 0 !important;
    display: none !important;
    width: 100% !important;
    height: 100% !important;
    transition: transform 0.6s ease-in-out !important;
}

.carousel-item.active {
    display: block !important;
    position: relative !important; /* Active item uses relative positioning */
}

.carousel-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* Ensure images fill the container properly */
    display: block !important;
}

/* Support for responsive image directive picture elements in carousel */
.carousel-item picture {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
}

.carousel-item picture img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

/* Carousel Transitions - Essential for sliding */
.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
    transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
    transform: translateX(-100%);
}

.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
    display: block;
}

/* REMOVED - Conflicting carousel indicators - using enhanced version below */

.carousel-indicators li {
    box-sizing: content-box !important;
    flex: 0 1 auto !important;
    width: 30px !important;
    height: 3px !important;
    margin-right: 3px !important;
    margin-left: 3px !important;
    text-indent: -999px !important;
    cursor: pointer !important;
    background-color: rgba(255, 255, 255, 0.5) !important;
    background-clip: padding-box !important;
    border: 0 !important;
    border-top: 10px solid transparent !important;
    border-bottom: 10px solid transparent !important;
    opacity: 0.5 !important;
    transition: opacity 0.6s ease !important;
    font-size: 0 !important; /* Hide any text content */
    overflow: hidden !important;
}

.carousel-indicators .active {
    opacity: 1 !important;
    background-color: rgba(255, 255, 255, 1) !important;
}

/* Alternative dot style indicators */
.carousel-indicators li {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    margin: 0 4px !important;
    background-color: rgba(255, 255, 255, 0.4) !important;
    border-top: none !important;
    border-bottom: none !important;
}

/* Force hide any text/numbers in indicators */
.carousel-indicators li,
.carousel-indicators li * {
    color: transparent !important;
    font-size: 0 !important;
    line-height: 0 !important;
    text-indent: -9999px !important;
    overflow: hidden !important;
}

/* Remove any before/after content that might show numbers */
.carousel-indicators li:before,
.carousel-indicators li:after {
    content: none !important;
    display: none !important;
}

/* Override any counter or numbering styles */
.carousel-indicators {
    counter-reset: none !important;
}

.carousel-indicators li {
    counter-increment: none !important;
}

/* Responsive indicator sizing */
@media (max-width: 768px) {
    .carousel-indicators li {
        width: 10px !important;
        height: 10px !important;
        margin: 0 3px !important;
    }
}

@media (max-width: 480px) {
    .carousel-indicators li {
        width: 8px !important;
        height: 8px !important;
        margin: 0 2px !important;
    }
}

/* Force hide non-active carousel items */
.carousel-item:not(.active) {
    display: none !important;
    visibility: hidden !important;
}

/* Ensure carousel container doesn't expand */
.carousel .carousel-inner {
    /* max-height: 300px !important; Updated to match new height */
}

/* Carousel Control Positioning - Fixed */
.carousel-control-prev,
.carousel-control-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 45px !important;
    height: 45px !important;
    background-color: rgba(0, 0, 0, 0.5) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10 !important;
    border: none !important;
    cursor: pointer !important;
}

.carousel-control-prev {
    left: 15px !important;
}

.carousel-control-next {
    right: 15px !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px !important;
    height: 20px !important;
    background-size: 100% 100% !important;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(0, 0, 0, 0.7) !important;
    opacity: 1 !important;
}

/* Override any flex or inline display that might be causing linear layout */
.carousel-item,
.carousel-item * {
    box-sizing: border-box !important;
}

/* Responsive Carousel Heights */
@media (max-width: 768px) {
    .carousel-inner {
        height: 250px !important;
    }
    
    .carousel .carousel-inner {
        max-height: 250px !important;
    }
}

@media (max-width: 480px) {
    .carousel-inner {
        height: 200px !important;
    }
    
    .carousel .carousel-inner {
        max-height: 200px !important;
    }
}

/* REMOVED - Conflicting carousel indicators styles moved to enhanced section */

.carousel-indicators li {
    box-sizing: content-box !important;
    flex: 0 1 auto;
    width: 30px !important;
    height: 3px !important;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer !important;
    background-color: rgba(255,255,255,0.5) !important;
    background-clip: padding-box;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 0.5 !important;
    transition: opacity 0.6s ease;
    border: 0 !important;
    border-radius: 10px !important;
}

.carousel-indicators .active {
    opacity: 1 !important;
    background-color: #fff !important;
}

.carousel-indicators li:hover {
    opacity: 0.8 !important;
}

/* Enhanced Carousel Orange Theme Integration */

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='m5.25 0-.75.75L2.25 3h5.75v1H2.25l2.25 2.25.75.75L1.5 4l3.75-4z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='m2.75 0 .75.75L5.75 3H0v1h5.75L3.5 6.25l-.75.75L6.5 4 2.75 0z'/%3e%3c/svg%3e");
}

/* Carousel Caption */
.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
}

/* ================== IMAGE MODAL STYLES ================== */

/* Enhanced Image Modal for Product Gallery */
.image-modal {
    position: fixed !important;
    z-index: 10000 !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(5px) !important;
    display: none !important;
    animation: fadeIn 0.3s ease-in-out !important;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.image-modal.show {
    display: block !important;
}

.image-modal-content {
    position: relative;
    margin: 2% auto;
    width: 95%;
    max-width: 1200px;
    height: 90%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.image-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.image-modal-header h3 {
    margin: 0;
    color: #333;
    font-weight: 600;
}

.image-modal-close {
    color: #666;
    float: right;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.image-modal-close:hover {
    color: var(--primary-color);
}

.image-modal-body {
    height: calc(100% - 80px);
    display: flex;
    flex-direction: column;
}

.modal-image-container {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    overflow: hidden;
}

.modal-main-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-nav-btn:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.modal-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.modal-nav-btn.prev-btn {
    left: 20px;
}

.modal-nav-btn.next-btn {
    right: 20px;
}

.modal-image-info {
    text-align: center;
    padding: 15px;
    background: white;
    border-top: 1px solid #e9ecef;
    color: #666;
    font-weight: 500;
}

.modal-thumbnail-strip {
    display: flex;
    gap: 10px;
    padding: 15px 25px;
    background: white;
    overflow-x: auto;
    border-top: 1px solid #e9ecef;
    min-height: 90px;
}

.modal-thumbnail {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.modal-thumbnail:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.modal-thumbnail.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 1px var(--primary-color);
}

.modal-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile Responsiveness for Image Modal */
@media (max-width: 768px) {
    .image-modal-content {
        margin: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .modal-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 16px;
        padding: 10px;
    }

    .modal-nav-btn.prev-btn {
        left: 10px;
    }

    .modal-nav-btn.next-btn {
        right: 10px;
    }

    .modal-thumbnail-strip {
        padding: 10px 15px;
        gap: 8px;
    }

    .modal-thumbnail {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .image-modal-header {
        padding: 15px 20px;
    }

    .image-modal-header h3 {
        font-size: 18px;
    }

    .image-modal-close {
        font-size: 28px;
    }

    .modal-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }

    .modal-thumbnail-strip {
        padding: 8px 12px;
        gap: 6px;
    }

    .modal-thumbnail {
        width: 45px;
        height: 45px;
    }
}

/* Product Page Specific Carousel Styles */
.product-section#details .carousel-item img {
    object-fit: contain !important;
    cursor: pointer !important;
}

/* Clickable product images */
.single-product-page-fit-image {
    cursor: pointer !important;
    transition: transform 0.2s ease !important;
}

.single-product-page-fit-image:hover {
    transform: scale(1.02) !important;
}

/* Product Card Carousel Styles */
.product-container .carousel {
    border-radius: 8px;
    overflow: hidden;
}

.product-container .carousel-indicators {
    margin-bottom: 0.5rem;
}

.product-container .carousel-indicators li {
    width: 20px;
    height: 2px;
    margin-right: 2px;
    margin-left: 2px;
}

.product-container .carousel-control-prev,
.product-container .carousel-control-next {
    width: 10%;
    opacity: 0.3;
}

.product-container .carousel-control-prev:hover,
.product-container .carousel-control-next:hover {
    opacity: 0.8;
}

.product-container .carousel-control-prev-icon,
.product-container .carousel-control-next-icon {
    width: 15px;
    height: 15px;
}

/* Mobile Carousel Responsive Styles */
@media (max-width: 768px) {
    .product-section#details .single-product-page-fit-image,
    .product-section#details #productCarousel,
    .product-section#details .carousel-inner,
    .product-section#details .carousel-item {
        width: 100% !important;
        max-width: 100% !important;
    }

    .product-section#details .carousel {
        width: 100% !important;
        margin: 0 !important;
    }

    .product-section#details .carousel-inner {
        border-radius: 8px;
        overflow: hidden;
    }
    
    .single-product-page-fit-image {
        border-radius: 8px;
        margin-bottom: 15px;
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* Enhanced Carousel Orange Theme Integration */
.carousel {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

/* Enhanced Carousel Controls with Orange Theme from custom-default.css */
.carousel-control-prev,
.carousel-control-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 45px !important;
    height: 45px !important;
    background-color: rgba(0, 0, 0, 0.3) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 15 !important;
    border: none !important;
    cursor: pointer !important;
    opacity: 1 !important;
}

.carousel-control-prev {
    left: 20px !important;
}

.carousel-control-next {
    right: 20px !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #FF6B35 !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    border: 2px solid rgba(255,255,255,0.8) !important;
    transition: all 0.3s ease !important;
    background-size: 50% 50% !important;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(0, 0, 0, 0.5) !important;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: #e55a2b !important;
    border-color: rgba(255,255,255,1) !important;
    transform: scale(1.1) !important;
}

/* Fixed Carousel Indicators - Override ALL conflicting styles */
#carouselExampleIndicators .carousel-indicators,
.carousel .carousel-indicators {
    position: absolute !important;
    bottom: 20px !important;
    left: 50% !important;
    right: auto !important;
    top: auto !important;
    transform: translateX(-50%) !important;
    z-index: 20 !important;
    display: flex !important;
    justify-content: center !important;
    padding-left: 0 !important;
    margin: 0 !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    margin-bottom: 0 !important;
    list-style: none !important;
    width: auto !important;
}

#carouselExampleIndicators .carousel-indicators li,
.carousel .carousel-indicators li {
    width: 14px !important;
    height: 14px !important;
    border-radius: 50% !important;
    background-color: rgba(255,255,255,0.8) !important;
    border: 2px solid #007bff !important;
    margin: 0 6px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    text-indent: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    font-size: 0 !important;
    overflow: visible !important;
    box-sizing: border-box !important;
    flex: none !important;
    border-top: 2px solid #007bff !important;
    border-bottom: 2px solid #007bff !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3) !important;
}

#carouselExampleIndicators .carousel-indicators .active,
.carousel .carousel-indicators .active {
    background-color: #007bff !important;
    transform: scale(1.3) !important;
    border-color: #007bff !important;
    opacity: 1 !important;
    box-shadow: 0 3px 12px rgba(0,123,255,0.5) !important;
}

/* Override any hiding styles for indicators */
.carousel-indicators li:before,
.carousel-indicators li:after {
    content: none !important;
    display: none !important;
}

.carousel-indicators li,
.carousel-indicators li * {
    color: transparent !important;
    font-size: 0 !important;
    line-height: 0 !important;
    text-indent: 0 !important;
    overflow: visible !important;
}

/* Carousel Caption Enhancements */
.carousel-caption {
    background: linear-gradient(transparent, rgba(0,0,0,0.7)) !important;
    border-radius: 8px !important;
    padding: 20px !important;
    bottom: 0 !important;
    left: 0% !important;
    right: 0% !important;
}

.carousel-caption h5 {
    color: #ffffff !important;
    font-weight: 600 !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5) !important;
    margin-bottom: 0 !important;
}

/* Responsive Enhancements for Orange Theme */
@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px !important;
        height: 40px !important;
    }
    
    .carousel-control-prev {
        left: 15px !important;
    }
    
    .carousel-control-next {
        right: 15px !important;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 35px !important;
        height: 35px !important;
    }
    
    .carousel-indicators {
        bottom: 15px !important;
    }
    
    .carousel-indicators li {
        width: 10px !important;
        height: 10px !important;
        margin: 0 4px !important;
    }
    
    .carousel-caption {
        bottom: 10px !important;
        left: 2% !important;
        right: 2% !important;
        padding: 15px !important;
    }
    
    .carousel-caption h5 {
        font-size: 1rem !important;
    }
}

@media (max-width: 576px) {
    .carousel-control-prev,
    .carousel-control-next {
        width: 35px !important;
        height: 35px !important;
    }
    
    .carousel-control-prev {
        left: 10px !important;
    }
    
    .carousel-control-next {
        right: 10px !important;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 30px !important;
        height: 30px !important;
    }
    
    .carousel-indicators {
        bottom: 10px !important;
    }
    
    .carousel-indicators li {
        width: 8px !important;
        height: 8px !important;
        margin: 0 3px !important;
    }
}

/* ================== SINGLE PRODUCT PAGE STYLES ================== */

.template-mybooze {
    font-family: 'Roboto', sans-serif;
}

.product-images {
    display: flex;
    gap: 20px;
}

.product-main-image {
    flex: 1;
}

.product-info {
    padding: 0; /* Remove default padding if needed */
}

.price {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
}

.attributes-table {
    margin: 20px 0;
}

.similar-products {
    margin-top: 40px;
}

.similar-product-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.trust-guarantee {
    font-size: 0.95rem;
    color: #444;
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    margin-top: 1rem;
    padding: 10px 15px;
    border-radius: 6px;
}

.buy-buttons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.buy-buttons .btn {
    flex: 1;
    min-width: 150px;
    padding: 14px;
    font-weight: bold;
    border: none;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
}

.btn-cart {
    background-color: var(--primary-color);
    color: white;
}

.btn-cart:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* ================== CART PAGE STYLES ================== */

/* Base styling */
table td,
.table th {
    vertical-align: middle !important;
}

/* Enhanced Checkout Progress Bar */
.checkout-progress-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    padding: 1rem;
    position: relative;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    margin: 0 15px;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: var(--background-light);
    color: var(--text-secondary);
    border: 2px solid var(--background-light);
    position: relative;
}

.step-circle.active {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2);
}

.step-circle.completed {
    background-color: var(--success-color);
    color: var(--text-light);
    border-color: var(--success-color);
}

.step-circle.completed::before {
    content: '✓';
    font-size: 18px;
    font-weight: bold;
}

.step-label {
    margin-top: 8px;
    font-size: 12px;
    text-align: center;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.progress-step.active .step-label {
    color: var(--primary-color);
    font-weight: 600;
}

.progress-step.completed .step-label {
    color: var(--success-color);
    font-weight: 600;
}

/* Progress line between steps */
.progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 55px;
    width: 60px;
    height: 2px;
    background-color: var(--border-color);
    transition: background-color 0.3s ease;
}

.progress-step.completed:not(:last-child)::after {
    background-color: var(--success-color);
}

/* Mobile Responsiveness for Progress Bar */
@media (max-width: 768px) {
    .checkout-progress-bar {
        margin: 1rem 0;
        padding: 0.5rem;
    }
    
    .progress-step {
        margin: 0 8px;
    }
    
    .step-circle {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .step-label {
        font-size: 10px;
        margin-top: 4px;
    }
    
    .progress-step:not(:last-child)::after {
        width: 40px;
        left: 40px;
        top: 16px;
    }
}

@media (max-width: 480px) {
    .progress-step {
        margin: 0 4px;
    }
    
    .step-label {
        display: none; /* Hide labels on very small screens to save space */
    }
    
    .progress-step:not(:last-child)::after {
        width: 20px;
        left: 36px;
    }
}

/* ================== COMMON TEMPLATE STYLES ================== */

/* Note: Footer styles have been moved to use the professional .s-footer design from custom-default.css */
/* The MyBooze template now uses the beautiful dark footer design with newsletter signup and social icons */
/* Original footer styles are preserved in /css/templates/default/consolidated.css for other templates */

/* Header width consistency */
.header-container,
.modern-header,
.header-wrapper {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box;
}

/* Consistent header styles */
header,
.header-container,
.modern-header,
.header-wrapper {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box;
}

/* Button consistent styling */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: var(--text-light);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    border-color: var(--secondary-hover);
    color: var(--text-light);
}

/* Loading states consistent */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Modal consistency */
.modal {
    z-index: 1050 !important;
}

.modal-backdrop {
    z-index: 1040 !important;
}

.modal.fade .modal-dialog {
    transform: translate(0, -50px) !important;
    transition: transform 0.3s ease-out !important;
}

.modal.show .modal-dialog {
    transform: translate(0, 0) !important;
}

/* ================== UTILITY CLASSES ================== */

/* Full width utility */
.full-width {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Content container utility */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Responsive text utilities */
@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
    
    .show-mobile {
        display: block !important;
    }
}

@media (min-width: 769px) {
    .hide-desktop {
        display: none !important;
    }
    
    .show-desktop {
        display: block !important;
    }
}

/* Animation utilities */
.fade-in {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
