:root {
    --bg-dark: #050505;
    --bg-card: #0f0f0f;
    --bg-card-hover: #161616;
    --primary: #ffffff;
    --accent: #6366f1;
    --accent-glow: rgba(99, 102, 241, 0.4);
    --text-main: #ffffff;
    --text-muted: #888888;
    --border: #222222;
    --success: #22c55e;
    --warning: #f59e0b;
    --error: #ef4444;
}

.demo-banner {
    background: linear-gradient(90deg, #f59e0b, #d97706);
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 14px 20px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    color: white;
    font-size: 0.9rem;
    z-index: 10000;
    animation: notificationSlideIn 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.notification-success {
    border-color: var(--success);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, #1a1a1a 100%);
}

.notification-error {
    border-color: var(--error);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, #1a1a1a 100%);
}

.notification-warning {
    border-color: var(--warning);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, #1a1a1a 100%);
}

.notification-info {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, #1a1a1a 100%);
}

.notification-hide {
    animation: notificationSlideOut 0.3s ease forwards;
}

@keyframes notificationSlideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes notificationSlideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(100px);
    }
}

.login-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #222;
    font-size: 0.75rem;
    color: #666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.5;
}

.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at 50% 50%, black 40%, transparent 100%);
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(9, 9, 11, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 40px;
    z-index: 100;
}

.nav-logo {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(99, 102, 241, 0.3);
}

.logo-img {
    height: 40px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
}

.nav-title {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: inherit;
    transition: color 0.2s;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-main);
}

.discord-link {
    color: #5865F2;
}

.discord-link:hover {
    color: #7289DA;
}

.nav-actions {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    border: 1px solid transparent;
    font-family: inherit;
}

.btn-primary {
    background: white;
    color: black;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.btn-small {
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.back-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.back-btn:hover {
    border-color: #666;
    background: rgba(255, 255, 255, 0.1);
}

.section {
    min-height: 100vh;
    padding-top: 100px;
}

.hidden {
    display: none !important;
}

.hero-container {
    min-height: 90vh;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-container-centered {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container-with-ad {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.ad-banner {
    display: block;
    width: 100%;
    max-width: 728px;
    height: auto;
    min-height: 90px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 0 auto 2rem auto;
}

.ad-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ad-banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.ad-label {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #888;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.admin-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
}

.admin-card h3 {
    margin-bottom: 0.5rem;
}

.ad-preview {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ad-preview h4 {
    margin-bottom: 0.75rem;
    color: #888;
    font-size: 0.85rem;
}

.ad-preview img {
    max-width: 200px;
    max-height: 300px;
    border-radius: 8px;
    object-fit: contain;
}

.file-upload-area {
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.02);
}

.file-upload-area:hover {
    border-color: var(--accent);
    background: rgba(99, 102, 241, 0.05);
}

.upload-placeholder {
    color: #888;
}

.upload-placeholder svg {
    margin-bottom: 1rem;
    opacity: 0.5;
}

.upload-placeholder p {
    margin-bottom: 0.25rem;
}

.upload-placeholder span {
    font-size: 0.8rem;
    opacity: 0.6;
}

.upload-preview img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 8px;
    object-fit: contain;
}

.ads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.ad-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.ad-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.ad-card-actions {
    padding: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ad-card-link {
    font-size: 0.75rem;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
}

.ad-delete-btn {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: none;
    padding: 0.4rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.ad-delete-btn:hover {
    background: #ef4444;
    color: white;
}

.empty-ads {
    text-align: center;
    padding: 3rem;
    color: #666;
    grid-column: 1 / -1;
}

.empty-ads svg {
    margin-bottom: 1rem;
    opacity: 0.3;
}

.reviews-box {
    background: rgba(5, 5, 5, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 1.5rem;
    height: 500px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.reviews-header {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reviews-header h3 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.live-badge {
    font-size: 0.8rem;
    color: #666;
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 8px;
    border-radius: 4px;
}

.reviews-list {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-right: 0.5rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 0.9rem;
    transition: background 0.2s;
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.05);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
}

.review-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #a855f7);
}

.review-name {
    font-weight: 600;
    font-size: 0.85rem;
    display: block;
    line-height: 1;
}

.review-badge {
    font-size: 0.7rem;
    color: #666;
}

.review-content {
    color: #ccc;
    line-height: 1.4;
    font-size: 0.9rem;
    margin: 0;
}

.reviews-footer {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
}

.reviews-footer a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.reviews-footer a:hover {
    text-decoration: underline;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 0.85rem;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.hero-title span {
    display: block;
}

.text-accent {
    background: linear-gradient(135deg, #00acff, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px rgba(0, 172, 255, 0.4);
}

.hero-description {
    max-width: 550px;
    margin: 0 auto 2.5rem;
    color: var(--text-muted);
    font-size: 1.125rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.payment-methods {
    margin-top: 4rem;
    opacity: 0.5;
}

.payment-label {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.payment-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
}

.products-section {
    background: #09090b;
    padding-bottom: 4rem;
}

.products-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.products-header h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.products-header p {
    margin: 6px 0 0 0;
    color: var(--text-muted);
    font-size: 1rem;
}

.product-category {
    margin-bottom: 5rem;
}

.category-header {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-header svg {
    color: var(--text-muted);
}

.category-line {
    height: 1px;
    background: var(--border);
    flex: 1;
    margin-left: 16px;
}

.promo-banner {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.promo-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.promo-banner-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    align-items: start;
}

.product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.product-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.3);
}

.product-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    color: #888;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 10px;
}

.product-name {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    color: white;
    flex: 1;
}

.product-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
    flex: 1;
}

.product-footer {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
}

.product-price-label {
    font-size: 0.6rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.product-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    white-space: nowrap;
}

.product-period {
    font-size: 0.8rem;
    color: #666;
    margin-left: 4px;
}

.product-sale {
    text-decoration: line-through;
    color: #555;
    font-size: 0.9rem;
    margin-left: 8px;
}

.buy-btn {
    background: white;
    color: black;
    border: none;
    padding: 6px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.1s;
    font-family: inherit;
    white-space: nowrap;
    flex-shrink: 0;
}

.buy-btn svg {
    width: 12px;
    height: 12px;
}

.buy-btn:hover {
    opacity: 0.9;
    transform: scale(0.98);
}

.buy-btn:active {
    transform: scale(0.95);
}

.contact-card {
    border: 1px dashed rgba(255, 255, 255, 0.15) !important;
    background: rgba(255, 255, 255, 0.02) !important;
}

.contact-card:hover {
    border-color: rgba(255, 255, 255, 0.3) !important;
    background: rgba(255, 255, 255, 0.04) !important;
}

.contact-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 10px 0;
}

.contact-icon {
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 2px;
}

.contact-card .product-name {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.contact-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.5;
    margin: 0;
}

.contact-btn {
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    font-weight: 600;
    transition: all 0.2s;
}

.contact-card:hover .contact-btn {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.duk-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.duk-hero {
    text-align: center;
    margin-bottom: 2.5rem;
}

.duk-hero h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.5rem;
    letter-spacing: -0.5px;
}

.duk-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.duk-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.duk-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 1.5rem;
    transition: all 0.2s;
}

.duk-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.duk-card-wide {
    grid-column: 1 / -1;
}

.duk-card-icon {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.duk-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.75rem;
}

.duk-card p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin: 0 0 0.5rem;
}

.duk-card p:last-child {
    margin-bottom: 0;
}

.duk-card ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
}

.duk-card ul li {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.duk-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}

.duk-accent {
    color: rgba(255, 255, 255, 0.75) !important;
    font-style: italic;
}

.duk-label {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 600;
    font-size: 0.78rem !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.75rem !important;
}

.duk-exchange-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 1rem 0;
}

.duk-exchange-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 1rem;
}

.duk-exchange-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 0.5rem;
}

