/* Single Product Page Styles */

[v-cloak] {
    display: none;
}

/* Product Trust Image Styles */
.product-trust-section {
    background-color: #f8f9fa;
    padding: 40px 0;
}

.product-trust-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.product-trust-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-trust-image:hover {
    transform: translateY(-2px);
}

/* Emission info styling */
.emission-info {
    background-color: #f8f9fa;
    padding: 10px 15px;
    border-radius: 6px;
    border-left: 3px solid #28a745;
    font-size: 14px !important;
    color: #666 !important;
    margin-bottom: 15px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.emission-info img {
    width: 16px !important;
    height: 16px !important;
    object-fit: contain !important;
}

.emission-info span {
    font-size: 14px !important;
    color: #666 !important;
    line-height: 1.4;
}

/* Tax info styling */
.tax-info {
    font-size: 12px !important;
    color: #666 !important;
    margin-bottom: 20px !important;
    font-style: italic;
}

/* Improved Discount Badge Styling */
.offer-badge {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    height: 40px;
    line-height: 34px;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-left: 10px;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.offer-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.offer-badge:hover::before {
    left: 100%;
}

.offer-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
}

/* Product Configuration Styling - Simplified */
.product-configuration {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.product-configuration h4 {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.attribute-groups {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.attribute-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 15px;
}

.attribute-label {
    font-weight: 500;
    color: #333;
    font-size: 14px;
    margin: 0;
    margin-bottom: 5px;
}

.attribute-options {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    width: auto;
}

/* Simplified Variation Buttons */
.attribute-option {
    padding: 8px 16px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #fff;
    font-size: 13px;
    min-width: 70px;
    text-align: center;
    color: #495057;
    font-weight: 500;
    position: relative;
}

.attribute-option:hover:not(.disabled) {
    border-color: #dc3545;
    background: #fff5f5;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(220, 53, 69, 0.1);
}

.attribute-option.selected {
    border-color: #dc3545;
    background-color: #fff5f5;
    color: #dc3545;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(220, 53, 69, 0.3);
}

.attribute-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f8f9fa;
    color: #adb5bd;
    border-color: #dee2e6;
}

.attribute-option.disabled:hover {
    transform: none;
    box-shadow: none;
}

.option-value {
    font-weight: 500;
}

.option-price {
    font-size: 12px;
    margin-top: 2px;
    opacity: 0.8;
}

/* Selected Combination Display */
.selected-combination {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #dc3545;
    border-radius: 6px;
    background: #fff5f5;
}

.combination-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.combination-label {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.combination-details {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.combination-item {
    background: #dc3545;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.combination-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.current-price {
    font-size: 22px;
    font-weight: 700;
    color: #dc3545;
}

.old-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}
.old-price span {
    text-decoration: inherit;
}

.discount-badge {
    background: #dc3545;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
}

/* Variation Cards Styling */
.variation-cards {
    margin-top: 20px;
}

.variation-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.variation-card {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    text-align: center;
}

.variation-card:hover:not(.disabled) {
    border-color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
}

.variation-card.selected {
    border-color: #007bff;
    background: #f8f9ff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
}

.variation-card.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f5f5f5;
}

.variation-card.disabled:hover {
    transform: none;
    box-shadow: none;
}

.variation-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.variation-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.variation-price .current-price {
    font-size: 16px;
    font-weight: 700;
    color: #dc3545;
}

.variation-price .old-price {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
}

.variation-stock {
    margin-top: 8px;
}

.out-of-stock {
    color: #dc3545;
    font-size: 12px;
    font-weight: 500;
}

/* Simple Product Gallery Styling */
.simple-product-gallery {
    position: relative;
}

.main-image-container {
    position: relative;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
}

#main-product-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

#main-product-image:hover {
    transform: scale(1.02);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.gallery-nav:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev-btn {
    left: 15px;
}

.gallery-nav.next-btn {
    right: 15px;
}

.gallery-nav i {
    font-size: 16px;
    color: #333;
}

.gallery-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.gallery-nav:disabled:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-50%);
}

