/* ========================================
   Shop Page Specific Styles
   ======================================== */

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(30, 144, 255, 0.3), inset 0 0 20px rgba(30, 144, 255, 0.05);
    }
    50% {
        box-shadow: 0 0 40px rgba(30, 144, 255, 0.6), inset 0 0 40px rgba(30, 144, 255, 0.1);
    }
}

@keyframes bounce-down {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ========================================
   Shop Header
   ======================================== */

.shop-header {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d0d0a 0%, #16213e 50%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    margin-top: -80px;
}

.shop-header::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 144, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 10%;
    transform: translate(-50%, -50%);
    animation: pulse 6s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

.shop-header::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(106, 76, 147, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    bottom: 10%;
    right: 5%;
    animation: pulse 8s ease-in-out infinite;
    animation-delay: 1s;
    z-index: 1;
}

.shop-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="black" opacity="0.03" /></svg>');
    z-index: 1;
}

.shop-header-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400" viewBox="0 0 100 100"><rect width="1" height="1" fill="%231e90ff" opacity="0.05" x="10" y="10"/><rect width="1" height="1" fill="%236a4c93" opacity="0.05" x="30" y="40"/><rect width="1" height="1" fill="%231e90ff" opacity="0.05" x="50" y="20"/><rect width="1" height="1" fill="%236a4c93" opacity="0.05" x="70" y="30"/><rect width="1" height="1" fill="%231e90ff" opacity="0.05" x="90" y="60"/></svg>');
}

.moon-shop {
    top: 15%;
    right: 15%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle at 70% 70%, #0066cc, #1e90ff);
    box-shadow: 0 0 30px rgba(30, 144, 255, 0.3);
    animation: glow 8s ease-in-out infinite;
    opacity: 0.8;
}

.moon-shop::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    box-shadow: 15px 10px 0 rgba(255, 255, 255, 0.1),
                30px 20px 0 rgba(255, 255, 255, 0.1);
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 30px rgba(30, 144, 255, 0.3); opacity: 0.8; }
    50% { box-shadow: 0 0 50px rgba(30, 144, 255, 0.5); opacity: 0.9; }
}

.stars-container-shop {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.star-shop {
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: white;
    animation: twinkle 4s infinite;
    opacity: 0.7;
}

.star-shop:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.star-shop:nth-child(2) { top: 20%; left: 25%; animation-delay: 0.6s; }
.star-shop:nth-child(3) { top: 15%; left: 50%; animation-delay: 1.2s; }
.star-shop:nth-child(4) { top: 30%; left: 75%; animation-delay: 1.8s; }
.star-shop:nth-child(5) { top: 40%; left: 15%; animation-delay: 2.4s; }
.star-shop:nth-child(6) { top: 50%; left: 35%; animation-delay: 3s; }
.star-shop:nth-child(7) { top: 60%; left: 65%; animation-delay: 0.3s; }
.star-shop:nth-child(8) { top: 70%; left: 85%; animation-delay: 0.9s; }
.star-shop:nth-child(9) { top: 80%; left: 30%; animation-delay: 1.5s; }
.star-shop:nth-child(10) { top: 85%; left: 50%; animation-delay: 2.1s; }
.star-shop:nth-child(11) { top: 75%; left: 10%; animation-delay: 2.7s; }
.star-shop:nth-child(12) { top: 25%; left: 90%; animation-delay: 3.3s; }

@keyframes twinkle {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

.shop-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 4rem 2rem;
    margin: 0 auto;
}

.hero-badge-shop {
    display: inline-block;
    background: linear-gradient(135deg, #1e90ff, #0066cc);
    color: white;
    font-size: 1rem;
    font-weight: bold;
    padding: 0.6rem 1.8rem;
    border-radius: 30px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shop-header h1 {
    font-size: 4.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #1e90ff, #0066cc, #1e90ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 5px 15px rgba(30, 144, 255, 0.5);
    letter-spacing: -1px;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { 
        text-shadow: 0 5px 15px rgba(30, 144, 255, 0.5), 0 0 20px rgba(30, 144, 255, 0.3);
        transform: scale(1);
    }
    50% { 
        text-shadow: 0 5px 20px rgba(30, 144, 255, 0.8), 0 0 30px rgba(30, 144, 255, 0.5);
        transform: scale(1.02);
    }
}

.shop-header-subtitle {
    font-size: 2rem;
    color: #1e90ff;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s ease-out 0.1s forwards;
    opacity: 0;
}

.shop-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.3px;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.shop-header-divider {
    height: 4px;
    background: linear-gradient(90deg, transparent, #1e90ff, transparent);
    margin: 3rem auto 0;
    width: 150px;
    border-radius: 2px;
    box-shadow: 0 0 25px rgba(30, 144, 255, 0.6);
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
    opacity: 0;
}

/* ========================================
   Shop Section
   ======================================== */

.shop-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #0d0d0a 0%, #16213e 100%);
    min-height: auto;
    position: relative;
    width: 100%;
    overflow: visible;
    display: block;
}

.shop-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    overflow: visible;
}

/* ========================================
   Shop Category
   ======================================== */

.shop-category {
    margin-bottom: 5rem;
}

.category-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.category-header h2 {
    font-size: 2.8rem;
    color: #1e90ff;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.category-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #1e90ff, transparent);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(30, 144, 255, 0.5);
}

.category-description {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-top: 1.5rem;
    letter-spacing: 0.3px;
}

/* ========================================
   Products Grid
   ======================================== */

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
}

.shop-category:first-of-type .products-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.donations-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    width: 100%;
}