.duk-exchange-rates {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.duk-exchange-rates span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
}

.duk-exchange-rates strong {
    color: #fff;
}

.duk-note {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.4) !important;
    margin-top: 0.25rem !important;
}

.duk-card-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px dashed rgba(255, 255, 255, 0.12);
}

.duk-cta-btn {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.6rem 1.5rem;
    background: #fff;
    color: #000;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.duk-cta-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

@media (max-width: 600px) {
    .duk-grid {
        grid-template-columns: 1fr;
    }

    .duk-exchange-grid {
        grid-template-columns: 1fr;
    }

    .duk-hero h2 {
        font-size: 1.4rem;
    }
}

.footer-discord {
    margin-top: 0.5rem;
}

.footer-discord a {
    color: #5865F2;
    text-decoration: none;
    font-weight: 600;
}

.footer-discord a:hover {
    text-decoration: underline;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #09090b;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 2rem;
    }

    .reviews-box {
        height: 300px;
        order: 2;
    }

    .hero-content {
        order: 1;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 16px;
        height: 70px;
    }

    .nav-logo {
        gap: 8px;
    }

    .logo-img {
        height: 32px;
    }

    .nav-title {
        font-size: 1rem;
    }

    .nav-links {
        display: none;
    }

    .nav-actions .btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .btn-cart {
        padding: 6px 10px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-card {
        padding: 14px;
    }

    .product-name {
        font-size: 0.85rem;
    }

    .product-price {
        font-size: 0.85rem;
    }

    .product-price-label {
        font-size: 0.55rem;
    }

    .buy-btn {
        padding: 5px 10px;
        font-size: 0.7rem;
    }

    .products-header {
        flex-direction: column;
        gap: 1rem;
    }

    .product-card {
        padding: 16px;
    }

    .buy-btn {
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .container {
        padding: 0 1rem;
    }

    .section {
        padding-top: 80px;
    }


    .splash-logo {
        width: 90px;
        height: 90px;
    }

    .splash-title {
        font-size: 2rem;
    }

    .splash-subtitle {
        font-size: 1rem;
    }

    .splash-enter-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .splash-footer {
        flex-wrap: wrap;
        justify-content: center;
        font-size: 0.75rem;
    }


    .ad-banner {
        max-width: 100%;
        min-height: 60px;
        margin: 0 0 1.5rem 0;
    }


    .modal-content {
        max-width: 95%;
        padding: 1.5rem;
    }

    .modal-wide {
        max-width: 95%;
        max-height: 90vh;
    }


    .form-row {
        grid-template-columns: 1fr;
    }

    .variant-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .variant-row .input-field {
        width: 100%;
    }


    .btn-full {
        padding: 12px;
        font-size: 0.9rem;
    }


    .product-card {
        min-height: auto;
    }

    .product-footer {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .buy-btn {
        width: 100%;
        justify-content: center;
    }


    .category-header {
        font-size: 1.1rem;
    }


    .store-header h2 {
        font-size: 1.8rem;
    }

    .store-header p {
        font-size: 0.95rem;
    }
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #333;
}

.user-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

.btn-logout {
    background: transparent;
    border: 1px solid #333;
    color: #888;
    padding: 6px 12px;
    font-size: 0.8rem;
}

.btn-logout:hover {
    border-color: #ff4444;
    color: #ff4444;
}

.admin-link {
    color: #a78bfa !important;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: #111;
    border: 1px solid #222;
    border-radius: 20px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    animation: modalIn 0.3s ease;
}

.modal-wide {
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.15s;
    z-index: 10;
    padding: 0;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
}

.modal-content h2 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
}

.modal-subtitle {
    color: #666;
    margin: 0 0 1.5rem 0;
}

.modal-divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    color: #444;
    font-size: 0.85rem;
}

.modal-divider::before,
.modal-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #333;
}

.modal-divider span {
    padding: 0 1rem;
}

