.btn-primary {
    --bs-btn-bg: #ffbd59;
    --bs-btn-border-color: #ffbd59;
    --bs-btn-hover-bg: #dda349;
    --bs-btn-hover-border-color: #dda349;
    --bs-btn-disabled-bg: #dda349;
    --bs-btn-disabled-border-color: #dda349;
    --bs-btn-active-bg: #dda349;
    --bs-btn-active-border-color: #dda349;
}

.header-action .shopping-cart .cart-dropdown-btn .cart-count {
    line-height: 22px;
}

.cart-dropdown .cart-item .item-quantity .qtybtn, td.product-quantity .qtybtn {
    line-height: 26px;
}

.whatsapp-btn {
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 100px;
    right: 40px;
    z-index: 99;
    background: #25D366;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    font-size: 20px;
    line-height: 50px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.whatsapp-btn i {
    margin-top: 5px;
}



.summery-section h6 {
    margin-bottom: 20px;
}

/* New Shipping Details Card Styles */
.shipping-details-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.shipping-details-card .card-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f8f9fa;
}

.shipping-details-card .card-header i {
    background: var(--color-primary);
    padding: 12px;
    border-radius: 50%;
    margin-right: 15px;
    color: white;
    font-size: 20px;
}

.shipping-details-card .card-header h4 {
    color: var(--color-heading);
    margin: 0;
    font-weight: 600;
    font-size: 24px;
}

.shipping-info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 15px 20px;
    transition: all 0.3s ease;
    position: relative;
    border-left: 4px solid var(--color-primary);
}

.info-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-label {
    display: flex;
    align-items: center;
    color: var(--color-heading);
    font-weight: 600;
    font-size: 15px;
    min-width: 120px;
}

.info-label i {
    margin-right: 8px;
    font-size: 16px;
    color: var(--color-primary);
    width: 20px;
}

.info-value {
    color: var(--color-body);
    font-size: 15px;
    font-weight: 500;
    flex: 1;
    text-align: right;
    word-break: break-word;
}

.info-item.highlight .info-value {
    font-size: 16px;
    color: var(--color-primary);
    font-weight: 700;
}

/* Order ID special styling */
.order-id-badge {
    display: inline-flex;
    align-items: center;
    background: var(--color-primary);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(255, 189, 89, 0.3);
}

.order-id-badge i {
    margin-right: 6px;
    font-size: 12px;
}

/* Animation for items */
.info-item {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s ease forwards;
}

.info-item:nth-child(1) { animation-delay: 0.1s; }
.info-item:nth-child(2) { animation-delay: 0.2s; }
.info-item:nth-child(3) { animation-delay: 0.3s; }
.info-item:nth-child(4) { animation-delay: 0.4s; }
.info-item:nth-child(5) { animation-delay: 0.5s; }
.info-item:nth-child(6) { animation-delay: 0.6s; }
.info-item:nth-child(7) { animation-delay: 0.7s; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .axil-footer-area .axil-footer-widget {
        text-align: center;
    }

    .axil-footer-widget .support-list-item li i {
        position: static;
    }

    .whatsapp-btn {
        right: 10px;
        bottom: 70px;
    }

    .shipping-details-card {
        padding: 20px;
        border-radius: 15px;
    }

    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 15px;
    }

    .info-label {
        min-width: auto;
        width: 100%;
    }

    .info-value {
        text-align: left;
        width: 100%;
    }

    .shipping-details-card .card-header h4 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .info-item:hover {
        transform: none;
    }
}