/* ========================================
   Product Card
   ======================================== */

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes iconGlow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(30, 144, 255, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(30, 144, 255, 0.6));
    }
}

/* ========================================
   Custom Icons for Donation Tiers
   ======================================== */

.product-icon {
    width: 100%;
    height: auto;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 4rem;
}

.product-icon i {
    background: linear-gradient(135deg, #1e90ff, #0066cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(30, 144, 255, 0.5));
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: float 3s ease-in-out infinite, iconGlow 2s ease-in-out infinite;
}

.product-card:hover .product-icon i {
    transform: scale(1.3) rotateZ(8deg);
    filter: drop-shadow(0 0 30px rgba(30, 144, 255, 0.8));
    animation: float 2s ease-in-out infinite;
}

/* Donation card icons - completely disable all animations */
.donation-card .product-icon i {
    animation: none !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
}

.donation-card:hover .product-icon i {
    animation: none !important;
}

.donation-card .product-icon i::before,
.donation-card .product-icon i::after {
    animation: none !important;
}

/* Force remove all animations */
.donation-card {
    animation: none !important;
}

.donation-card .product-icon {
    animation: none !important;
}

/* Donation Tier 1 - Gem (100 R$) */
.donation-card-1 .product-icon i {
    color: #a8d8ff;
    text-shadow: 0 0 8px rgba(30, 144, 255, 0.4);
    filter: drop-shadow(0 0 10px rgba(30, 144, 255, 0.3));
    transition: all 0.3s ease;
    animation: none !important;
}

.donation-card-1:hover .product-icon i {
    text-shadow: 0 0 12px rgba(30, 144, 255, 0.6);
    filter: drop-shadow(0 0 15px rgba(30, 144, 255, 0.5));
    animation: none !important;
}

/* Donation Tier 2 - Star (150 R$) */
.donation-card-2 .product-icon i {
    color: #ffd700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
    transition: all 0.3s ease;
    animation: none !important;
}

.donation-card-2:hover .product-icon i {
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
    animation: none !important;
}

/* Donation Tier 3 - Trophy (200 R$) */
.donation-card-3 .product-icon i {
    color: #cd7f32;
    text-shadow: 0 0 8px rgba(205, 127, 50, 0.4);
    filter: drop-shadow(0 0 10px rgba(205, 127, 50, 0.3));
    transition: all 0.3s ease;
    animation: none !important;
}

.donation-card-3:hover .product-icon i {
    text-shadow: 0 0 12px rgba(205, 127, 50, 0.6);
    filter: drop-shadow(0 0 15px rgba(205, 127, 50, 0.5));
    animation: none !important;
}

/* Donation Tier 4 - Coins (300 R$) */
.donation-card-4 .product-icon i {
    color: #ffd700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
    transition: all 0.3s ease;
    animation: none !important;
}

.donation-card-4:hover .product-icon i {
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
    animation: none !important;
}

/* Donation Tier 5 - Crown (400 R$) */
.donation-card-5 .product-icon i {
    color: #ffed4e;
    text-shadow: 0 0 8px rgba(255, 237, 78, 0.4);
    filter: drop-shadow(0 0 10px rgba(255, 237, 78, 0.3));
    transition: all 0.3s ease;
    animation: none !important;
}

.donation-card-5:hover .product-icon i {
    text-shadow: 0 0 12px rgba(255, 237, 78, 0.6);
    filter: drop-shadow(0 0 15px rgba(255, 237, 78, 0.5));
    animation: none !important;
}

/* Donation Tier 6 - Ring (500 R$ - LEGENDARY) */
.donation-card-6 .product-icon {
    font-size: 4.5rem;
}

.donation-card-6 .product-icon i {
    color: #e100ff;
    text-shadow: 0 0 10px rgba(225, 0, 255, 0.4);
    filter: drop-shadow(0 0 12px rgba(225, 0, 255, 0.4));
    transition: all 0.3s ease;
    animation: none !important;
}

.donation-card-6:hover .product-icon i {
    text-shadow: 0 0 14px rgba(225, 0, 255, 0.6);
    filter: drop-shadow(0 0 18px rgba(225, 0, 255, 0.5));
    animation: none !important;
}

.product-card {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid #2a3050;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    width: 100%;
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2), inset 0 0 15px rgba(30, 144, 255, 0.02);
    animation: slideInUp 0.6s ease-out forwards;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-card:hover::before {
    opacity: 1;
}

.shop-category:first-of-type .product-card {
    animation-delay: 0.1s;
}

.donations-grid .product-card:nth-child(1) { animation-delay: 0.1s; }
.donations-grid .product-card:nth-child(2) { animation-delay: 0.2s; }
.donations-grid .product-card:nth-child(3) { animation-delay: 0.3s; }
.donations-grid .product-card:nth-child(4) { animation-delay: 0.2s; }
.donations-grid .product-card:nth-child(5) { animation-delay: 0.3s; }
.donations-grid .product-card:nth-child(6) { animation-delay: 0.4s; }

.product-card:hover {
    transform: translateY(-18px) scale(1.03);
    border-color: #1e90ff;
    box-shadow: 0 35px 100px rgba(30, 144, 255, 0.6), inset 0 0 25px rgba(30, 144, 255, 0.08);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #1e90ff, #0066cc);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-card h3 {
    font-size: 1.8rem;
    color: #1e90ff;
    margin-bottom: 1rem;
    margin-top: 0;
}

.product-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1e90ff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1e90ff, #0066cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.product-card:hover .product-price {
    text-shadow: 0 0 20px rgba(30, 144, 255, 0.6);
}