.input-field {
    width: 100%;
    padding: 12px 16px;
    background: #0a0a0a;
    border: 1px solid #333;
    border-radius: 10px;
    color: white;
    font-size: 0.95rem;
    font-family: inherit;
    margin-bottom: 12px;
    transition: border-color 0.2s;
}

.input-field:focus {
    outline: none;
    border-color: var(--accent);
}

.input-field::placeholder {
    color: #555;
}

.textarea {
    min-height: 100px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.85rem;
    color: #888;
}

.form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

.btn-google {
    background: white;
    color: #333;
    width: 100%;
    padding: 12px;
    font-size: 1rem;
}

.btn-google:hover {
    background: #f5f5f5;
}

.btn-full {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
}

.login-icon {
    text-align: center;
    margin-bottom: 1rem;
}

.security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #222;
    font-size: 0.75rem;
    color: #666;
}

.btn-secondary {
    background: transparent;
    border: 1px solid #333;
    color: white;
}

.btn-secondary:hover {
    border-color: #555;
    background: rgba(255, 255, 255, 0.05);
}

.btn-danger {
    background: #ff4444;
    color: white;
    border: none;
}

.btn-danger:hover {
    background: #ff6666;
}

.admin-section {
    background: #09090b;
    padding-bottom: 4rem;
    min-height: 100vh;
}

.admin-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.admin-top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #222;
    padding-bottom: 20px;
}

.admin-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.admin-subtitle {
    color: #666;
    margin-top: 4px;
    font-size: 0.9rem;
}

.btn-outline {
    background: transparent;
    border: 1px solid #333;
    color: #fff;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    border-color: #555;
    background: rgba(255, 255, 255, 0.05);
}

.admin-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: start;
}

