/* ===== MODERN STORE UI DESIGN ===== */

/* Skeuomorphic Store Header */
.modern-store-header {
    background: linear-gradient(145deg, #f0f2f5, #e8eaed, #ddd);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.25),
        0 5px 15px rgba(0, 0, 0, 0.12),
        inset 0 3px 6px rgba(255, 255, 255, 0.9),
        inset 0 -3px 6px rgba(0, 0, 0, 0.15),
        inset 1px 0 2px rgba(255, 255, 255, 0.7),
        inset -1px 0 2px rgba(0, 0, 0, 0.1);
    border: 3px solid #c0c4c8;
    position: relative;
}

.modern-store-header::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    height: 3px;
    background: linear-gradient(90deg, rgba(255,255,255,0.8), rgba(255,255,255,0.4), rgba(255,255,255,0.8));
    border-radius: 18px 18px 0 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.store-title-section {
    flex: 1;
    min-width: 300px;
}

.store-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: 'Baloo 2', cursive;
}

.store-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

.header-stats {
    display: flex;
    gap: 20px;
}

/* Skeuomorphic Aeros Display */
.aeros-display {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: linear-gradient(145deg, #4a90e2, #357abd, #2c5aa0);
    border-radius: 16px;
    box-shadow: 
        0 12px 25px rgba(59, 130, 246, 0.4),
        0 6px 12px rgba(0, 0, 0, 0.2),
        inset 0 3px 6px rgba(255, 255, 255, 0.3),
        inset 0 -3px 6px rgba(0, 0, 0, 0.2),
        inset 1px 0 2px rgba(255, 255, 255, 0.4),
        inset -1px 0 2px rgba(0, 0, 0, 0.15);
    border: 2px solid #2c5aa0;
    min-width: 180px;
    position: relative;
}

.aeros-display::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.6), rgba(255,255,255,0.2), rgba(255,255,255,0.6));
    border-radius: 14px 14px 0 0;
}

.aeros-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.aeros-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.aeros-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.aeros-value {
    font-size: 1.8rem;
    color: white;
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Skeuomorphic Featured Banner */
.featured-banner {
    background: linear-gradient(135deg, #16a085, #138d75, #0e6b5d);
    border-radius: 20px;
    padding: 40px 35px;
    margin-bottom: 25px;
    box-shadow: 
        0 15px 30px rgba(16, 185, 129, 0.3),
        0 8px 16px rgba(0, 0, 0, 0.2),
        inset 0 3px 6px rgba(255, 255, 255, 0.25),
        inset 0 -3px 6px rgba(0, 0, 0, 0.2),
        inset 2px 0 4px rgba(255, 255, 255, 0.15),
        inset -2px 0 4px rgba(0, 0, 0, 0.1);
    border: 2px solid #0e6b5d;
    position: relative;
    overflow: visible;
    min-height: 160px;
}

.featured-banner::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    height: 3px;
    background: linear-gradient(90deg, rgba(255,255,255,0.4), rgba(255,255,255,0.2), rgba(255,255,255,0.4));
    border-radius: 18px 18px 0 0;
    z-index: 2;
}

.featured-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="smallGrid" width="8" height="8" patternUnits="userSpaceOnUse"><path d="M 8 0 L 0 0 0 8" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100%" height="100%" fill="url(%23smallGrid)" /></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    position: relative;
    z-index: 3;
    min-height: 120px;
    width: 100%;
}

.banner-text {
    flex: 1;
    min-width: 250px;
}

.banner-text h2 {
    font-size: 2rem;
    color: white;
    margin: 0 0 8px 0;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.banner-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
}

.offer-pricing-info {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.pricing-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
    padding: 6px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
}

.pricing-item:first-child {
    background: linear-gradient(145deg, rgba(245, 158, 11, 0.3), rgba(245, 158, 11, 0.2));
    border: 1px solid rgba(245, 158, 11, 0.4);
    box-shadow: 
        0 2px 4px rgba(245, 158, 11, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.4);
}

.price-icon {
    font-size: 1rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.price-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.banner-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
    min-width: 200px;
}