.robux {
    font-size: 1.2rem;
    margin-left: 0.5rem;
}

.product-description {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    line-height: 1.8;
    transition: all 0.3s ease;
}

.product-description p {
    margin: 0;
    line-height: 1.6;
}

.product-card:hover .product-description {
    color: #d0d0d0;
}

/* ========================================
   Premium Card
   ======================================== */

.premium-card {
    border: 3px solid #1e90ff;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.15), rgba(0, 102, 204, 0.1)), 
                linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    box-shadow: 0 0 50px rgba(30, 144, 255, 0.35), 
                inset 0 0 30px rgba(30, 144, 255, 0.08),
                0 0 80px rgba(30, 144, 255, 0.15);
    position: relative;
    overflow: visible;
    transform: scale(1.02);
    padding: 4rem 3rem;
    min-height: auto;
    width: 90%;
    max-width: none;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #1e90ff, #00ff88, #1e90ff, transparent);
    animation: shimmer 2.5s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(30, 144, 255, 0.6);
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0;
        transform: translateX(-100%);
    }
    50% {
        opacity: 1;
        transform: translateX(100%);
    }
}

.premium-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #1e90ff, #00ff88, #1e90ff, transparent);
    animation: shimmer 2.5s ease-in-out infinite;
    animation-direction: reverse;
    box-shadow: 0 0 20px rgba(30, 144, 255, 0.6);
}