.admin-sidebar {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.admin-nav-btn {
    width: 100%;
    text-align: left;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid transparent;
    cursor: pointer;
    background: #111;
    color: #888;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    font-family: inherit;
    transition: all 0.2s;
}

.admin-nav-btn:hover {
    background: #1a1a1a;
    color: #aaa;
}

.admin-nav-btn.active {
    background: #222;
    border-color: #333;
    color: white;
}

.admin-nav-btn svg {
    color: #666;
}

.admin-nav-btn.active svg {
    color: white;
}

.admin-main {
    min-height: 500px;
}

.admin-content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.admin-content-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.admin-table-container {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    overflow: hidden;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

.admin-table thead tr {
    border-bottom: 1px solid #222;
    background: #161616;
}

.admin-table th {
    padding: 16px;
    color: #888;
    font-weight: 500;
}

.admin-table tbody tr {
    border-bottom: 1px solid #1a1a1a;
    transition: background 0.2s;
}

.admin-table tbody tr:hover {
    background: #1f1f1f;
}

.admin-table tbody tr:last-child {
    border-bottom: none;
}

.admin-table td {
    padding: 16px;
    color: white;
}

.admin-table td:first-child {
    font-weight: 500;
}

.tag-badge {
    background: #1a1a1a;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #aaa;
}

.action-buttons {
    display: inline-flex;
    gap: 8px;
    justify-content: flex-end;
}

.action-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #888;
    padding: 6px;
    border-radius: 6px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.action-btn.delete:hover {
    background: rgba(255, 68, 68, 0.1);
    color: #ff4444;
}

.admin-note {
    background: rgba(255, 200, 0, 0.1);
    border: 1px solid rgba(255, 200, 0, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    color: #ffd700;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 900px) {
    .admin-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .admin-sidebar {
        flex-direction: row;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 8px;
    }

    .admin-nav-btn {
        white-space: nowrap;
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    .admin-table {
        font-size: 0.8rem;
    }

    .admin-table th,
    .admin-table td {
        padding: 12px 8px;
    }

    .admin-container {
        padding: 0 16px;
    }

    .admin-top-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }


    .admin-table-container {
        overflow-x: auto;
    }

    .admin-table {
        min-width: 600px;
    }


    .product-form .form-row {
        grid-template-columns: 1fr;
    }

    .variants-editor {
        gap: 1rem;
    }

    .variant-row {
        grid-template-columns: 1fr;
        background: rgba(255, 255, 255, 0.03);
        padding: 0.75rem;
        border-radius: 8px;
    }

    .ads-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

.notification {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    padding: 14px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 10000;
    animation: slideUp 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.notification svg {
    flex-shrink: 0;
}

.notification-success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.notification-error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

.notification-warning {
    background: rgba(234, 179, 8, 0.15);
    border: 1px solid rgba(234, 179, 8, 0.3);
    color: #fbbf24;
}

.notification-info {
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #818cf8;
}

.notification-hide {
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    to {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal.hidden {
    display: none;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.product-detail-modal {
    position: relative;
    z-index: 1001;
    background: linear-gradient(180deg, #12121f 0%, #0a0a14 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    max-width: 420px;
    width: 95%;
    max-height: 90vh;
    overflow: hidden;
    animation: modalIn 0.3s ease;
    box-shadow:
        0 30px 100px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.product-detail-modal .modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 0.5rem;
    transition: all 0.2s ease;
}

.product-detail-modal .modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(90deg);
}

.product-detail-content {
    display: block;
    min-height: auto;
}

.product-detail-image {
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.product-image-box {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 20px;
    width: 100%;
    aspect-ratio: 1;
    justify-content: center;
}

.product-icon svg {
    filter: drop-shadow(0 0 20px currentColor);
}

.fortnite-icon {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

.spotify-icon {
    background: linear-gradient(135deg, #1db954 0%, #169c46 100%);
    color: white;
}

.netflix-icon {
    background: linear-gradient(135deg, #e50914 0%, #b81d24 100%);
    color: white;
}

.steam-icon {
    background: linear-gradient(135deg, #1b2838 0%, #2a475e 100%);
    color: #66c0f4;
}

.discord-icon {
    background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
    color: white;
}

.default-icon {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    color: #9ca3af;
}

.icon-label {
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-detail-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

.product-detail-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    letter-spacing: -0.5px;
}

.product-detail-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}



.product-price-display {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    padding: 1rem 0;
}

.price-old {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.price-current {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.product-buy-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    border-radius: 14px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.product-buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

.category-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.15);
}

.variants-btn {
    pointer-events: none;
    background: #fff !important;
    border: 1px solid #fff !important;
    color: #000 !important;
}

@media (max-width: 768px) {
    .product-detail-modal {
        max-width: 100%;
        width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
        position: fixed;
        top: 0;
        left: 0;
    }

    .product-detail-content {
        display: block;
    }

    .product-detail-image {
        display: none;
    }

    .product-detail-info {
        padding: 4rem 1.5rem 2rem;
    }

    .product-detail-title {
        font-size: 1.4rem;
    }

    .product-detail-modal .modal-close {
        top: 0.75rem;
        right: 0.75rem;
        z-index: 100;
    }
}

.icon-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.icon-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.icon-option:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.icon-option.selected {
    border-color: var(--accent);
    background: rgba(99, 102, 241, 0.1);
}

.icon-option span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.icon-preview {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: white;
}

.fortnite-icon-mini {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
}

.spotify-icon-mini {
    background: linear-gradient(135deg, #1db954, #169c46);
}

.netflix-icon-mini {
    background: linear-gradient(135deg, #e50914, #b81d24);
}

.steam-icon-mini {
    background: linear-gradient(135deg, #1b2838, #2a475e);
    color: #66c0f4;
}

.discord-icon-mini {
    background: linear-gradient(135deg, #5865f2, #4752c4);
}

.default-icon-mini {
    background: linear-gradient(135deg, #374151, #1f2937);
    color: #9ca3af;
}

.variants-editor {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.variant-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 0.5rem;
    align-items: center;
}

.variant-row .input-field {
    margin: 0;
}

.btn-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.btn-danger:hover {
    background: rgba(239, 68, 68, 0.2);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.admin-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
}

.icon-fortnite {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.icon-spotify {
    background: linear-gradient(135deg, #1db954, #169c46);
}

.icon-netflix {
    background: linear-gradient(135deg, #e50914, #b81d24);
}

.icon-steam {
    background: linear-gradient(135deg, #1b2838, #2a475e);
    color: #66c0f4;
}

.icon-discord {
    background: linear-gradient(135deg, #5865f2, #4752c4);
}

.icon-default {
    background: linear-gradient(135deg, #374151, #1f2937);
    color: #9ca3af;
}

.custom-icon-mini {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    color: rgba(255, 255, 255, 0.6);
    border: 1px dashed rgba(255, 255, 255, 0.2);
}

.icon-upload-option .icon-preview {
    overflow: hidden;
}

.custom-uploaded-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.product-modal-new {
    position: relative;
    z-index: 1001;
    display: grid;
    grid-template-columns: 280px 1fr;
    max-width: 720px;
    width: 95%;
    max-height: 90vh;
    border-radius: 20px;
    overflow: hidden;
    animation: modalIn 0.3s ease;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8);
}

.modal-close-new {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: 50%;
    padding: 0.5rem;
    cursor: pointer;
    color: #fff;
    transition: all 0.2s ease;
}

.modal-close-new:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: rotate(90deg);
}

.modal-left {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    gap: 1.5rem;
}

.modal-product-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.modal-product-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-right {
    background: linear-gradient(180deg, #12121f 0%, #0a0a14 100%);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modal-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.modal-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}



.modal-price-section {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.modal-price-old {
    font-size: 1rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.modal-price {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.modal-buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    white-space: nowrap;
    box-sizing: border-box;
}

.modal-buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

@media (max-width: 768px) {
    .product-modal-new {
        grid-template-columns: 1fr;
        max-width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
    }

    .modal-left {
        padding: 2rem;
    }

    .modal-product-icon {
        width: 80px;
        height: 80px;
    }

    .modal-product-name {
        font-size: 1.2rem;
    }
}


.simple-modal {
    position: relative;
    z-index: 1001;
    background: linear-gradient(180deg, #16161f 0%, #0d0d14 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    max-width: 380px;
    width: 95%;
    padding: 2rem;
    animation: modalIn 0.3s ease;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.7);
}

.simple-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    padding: 0.4rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.2s ease;
}

.simple-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.simple-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.simple-modal-variants {
    margin-bottom: 1.5rem;
}

.simple-modal-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    text-align: center;
}



.simple-modal-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.simple-price-old {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    margin-right: 0.5rem;
}

.simple-price {
    font-size: 2rem;
    font-weight: 800;
    color: #4ade80;
}

.simple-buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.9rem;
    background: #6366f1;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.simple-buy-btn:hover {
    background: #5558e3;
    transform: translateY(-1px);
}


.product-card {
    position: relative;
    overflow: hidden;
}

.product-card-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    margin: -1.25rem -1.25rem 1rem -1.25rem;
    width: calc(100% + 2.5rem);
}

.product-card.sold-out {
    opacity: 0.8;
    cursor: not-allowed;
}

.sold-out-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    background: rgba(239, 68, 68, 0.9);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    padding: 0.5rem 2rem;
    border-radius: 4px;
    z-index: 10;
    letter-spacing: 2px;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.5);
}


.file-upload-area.small {
    padding: 1rem;
    min-height: 100px;
}

.file-upload-area.small .upload-placeholder svg {
    width: 32px;
    height: 32px;
}

.file-upload-area.small .upload-placeholder p {
    font-size: 0.8rem;
    margin: 0.5rem 0 0 0;
}


.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #ef4444;
    cursor: pointer;
}


.product-card.has-image {
    padding: 0;
    background: transparent;
}

.product-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: blur(20px);
    opacity: 0.4;
    transform: scale(1.1);
    z-index: 0;
}

.product-card.has-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10, 10, 20, 0.3) 0%, rgba(10, 10, 20, 0.95) 60%);
    z-index: 1;
    border-radius: 16px;
}

.product-card-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 0.75rem;
}

.product-card-content {
    position: relative;
    z-index: 2;
    padding: 1.25rem;
}

.product-card.has-image .product-card-content {
    padding-top: 0;
}

.product-card.has-image .product-tag,
.product-card.has-image .product-name,
.product-card.has-image .product-price-label,
.product-card.has-image .product-price {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}


.advertise-section {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    text-align: center;
}

.advertise-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.advertise-title svg {
    color: #6366f1;
}

.advertise-cards {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.advertise-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    min-width: 140px;
    transition: all 0.3s ease;
}

.advertise-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.3);
}

.advertise-card.popular {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border-color: rgba(99, 102, 241, 0.4);
}

.advertise-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.advertise-period {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.advertise-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advertise-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #5865F2 0%, #7289da 100%);
    color: #fff;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.advertise-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
}


.admin-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.ad-pricing-form {
    margin-top: 1rem;
}

.ad-pricing-form .form-row {
    margin-bottom: 1rem;
}

.ad-pricing-form .btn {
    margin-top: 0.5rem;
}


.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a14 0%, #12121f 50%, #0a0a14 100%);
    display: flex;
    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-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.loader-logo {
    width: 80px;
    height: 80px;
    animation: pulse-glow 1.5s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.3));
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 30px rgba(99, 102, 241, 0.8));
    }
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #6366f1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loader-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
}


.splash-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.splash-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 1rem;
}

.splash-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    user-select: none;
    -webkit-user-select: none;
    padding-bottom: 5rem;
}

.splash-logo {
    width: 120px;
    height: 120px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(99, 102, 241, 0.5));
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.splash-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.splash-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.splash-enter-btn {
    margin-top: 1.5rem;
    padding: 0.875rem 2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.splash-enter-btn:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
}

@keyframes pulse-btn {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
    }

    50% {
        box-shadow: 0 0 40px rgba(99, 102, 241, 0.8);
    }
}

.splash-enter-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(99, 102, 241, 0.8);
}

.splash-enter-btn svg {
    transition: transform 0.3s ease;
}

.splash-enter-btn:hover svg {
    transform: translateX(5px);
}


.splash-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}


.splash-stats {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
}

.splash-stat {
    text-align: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.splash-stat:hover {
    border-color: rgba(99, 102, 241, 0.4);
    background: rgba(99, 102, 241, 0.1);
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #6366f1;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}


.splash-footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.payment-badge {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}


.delay-250 {
    animation-delay: 0.25s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.splash-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    animation: scroll-wheel 1.5s ease-in-out infinite;
}

@keyframes scroll-wheel {

    0%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }

    50% {
        opacity: 0.3;
        transform: translateY(8px);
    }
}


.store-section {
    min-height: 100vh;
    padding-top: 6rem;
    padding-bottom: 4rem;
}

.store-header {
    text-align: left;
    margin-bottom: 2rem;
}

.store-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.store-header p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
}

.store-divider {
    margin-top: 1.2rem;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

html {
    scroll-behavior: smooth;
}


.fade-out {
    animation: fadeOut 0.5s ease forwards;
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0.95);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(1.05);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


.navbar.hidden-nav {
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.navbar.visible {
    transform: translateY(0);
    opacity: 1;
}


.section.hidden {
    display: none;
}


.fade-section {
    animation: fadeInSection 0.4s ease-out;
}

@keyframes fadeInSection {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ad-label {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.6);
    color: #888;
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 1px;
    font-weight: 600;
}


.floating-brands {
    position: absolute;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    perspective: 1000px;
    z-index: 10;
}

.floating-brands.left-side {
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
}

.brand-cube {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    transform: rotateX(10deg) rotateY(-10deg);
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    animation: floatBrand 3s ease-in-out infinite;
}

.brand-cube:nth-child(2) {
    animation-delay: 0.2s;
}

.brand-cube:nth-child(3) {
    animation-delay: 0.4s;
}

.brand-cube:nth-child(4) {
    animation-delay: 0.6s;
}

.brand-cube:nth-child(5) {
    animation-delay: 0.8s;
}

.brand-cube:hover {
    transform: rotateX(0deg) rotateY(0deg) scale(1.15);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.brand-cube svg {
    width: 32px;
    height: 32px;
}

.brand-cube.spotify:hover {
    box-shadow: 0 15px 40px rgba(29, 185, 84, 0.4);
}

.brand-cube.youtube:hover {
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.4);
}

.brand-cube.growtopia:hover {
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.4);
}

.brand-cube.netflix:hover {
    box-shadow: 0 15px 40px rgba(229, 9, 20, 0.4);
}

.brand-cube.chatgpt:hover {
    box-shadow: 0 15px 40px rgba(16, 163, 127, 0.4);
}

.brand-cube.fortnite:hover {
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

.brand-cube.disney:hover {
    box-shadow: 0 15px 40px rgba(17, 60, 207, 0.4);
}

@keyframes floatBrand {

    0%,
    100% {
        transform: rotateX(10deg) rotateY(-10deg) translateY(0);
    }

    50% {
        transform: rotateX(10deg) rotateY(-10deg) translateY(-8px);
    }
}


@media (max-width: 1200px) {
    .floating-brands {
        display: none;
    }
}


.btn-cart {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 8px 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    margin-right: 12px;
}

.btn-cart:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}

.nav-actions {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}








.modal-cart {
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
}

.cart-step {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
    max-height: 400px;
    overflow-y: auto;
}

.empty-cart {
    text-align: center;
    padding: 3rem 1rem;
    color: #666;
}

.empty-cart svg {
    margin-bottom: 1rem;
    opacity: 0.3;
}

.empty-cart p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #888;
}

.empty-cart span {
    font-size: 0.9rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    align-items: center;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.cart-item-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    color: white;
}

.cart-item-details p {
    margin: 0 0 0.25rem 0;
    font-size: 0.85rem;
    color: #888;
}

.cart-item-price {
    font-size: 0.8rem;
    color: #666;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 4px;
}

.qty-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s;
}

.qty-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.qty-display {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    color: white;
}

.cart-item-total {
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
}

.remove-btn {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s;
}

.remove-btn:hover {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.cart-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    margin-top: 1rem;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.cart-total-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}


.checkout-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.back-btn-checkout {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.back-btn-checkout:hover {
    background: rgba(255, 255, 255, 0.1);
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkout-summary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    margin: 1rem 0;
}

.checkout-summary h3 {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    color: white;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: #888;
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}


.success-message {
    text-align: center;
    padding: 2rem 1rem;
}

.success-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.success-message h2 {
    margin-bottom: 1rem;
    color: white;
}

.success-message p {
    color: #888;
    margin-bottom: 2rem;
    line-height: 1.6;
}


@media (max-width: 768px) {

    .modal-cart,
    .modal-variants {
        max-width: 95%;
        max-height: 90vh;
        border-radius: 16px;
    }

    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.75rem;
    }

    .cart-item-actions {
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    .variant-product-image {
        max-height: 200px;
    }

    .variant-btn {
        padding: 0.75rem;
    }

    .variant-price-current {
        font-size: 1.25rem;
    }


    .qty-btn {
        padding: 8px;
        min-width: 36px;
        min-height: 36px;
    }

    .remove-btn {
        padding: 8px;
        min-width: 36px;
        min-height: 36px;
    }


    .checkout-form {
        gap: 0.75rem;
    }

    .input-field {
        padding: 14px;
        font-size: 16px;

    }


    .success-message {
        padding: 1.5rem 1rem;
    }

    .success-icon svg {
        width: 48px;
        height: 48px;
    }
}


@media (max-width: 480px) {
    .splash-title {
        font-size: 1.75rem;
    }

    .splash-subtitle {
        font-size: 0.9rem;
    }

    .nav-title {
        display: none;
    }

    .navbar {
        padding: 0 12px;
    }

    .product-card {
        padding: 12px;
    }

    .modal-content {
        padding: 1rem;
    }

    .btn-primary {
        padding: 0.65rem 1.25rem;
    }
}



@media (max-width: 768px) {


    .action-btn {
        min-width: 44px;
        min-height: 44px;
    }

    .modal-close {
        min-width: 44px;
        min-height: 44px;
    }

    .back-btn {
        min-width: 44px;
        min-height: 44px;
    }


    .product-category {
        margin-bottom: 3rem;
    }


    .notification {
        bottom: 16px;
        left: 16px;
        right: 16px;
        transform: none;
        max-width: calc(100% - 32px);
    }

    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes slideDown {
        from {
            opacity: 1;
            transform: translateY(0);
        }

        to {
            opacity: 0;
            transform: translateY(20px);
        }
    }


    .icon-selector {
        gap: 0.5rem;
    }

    .icon-option {
        padding: 0.5rem 0.75rem;
    }


    .file-upload-area {
        padding: 1.5rem 1rem;
    }


    .advertise-cards {
        flex-direction: column;
        align-items: stretch;
    }

    .advertise-card {
        width: 100%;
    }


    .payment-methods {
        margin-top: 2rem;
    }

    .payment-icons {
        flex-wrap: wrap;
        gap: 0.5rem;
        font-size: 0.85rem;
    }


    .tos-content {
        padding: 1rem !important;
    }

    .tos-content h2 {
        font-size: 1.5rem !important;
    }

    .tos-content ul {
        padding-left: 1.25rem !important;
        font-size: 0.9rem !important;
    }


    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .hero-buttons .btn {
        width: 100%;
    }


    .badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }


    .reviews-box {
        height: 350px;
        padding: 1rem;
    }

    .review-card {
        padding: 0.75rem;
        font-size: 0.85rem;
    }


    .splash-stats {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
    }

    .splash-stat {
        width: 100%;
    }


    .user-info {
        gap: 8px;
    }

    .user-avatar {
        width: 32px;
        height: 32px;
    }

    .user-name {
        display: none;
    }


    .admin-icon {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }


    .product-tag {
        font-size: 0.7rem;
        padding: 3px 10px;
    }


    .product-name {
        font-size: 1rem;
    }


    .product-description {
        font-size: 0.85rem;
    }


    .product-price {
        font-size: 1.1rem;
    }


    .product-card,
    .buy-btn,
    .btn,
    .nav-link {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
    }


    .cart-items,
    .variants-list,
    .reviews-list {
        -webkit-overflow-scrolling: touch;
    }


    .modal-backdrop {
        backdrop-filter: blur(8px);
    }


    select.input-field,
    textarea.input-field {
        font-size: 16px;

    }



}


@media (max-width: 900px) and (orientation: landscape) {
    .splash-section {
        height: auto;
        min-height: 100vh;
        padding: 2rem 0;
    }

    .splash-logo {
        width: 70px;
        height: 70px;
    }

    .splash-title {
        font-size: 1.75rem;
    }

    .splash-subtitle {
        font-size: 0.9rem;
    }

    .navbar {
        height: 60px;
    }
}


@media (max-width: 360px) {
    .splash-title {
        font-size: 1.5rem;
    }

    .splash-subtitle {
        font-size: 0.85rem;
    }

    .product-card {
        padding: 12px;
    }

    .buy-btn {
        padding: 10px 14px;
        font-size: 0.8rem;
    }

    .modal-content {
        padding: 1rem;
    }

    .btn-primary {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .store-header h2 {
        font-size: 1.5rem;
    }
}



.demo-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

#countdown-timer {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    animation: pulse-timer 2s ease-in-out infinite;
}

@keyframes pulse-timer {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(99, 102, 241, 0.2);
    }

    50% {
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
    }
}