.claim-daily-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 25px;
    background: linear-gradient(145deg, #f39c12, #e67e22, #d35400);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 
        0 8px 20px rgba(245, 158, 11, 0.4),
        0 4px 10px rgba(0, 0, 0, 0.2),
        inset 0 3px 6px rgba(255, 255, 255, 0.3),
        inset 0 -3px 6px rgba(0, 0, 0, 0.2),
        inset 1px 0 2px rgba(255, 255, 255, 0.4),
        inset -1px 0 2px rgba(0, 0, 0, 0.15);
    border: 2px solid #d35400;
    transition: all 0.2s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    white-space: nowrap;
    min-width: 200px;
}

.claim-daily-btn::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.6), rgba(255,255,255,0.3), rgba(255,255,255,0.6));
    border-radius: 10px 10px 0 0;
}

.claim-daily-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 20px rgba(245, 158, 11, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.claim-daily-btn:active {
    transform: translateY(0);
}

.claim-daily-btn:disabled {
    background: linear-gradient(145deg, #9ca3af, #6b7280);
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-icon {
    font-size: 1.2rem;
}

.claim-message {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
    text-align: right;
    font-weight: 500;
    min-height: 1.2em;
    line-height: 1.3;
}

/* Advertisement Section */
.ad-section {
    margin-bottom: 25px;
}

.ad-container {
    display: flex;
    justify-content: center;
}

.store-ad {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.store-ad:hover {
    transform: scale(1.02);
}

/* Skeuomorphic Store Navigation Tabs */
.store-nav {
    display: flex;
    background: linear-gradient(145deg, #e8eaed, #d1d5db, #c0c4c8);
    border-radius: 16px;
    padding: 8px;
    margin-bottom: 30px;
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.15),
        0 4px 8px rgba(0, 0, 0, 0.1),
        inset 0 3px 6px rgba(255, 255, 255, 0.7),
        inset 0 -3px 6px rgba(0, 0, 0, 0.15),
        inset 2px 0 4px rgba(255, 255, 255, 0.5),
        inset -2px 0 4px rgba(0, 0, 0, 0.1);
    border: 3px solid #9ca3af;
    gap: 6px;
    position: relative;
}

.store-nav::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.8), rgba(255,255,255,0.4), rgba(255,255,255,0.8));
    border-radius: 14px 14px 0 0;
}

.store-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 20px;
    background: transparent;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
    color: #4b5563;
    position: relative;
    text-shadow: 0 1px 1px rgba(255,255,255,0.8);
}

.store-tab.active {
    background: linear-gradient(145deg, #f9fafb, #f3f4f6, #e5e7eb);
    color: #1f2937;
    box-shadow: 
        0 6px 12px rgba(0, 0, 0, 0.15),
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 2px 4px rgba(255, 255, 255, 0.8),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1),
        inset 1px 0 2px rgba(255, 255, 255, 0.6),
        inset -1px 0 2px rgba(0, 0, 0, 0.05);
    border: 2px solid #d1d5db;
    transform: translateY(-2px);
}

.store-tab.active::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.9), rgba(255,255,255,0.5), rgba(255,255,255,0.9));
    border-radius: 10px 10px 0 0;
}