.premium-card:hover {
    box-shadow: 0 35px 100px rgba(30, 144, 255, 0.6), 
                inset 0 0 40px rgba(30, 144, 255, 0.15),
                0 0 120px rgba(30, 144, 255, 0.25);
    transform: scale(1.04) translateY(-8px);
    border-color: #00ff88;
}

.premium-ribbon {
    position: absolute;
    bottom: 20px;
    left: -35px;
    background: linear-gradient(135deg, #1e90ff, #00ff88);
    color: white;
    padding: 0.6rem 3.5rem;
    transform: rotate(-45deg);
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(30, 144, 255, 0.5);
    z-index: 10;
    animation: ribbonPulse 2s ease-in-out infinite;
}

@keyframes ribbonPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(30, 144, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 255, 136, 0.8);
    }
}

.premium-badge {
    background: linear-gradient(135deg, #1e90ff, #00ff88) !important;
    box-shadow: 0 0 25px rgba(30, 144, 255, 0.6), 0 0 40px rgba(0, 255, 136, 0.4) !important;
    animation: badgePulse 1.5s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 25px rgba(30, 144, 255, 0.6), 0 0 40px rgba(0, 255, 136, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 35px rgba(30, 144, 255, 0.8), 0 0 60px rgba(0, 255, 136, 0.6);
        transform: scale(1.05);
    }
}

.premium-icon {
    font-size: 5rem !important;
    animation: premiumIconFloat 3.5s ease-in-out infinite, iconGlow 2.5s ease-in-out infinite;
}

.premium-icon i {
    background: linear-gradient(135deg, #1e90ff, #00ff88, #1e90ff) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    filter: drop-shadow(0 0 20px rgba(30, 144, 255, 0.6)) drop-shadow(0 0 40px rgba(0, 255, 136, 0.3)) !important;
}

@keyframes premiumIconFloat {
    0%, 100% { transform: translateY(0px) rotateZ(0deg); }
    50% { transform: translateY(-25px) rotateZ(5deg); }
}

.premium-card:hover .premium-icon i {
    filter: drop-shadow(0 0 30px rgba(30, 144, 255, 0.8)) drop-shadow(0 0 60px rgba(0, 255, 136, 0.6)) !important;
}

.premium-price {
    background: linear-gradient(135deg, #1e90ff, #00ff88, #1e90ff) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-size: 3rem !important;
    animation: pricePulse 2s ease-in-out infinite;
}

@keyframes pricePulse {
    0%, 100% {
        text-shadow: 0 0 15px rgba(30, 144, 255, 0.4), 0 0 25px rgba(0, 255, 136, 0.2);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 25px rgba(30, 144, 255, 0.6), 0 0 40px rgba(0, 255, 136, 0.4);
        transform: scale(1.02);
    }
}

.premium-perks {
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.12), rgba(0, 255, 136, 0.05)) !important;
    border: 2px solid rgba(30, 144, 255, 0.3) !important;
    box-shadow: inset 0 0 20px rgba(30, 144, 255, 0.08), 0 0 20px rgba(30, 144, 255, 0.1) !important;
}

.premium-perks h4 {
    color: #00ff88 !important;
    font-size: 1.2rem !important;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.premium-perks li {
    color: #d0e8ff !important;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.premium-perks li i {
    color: #00ff88;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.premium-perks li:hover {
    color: #00ff88 !important;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.btn-premium {
    background: linear-gradient(135deg, #1e90ff, #00ff88) !important;
    border: 2px solid #00ff88 !important;
    position: relative;
    overflow: hidden;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 1px;
    animation: premiumButtonPulse 2s ease-in-out infinite;
}

@keyframes premiumButtonPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(30, 144, 255, 0.4), 0 0 40px rgba(0, 255, 136, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(30, 144, 255, 0.6), 0 0 60px rgba(0, 255, 136, 0.4);
    }
}

.btn-premium:hover {
    transform: translateY(-4px) scale(1.05) !important;
    box-shadow: 0 10px 40px rgba(30, 144, 255, 0.6), 0 0 60px rgba(0, 255, 136, 0.5) !important;
}

.perks-list {
    background: rgba(30, 144, 255, 0.08);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    text-align: left;
    flex-grow: 1;
    border: 1px solid rgba(30, 144, 255, 0.15);
    backdrop-filter: blur(5px);
}

.perks-list h4 {
    color: #1e90ff;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.perks-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.perks-list li {
    color: #b0b0b0;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(30, 144, 255, 0.1);
    transition: all 0.3s ease;
}

.perks-list li:last-child {
    border-bottom: none;
}

.perks-list li:hover {
    color: #1e90ff;
    padding-left: 0.5rem;
}

/* ========================================
   Donation Card
   ======================================== */

.donation-card {
    border: 2px solid #2a3050;
    position: relative;
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.8), rgba(26, 26, 46, 0.8));
    backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: inset 0 0 20px rgba(30, 144, 255, 0.08), 0 0 30px rgba(30, 144, 255, 0.1);
}