@media (max-width: 480px) {
    .demo-label {
        flex-direction: column;
        gap: 0.5rem;
    }

    #countdown-timer {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }
}








.auth-modal {
    max-width: 420px;
    padding: 0;
    overflow: hidden;
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 80px rgba(99, 102, 241, 0.06);
}

.auth-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid #222;
    border-radius: 8px;
    color: #666;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
    line-height: 1;
}

.auth-close-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: #333;
}


.auth-tabs {
    display: flex;
    padding: 1.25rem 3rem 0 1.25rem;
    gap: 4px;
    background: transparent;
}

.auth-tab {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid transparent;
    background: transparent;
    color: #555;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    border-radius: 10px 10px 0 0;
    position: relative;
    letter-spacing: 0.01em;
}

.auth-tab.active {
    background: #111;
    border-color: #222;
    border-bottom-color: #111;
    color: #fff;
}

.auth-tab:hover:not(.active) {
    color: #888;
}


.auth-form {
    padding: 1.5rem 1.25rem 1.25rem;
    background: #111;
    border-top: 1px solid #222;
}

.auth-field {
    margin-bottom: 1.1rem;
}

.auth-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #888;
    margin-bottom: 0.45rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}


.auth-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.auth-input-icon {
    position: absolute;
    left: 12px;
    color: #444;
    pointer-events: none;
    z-index: 1;
    transition: color 0.2s;
    flex-shrink: 0;
}

