/* Product Detail Page Styles */

/* Product Meta Information Styles - Enhanced */
.tf-product-info-meta {
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.product-meta-item {
    display: flex;
    align-items: center;
    margin-bottom: 1px;
    padding: 2px 0;
    border-bottom: 1px solid #f1f5f9;
}

.product-meta-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.meta-label {
    font-weight: 600;
    color: #4C1D95;
    font-size: 12px;
    min-width: 120px;
    margin-right: 15px;
}

.meta-value {
    color: #6B7280;
    font-size: 12px;
    flex: 1;
}

.category-hierarchy {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.category-link {
    color: #6B46C1;
    text-decoration: none;
    font-weight: 500;
    padding: 2px 6px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.category-link:hover {
    color: #4C1D95;
    background-color: #eff6ff;
    text-decoration: none;
}

.category-link.current-category {
    color: #4C1D95;
    font-weight: 600;
    background-color: #dbeafe;
}

.category-separator {
    color: #94a3b8;
    font-weight: 600;
    margin: 0 2px;
}

/* Enhanced Price Display Styles */
.mrp-label {
    font-size: 14px;
    color: #666;
    margin-right: 8px;
}

.mrp-price {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.discount-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.discount-amount {
    font-size: 14px;
    color: #8b5cf6;
    font-weight: 600;
}

.cost-price-info {
    margin-top: 10px;
    padding: 8px 12px;
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 4px;
    font-size: 13px;
}

.cost-label {
    color: #856404;
    font-weight: 500;
    margin-right: 8px;
}

.cost-price {
    color: #856404;
    font-weight: 600;
}

/* Stock Status Styles */
.stock-status {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stock-status.in-stock {
    background-color: #8b5cf6;
    color: #ffffff;
    border: none;
    padding: 3px 6px;
    font-size: 11px;
}

.stock-status.low-stock {
    background-color: #f59e0b;
    color: #ffffff;
    border: none;
}

.stock-status.out-of-stock {
    background-color: #ef4444;
    color: #ffffff;
    border: none;
}

/* Price Section - Image Design */
.tf-product-info-price {
    margin-bottom: 20px;
}

.price-compact-layout {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.current-price {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
}

.original-price {
    font-size: 22px;
    color: #999999;
    text-decoration: line-through;
    font-weight: 500;
}

.discount-percent {
    font-size: 18px;
    color: #00a651;
    font-weight: 700;
}

/* Description Section */
.tf-product-info-description {
    margin-bottom: 15px;
}

.tf-product-info-description p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.5;
}

/* Live View Counter */
.tf-product-info-liveview {
    margin-bottom: 20px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    border-left: 4px solid #8b5cf6;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.tf-product-info-liveview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #8b5cf6, #a855f7, #8b5cf6);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.liveview-count {
    font-size: 28px;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 4px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    position: relative;
}

.liveview-count::after {
    content: '👥';
    margin-left: 8px;
    font-size: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.tf-product-info-liveview p {
    margin: 0;
    font-size: 14px;
    color: #495057;
    font-weight: 500;
}

.view-status {
    display: flex;
    align-items: center;
    gap: 4px;
}

.status-indicator {
    animation: pulse 2s infinite;
    color: #8b5cf6;
}

.view-status.updating .status-indicator {
    animation: blink 1s infinite;
    color: #ffc107;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

/* Product Description Styles */
.product-description {
    margin-bottom: 30px;
    line-height: 1.6;
}

.product-description p {
    margin-bottom: 15px;
    color: #555;
}

.tf-product-des-demo .right ul,
.tf-product-des-demo .left ul {
    list-style: none;
    padding: 0;
}

.tf-product-des-demo .right li,
.tf-product-des-demo .left li {
    padding: 5px 0;
    border-bottom: 1px solid #f0f0f0;
}

.tf-product-des-demo .right li:last-child,
.tf-product-des-demo .left li:last-child {
    border-bottom: none;
}

.text-success {
    color: #8b5cf6 !important;
}

.text-warning {
    color: #f59e0b !important;
}

.text-danger {
    color: #ef4444 !important;
}

.text-primary {
    color: #3b82f6 !important;
    text-decoration: none;
}

.text-primary:hover {
    text-decoration: underline;
}

/* Enhanced Meta Information Icons */
.meta-label::before {
   
}

/* Stock Status Enhancement */
.stock-status {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.stock-status.in-stock {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(139, 92, 246, 0.3);
}

.stock-status.low-stock {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.3);
}

.stock-status.out-of-stock {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
}

/* Button Group Styles */
.button-group {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
}

.tf-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 80px;
    flex: 1;
    height: 40px;
}

.tf-btn.btn-icon-only {
    
    height: 40px;
    padding: 0;
    flex: 0 0 auto;
}

.tf-btn.btn-icon-only span {
   
}

.btn-add-to-cart {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: #ffffff;
    border-color: #8b5cf6;
    padding: 6px 12px;
    font-size: 12px;
    max-width: 153px;
    height: 40px;
}

.btn-add-to-cart:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.btn-buy-now {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: #ffffff;
    border-color: #8b5cf6;
    padding: 6px 20px;
    font-size: 12px;
    max-width: 153px;
    height: 40px;
    padding: 0px 22px 0 23px !important;
}

.btn-buy-now:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.btn-wishlist {
    background: #ffffff;
    color: #8b5cf6;
    border-color: #8b5cf6;
    padding: 6px 12px;
    font-size: 12px;
    min-width: 80px;
    height: 40px;
}

.btn-wishlist:hover {
    background: #f3f0ff;
    color: #7c3aed;
    border-color: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
}

.btn-wishlist.active {
    background: #8b5cf6;
    color: #ffffff;
    border-color: #8b5cf6;
}

.btn-wishlist.active:hover {
    background: #7c3aed;
    color: #ffffff;
}

.tf-btn i {
    font-size: 12px;
}

.tf-btn.btn-icon-only i {
    font-size: 12px;
}

.btn-add-to-cart {
    flex: 1;
}

/* Responsive Button Group */
@media (max-width: 768px) {
    .button-group {
        flex-direction: row;
        justify-content: space-between;
        gap: 8px;
    }
    
    .btn-add-to-cart {
        flex: 1; 
    }
    
    .tf-btn.btn-icon-only {
         
    }
}

/* Product Variations Styles */
.tf-product-info-variations {
    margin-bottom: 20px;
}

.variation-group {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.variation-label {
    font-weight: 600;
    color: #4C1D95;
    font-size: 14px;
    margin-bottom: 12px;
    display: block;
}

.variation-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.variation-option {
    padding: 10px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: #ffffff;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 70px;
    text-align: center;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.variation-option:hover {
    border-color: #3b82f6;
    color: #6B46C1;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.2);
}

.variation-option.selected {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.variation-option.selected::after {
    content: '✓';
    position: absolute;
    top: -5px;
    right: -5px;
    background: #8b5cf6;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Review System Styles */
.rating-stars {
    color: #ffc107;
    font-size: 14px;
    margin: 5px 0;
}

.review-actions {
    margin-top: 10px;
}

.btn-helpful {
    background: none;
    border: 1px solid #ddd;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    color: #666;
    transition: all 0.3s ease;
}

.btn-helpful:hover {
    background: #f3f0ff;
    border-color: #8b5cf6;
    color: #8b5cf6;
}

.btn-helpful.voted {
    background: #8b5cf6;
    color: #fff;
    border-color: #8b5cf6;
}

.list-rating-check input[type="radio"] {
    display: none;
}

.list-rating-check label {
    cursor: pointer;
    font-size: 20px;
    color: #ddd;
    transition: color 0.3s ease;
}

.list-rating-check input[type="radio"]:checked ~ label,
.list-rating-check label:hover {
    color: #ffc107;
}

.list-rating-check input[type="radio"]:checked ~ label ~ label {
    color: #ffc107;
}

.write-review-wrap {
    display: none;
}

.write-review-wrap.active {
    display: block;
}

.variation-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f9fafb;
}

.variation-option.color-option {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    min-width: 50px;
    padding: 0;
    position: relative;
    border: 3px solid #e2e8f0;
}

.variation-option.color-option::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--color);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.variation-option.color-option:hover {
    border-color: #3b82f6;
    transform: translateY(-2px) scale(1.1);
}

.variation-option.color-option.selected {
    border-color: #3b82f6;
    background: #ffffff;
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.variation-option.color-option.selected::after {
    border: 3px solid #3b82f6;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.8);
}

/* Variation Status Display */
.variation-status {
    margin-bottom: 15px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #0ea5e9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(14, 165, 233, 0.1);
}

.variation-selected-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.variation-label-text {
    font-weight: 600;
    color: #0369a1;
    font-size: 14px;
}

#selected-variation-text {
    color: #0c4a6e;
    font-weight: 500;
    font-size: 14px;
}

.variation-price {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #4C1D95;
}

.variation-stock {
    margin-top: 5px;
    font-size: 12px;
    color: #6b7280;
}

.variation-stock.in-stock {
    color: #8b5cf6;
}

.variation-stock.low-stock {
    color: #f59e0b;
}

.variation-stock.out-of-stock {
    color: #ef4444;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-meta-item {
        flex-direction: row;
        align-items: center;
        gap: 8px;
        margin-bottom: 8px;
        padding: 8px 0;
        border-bottom: 1px solid #f1f5f9;
    }
    
    .meta-label {
        min-width: 80px;
        font-size: 11px;
        margin-right: 8px;
    }
    
    .meta-value {
        font-size: 11px;
        flex: 1;
    }
    
    .category-hierarchy {
        gap: 2px;
    }
    
    .category-link {
        padding: 1px 4px;
        font-size: 10px;
        border-radius: 3px;
    }
    
    .stock-status {
        padding: 2px 6px;
        font-size: 10px;
        border-radius: 4px;
    }
    
    .price-compact-layout {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        flex-wrap: nowrap;
    }
    
    .price-on-sale {
        font-size: 24px;
        font-weight: 700;
    }
    
    .compare-at-price {
        font-size: 16px;
    }
    
    .badges-on-sale {
        font-size: 12px;
        padding: 2px 6px;
    }
    
    .variation-options {
        gap: 6px;
    }
    
    .variation-option {
        padding: 6px 12px;
        font-size: 13px;
        min-width: 50px;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .product-meta-item {
        gap: 6px;
        padding: 6px 0;
        margin-bottom: 6px;
    }
    
    .meta-label {
        min-width: 70px;
        font-size: 10px;
        margin-right: 6px;
    }
    
    .meta-value {
        font-size: 10px;
    }
    
    .category-link {
        padding: 1px 3px;
        font-size: 9px;
    }
    
    .stock-status {
        padding: 1px 4px;
        font-size: 9px;
    }
    
    .price-compact-layout {
        gap: 8px;
    }
    
    .price-on-sale {
        font-size: 20px;
    }
    
    .compare-at-price {
        font-size: 14px;
    }
    
    .badges-on-sale {
        font-size: 10px;
        padding: 1px 4px;
    }
}

/* Additional Product Detail Styles */
.variation-group {
    margin-bottom: 20px;
}

.variation-label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    font-size: 14px;
}

.variation-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.variation-option {
    padding: 8px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    min-width: 60px;
    text-align: center;
}

.variation-option:hover {
    border-color: #333;
    background: #f8f8f8;
}

.variation-option.selected {
    border-color: #333;
    background: #333;
    color: #fff;
}

.variation-status {
    margin-top: 15px;
    padding: 10px;
    background: #f0f9ff;
    border: 1px solid #0ea5e9;
    border-radius: 6px;
    font-size: 14px;
}

.variation-selected-info {
    color: #8b5cf6;
    font-weight: 500;
}

/* Add to Cart Button Styles */
.btn-add-to-cart, .btn-buy-now, .btn-wishlist {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-add-to-cart:disabled, .btn-buy-now:disabled, .btn-wishlist:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-add-to-cart.in-wishlist, .btn-wishlist.in-wishlist {
    background-color: #8b5cf6 !important;
    border-color: #8b5cf6 !important;
}

.btn-add-to-cart.success {
    background-color: #8b5cf6 !important;
    border-color: #8b5cf6 !important;
}

.btn-add-to-cart i, .btn-buy-now i, .btn-wishlist i {
    transition: transform 0.3s ease;
}

.btn-add-to-cart:hover i, .btn-buy-now:hover i, .btn-wishlist:hover i {
    transform: scale(1.1);
}

/* Quantity Controls */
.wg-quantity {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    height: 40px;
}

.btn-quantity {
    background: #f8f9fa;
    border: none;
    padding: 6px 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 35px;
    height: 40px;
}

.btn-quantity:hover {
    background: #e9ecef;
}

.quantity-product {
    border: none;
    text-align: center;
    width: 50px;
    padding: 6px;
    font-weight: 600;
    height: 40px;
}

.quantity-product:focus {
    outline: none;
    background: #f8f9fa;
}

/* Button Group Layout */
.button-group {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.btn-icon-only {
    
    
    height: 40px;
    padding: 0;
}

.btn-icon-only span {
    
}

@media (min-width: 768px) {
    .btn-icon-only span {
        display: inline;
        margin-left: 5px;
    }
}

/* Beautiful Login Alert Popup Styles */
.login-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.login-alert-overlay.show {
    display: flex;
    opacity: 1;
}

.login-alert-popup {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
    transform: scale(0.9) translateY(30px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #e1e5e9;
}

.login-alert-overlay.show .login-alert-popup {
    transform: scale(1) translateY(0);
}

.login-alert-popup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
    background-size: 200% 100%;
    animation: gradientFlow 2s ease infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.login-alert-header {
    text-align: center;
    padding: 30px 30px 20px;
    position: relative;
}

.login-alert-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    animation: gentlePulse 2s ease-in-out infinite;
}

@keyframes gentlePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.login-alert-icon i {
    font-size: 28px;
    color: #fff;
    animation: heartBeat 1.5s ease-in-out infinite;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.1); }
    28% { transform: scale(1); }
    42% { transform: scale(1.1); }
    70% { transform: scale(1); }
}

.login-alert-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 10px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-alert-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    color: #bdc3c7;
    cursor: pointer;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.login-alert-close:hover {
    background: #f8f9fa;
    color: #e74c3c;
    transform: rotate(90deg);
}

.login-alert-content {
    padding: 0 30px 30px;
    text-align: center;
}

.login-alert-message {
    color: #7f8c8d;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.login-alert-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.login-alert-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.login-alert-btn-primary {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: #fff;
}

.login-alert-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.login-alert-btn-secondary {
    background: #f3f0ff;
    color: #8b5cf6;
    border: 1px solid #8b5cf6;
}

.login-alert-btn-secondary:hover {
    background: #e9d5ff;
    transform: translateY(-1px);
}

.login-alert-btn:active {
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .login-alert-popup {
        width: 95%;
        margin: 20px;
    }
    
    .login-alert-header {
        padding: 25px 20px 15px;
    }
    
    .login-alert-content {
        padding: 0 20px 25px;
    }
    
    .login-alert-icon {
        width: 60px;
        height: 60px;
    }
    
    .login-alert-icon i {
        font-size: 24px;
    }
    
    .login-alert-title {
        font-size: 20px;
    }
    
    .login-alert-buttons {
        flex-direction: column;
    }
    
    .login-alert-btn {
        width: 100%;
    }
}

/* Additional Inline Styles Moved from PHP */
.tf-page-title {
    background-color: #4f326742 !important;
    padding: 24px 0 24px;
}

.tf-page-title .heading {
    font-size: 29px;
}

.tf-breadcrumb-wrap {
    padding: 15px 0;
}

#view-status {
    font-size: 12px;
    color: #8b5cf6;
    margin-top: 4px;
}

.debug-info {
    font-size: 10px;
    color: #666;
    margin-top: 4px;
}

#product-variations {
    margin-bottom: 20px;
}

#variation-status {
    display: none;
    margin-bottom: 15px;
    padding: 10px;
    background: #f0f9ff;
    border: 1px solid #0ea5e9;
    border-radius: 6px;
}

#standard-product-notice {
    display: none;
    margin-bottom: 15px;
    padding: 10px;
    background: #f0f9ff;
    border: 1px solid #0ea5e9;
    border-radius: 6px;
}

.flat-spacing-1.flat-iconbox {
    background: rgb(246 243 249);
    border-radius: 9px !important;
    margin-bottom: 32px;
    padding: 26px 0;
}

.login-alert-btn i {
    margin-right: 8px;
}