.donation-card:hover {
    box-shadow: 0 25px 70px rgba(30, 144, 255, 0.4), inset 0 0 25px rgba(30, 144, 255, 0.12);
    border-color: #1e90ff;
    transform: translateY(-8px) scale(1.01);
}

/* Unique donation card tiers with progressive styling */

.donation-card-1 {
    border-color: rgba(168, 216, 255, 0.35);
}

.donation-card-1:hover {
    border-color: rgba(168, 216, 255, 0.8);
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.12), rgba(0, 102, 204, 0.05)), 
                linear-gradient(135deg, rgba(22, 33, 62, 0.8), rgba(26, 26, 46, 0.8));
    box-shadow: 0 25px 70px rgba(168, 216, 255, 0.3), inset 0 0 25px rgba(168, 216, 255, 0.1);
}

.donation-card-2 {
    border-color: rgba(255, 215, 0, 0.3);
}

.donation-card-2:hover {
    border-color: rgba(255, 215, 0, 0.8);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 215, 0, 0.04)), 
                linear-gradient(135deg, rgba(22, 33, 62, 0.8), rgba(26, 26, 46, 0.8));
    box-shadow: 0 25px 70px rgba(255, 215, 0, 0.3), inset 0 0 25px rgba(255, 215, 0, 0.1);
}

.donation-card-3 {
    border-color: rgba(205, 127, 50, 0.35);
}

.donation-card-3:hover {
    border-color: rgba(205, 127, 50, 0.8);
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.12), rgba(205, 127, 50, 0.04)), 
                linear-gradient(135deg, rgba(22, 33, 62, 0.8), rgba(26, 26, 46, 0.8));
    box-shadow: 0 25px 70px rgba(205, 127, 50, 0.3), inset 0 0 25px rgba(205, 127, 50, 0.1);
}

.donation-card-4 {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: inset 0 0 20px rgba(30, 144, 255, 0.08), 0 0 30px rgba(255, 215, 0, 0.2);
}

.donation-card-4:hover {
    border-color: rgba(255, 215, 0, 0.9);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05)), 
                linear-gradient(135deg, rgba(22, 33, 62, 0.8), rgba(26, 26, 46, 0.8));
    box-shadow: 0 30px 80px rgba(255, 215, 0, 0.35), inset 0 0 30px rgba(255, 215, 0, 0.15);
}

.donation-card-5 {
    border-color: rgba(255, 237, 78, 0.45);
    box-shadow: inset 0 0 20px rgba(30, 144, 255, 0.08), 0 0 30px rgba(255, 237, 78, 0.2);
}

.donation-card-5:hover {
    border-color: rgba(255, 237, 78, 1);
    background: linear-gradient(135deg, rgba(255, 237, 78, 0.15), rgba(255, 237, 78, 0.05)), 
                linear-gradient(135deg, rgba(22, 33, 62, 0.8), rgba(26, 26, 46, 0.8));
    box-shadow: 0 30px 80px rgba(255, 237, 78, 0.4), inset 0 0 30px rgba(255, 237, 78, 0.15);
}