.auth-input-wrap:focus-within .auth-input-icon {
    color: #6366f1;
}

.auth-input {
    width: 100%;
    padding: 0.7rem 0.75rem 0.7rem 2.5rem;
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: 10px;
    color: #e4e4e7;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.2s ease;
    outline: none;
}

.auth-input::placeholder {
    color: #3a3a3a;
}

.auth-input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.15);
    background: #0d0d0f;
}


.auth-input:-webkit-autofill,
.auth-input:-webkit-autofill:hover,
.auth-input:-webkit-autofill:focus,
.auth-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #0a0a0a inset !important;
    -webkit-text-fill-color: #e4e4e7 !important;
    caret-color: #e4e4e7 !important;
    border-color: #222 !important;
    transition: background-color 5000s ease-in-out 0s;
}


.auth-eye-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #444;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
    border-radius: 6px;
}

.auth-eye-btn:hover {
    color: #aaa;
}


.auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    margin-top: 0.25rem;
}

.auth-remember {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #888;
    cursor: pointer;
    user-select: none;
}

.auth-remember input[type="checkbox"] {
    display: none;
}

.auth-checkbox {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    border: 1.5px solid #333;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    position: relative;
    flex-shrink: 0;
}

.auth-remember input[type="checkbox"]:checked+.auth-checkbox {
    background: #6366f1;
    border-color: #6366f1;
}