.thumbnail-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.thumbnail-item {
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.thumbnail-item:hover {
    border-color: #dc3545;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.thumbnail-item.active {
    border-color: #dc3545;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.3);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail-item:hover img {
    transform: scale(1.1);
}

/* Lightbox Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
}

#lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 10000;
}

.lightbox-nav:hover {
    background: white;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.prev-lightbox {
    left: 30px;
}

.lightbox-nav.next-lightbox {
    right: 30px;
}

.lightbox-nav i {
    font-size: 20px;
    color: #333;
}

.lightbox-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.lightbox-nav:disabled:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%);
}

/* Fallback Variation List Styling */
.simple-variations {
    margin-top: 15px;
}

.simple-variations h4 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.variation-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.variation-item {
    padding: 8px 16px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #fff;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 120px;
}

.variation-item:hover {
    border-color: #667eea;
    box-shadow: 0 2px 4px rgba(102, 126, 234, 0.1);
}

.variation-item.selected {
    border-color: #dc3545;
    background-color: #dc3545;
    color: white;
}

.variation-item .variation-name {
    font-weight: 500;
}

.variation-item .variation-price {
    font-weight: 600;
    color: inherit;
}

/* Price amount margin override */
.single-product-content .inner .price-amount.price-offer-amount {
    margin-bottom: 0px !important;
}

/* Specific offer badge override for single product page */
.single-product-content .inner .price-amount.price-offer-amount .offer-badge {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    height: 40px;
    line-height: 34px;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-left: 10px;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.single-product-content .inner .price-amount.price-offer-amount .offer-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.single-product-content .inner .price-amount.price-offer-amount .offer-badge:hover::before {
    left: 100%;
}

.single-product-content .inner .price-amount.price-offer-amount .offer-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
}

/* Related Products Styling - Match Home Page Design */
.axil-related-product-area {
    padding: 60px 0;
    background: #fff;
}

.axil-related-product-area .section-title-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.axil-related-product-area .title-highlighter {
    background: #dc3545;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.axil-related-product-area .title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

/* Related Products will use the universal styling from app.css */
/* This ensures consistency with home page product cards */

/* Shop Sidebar Title After Element - Theme Color Red */
.axil-shop-sidebar .title::after {
    background: #dc3545 !important;
}

/* Stock Status Indicator */
.stock-status {
    display: flex;
    align-items: center;
}

.stock-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid;
    transition: all 0.3s ease;
}

.stock-indicator.text-danger {
    border-color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.stock-indicator.text-success {
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.stock-indicator i {
    font-size: 16px;
}

/* Responsive styles for mobile */
@media (max-width: 768px) {
    .product-trust-section {
        padding: 30px 0;
    }

    .product-trust-wrapper {
        max-width: 100%;
    }

    .attribute-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 15px;
    }

    .attribute-label {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .attribute-options {
        gap: 6px;
        width: 100%;
    }

    .attribute-option {
        padding: 6px 12px;
        font-size: 12px;
        min-width: 60px;
    }
    
    .selected-combination {
        padding: 12px;
    }
    
    .combination-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .combination-price .current-price {
        font-size: 14px;
    }

    .gallery-nav {
        width: 35px;
        height: 35px;
    }

    .gallery-nav i {
        font-size: 14px;
    }

    .thumbnail-item {
        width: 60px;
        height: 60px;
    }

    .thumbnail-container {
        gap: 8px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-nav i {
        font-size: 16px;
    }

    .lightbox-nav.prev-lightbox {
        left: 15px;
    }

    .lightbox-nav.next-lightbox {
        right: 15px;
    }

    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
    
    /* Related Products Mobile */
    .axil-related-product-area {
        padding: 40px 0;
    }
    
    .axil-related-product-area .title {
        font-size: 24px;
    }
    
    .axil-product.product-style-one .thumbnail img {
        height: 200px;
    }
    
    .axil-product.product-style-one .product-content {
        padding: 15px;
    }
    
    .axil-product.product-style-one .product-content .title {
        font-size: 14px;
    }
    
    .axil-product.product-style-one .product-price-variant .current-price {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .attribute-group {
        gap: 6px;
        margin-bottom: 12px;
    }

    .attribute-label {
        font-size: 12px;
    }

    .attribute-options {
        gap: 4px;
    }

    .attribute-option {
        padding: 5px 10px;
        font-size: 11px;
        min-width: 50px;
    }
    
    .selected-combination {
        padding: 10px;
    }
    
    .combination-item {
        font-size: 11px;
        padding: 3px 6px;
    }

    .gallery-nav {
        width: 30px;
        height: 30px;
    }

    .gallery-nav i {
        font-size: 12px;
    }

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

    .thumbnail-container {
        gap: 6px;
    }

    .lightbox-nav {
        width: 35px;
        height: 35px;
    }

    .lightbox-nav i {
        font-size: 14px;
    }

    .lightbox-nav.prev-lightbox {
        left: 10px;
    }

    .lightbox-nav.next-lightbox {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 25px;
        width: 35px;
        height: 35px;
    }
    
    /* Related Products Small Mobile */
    .axil-related-product-area {
        padding: 30px 0;
    }
    
    .axil-related-product-area .title {
        font-size: 20px;
    }
    
    .axil-product.product-style-one .thumbnail img {
        height: 180px;
    }
    
    .axil-product.product-style-one .product-content {
        padding: 12px;
    }
    
    .axil-product.product-style-one .product-content .title {
        font-size: 13px;
    }

    .axil-product.product-style-one .product-price-variant .current-price {
        font-size: 14px;
    }

    .axil-product.product-style-one .cart-action {
        flex-direction: column;
        gap: 8px;
    }
    
    /* Even smaller quantity selector on very small screens */
    .pro-qty {
        width: 70px;
        border-radius: 3px;
    }
    
    .pro-qty .qtybtn {
        width: 24px;
        height: 22px;
        font-size: 10px;
    }
    
    .pro-qty .quantity-input {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }
} 

/* Improved Product Action Buttons */
.product-action-wrapper {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 25px;
}

.product-action-wrapper .product-action {
    flex: 1;
}

.product-action-wrapper .product-action .add-to-cart {
    width: 100%;
}

/* Enhanced Add to Cart Button */
.product-action-wrapper .product-action .add-to-cart .axil-btn,
.product-action-wrapper .product-action .add-to-cart a.axil-btn.btn-bg-primary,
.product-action-wrapper .product-action .add-to-cart button.axil-btn.btn-bg-primary {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
}

.product-action-wrapper .product-action .add-to-cart .axil-btn:before,
.product-action-wrapper .product-action .add-to-cart a.axil-btn.btn-bg-primary:before,
.product-action-wrapper .product-action .add-to-cart button.axil-btn.btn-bg-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.product-action-wrapper .product-action .add-to-cart .axil-btn:hover,
.product-action-wrapper .product-action .add-to-cart a.axil-btn.btn-bg-primary:hover,
.product-action-wrapper .product-action .add-to-cart button.axil-btn.btn-bg-primary:hover {
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
}

.product-action-wrapper .product-action .add-to-cart .axil-btn:hover:before,
.product-action-wrapper .product-action .add-to-cart a.axil-btn.btn-bg-primary:hover:before,
.product-action-wrapper .product-action .add-to-cart button.axil-btn.btn-bg-primary:hover:before {
    left: 100%;
}

.product-action-wrapper .product-action .add-to-cart .axil-btn:active,
.product-action-wrapper .product-action .add-to-cart a.axil-btn.btn-bg-primary:active,
.product-action-wrapper .product-action .add-to-cart button.axil-btn.btn-bg-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.product-action-wrapper .product-action .add-to-cart .axil-btn i,
.product-action-wrapper .product-action .add-to-cart a.axil-btn.btn-bg-primary i,
.product-action-wrapper .product-action .add-to-cart button.axil-btn.btn-bg-primary i {
    font-size: 18px;
    color: white;
    margin: 0;
    transition: transform 0.3s ease;
}

.product-action-wrapper .product-action .add-to-cart .axil-btn:hover i,
.product-action-wrapper .product-action .add-to-cart a.axil-btn.btn-bg-primary:hover i,
.product-action-wrapper .product-action .add-to-cart button.axil-btn.btn-bg-primary:hover i {
    transform: scale(1.1);
}

/* Enhanced Buy Now Button */
.product-action-wrapper .product-action .buy-now .axil-btn,
.product-action-wrapper .product-action button.axil-btn.btn-bg-secondary {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
}

.product-action-wrapper .product-action .buy-now .axil-btn:before,
.product-action-wrapper .product-action button.axil-btn.btn-bg-secondary:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.product-action-wrapper .product-action .buy-now .axil-btn:hover,
.product-action-wrapper .product-action button.axil-btn.btn-bg-secondary:hover {
    background: linear-gradient(135deg, #20c997 0%, #17a2b8 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.product-action-wrapper .product-action .buy-now .axil-btn:hover:before,
.product-action-wrapper .product-action button.axil-btn.btn-bg-secondary:hover:before {
    left: 100%;
}

.product-action-wrapper .product-action .buy-now .axil-btn:active,
.product-action-wrapper .product-action button.axil-btn.btn-bg-secondary:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.product-action-wrapper .product-action .buy-now .axil-btn:disabled,
.product-action-wrapper .product-action button.axil-btn.btn-bg-secondary:disabled {
    background: #6c757d !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
    opacity: 0.6 !important;
}

.product-action-wrapper .product-action .buy-now .axil-btn:disabled:hover,
.product-action-wrapper .product-action button.axil-btn.btn-bg-secondary:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
    background: #6c757d !important;
}

/* Enhanced Wishlist Button */
.product-action-wrapper .product-action .wishlist-btn,
.product-action-wrapper .product-action a.axil-btn.wishlist-btn,
.product-action-wrapper .product-action button.axil-btn.wishlist-btn {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-action-wrapper .product-action .wishlist-btn:before,
.product-action-wrapper .product-action a.axil-btn.wishlist-btn:before,
.product-action-wrapper .product-action button.axil-btn.wishlist-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: all 0.3s ease;
    z-index: 1;
}

.product-action-wrapper .product-action .wishlist-btn:hover,
.product-action-wrapper .product-action a.axil-btn.wishlist-btn:hover,
.product-action-wrapper .product-action button.axil-btn.wishlist-btn:hover {
    border-color: #dc3545;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.2);
}

.product-action-wrapper .product-action .wishlist-btn:hover:before,
.product-action-wrapper .product-action a.axil-btn.wishlist-btn:hover:before,
.product-action-wrapper .product-action button.axil-btn.wishlist-btn:hover:before {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.product-action-wrapper .product-action .wishlist-btn i,
.product-action-wrapper .product-action a.axil-btn.wishlist-btn i,
.product-action-wrapper .product-action button.axil-btn.wishlist-btn i {
    font-size: 18px;
    color: #6c757d;
    margin: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.product-action-wrapper .product-action .wishlist-btn:hover i,
.product-action-wrapper .product-action a.axil-btn.wishlist-btn:hover i,
.product-action-wrapper .product-action button.axil-btn.wishlist-btn:hover i {
    color: white;
    transform: scale(1.1);
}

/* Active/Selected Wishlist Button */
.product-action-wrapper .product-action .wishlist-btn.active,
.product-action-wrapper .product-action a.axil-btn.wishlist-btn.active,
.product-action-wrapper .product-action button.axil-btn.wishlist-btn.active {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-color: #dc3545;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.product-action-wrapper .product-action .wishlist-btn.active i,
.product-action-wrapper .product-action a.axil-btn.wishlist-btn.active i,
.product-action-wrapper .product-action button.axil-btn.wishlist-btn.active i {
    color: white;
}

/* Disabled Button States */
.product-action-wrapper .product-action .add-to-cart .axil-btn:disabled,
.product-action-wrapper .product-action .add-to-cart a.axil-btn.btn-bg-primary:disabled,
.product-action-wrapper .product-action .add-to-cart button.axil-btn.btn-bg-primary:disabled {
    background: #6c757d !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
    opacity: 0.6 !important;
}

.product-action-wrapper .product-action .add-to-cart .axil-btn:disabled:hover,
.product-action-wrapper .product-action .add-to-cart a.axil-btn.btn-bg-primary:disabled:hover,
.product-action-wrapper .product-action .add-to-cart button.axil-btn.btn-bg-primary:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
    background: #6c757d !important;
}

/* Disabled class styling */
.product-action-wrapper .product-action .add-to-cart .axil-btn.disabled,
.product-action-wrapper .product-action .add-to-cart button.axil-btn.btn-bg-primary.disabled {
    background: #6c757d !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
    opacity: 0.6 !important;
    pointer-events: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-action-wrapper {
        flex-direction: column;
        gap: 12px;
        justify-content: flex-start;
        align-items: flex-start;
    }
    
    .product-action-wrapper .product-action .add-to-cart .axil-btn,
    .product-action-wrapper .product-action .add-to-cart a.axil-btn.btn-bg-primary,
    .product-action-wrapper .product-action .add-to-cart button.axil-btn.btn-bg-primary {
        padding: 12px 20px;
        font-size: 13px;
        min-height: 44px;
    }
    
    .product-action-wrapper .product-action .wishlist-btn,
    .product-action-wrapper .product-action a.axil-btn.wishlist-btn,
    .product-action-wrapper .product-action button.axil-btn.wishlist-btn {
        width: 44px;
        height: 44px;
        padding: 10px;
    }
    
    .product-action-wrapper .product-action .wishlist-btn i,
    .product-action-wrapper .product-action a.axil-btn.wishlist-btn i,
    .product-action-wrapper .product-action button.axil-btn.wishlist-btn i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .product-action-wrapper {
        justify-content: flex-start;
        align-items: flex-start;
    }
    
    .product-action-wrapper .product-action .add-to-cart .axil-btn,
    .product-action-wrapper .product-action .add-to-cart a.axil-btn.btn-bg-primary,
    .product-action-wrapper .product-action .add-to-cart button.axil-btn.btn-bg-primary {
        padding: 10px 18px;
        font-size: 12px;
        min-height: 40px;
    }
    
    .product-action-wrapper .product-action .wishlist-btn,
    .product-action-wrapper .product-action a.axil-btn.wishlist-btn,
    .product-action-wrapper .product-action button.axil-btn.wishlist-btn {
        width: 40px;
        height: 40px;
        padding: 8px;
    }
    
    .product-action-wrapper .product-action .wishlist-btn i,
    .product-action-wrapper .product-action a.axil-btn.wishlist-btn i,
    .product-action-wrapper .product-action button.axil-btn.wishlist-btn i {
        font-size: 14px;
    }
}

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

/* Cart Table Styling */
.axil-product-table {
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.axil-product-table thead th {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: none;
    padding: 16px 12px;
    font-weight: 600;
    color: #495057;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.axil-product-table tbody tr {
    border-bottom: 1px solid #f1f3f4;
    transition: background-color 0.2s ease;
}

.axil-product-table tbody tr:hover {
    background-color: #f8f9fa;
}

.axil-product-table tbody tr:last-child {
    border-bottom: none;
}

.axil-product-table tbody tr td {
    padding: 16px 12px;
    vertical-align: middle;
    border: none;
}

/* Remove Button Styling */
.axil-product-table tbody tr td.product-remove a {
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #6c757d;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.axil-product-table tbody tr td.product-remove a:hover {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* Product Title Styling */
.axil-product-table tbody tr td.product-title {
    min-width: 200px;
}

.axil-product-table tbody tr td.product-title .product-name {
    font-weight: 600;
    color: #212529;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.4;
    display: block;
    margin-bottom: 4px;
    transition: color 0.2s ease;
}

.axil-product-table tbody tr td.product-title .product-name:hover {
    color: #007bff;
}

.axil-product-table tbody tr td.product-title .variation-name {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
}

.axil-product-table tbody tr td.product-title .variation-name .variation-label {
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.axil-product-table tbody tr td.product-title .variation-name .variation-value {
    font-size: 13px;
    color: #495057;
    font-weight: 500;
    background: #f8f9fa;
    padding: 2px 8px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

/* Product Thumbnail Styling */
.axil-product-table tbody tr td.product-thumbnail a img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8e8e8;
}

/* Price Styling */
.axil-product-table tbody tr td.product-price {
    font-weight: 600;
    color: #212529;
    font-size: 16px;
}

.axil-product-table tbody tr td.product-price .currency-symbol {
    color: #6c757d;
    font-size: 14px;
    margin-right: 2px;
}

.axil-product-table tbody tr td.product-price .out-of-stock {
    color: #dc3545;
    font-size: 13px;
    font-weight: 500;
    background: #f8d7da;
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid #f5c6cb;
}

/* Subtotal Styling */
.axil-product-table tbody tr td.product-subtotal {
    font-weight: 700;
    color: #28a745;
    font-size: 16px;
}

.axil-product-table tbody tr td.product-subtotal .currency-symbol {
    color: #6c757d;
    font-size: 14px;
    margin-right: 2px;
}

/* Quantity Controls */
.pro-qty {
    display: flex;
    align-items: center;
    border-radius: 8px;
    width: 120px;
    background: #fff;
    border: none;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
}

.pro-qty:hover {
    border-color: transparent;
    box-shadow: none;
}

.pro-qty .qtybtn {
    width: 40px;
    height: 36px;
    text-align: center;
    cursor: pointer;
    user-select: none;
    background: #f8f9fa;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #495057;
    transition: all 0.3s ease;
    border: none;
    position: relative;
}

.pro-qty .qtybtn:hover:not(.disabled) {
    background: #007bff;
    color: #fff;
    transform: scale(1.05);
}

.pro-qty .qtybtn:active:not(.disabled) {
    transform: scale(0.95);
}

.pro-qty .qtybtn.disabled {
    background: #f1f3f4;
    color: #adb5bd;
    cursor: not-allowed;
    opacity: 0.6;
}

.pro-qty .quantity-input {
    width: 40px;
    height: 36px;
    text-align: center;
    border: none;
    background: #fff;
    font-size: 14px;
    font-weight: 700;
    color: #212529;
    -webkit-appearance: none;
    -moz-appearance: textfield;
    padding: 0 8px;
    min-width: 0;
    display: block;
    box-sizing: border-box;
}

.pro-qty .quantity-input:disabled {
    background: #f1f3f4;
    color: #adb5bd;
    cursor: not-allowed;
}

.pro-qty .quantity-input:focus {
    outline: none;
    border: none;
    background: #f8f9ff;
    color: #212529;
    box-shadow: inset 0 0 0 2px #007bff;
}

.pro-qty .quantity-input::-webkit-outer-spin-button,
.pro-qty .quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.pro-qty .quantity-input[type=number] {
    -moz-appearance: textfield;
}

/* Ensure quantity input text is always visible */
.pro-qty .quantity-input {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Quantity input styling for cart and product pages */
.cart-table .quantity-input,
.product-quantity .quantity-input {
    line-height: 30px;
    padding: 0px;
}

/* Cart Details Section */
.cart-details-section {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.cart-update-btn-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
}

.cart-update-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.cart-update-actions .axil-btn {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cart-update-actions .btn-bg-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
    border: none;
    color: #fff;
}

.cart-update-actions .btn-bg-secondary:hover:not(:disabled) {
    background: linear-gradient(135deg, #5a6268 0%, #495057 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

.cart-update-actions .btn-outline-danger {
    background: transparent;
    border: 2px solid #dc3545;
    color: #dc3545;
}

.cart-update-actions .btn-outline-danger:hover:not(:disabled) {
    background: #dc3545;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.cart-summary-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-items-count {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

/* Cart Container Styling */
.axil-product-cart-wrap {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
}

/* Order Summary Styling */
.axil-order-summery {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.axil-order-summery .title {
    font-size: 18px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summery-table {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.summery-table td {
    padding: 12px 16px;
    border: none;
    font-weight: 500;
}

.summery-table .order-total {
    background: #f8f9fa;
    font-weight: 700;
    color: #28a745;
    font-size: 16px;
}

.checkout-btn {
    width: 100%;
    padding: 14px 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

.checkout-btn:hover:not(.disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.checkout-btn.disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Responsive Design for Cart */
@media (max-width: 991px) {
    .cart-update-btn-area {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }
    
    .cart-update-actions {
        justify-content: center;
    }
    
    .cart-summary-info {
        justify-content: center;
    }
    
    .axil-order-summery {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .cart-update-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .cart-update-actions .axil-btn {
        width: 100%;
        justify-content: center;
    }
    
    .axil-product-cart-wrap {
        padding: 20px 15px;
    }
    
    .cart-details-section {
        padding: 20px 15px;
    }
    
    /* Smaller quantity selector on mobile */
    .pro-qty {
        width: 80px;
        border-radius: 4px;
    }
    
    .pro-qty .qtybtn {
        width: 26px;
        height: 24px;
        font-size: 11px;
    }
    
    .pro-qty .quantity-input {
        width: 28px;
        height: 24px;
        font-size: 11px;
    }
} 

/* Delivery Information Section Styles */
.delivery-info-section {
    background: #fff;
    padding: 4px;
    margin-top: 35px !important;
}

.delivery-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f3f4f6;
    position: relative;
}

.delivery-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: red;
    border-radius: 1px;
}

.delivery-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc3545 0%, #1d4ed8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.25);
    position: relative;
    overflow: hidden;
}

.delivery-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.delivery-info-section:hover .delivery-icon::before {
    left: 100%;
}

.delivery-title h5 {
    margin: 0;
    color: #111827;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.delivery-title p {
    margin: 8px 0 0;
    color: #6b7280;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
}

.delivery-form {
    margin-bottom: 32px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.delivery-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: red;
    border-radius: 18px 18px 0 0;
}

.delivery-form:hover {
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: #d1d5db;
}

.state-selection {
    margin-bottom: 0;
}

.state-selection .form-label {
    font-weight: 600;
    color: #111827;
    margin-bottom: 18px;
    display: block;
    font-size: 15px;
    text-transform: none;
    letter-spacing: 0.025em;
    position: relative;
}

.state-selection .form-label::after {
    content: '*';
    color: #ef4444;
    margin-left: 6px;
    font-weight: 700;
}

.state-selection .input-group {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 16px;
}

.state-selection .form-select {
    border: 2px solid #d1d5db;
    border-radius: 14px;
    padding: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3e%3c/path%3e%3c/svg%3e");
    background-position: right 20px center;
    background-repeat: no-repeat;
    background-size: 24px 24px;
    appearance: none;
    flex: 1;
    color: #374151;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.state-selection .form-select:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1), 0 4px 12px rgba(59, 130, 246, 0.15);
    outline: none;
    transform: translateY(-1px);
    background-color: #ffffff;
}

.state-selection .form-select:hover {
    border-color: #dc3545;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.15);
    background-color: #f8fafc;
}

.state-selection .btn {
    padding: 18px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #dc3545 0%, #1d4ed8 100%);
    border: none;
    color: white;
    text-transform: none;
    letter-spacing: 0.025em;
    min-width: 140px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.state-selection .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.state-selection .btn:hover::before {
    left: 100%;
}

.state-selection .btn:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
}

.state-selection .btn:active {
    transform: translateY(0);
}

/* Loading state for select */
.state-selection .form-select:disabled {
    background-color: #f1f5f9;
    color: #94a3b8;
    cursor: not-allowed;
    opacity: 0.7;
    border-color: #e2e8f0;
}

/* Custom select arrow styling */
.state-selection .form-select::-ms-expand {
    display: none;
}

.delivery-details {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delivery-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 20px;
}

.delivery-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.delivery-item:hover {
    background: white;
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.delivery-item i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    color: #6b7280;
    transition: all 0.3s ease;
}

.delivery-item:hover i {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Icon color variations */
.delivery-item i.text-primary {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white !important;
}

.delivery-item i.text-success {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white !important;
}

.delivery-item i.text-info {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white !important;
}

.delivery-item i.text-warning {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white !important;
}

.delivery-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.delivery-label {
    font-weight: 600;
    color: #374151;
    font-size: 13px;
    letter-spacing: 0.025em;
    line-height: 1.2;
}

.delivery-value {
    font-weight: 700;
    color: #111827;
    font-size: 14px;
    letter-spacing: 0.025em;
    line-height: 1.2;
}

.delivery-value.free-shipping .badge {
    font-size: 13px;
    padding: 8px 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 24px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
}

.delivery-value.free-shipping .badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.delivery-value.free-shipping .badge:hover::before {
    left: 100%;
}

.delivery-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    color: #6b7280;
    background: linear-gradient(145deg, #f9fafb 0%, #f3f4f6 100%);
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    margin: 20px 0;
}

.loading-spinner {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    font-weight: 500;
}

.loading-spinner i {
    font-size: 24px;
    color: red;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design for Delivery Section */
@media (max-width: 768px) {
    .delivery-info-section {
        padding: 4px;
        margin-top: 35px !important;
    }
    
    .delivery-header {
        gap: 16px;
        margin-bottom: 24px;
        padding-bottom: 16px;
    }
    
    .delivery-icon {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }
    
    .delivery-title h5 {
        font-size: 20px;
    }
    
    .delivery-title p {
        font-size: 14px;
    }
    
    .delivery-form {
        padding: 24px;
        margin-bottom: 28px;
        border-radius: 16px;
    }
    
    .delivery-form::before {
        border-radius: 16px 16px 0 0;
    }
    
    .state-selection .form-label {
        font-size: 15px;
        margin-bottom: 16px;
    }
    
    .state-selection .input-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .state-selection .form-select {
        padding: 16px 20px;
        font-size: 15px;
        border-radius: 12px;
    }
    
    .state-selection .btn {
        padding: 16px 24px;
        font-size: 15px;
        min-width: auto;
        width: 100%;
        border-radius: 12px;
    }
    
    .delivery-card {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 16px;
    }
    
    .delivery-item {
        padding: 14px;
        gap: 10px;
    }
    
    .delivery-item i {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .delivery-label {
        font-size: 12px;
    }
    
    .delivery-value {
        font-size: 13px;
    }
    
    .delivery-loading {
        padding: 32px 16px;
        border-radius: 14px;
    }
    
    .loading-spinner {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .delivery-info-section {
        padding: 4px;
        margin-top: 35px !important;
    }
    
    .delivery-header {
        gap: 12px;
        margin-bottom: 20px;
        padding-bottom: 14px;
    }
    
    .delivery-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .delivery-title h5 {
        font-size: 18px;
    }
    
    .delivery-form {
        padding: 20px;
        margin-bottom: 24px;
        border-radius: 14px;
    }
    
    .delivery-form::before {
        border-radius: 14px 14px 0 0;
    }
    
    .state-selection .form-select {
        padding: 14px 18px;
        font-size: 14px;
    }
    
    .state-selection .btn {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .delivery-card {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 12px;
    }
    
    .delivery-item {
        padding: 12px;
        gap: 8px;
    }
    
    .delivery-item i {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }
    
    .delivery-loading {
        padding: 28px 14px;
        border-radius: 12px;
    }
    
    .loading-spinner {
        font-size: 14px;
    }
} 