.donation-card-6 {
    border: 2px solid rgba(225, 0, 255, 0.5);
    box-shadow: inset 0 0 20px rgba(30, 144, 255, 0.08), 0 0 35px rgba(225, 0, 255, 0.25);
    background: linear-gradient(135deg, rgba(225, 0, 255, 0.08), rgba(225, 0, 255, 0.02)), 
                linear-gradient(135deg, rgba(22, 33, 62, 0.85), rgba(26, 26, 46, 0.85));
}

.donation-card-6:hover {
    border-color: rgba(225, 0, 255, 0.95);
    box-shadow: 0 35px 90px rgba(225, 0, 255, 0.4), inset 0 0 35px rgba(225, 0, 255, 0.15);
    background: linear-gradient(135deg, rgba(225, 0, 255, 0.15), rgba(225, 0, 255, 0.05)), 
                linear-gradient(135deg, rgba(22, 33, 62, 0.85), rgba(26, 26, 46, 0.85));
}

.donation-card h3 {
    color: #1e90ff;
    margin-bottom: 0.5rem;
}

.donation-message {
    color: #b0b0b0;
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
}

.donation-card:hover .donation-message {
    color: #1e90ff;
}

/* ========================================
   Buy Button
   ======================================== */

.btn-buy {
    margin-top: auto;
    width: 100%;
    text-decoration: none !important;
}

/* ========================================
   Shop Info Section
   ======================================== */

.shop-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 6rem;
}

.info-card {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border: 2px solid #2a3050;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(5px);
    position: relative;
    animation: slideInUp 0.6s ease-out forwards;
}

.info-card:nth-child(1) {
    animation-delay: 0.3s;
}

.info-card:nth-child(2) {
    animation-delay: 0.4s;
}

.info-card:nth-child(3) {
    animation-delay: 0.5s;
}

.info-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: #1e90ff;
    box-shadow: 0 25px 70px rgba(30, 144, 255, 0.4);
}

.info-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite, iconGlow 2s ease-in-out infinite;
}

.info-card:hover .info-icon {
    transform: scale(1.2);
    filter: drop-shadow(0 0 20px rgba(30, 144, 255, 0.6));
}

.info-card h3 {
    font-size: 1.4rem;
    color: #1e90ff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-card p {
    color: #b0b0b0;
    line-height: 1.8;
    margin: 0;
    letter-spacing: 0.3px;
}

/* ========================================
   Paid Advertisements Section
   ======================================== */

.ads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.ad-card {
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.08) 0%, rgba(0, 102, 204, 0.05) 100%);
    border: 2px solid rgba(30, 144, 255, 0.3);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(30, 144, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
}

.ad-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.15), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.ad-card > * {
    position: relative;
    z-index: 1;
}

.ad-card:hover {
    border-color: #00ff88;
    box-shadow: 0 25px 50px rgba(30, 144, 255, 0.25), inset 0 1px 0 rgba(0, 255, 136, 0.2);
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.12) 0%, rgba(0, 102, 204, 0.08) 100%);
}

.ad-card:hover::before {
    left: 100%;
}

.ad-card .product-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.2) 0%, rgba(0, 255, 136, 0.1) 100%);
    border-radius: 15px;
    border: 2px solid rgba(30, 144, 255, 0.4);
    transition: all 0.4s ease;
}

.ad-card:hover .product-icon {
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.3) 0%, rgba(0, 255, 136, 0.2) 100%);
    border-color: #00ff88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    transform: scale(1.1);
}

.ad-card .product-icon i {
    background: linear-gradient(135deg, #1e90ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(30, 144, 255, 0.4));
    transition: all 0.4s ease;
}

.ad-card:hover .product-icon i {
    filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.6));
}

.ad-card h3 {
    font-size: 1.4rem;
    color: #1e90ff;
    margin: 1rem 0 0.5rem 0;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(30, 144, 255, 0.2);
    transition: all 0.4s ease;
}