.auth-remember input[type="checkbox"]:checked+.auth-checkbox::after {
    content: '';
    display: block;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -1px;
}

.auth-forgot {
    font-size: 0.8rem;
    color: #6366f1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.auth-forgot:hover {
    color: #818cf8;
}


.auth-error {
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.15);
    color: #f87171;
    padding: 0.65rem 0.85rem;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 0.85rem;
    font-weight: 500;
}


.auth-submit-btn {
    width: 100%;
    padding: 0.75rem 1.25rem;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.01em;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

.auth-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}

.auth-submit-btn:active {
    transform: translateY(0);
}

.auth-submit-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.auth-submit-btn svg {
    opacity: 0.6;
}



.nav-actions {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatar-letter {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    flex-shrink: 0;
}

.user-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ccc;
    max-width: 110px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn-logout {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.04);
    color: #888;
    border: 1px solid #222;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}

.btn-logout:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
    color: #f87171;
}

.btn-cart {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #222;
    color: #aaa;
    padding: 8px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cart:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: #333;
    color: #fff;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #6366f1;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #0a0a0a;
}



@media (max-width: 768px) {
    .auth-modal {
        max-width: 95%;
        margin: 0 10px;
    }

    .auth-tabs {
        padding: 1rem 1rem 0;
    }

    .auth-form {
        padding: 1.25rem 1rem 1rem;
    }

    .auth-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }

    .user-info {
        gap: 6px;
    }

    .user-name {
        display: none;
    }

    .nav-actions {
        gap: 8px;
    }
}



.modal-variants {
    max-width: 440px;
    padding: 0;
    background: linear-gradient(180deg, #131318 0%, #0c0c10 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.03);
    max-height: 90vh;
    overflow-y: auto;
}

.variant-product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-height: 280px;
    background: linear-gradient(135deg, #1a1a2e, #16162a);
    display: none;
    position: relative;
    overflow: hidden;
}

.variant-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.variant-product-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, #131318, transparent);
    pointer-events: none;
}

.variants-header {
    padding: 1.25rem 1.5rem 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.variants-header h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: -0.3px;
}

.variants-description {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 4px 0 0;
    line-height: 1.4;
}

.variants-list {
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 340px;
    overflow-y: auto;
}

.variant-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #e4e4e7;
    font-family: inherit;
    font-size: 0.9rem;
    width: 100%;
    text-align: left;
    gap: 16px;
}

.variant-btn:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-1px);
}

.variant-btn.selected,
.variant-btn.active {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.03), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.variant-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.variant-btn .variant-name {
    font-weight: 600;
    color: #e4e4e7;
    font-size: 0.9rem;
}

.variant-btn.active .variant-name {
    color: #fff;
}

.variant-btn .variant-price {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    white-space: nowrap;
}

.variant-btn.active .variant-price {
    color: #fff;
}

.variants-footer {
    padding: 1rem 1.25rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.2);
}