.store-tab:hover:not(.active) {
    background: linear-gradient(145deg, #f1f5f9, #e2e8f0);
    color: #374151;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.6);
}

.tab-icon {
    font-size: 1.2rem;
}

.tab-text {
    font-size: 1rem;
}

.tab-count {
    background: linear-gradient(145deg, #3b82f6, #2563eb);
    color: white;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.3);
}

.store-tab.active .tab-count {
    background: linear-gradient(145deg, #10b981, #059669);
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
}

/* Store Content Sections */
.store-content {
    position: relative;
}

.store-section {
    display: none;
    animation: fadeIn 0.3s ease;
}

.store-section.active {
    display: block;
}

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

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.section-filters {
    display: flex;
    gap: 12px;
    align-items: center;
}

.filter-dropdown {
    padding: 10px 16px;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #475569;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.filter-dropdown:hover {
    border-color: #cbd5e1;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.filter-dropdown:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Items Grid */
.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    padding: 0;
}

/* Skeuomorphic Item Cards */
.shelf-container {
    background: linear-gradient(145deg, #f0f2f5, #e8eaed, #ddd);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 
        0 12px 25px rgba(0, 0, 0, 0.2),
        0 6px 12px rgba(0, 0, 0, 0.1),
        inset 0 3px 6px rgba(255, 255, 255, 0.8),
        inset 0 -3px 6px rgba(0, 0, 0, 0.15),
        inset 2px 0 4px rgba(255, 255, 255, 0.6),
        inset -2px 0 4px rgba(0, 0, 0, 0.1);
    border: 3px solid #c0c4c8;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.shelf-container::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    height: 3px;
    background: linear-gradient(90deg, rgba(255,255,255,0.8), rgba(255,255,255,0.4), rgba(255,255,255,0.8));
    border-radius: 18px 18px 0 0;
}

.shelf-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px 20px 0 0;
    z-index: 1;
}

.shelf-container:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 18px 35px rgba(0, 0, 0, 0.25),
        0 8px 16px rgba(0, 0, 0, 0.15),
        inset 0 3px 6px rgba(255, 255, 255, 0.9),
        inset 0 -3px 6px rgba(0, 0, 0, 0.2),
        inset 2px 0 4px rgba(255, 255, 255, 0.7),
        inset -2px 0 4px rgba(0, 0, 0, 0.15);
    border-color: #9ca3af;
}

.shelf-container:hover::after {
    opacity: 1;
}

.shelf-container:active {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.2),
        0 4px 8px rgba(0, 0, 0, 0.1),
        inset 0 2px 4px rgba(0, 0, 0, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

/* Skeuomorphic Item Content */
.shelf-items {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    margin-bottom: 20px;
    background: linear-gradient(145deg, #e8eaed, #d1d5db, #c0c4c8);
    border-radius: 16px;
    border: 2px solid #9ca3af;
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 0 3px 6px rgba(0, 0, 0, 0.15),
        inset 0 -1px 2px rgba(255, 255, 255, 0.6),
        inset 2px 0 4px rgba(0, 0, 0, 0.1),
        inset -2px 0 4px rgba(255, 255, 255, 0.4);
}

.shelf-items::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.6), rgba(255,255,255,0.3), rgba(255,255,255,0.6));
    border-radius: 14px 14px 0 0;
}

.shelf-items::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.shelf-item {
    max-width: 90%;
    max-height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.2s ease;
    position: relative;
    z-index: 1;
}

.shelf-container:hover .shelf-item {
    transform: scale(1.05);
}

/* Item Info */
.item-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.item-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: #059669;
    margin: 0 0 20px 0;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Purchase Section */
.purchase-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.quantity-input {
    width: 60px;
    padding: 10px 8px;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: #475569;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.quantity-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.purchase-btn, .claim-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.purchase-btn {
    background: linear-gradient(145deg, #4a90e2, #357abd, #2c5aa0);
    color: white;
    border: 2px solid #2c5aa0;
    box-shadow: 
        0 6px 12px rgba(59, 130, 246, 0.3),
        0 3px 6px rgba(0, 0, 0, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.3),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
}

.purchase-btn::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.5), rgba(255,255,255,0.2), rgba(255,255,255,0.5));
    border-radius: 8px 8px 0 0;
}

.purchase-btn:hover {
    background: linear-gradient(145deg, #357abd, #2c5aa0, #1e3a8a);
    transform: translateY(-1px);
    box-shadow: 
        0 8px 16px rgba(59, 130, 246, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.25),
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.25);
}

.purchase-btn:active {
    transform: translateY(1px);
    box-shadow: 
        0 2px 4px rgba(59, 130, 246, 0.2),
        inset 0 2px 6px rgba(0, 0, 0, 0.25),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.claim-btn {
    background: linear-gradient(145deg, #e74c3c, #c0392b, #a93226);
    color: white;
    border: 2px solid #a93226;
    box-shadow: 
        0 6px 12px rgba(239, 68, 68, 0.3),
        0 3px 6px rgba(0, 0, 0, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.3),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
}

.claim-btn::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.5), rgba(255,255,255,0.2), rgba(255,255,255,0.5));
    border-radius: 8px 8px 0 0;
}

.claim-btn:hover {
    background: linear-gradient(145deg, #c0392b, #a93226, #922b21);
    transform: translateY(-1px);
    box-shadow: 
        0 8px 16px rgba(239, 68, 68, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.25),
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.25);
}