.ad-card:hover h3 {
    color: #00ff88;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
}

.ad-card .product-price {
    font-size: 2rem;
    color: #00ff88;
    font-weight: bold;
    margin: 1rem 0;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.ad-card .robux {
    font-size: 1.2rem;
    color: #1e90ff;
    text-shadow: 0 0 8px rgba(30, 144, 255, 0.2);
}

.ad-card .product-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 1rem 0;
    flex-grow: 1;
}

.ad-card .btn-buy {
    margin-top: 1.5rem;
    width: 100%;
    background: linear-gradient(135deg, #1e90ff, #0066cc);
    border: 2px solid rgba(0, 255, 136, 0.3);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.2);
}

.ad-card .btn-buy:hover {
    background: linear-gradient(135deg, #00ff88, #1e90ff);
    border-color: #00ff88;
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.4);
    transform: scale(1.02);
}

/* Specific ad card styling */
.ad-here .product-icon {
    border-color: rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(30, 144, 255, 0.1) 100%);
}

.ad-here:hover .product-icon {
    border-color: rgba(255, 215, 0, 0.8);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(30, 144, 255, 0.15) 100%);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.ad-here .product-icon i {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ad-everyone .product-icon {
    border-color: rgba(255, 85, 85, 0.4);
    background: linear-gradient(135deg, rgba(255, 85, 85, 0.15) 0%, rgba(30, 144, 255, 0.1) 100%);
}

.ad-everyone:hover .product-icon {
    border-color: rgba(255, 85, 85, 0.8);
    background: linear-gradient(135deg, rgba(255, 85, 85, 0.25) 0%, rgba(30, 144, 255, 0.15) 100%);
    box-shadow: 0 0 20px rgba(255, 85, 85, 0.4);
}

.ad-everyone .product-icon i {
    background: linear-gradient(135deg, #ff5555, #ff9999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .ads-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .ad-card {
        padding: 1.5rem;
    }

    .ad-card .product-icon {
        font-size: 2.5rem;
        width: 70px;
        height: 70px;
    }

    .ad-card h3 {
        font-size: 1.2rem;
    }

    .ad-card .product-price {
        font-size: 1.5rem;
    }
}



@media (max-width: 768px) {
    .shop-header {
        min-height: 90vh;
        padding-top: 70px;
        margin-top: -70px;
    }

    .shop-header-content {
        padding: 3rem 2rem;
    }

    .hero-badge-shop {
        font-size: 0.9rem;
        padding: 0.5rem 1.5rem;
        margin-bottom: 1.5rem;
    }

    .shop-header h1 {
        font-size: 3rem;
        margin-bottom: 0.5rem;
    }

    .shop-header-subtitle {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }

    .shop-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 1.2rem 1.5rem;
    }

    .shop-header-divider {
        width: 120px;
        margin-top: 2rem;
    }

    .moon-shop {
        width: 80px;
        height: 80px;
    }

    .category-header {
        margin-bottom: 3rem;
    }

    .category-header h2 {
        font-size: 2rem;
    }

    .category-header h2::after {
        width: 60px;
        bottom: -12px;
    }

    .products-grid,
    .donations-grid,
    .ads-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card {
        padding: 2rem;
    }

    .product-icon {
        font-size: 3rem;
    }

    .product-card h3 {
        font-size: 1.5rem;
    }

    .product-price {
        font-size: 2rem;
    }

    .perks-list {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .shop-info {
        margin-top: 4rem;
        gap: 1.5rem;
    }

    .info-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .shop-header {
        min-height: 85vh;
        padding-top: 70px;
        margin-top: -70px;
    }

    .shop-header-content {
        padding: 2rem 1.2rem;
    }

    .hero-badge-shop {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
        margin-bottom: 1.2rem;
        letter-spacing: 1px;
    }

    .shop-header h1 {
        font-size: 2.2rem;
        margin-bottom: 0.4rem;
        letter-spacing: -0.5px;
    }

    .shop-header-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .shop-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        padding: 1rem 1rem;
    }

    .shop-header-divider {
        width: 80px;
        margin-top: 1.2rem;
    }

    .moon-shop {
        width: 60px;
        height: 60px;
        top: 10%;
        right: 10%;
    }

    .shop-section {
        padding: 2rem 1rem;
    }

    .category-header {
        margin-bottom: 1.8rem;
    }

    .category-header h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .category-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .category-header h2::after {
        width: 50px;
        bottom: -10px;
    }

    .products-grid,
    .donations-grid,
    .ads-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .product-card,
    .ad-card {
        padding: 1.5rem;
    }

    .premium-card {
        padding: 5rem 1.5rem 1.5rem 1.5rem;
        overflow: hidden;
    }

    .product-icon,
    .ad-card .product-icon {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
        width: auto;
        height: auto;
    }

    .premium-icon {
        font-size: 2.5rem !important;
        animation: none !important;
    }

    .premium-icon i {
        animation: none !important;
        transform: none !important;
    }

    .product-card h3,
    .ad-card h3 {
        font-size: 1.2rem;
    }

    .product-price,
    .ad-card .product-price {
        font-size: 1.5rem;
    }

    .product-description {
        font-size: 0.95rem;
    }

    .perks-list {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .perks-list h4 {
        font-size: 0.95rem;
    }

    .perks-list li {
        padding: 0.4rem 0;
        font-size: 0.9rem;
    }

    .info-card {
        padding: 1.5rem 1rem;
    }

    .info-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .info-card h3 {
        font-size: 1.1rem;
    }

    .info-card p {
        font-size: 0.9rem;
    }

    .shop-info {
        margin-top: 3rem;
        gap: 1rem;
    }
}

/* ========================================
   Ultra Mobile (320px - 479px)
   ======================================== */

@media (max-width: 320px) {
    .shop-header {
        min-height: 100vh;
        padding-top: 80px;
        padding: 4rem 0.8rem 2rem;
    }

    .shop-header-content {
        padding: 1.5rem 0.8rem;
    }

    .hero-badge-shop {
        font-size: 0.7rem;
        padding: 0.3rem 1rem;
        margin-bottom: 1rem;
    }

    .shop-header h1 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .shop-header-subtitle {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .shop-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        padding: 0.8rem 1rem;
    }

    .shop-header-divider {
        width: 60px;
    }

    .moon-shop {
        width: 50px;
        height: 50px;
        top: 8%;
        right: 5%;
    }

    .shop-section {
        padding: 2rem 0.8rem;
    }

    .category-header {
        margin-bottom: 1.5rem;
    }

    .category-header h2 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .category-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .products-grid,
    .donations-grid,
    .ads-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .product-card,
    .ad-card {
        padding: 1.2rem 0.8rem;
    }

    .premium-card {
        padding: 4.5rem 0.8rem 0.8rem 0.8rem;
        overflow: hidden;
    }

    .product-icon,
    .ad-card .product-icon {
        font-size: 2rem;
        width: 60px;
        height: 60px;
        margin-bottom: 0.8rem;
    }

    .premium-icon {
        font-size: 2rem !important;
        animation: none !important;
    }

    .premium-icon i {
        animation: none !important;
        transform: none !important;
    }

    .product-card h3,
    .ad-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .product-price,
    .ad-card .product-price {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .premium-icon i {
        font-size: 3rem;
    }

    .perks-list {
        padding: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .perks-list h4 {
        font-size: 0.9rem;
    }

    .perks-list li {
        font-size: 0.8rem;
        padding: 0.3rem 0;
    }

    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Large Desktop (1200px+)
   ======================================== */

@media (min-width: 1200px) {
    .shop-header {
        min-height: 100vh;
        padding-top: 200px;
    }

    .shop-header h1 {
        font-size: 5rem;
    }

    .shop-header-subtitle {
        font-size: 2rem;
    }

    .category-header h2 {
        font-size: 3rem;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .donations-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ads-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .premium-card {
        max-width: 600px;
        margin: 0 auto;
    }

    .product-icon {
        font-size: 4rem;
    }

    .moon-shop {
        width: 120px;
        height: 120px;
    }
}
