:root {
    --primary: #2c3e50;
    --secondary: #3498db;
    --accent: #2980b9;
    --light: #ecf0f1;
    --dark: #1a252f;
    --success: #27ae60;
    --danger: #e74c3c;
    --warning: #f39c12;
    --gray: #7f8c8d;
    --white: #ffffff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    color: var(--dark);
    line-height: 1.6;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: var(--secondary);
    animation: spin 1s ease-in-out infinite;
}

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

.loading-text {
    color: var(--white);
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

header {
    background: rgba(44, 62, 80, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    animation: fadeInDown 0.8s ease-out;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    justify-content: flex-start; 
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    animation: fadeInLeft 0.8s ease-out;
}

.logo i {
    color: var(--secondary);
    margin-right: 10px;
}

.hero {
    background: transparent;
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.products {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary);
    border-radius: 2px;
}

.section-title p {
    color: var(--light);
    max-width: 600px;
    margin: 0 auto;
}

.product-category {
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    z-index: 1;
    contain: layout style paint;
}

.category-title {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.product-card {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    position: relative;
    z-index: 3;
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.2);
}

.product-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

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

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.rockstar { background: linear-gradient(135deg, #ff6b6b, #ff8e8e); }
.joryak { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.google { background: linear-gradient(135deg, #4285f4, #34a853, #fbbc05, #ea4335); }
.joryak-time { background: linear-gradient(135deg, #667eea, #764ba2); }
.fivem { background: linear-gradient(135deg, #ff6b6b, #4ecdc4); }
.epic { background: linear-gradient(135deg, #2a2a2a, #121212); }
.steam { background: linear-gradient(135deg, #171a21, #2a475e); }
.amazon-luna { background: linear-gradient(135deg, #00a8ff, #0097e6); }

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    color: var(--white);
}

.product-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 1rem;
}

.product-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    color: var(--white);
    transition: transform 0.2s ease;
}

.product-features li:hover {
    transform: translateX(5px);
}

.product-features li i {
    color: var(--success);
    margin-right: 0.5rem;
}

.buy-button,
.btn-primary,
.btn-secondary,
.admin-btn,
.music-btn,
.back-to-top,
.close-modal,
.social-btn,
.remove-image,
#whatsappSupport,
#cancelPayment,
#backStep2,
#nextStep1,
#nextStep2,
#finishPayment {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    outline: none;
    border: none;
    text-transform: uppercase;
}

.buy-button {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a73e8 100%);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
    box-shadow: 
        0 6px 20px rgba(52, 152, 219, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

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

.buy-button:hover {
    background: linear-gradient(135deg, var(--accent) 0%, #0d47a1 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 30px rgba(52, 152, 219, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.buy-button:hover::before {
    left: 100%;
}

.buy-button:active {
    transform: translateY(-1px) scale(0.99);
    box-shadow: 
        0 4px 15px rgba(52, 152, 219, 0.3),
        0 1px 3px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.1s ease;
}

.buy-button i {
    font-size: 1.1rem;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
}

.buy-button:disabled {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
    cursor: not-allowed;
    transform: none;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.05);
}

.buy-button:disabled:hover {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
    transform: none;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.buy-button:disabled::before {
    display: none;
}

.buy-button.coming-soon {
    background: linear-gradient(135deg, #f39c12 0%, #d35400 100%);
}

.buy-button.coming-soon:hover {
    background: linear-gradient(135deg, #e67e22 0%, #a04000 100%);
}

.btn-primary {
    background: linear-gradient(135deg, var(--success) 0%, #219653 100%);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 
        0 6px 20px rgba(39, 174, 96, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.15);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 30px rgba(39, 174, 96, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-primary:active:not(:disabled) {
    transform: translateY(-1px) scale(0.99);
    box-shadow: 
        0 4px 15px rgba(39, 174, 96, 0.3),
        0 1px 3px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.1s ease;
}

.btn-primary:disabled {
    background: linear-gradient(135deg, #bdc3c7 0%, #95a5a6 100%);
    cursor: not-allowed;
    transform: none;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.05);
    opacity: 0.7;
}

.btn-primary i {
    font-size: 1.1rem;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
}

.btn-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 
        0 6px 20px rgba(108, 117, 125, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #495057 0%, #343a40 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 30px rgba(108, 117, 125, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.15);
}

.btn-secondary:active {
    transform: translateY(-1px) scale(0.99);
    box-shadow: 
        0 4px 15px rgba(108, 117, 125, 0.3),
        0 1px 3px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.1s ease;
}

.btn-secondary i {
    font-size: 1.1rem;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
}

.admin-btn {
    background: transparent;
    color: var(--white);
    padding: 0.9rem 1.5rem;
    border-radius: 11px;
    font-size: 0.9rem;
    box-shadow: 
        0 6px 20px rgba(155, 89, 182, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    margin-left: auto;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.admin-btn:hover {
    background: linear-gradient(135deg, #0d47a1 0%, #6c3483 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 10px 25px rgba(155, 89, 182, 0.5),
        0 3px 6px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.admin-btn i {
    font-size: 1.1rem;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
}

#whatsappSupport {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 
        0 6px 20px rgba(37, 211, 102, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.15);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

#whatsappSupport:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 30px rgba(37, 211, 102, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

#whatsappSupport i {
    font-size: 1.2rem;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
}

.close-modal {
    background: linear-gradient(135deg, #0d47a1 0%, #c0392b 100%);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 12px rgba(231, 76, 60, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.close-modal:hover {
    background: linear-gradient(135deg, #0d47a1 0%, #a93226 100%);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 
        0 6px 20px rgba(231, 76, 60, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.back-to-top {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 6px 20px rgba(52, 152, 219, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.15);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--accent) 0%, #1a5276 100%);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 
        0 10px 25px rgba(52, 152, 219, 0.5),
        0 3px 6px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.back-to-top i {
    font-size: 1.3rem;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
}

.remove-image {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 
        0 4px 10px rgba(231, 76, 60, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.remove-image:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 15px rgba(231, 76, 60, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.15);
}

.social-btn {
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.25),
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.15);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.social-btn:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.35),
        0 4px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.25);
}

.social-btn i {
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
}

.step-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.step-actions button {
    flex: 1;
    min-height: 52px;
}

@keyframes buttonPulse {
    0% {
        box-shadow: 
            0 6px 20px rgba(52, 152, 219, 0.3),
            0 2px 4px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 6px 20px rgba(52, 152, 219, 0.5),
            0 2px 4px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    100% {
        box-shadow: 
            0 6px 20px rgba(52, 152, 219, 0.3),
            0 2px 4px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}

.btn-primary:not(:disabled) {
    animation: buttonPulse 2s infinite;
}

.coming-soon-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 20;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
    animation: pulse 2s infinite;
    transform: translateZ(0);
}

footer {
    background-color: transparent;
    color: var(--white);
    padding: 3rem 0 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-column p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.contact-info li:hover {
    transform: translateX(5px);
}

.contact-info li i {
    margin-right: 0.8rem;
    color: var(--secondary);
}

.social-footer {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 1rem;
}

.copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: modalBgFadeIn 0.3s ease;
}

@keyframes modalBgFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    width: 100%;
    max-width: 700px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: modalSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: var(--white);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 1;
}

.modal-body {
    padding: 2rem;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

.payment-steps {
    margin-bottom: 2rem;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 2rem;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: var(--secondary);
    color: white;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.step.completed .step-number {
    background: var(--success);
    color: white;
}

.step-label {
    font-size: 0.85rem;
    color: #999;
    font-weight: 600;
    text-align: center;
}

.step.active .step-label {
    color: var(--secondary);
}

.step.completed .step-label {
    color: var(--success);
}

.payment-step {
    display: none;
}

.payment-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.payment-summary {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--secondary);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.summary-item:last-child {
    margin-bottom: 0;
}

.price-highlight {
    font-weight: 700;
    color: var(--success);
    font-size: 1.1rem;
}

.payment-methods {
    margin-bottom: 1.5rem;
}

.payment-category {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eaeaea;
    position: relative;
}

.payment-category:last-child {
    border-bottom: none;
    margin-bottom: 1rem;
}

.payment-category h4 {
    color: var(--primary);
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    padding-left: 1rem;
    border-left: 4px solid var(--secondary);
    display: flex;
    align-items: center;
}

.payment-category h4 i {
    margin-right: 10px;
    color: var(--secondary);
}

.payment-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.payment-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    position: relative;
    text-align: center;
    min-height: 140px;
}

.payment-option:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.payment-option.selected {
    border-color: var(--secondary);
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05) 0%, rgba(41, 128, 185, 0.1) 100%);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
}

.payment-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.payment-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    color: var(--secondary);
}

.payment-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.payment-option h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark);
}

.payment-option p {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
}

.payment-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.payment-badge.popular {
    background: var(--warning);
    color: white;
}

.payment-badge.instant {
    background: var(--success);
    color: white;
}

.payment-option .checkmark {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.payment-option.selected .checkmark {
    opacity: 1;
    transform: scale(1);
}

.payment-option .checkmark i {
    font-size: 0.8rem;
    color: white;
    margin: 0;
}

.payment-details-container {
    margin-bottom: 1.5rem;
}

.payment-instructions {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--secondary);
}

.payment-instructions h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.payment-instructions h4 i {
    margin-right: 10px;
    color: var(--secondary);
}

.payment-instructions ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.payment-instructions li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.bank-info {
    background: white;
    padding: 1.2rem;
    border-radius: 8px;
    margin-top: 1.2rem;
    border-left: 4px solid var(--success);
    animation: fadeInUp 0.6s ease-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.bank-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.bank-info strong {
    color: var(--primary);
    display: inline-block;
    min-width: 120px;
}

.qris-container {
    text-align: center;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 2px dashed var(--secondary);
    animation: fadeInUp 0.6s ease-out;
    position: relative;
    overflow: hidden;
}

.qris-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.qris-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    border: 1px solid #e0e0e0;
}

.qris-image:hover {
    transform: scale(1.03);
}

.qris-note {
    font-size: 0.9rem;
    color: var(--gray);
    font-style: italic;
    margin: 0;
}

.payment-timer {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 1.5rem;
    border: 1px solid #ffc107;
}

.timer-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #856404;
}

.timer-header i {
    font-size: 1.2rem;
}

.timer-display {
    font-size: 2rem;
    font-weight: 700;
    color: var(--danger);
    margin-bottom: 0.5rem;
    font-family: 'Courier New', monospace;
}

.timer-note {
    font-size: 0.85rem;
    color: #856404;
}

.confirmation-check {
    margin: 1.5rem 0;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--success);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 7px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.success-container {
    text-align: center;
    padding: 2rem 0;
}

.success-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 1.5rem;
    animation: bounceIn 0.8s ease;
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.1); opacity: 1; }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.success-container h3 {
    color: var(--success);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.success-container p {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.order-summary {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: left;
    border-left: 4px solid var(--success);
}

.next-steps {
    text-align: left;
    margin-bottom: 2rem;
}

.next-steps h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.next-steps ol {
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

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

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-down {
    animation: fadeInDown 0.8s ease-out;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

.animate-zoom-in {
    animation: zoomIn 0.8s ease-out;
}

.animate-slide-in-up {
    animation: slideInUp 0.8s ease-out;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

.closing-banner {
    display: none;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 101;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.5s ease-out;
    overflow: hidden;
}

.closing-banner.show {
    display: block;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.banner-content i {
    font-size: 1.2rem;
    animation: pulse 1.5s infinite;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.music-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 99;
}

.music-btn.muted {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    z-index: 1001;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 300px;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.notification.error {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.notification.info {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        margin-bottom: 1rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .modal-content {
        max-width: 95%;
        margin: 1rem;
    }
    
    .modal-body {
        padding: 1.5rem;
        max-height: 80vh;
    }
    
    .payment-options-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .payment-option {
        padding: 1rem 0.5rem;
        min-height: 120px;
    }
    
    .payment-icon {
        font-size: 2rem;
    }
    
    .payment-option h4 {
        font-size: 0.9rem;
    }
    
    .payment-option p {
        font-size: 0.75rem;
    }
    
    .step-actions {
        flex-direction: column;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .banner-content {
        font-size: 0.9rem;
        gap: 10px;
        animation: marquee 15s linear infinite;
    }
    
    .banner-content i {
        font-size: 1rem;
    }
    
    .music-btn {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
    }
    
    .buy-button,
    .btn-primary,
    .btn-secondary,
    #whatsappSupport {
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .step-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .step-actions button {
        width: 100%;
    }
    
    .admin-btn {
        width: 45px;
        height: 45px;
        padding: 0;
        justify-content: center;
    }
    
    .admin-btn span {
        display: none;
    }
    
    .admin-btn i {
        font-size: 1.2rem;
        margin: 0;
    }
    
    .buy-button:hover,
    .btn-primary:hover,
    .btn-secondary:hover,
    .admin-btn:hover,
    .social-btn:hover,
    .back-to-top:hover,
    .music-btn:hover,
    .close-modal:hover,
    .remove-image:hover,
    #whatsappSupport:hover {
        transform: none;
    }
    
    .buy-button:active,
    .btn-primary:active,
    .btn-secondary:active,
    .admin-btn:active,
    .social-btn:active,
    .back-to-top:active,
    .music-btn:active,
    .close-modal:active,
    .remove-image:active,
    #whatsappSupport:active {
        transform: scale(0.98);
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .products {
        padding: 3rem 0;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-header {
        padding: 1.2rem 1.5rem;
    }
    
    .modal-header h3 {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 1.2rem;
    }
    
    .payment-options-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .payment-category h4 {
        font-size: 1rem;
    }
    
    .payment-details-container {
        padding: 1rem;
    }
    
    .bank-info {
        padding: 1rem;
    }
    
    .qris-container {
        padding: 1.2rem;
    }
    
    .banner-content {
        font-size: 0.8rem;
        gap: 8px;
        animation: marquee 12s linear infinite;
    }
    
    .buy-button,
    .btn-primary,
    .btn-secondary,
    #whatsappSupport {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }
    
    .buy-button i,
    .btn-primary i,
    .btn-secondary i {
        font-size: 1rem;
    }
    
    .back-to-top,
    .music-btn {
        width: 45px;
        height: 45px;
        bottom: 15px;
    }
    
    .back-to-top {
        right: 15px;
    }
    
    .music-btn {
        left: 15px;
    }
}

@media (max-width: 768px) {
    .product-card:hover {
        transform: none;
    }
    
    .product-card:hover .product-image img {
        transform: none;
    }
    
    .payment-option:hover {
        transform: none;
    }
    
    .product-features li:hover {
        transform: none;
    }
    
    .contact-info li:hover {
        transform: none;
    }
}

@media print {
    .closing-banner,
    .back-to-top,
    .social-footer,
    .buy-button,
    .music-btn,
    .btn-primary,
    .btn-secondary,
    .admin-btn {
        display: none !important;
    }
    
    body::before {
        display: none;
    }
    
    .product-card {
        background: white !important;
        color: black !important;
        border: 1px solid #ddd !important;
    }
}

.upload-proof {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--secondary);
}

.upload-proof h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.upload-proof h4 i {
    margin-right: 10px;
    color: var(--secondary);
}

.upload-container {
    position: relative;
}

.upload-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border: 2px dashed var(--secondary);
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.upload-label:hover {
    background: #f8f9fa;
    border-color: var(--accent);
}

.upload-label i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.upload-label span {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.upload-label small {
    color: var(--gray);
    font-size: 0.8rem;
}

.upload-preview {
    margin-top: 1rem;
    display: none;
}

.upload-preview.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.preview-image {
    max-width: 100%;
    max-height: 200px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--success);
}

.preview-info {
    margin-top: 0.5rem;
    text-align: center;
}

.preview-info .file-name {
    font-weight: 600;
    color: var(--primary);
}

.preview-info .file-size {
    color: var(--gray);
    font-size: 0.8rem;
}

.product-counter {
    position: absolute;
    top: 8px;
    right: 8px;
    background: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 6px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.15);
    pointer-events: none;
}

.product-counter i {
    font-size: 0.7rem;
    color: #4fc3f7;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.counter-number {
    font-weight: 700;
    font-size: 0.75rem;
    color: #ffffff;
    min-width: 16px;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes counter-pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.counter-update {
    animation: counter-pop 0.4s ease;
}

.product-card:hover .product-counter {
    background: rgba(40, 40, 40, 0.9);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.product-card:hover .product-counter i {
    color: #ffb74d;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .product-counter {
        top: 6px;
        right: 6px;
        padding: 4px 8px;
        font-size: 0.6rem;
    }
    
    .product-counter i {
        font-size: 0.6rem;
    }
    
    .counter-number {
        font-size: 0.65rem;
        min-width: 14px;
    }
}

.operating-hours-widget {
    margin: 2rem auto 0;
    max-width: 400px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.store-status {
    margin-bottom: 0;
}

.status-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.status-container h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 600;
}

.status-indicator {
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.status-open {
    color: #2ecc71;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.status-closed {
    color: #e74c3c;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.next-opening {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 1rem;
    font-weight: 500;
}

.operating-hours-info {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    margin-top: 1rem;
}

.operating-hours-info p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.operating-hours-info strong {
    color: var(--white);
}

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

.status-open {
    animation: pulse-open 2s infinite;
}

@media (max-width: 768px) {
    .operating-hours-widget {
        margin: 1.5rem auto 0;
        max-width: 350px;
    }
    
    .status-container {
        padding: 1.2rem;
    }
    
    .status-container h3 {
        font-size: 1.2rem;
    }
    
    .status-indicator {
        font-size: 1.1rem;
    }
    
    .next-opening {
        font-size: 0.95rem;
    }
    
    .operating-hours-info p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .operating-hours-widget {
        max-width: 300px;
        margin: 1rem auto 0;
    }
    
    .status-container {
        padding: 1rem;
    }
    
    .status-container h3 {
        font-size: 1.1rem;
    }
    
    .status-indicator {
        font-size: 1rem;
    }
    
    .next-opening {
        font-size: 0.9rem;
    }
}

.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -2;
    pointer-events: none;
}

.no-video .video-bg {
    display: none;
}

@media (max-width: 768px) {
    .video-bg {
        display: none;
    }
    
    body::before {
        background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(26, 37, 47, 0.95));
    }
}

.container, .hero, .products, footer {
    position: relative;
    z-index: 1;
}

#finishPayment {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%) !important;
    color: var(--white) !important;
    box-shadow: 
        0 6px 20px rgba(108, 117, 125, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}

#finishPayment:hover {
    background: linear-gradient(135deg, #495057 0%, #343a40 100%) !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 30px rgba(108, 117, 125, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
}

#finishPayment:active {
    transform: translateY(-1px) scale(0.99);
    box-shadow: 
        0 4px 15px rgba(108, 117, 125, 0.3),
        0 1px 3px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    transition: all 0.1s ease;
}

#finishPayment i {
    font-size: 1.1rem;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
}

.social-footer {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.95rem;
    min-width: 120px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.discord-btn {
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.social-btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

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

.social-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.social-btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .social-btn {
        padding: 8px 16px;
        min-width: 100px;
        font-size: 0.9rem;
    }
    
    .social-footer {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .social-btn {
        padding: 6px 12px;
        min-width: 90px;
        font-size: 0.85rem;
    }
}