.claim-btn:active {
    transform: translateY(1px);
    box-shadow: 
        0 2px 4px rgba(239, 68, 68, 0.2),
        inset 0 2px 6px rgba(0, 0, 0, 0.25),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

/* Badges */
.daily-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(145deg, #f59e0b, #d97706);
    color: white;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 
        0 4px 10px rgba(245, 158, 11, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.item-name[data-new="true"]::after {
    content: ' ✨ NEW';
    font-size: 0.7rem;
    color: white;
    background: linear-gradient(145deg, #10b981, #059669);
    padding: 4px 8px;
    border-radius: 8px;
    margin-left: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
}

/* Daily Rotation Info */
.daily-rotation-info {
    background: linear-gradient(145deg, #dbeafe, #bfdbfe);
    border: 2px solid #93c5fd;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(147, 197, 253, 0.2);
}

.daily-rotation-info p {
    margin: 8px 0;
    color: #1e40af;
    font-weight: 600;
}

.daily-rotation-info p:first-child {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e3a8a;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .items-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .store-title {
        font-size: 2.2rem;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        min-height: auto;
    }
    
    .banner-action {
        align-items: center;
        min-width: auto;
        width: 100%;
    }
    
    .claim-daily-btn {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
    
    .store-nav {
        flex-direction: column;
        gap: 8px;
    }
    
    .store-tab {
        width: 100%;
        justify-content: center;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .items-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 15px;
    }
    
    .shelf-container {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .modern-store-header {
        padding: 20px;
    }
    
    .store-title {
        font-size: 1.8rem;
    }
    
    .featured-banner {
        padding: 35px 20px;
        min-height: 180px;
    }
    
    .banner-content {
        min-height: 140px;
        gap: 20px;
    }
    
    .banner-text {
        min-width: auto;
    }
    
    .banner-text h2 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    
    .banner-text p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .items-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .shelf-container {
        padding: 15px;
    }
    
    .purchase-section {
        flex-direction: column;
        gap: 10px;
    }
    
    .purchase-btn, .claim-btn {
        width: 100%;
    }
}

/* Loading States */
.loading-skeleton {
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 8px;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #64748b;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #475569;
}

.empty-state p {
    font-size: 1.1rem;
    margin: 0;
}

/* Coming Soon Containers */
.coming-soon-container {
    background: linear-gradient(145deg, #f8fafc, #f1f5f9, #e2e8f0);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 
        0 12px 25px rgba(0, 0, 0, 0.1),
        0 6px 12px rgba(0, 0, 0, 0.05),
        inset 0 3px 6px rgba(255, 255, 255, 0.8),
        inset 0 -3px 6px rgba(0, 0, 0, 0.1),
        inset 2px 0 4px rgba(255, 255, 255, 0.6),
        inset -2px 0 4px rgba(0, 0, 0, 0.05);
    border: 3px solid #cbd5e1;
    position: relative;
    margin: 20px 0;
}

.coming-soon-container::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    height: 3px;
    background: linear-gradient(90deg, rgba(255,255,255,0.8), rgba(255,255,255,0.4), rgba(255,255,255,0.8));
    border-radius: 18px 18px 0 0;
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.coming-soon-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 15px 0;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.coming-soon-description {
    font-size: 1.2rem;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 30px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.feature-item {
    background: linear-gradient(145deg, #dbeafe, #bfdbfe);
    color: #1e40af;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 
        0 4px 8px rgba(59, 130, 246, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.8),
        inset 0 -1px 2px rgba(0, 0, 0, 0.1);
    border: 1px solid #93c5fd;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}

/* Milestone Requirements */
.milestone-requirements {
    background: linear-gradient(145deg, #fef3c7, #fde68a);
    border: 2px solid #f59e0b;
    border-radius: 16px;
    padding: 25px;
    margin: 25px 0;
    box-shadow: 
        0 6px 12px rgba(245, 158, 11, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.7),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1);
}

.milestone-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 20px;
    background: linear-gradient(145deg, #fff7ed, #fed7aa);
    border: 1px solid #fb923c;
    border-radius: 10px;
    margin: 10px 0;
    font-weight: 600;
    color: #9a3412;
    box-shadow: 
        0 3px 6px rgba(251, 146, 60, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}

.milestone-icon {
    font-size: 1.3rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.milestone-text {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* Tab Count Adjustments for "Soon" */
.tab-count {
    background: linear-gradient(145deg, #3b82f6, #2563eb);
    color: white;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.3);
}

.store-tab.active .tab-count {
    background: linear-gradient(145deg, #10b981, #059669);
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
}

/* Special styling for "Soon" text in tabs */
.tab-count:not([data-numeric="true"]) {
    background: linear-gradient(145deg, #f59e0b, #d97706);
    box-shadow: 0 2px 6px rgba(245, 158, 11, 0.3);
    font-size: 0.7rem;
    padding: 4px 6px;
}

/* Daily Offer Styling */
.shelf-container.daily-offer {
    position: relative;
    background: linear-gradient(145deg, #fff7ed, #fed7aa, #fde68a);
    border: 3px solid #f59e0b;
    box-shadow: 
        0 12px 25px rgba(245, 158, 11, 0.3),
        0 6px 12px rgba(245, 158, 11, 0.2),
        inset 0 3px 6px rgba(255, 255, 255, 0.8),
        inset 0 -3px 6px rgba(0, 0, 0, 0.1),
        0 0 20px rgba(245, 158, 11, 0.4);
    animation: daily-offer-glow 2s ease-in-out infinite alternate;
}

@keyframes daily-offer-glow {
    0% { 
        box-shadow: 
            0 12px 25px rgba(245, 158, 11, 0.3),
            0 6px 12px rgba(245, 158, 11, 0.2),
            inset 0 3px 6px rgba(255, 255, 255, 0.8),
            inset 0 -3px 6px rgba(0, 0, 0, 0.1),
            0 0 20px rgba(245, 158, 11, 0.4);
    }
    100% { 
        box-shadow: 
            0 12px 25px rgba(245, 158, 11, 0.4),
            0 6px 12px rgba(245, 158, 11, 0.3),
            inset 0 3px 6px rgba(255, 255, 255, 0.9),
            inset 0 -3px 6px rgba(0, 0, 0, 0.1),
            0 0 30px rgba(245, 158, 11, 0.6);
    }
}

.shelf-container.daily-offer::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    height: 4px;
    background: linear-gradient(90deg, rgba(255,255,255,0.9), rgba(255,255,255,0.5), rgba(255,255,255,0.9));
    border-radius: 12px 12px 0 0;
    z-index: 1;
}

.offer-pricing {
    text-align: center;
    margin: 10px 0;
}

.offer-badge {
    display: inline-block;
    background: linear-gradient(145deg, #dc2626, #b91c1c);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 
        0 3px 6px rgba(220, 38, 38, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
    margin-bottom: 8px;
    animation: badge-pulse 1.5s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.price-comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.regular-price {
    color: #6b7280;
    text-decoration: line-through;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
}

.offer-price {
    color: #dc2626;
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(220, 38, 38, 0.2);
}

.daily-offer .purchase-btn {
    background: linear-gradient(145deg, #dc2626, #b91c1c);
    border: 2px solid #991b1b;
    color: white;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 
        0 6px 12px rgba(220, 38, 38, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.2),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
}

.daily-offer .purchase-btn:hover {
    background: linear-gradient(145deg, #ef4444, #dc2626);
    box-shadow: 
        0 8px 16px rgba(220, 38, 38, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.3),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.daily-offer .purchase-btn:active {
    transform: translateY(0);
    box-shadow: 
        0 4px 8px rgba(220, 38, 38, 0.3),
        inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Coming Soon */
@media (max-width: 768px) {
    .coming-soon-container {
        padding: 30px 20px;
    }
    
    .coming-soon-icon {
        font-size: 3rem;
        margin-bottom: 15px;
    }
    
    .coming-soon-title {
        font-size: 1.8rem;
    }
    
    .coming-soon-description {
        font-size: 1.1rem;
    }
    
    .coming-soon-features {
        gap: 12px;
    }
    
    .feature-item {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
    
    .milestone-requirements {
        padding: 20px 15px;
    }
    
    .milestone-item {
        padding: 10px 15px;
        gap: 10px;
    }
    
    .milestone-text {
        font-size: 1rem;
    }
    
    /* Daily offer responsive adjustments */
    .price-comparison {
        flex-direction: column;
        gap: 5px;
    }
    
    .offer-badge {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
}

@media (max-width: 480px) {
    .coming-soon-features {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .feature-item {
        width: 100%;
        max-width: 200px;
    }
    
    .milestone-item {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}