.variant-price-display {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.variant-price-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.variant-price-current {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.variants-footer .btn-full {
    flex: 1;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    background: #fff;
    border: none;
    border-radius: 12px;
    color: #000;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: none;
}

.variants-footer .btn-full:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

.modal-variants .btn-primary,
.modal-subproducts .btn-primary,
.modal-cart .btn-primary {
    background: #fff;
    color: #000;
    border: none;
    box-shadow: none;
}

.modal-variants .btn-primary:hover,
.modal-subproducts .btn-primary:hover,
.modal-cart .btn-primary:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

.subproduct-footer .btn-full {
    flex: 1;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    border-radius: 12px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}



.modal-subproducts {
    max-width: 480px;
    padding: 0;
    background: linear-gradient(180deg, #131318 0%, #0c0c10 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.modal-subproducts h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    padding: 1.5rem 1.25rem 0.75rem;
    letter-spacing: -0.3px;
}

.subproduct-tabs {
    display: flex;
    gap: 6px;
    padding: 0 1.25rem 0.75rem;
    flex-wrap: wrap;
}

.subproduct-tab {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.subproduct-tab:hover {
    border-color: rgba(255, 255, 255, 0.25);
    color: #ccc;
    background: rgba(255, 255, 255, 0.06);
}

.subproduct-tab.active {
    background: #fff;
    border-color: transparent;
    color: #000;
    box-shadow: none;
}

.subproduct-content {
    padding: 0 1.25rem 0.5rem;
}

.subproduct-description {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 0.75rem;
    line-height: 1.5;
}

.subproduct-variants {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.subproduct-footer {
    padding: 1rem 1.25rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.2);
}



.modal-cart {
    max-width: 480px;
    padding: 0;
    background: linear-gradient(180deg, #131318 0%, #0c0c10 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.modal-cart h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    padding: 1.5rem 1.25rem 0.85rem;
    letter-spacing: -0.3px;
}

.cart-step {
    min-height: 180px;
}

.cart-items {
    padding: 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    gap: 16px;
    transition: all 0.2s;
}

.cart-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.cart-item-details {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-item-details h4 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #e4e4e7;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-details p {
    margin: 0;
    font-size: 0.8rem;
    color: #666;
}

.cart-item-price {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.quantity-controls {
    display: flex;
    align-items: center;
    background: #141414;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 2px;
}

.qty-btn {
    background: none;
    border: none;
    color: #666;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s;
}

.qty-btn:hover {
    color: #fff;
    background: #222;
}

.qty-display {
    padding: 0 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #e4e4e7;
    min-width: 20px;
    text-align: center;
}

.cart-item-total {
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    min-width: 60px;
    text-align: right;
}

.remove-btn {
    background: none;
    border: none;
    color: #444;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 4px;
}

.remove-btn:hover {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.cart-empty {
    text-align: center;
    padding: 2.5rem 1.25rem;
    color: #444;
}

.cart-empty svg {
    margin-bottom: 0.75rem;
    opacity: 0.2;
}

.cart-empty p {
    font-size: 0.9rem;
}

.cart-footer {
    padding: 0.85rem 1.25rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
}

.cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.85rem;
    font-size: 0.95rem;
    color: #aaa;
}

.cart-total-price {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
}



.checkout-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #1a1a1a;
}

.checkout-header h2 {
    padding: 0;
    margin: 0;
    font-size: 1rem;
}

.back-btn-checkout {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    color: #777;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.back-btn-checkout:hover {
    border-color: #333;
    color: #fff;
    background: #141414;
}

.checkout-form {
    padding: 1rem 1.25rem 1.25rem;
}

.form-group {
    margin-bottom: 0.85rem;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.input-field {
    width: 100%;
    padding: 0.65rem 0.8rem;
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 10px;
    color: #e4e4e7;
    font-size: 0.88rem;
    font-family: inherit;
    outline: none;
    transition: all 0.2s;
}

.input-field::placeholder {
    color: #333;
}

.input-field:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.12);
}

.checkout-summary {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 10px;
    padding: 0.85rem;
    margin-bottom: 1rem;
}

.checkout-summary h3 {
    font-size: 0.75rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 0.6rem;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    font-size: 0.85rem;
    color: #aaa;
    border-bottom: 1px solid #141414;
}

.checkout-item:last-of-type {
    border-bottom: none;
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.6rem;
    margin-top: 0.4rem;
    border-top: 1px solid #222;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
}



.success-message {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.success-icon {
    margin-bottom: 1.25rem;
}

.success-icon svg {
    filter: drop-shadow(0 0 15px rgba(34, 197, 94, 0.25));
}

.success-message h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem;
    padding: 0;
}

.success-message p {
    color: #666;
    font-size: 0.88rem;
    margin: 0 0 1.5rem;
    line-height: 1.6;
}

.success-message .btn-primary {
    display: inline-flex;
    margin: 0 auto;
}



.variants-list::-webkit-scrollbar,
.cart-items::-webkit-scrollbar,
.modal-subproducts::-webkit-scrollbar {
    width: 4px;
}

.variants-list::-webkit-scrollbar-track,
.cart-items::-webkit-scrollbar-track,
.modal-subproducts::-webkit-scrollbar-track {
    background: transparent;
}

.variants-list::-webkit-scrollbar-thumb,
.cart-items::-webkit-scrollbar-thumb,
.modal-subproducts::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 4px;
}



@media (max-width: 768px) {

    .modal-variants,
    .modal-cart,
    .modal-subproducts {
        max-width: 95%;
        margin: 0 10px;
    }

    .variants-header {
        padding: 1rem;
    }

    .variants-list {
        padding: 0.6rem 1rem;
    }

    .variants-footer,
    .subproduct-footer {
        padding: 0.75rem 1rem 1rem;
    }

    .cart-items {
        padding: 0 1rem;
    }

    .cart-footer {
        padding: 0.75rem 1rem 1rem;
    }

    .checkout-form {
        padding: 1rem;
    }

    .subproduct-tabs {
        padding: 0 1rem 0.5rem;
    }

    .subproduct-tab {
        padding: 0.45rem 0.75rem;
        font-size: 0.78rem;
    }
}