@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Orbitron:wght@700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-violet: #6b2aff;
    --primary-yellow: #ffd93d;
    --dark-bg: #0a0514;
    --darker-bg: #050508;
    --card-bg: rgba(26, 10, 46, 0.6);
    --border-violet: rgba(107, 42, 255, 0.3);
    --text-light: #e0e0e0;
    --text-gray: #8a8a8a;
    --red-stock: #ff3d3d;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(107, 42, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 193, 7, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-violet);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-violet), transparent);
    opacity: 0.5;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-light);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    transition: all 0.3s ease;
}

.logo-text::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 25px;
    background: var(--primary-violet);
    box-shadow: 0 0 10px var(--primary-violet);
}

.logo-text:hover {
    color: var(--primary-violet);
    text-shadow: 0 0 20px var(--primary-violet);
}

.hamburger {
    width: 30px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-yellow);
    transition: all 0.3s ease;
    box-shadow: 0 0 5px var(--primary-yellow);
}

.hamburger:hover span {
    box-shadow: 0 0 15px var(--primary-yellow);
}

.menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 350px;
    height: 100vh;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    border-left: 2px solid var(--border-violet);
    padding: 2rem 0;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1002;
    box-shadow: -10px 0 50px rgba(107, 42, 255, 0.2);
}

.menu.active {
    right: 0;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem 2rem;
    border-bottom: 1px solid var(--border-violet);
    margin-bottom: 2rem;
}

.menu-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-violet);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.close-menu {
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
}

.close-menu:hover {
    color: var(--primary-violet);
    transform: rotate(90deg);
}

.menu a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
}

.menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: rgba(107, 42, 255, 0.1);
    transition: width 0.3s ease;
}

.menu a:hover::before {
    width: 100%;
}

.menu a:hover {
    border-left-color: var(--primary-violet);
    color: var(--primary-violet);
    padding-left: 2.5rem;
}

.download-btn svg {
    width: 20px;
    height: 20px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 2rem 4rem;
    position: relative;
    z-index: 1;
}

.hero {
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.catalog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.catalog-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
}

.catalog-title::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 3px;
    background: var(--primary-violet);
    box-shadow: 0 0 10px var(--primary-violet);
    animation: lineGlow 2s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% { box-shadow: 0 0 10px var(--primary-violet); }
    50% { box-shadow: 0 0 20px var(--primary-violet), 0 0 30px var(--primary-violet); }
}

.catalog-title .highlight {
    color: var(--primary-violet);
    text-shadow: 0 0 20px var(--primary-violet);
}

.product-count {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.search-container {
    max-width: 600px;
    margin: 2rem auto 0;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 1.2rem;
    color: var(--text-gray);
    pointer-events: none;
    z-index: 2;
}

.search-input {
    width: 100%;
    padding: 1rem 3.5rem 1rem 3.5rem;
    background: rgba(26, 10, 46, 0.4);
    border: 2px solid var(--border-violet);
    border-radius: 50px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    outline: none;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: var(--text-gray);
}

.search-input:focus {
    border-color: var(--primary-violet);
    box-shadow: 0 0 20px rgba(107, 42, 255, 0.3);
    background: rgba(26, 10, 46, 0.6);
}

.clear-search {
    position: absolute;
    right: 1.2rem;
    background: transparent;
    border: none;
    color: var(--text-gray);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    z-index: 2;
}

.clear-search:hover {
    color: var(--primary-violet);
    transform: rotate(90deg);
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-gray);
    font-size: 1.2rem;
}

.success-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 2rem 4rem;
    position: relative;
    z-index: 1;
}

.success-content {
    max-width: 600px;
    width: 100%;
    text-align: center;
    background: var(--card-bg);
    border: 2px solid var(--primary-violet);
    border-radius: 16px;
    padding: 4rem 2rem;
    box-shadow: 0 20px 60px rgba(107, 42, 255, 0.3);
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    color: var(--primary-yellow);
    animation: successPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.success-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(255, 217, 61, 0.6));
}

.success-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.success-message {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.success-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.success-btn.primary {
    background: var(--primary-yellow);
    color: var(--dark-bg);
}

.success-btn.primary:hover {
    box-shadow: 0 0 30px rgba(255, 217, 61, 0.8);
    transform: translateY(-2px);
}

.payment-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}

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

.payment-modal {
    background: var(--card-bg);
    border: 2px solid var(--primary-violet);
    border-radius: 16px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(107, 42, 255, 0.4);
    animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255, 61, 61, 0.2);
    color: #ff3d3d;
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 2rem;
    padding-right: 2rem;
    text-align: left;
    width: 100%;
}

.modal-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-yellow);
}

.modal-body {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.stripe-button-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stripe-button-container stripe-buy-button {
    margin: 0 auto;
    display: block;
}

/* Force center Stripe Buy Button internal content */
stripe-buy-button {
    --stripe-buy-button-border-radius: 8px;
    margin: 0 auto !important;
}

/* Center the iframe content */
.stripe-button-container iframe {
    margin: 0 auto;
    display: block;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid rgba(107, 42, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: cardFadeIn 0.6s ease-out forwards;
    opacity: 0;
}

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

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-violet), transparent);
    transition: left 0.6s ease;
}

.product-card::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(107, 42, 255, 0.05), transparent);
    transition: top 0.8s ease;
    pointer-events: none;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover::after {
    top: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-violet);
    box-shadow: 0 20px 60px rgba(107, 42, 255, 0.3);
}

.product-card.out-of-stock {
    opacity: 0.7;
}

.product-card.out-of-stock:hover {
    transform: translateY(-4px);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--darker-bg);
}

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

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

.category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(107, 42, 255, 0.9);
    color: white;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    z-index: 10;
}

.price-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-violet);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 2px;
    z-index: 10;
    box-shadow: 0 0 20px rgba(107, 42, 255, 0.5);
    animation: priceFloat 3s ease-in-out infinite;
}

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

.out-of-stock-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 61, 61, 0.95);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 2px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 10;
    border: 2px solid white;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    min-height: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-description {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    min-height: 3rem;
}

.buy-button {
    width: 100%;
    padding: 1rem;
    background: var(--primary-yellow);
    color: var(--dark-bg);
    border: none;
    border-radius: 2px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    transition: all 0.3s ease;
}

.buy-button:hover {
    box-shadow: 0 0 30px rgba(255, 217, 61, 0.8),
                0 0 60px rgba(255, 217, 61, 0.4);
    transform: translateY(-2px);
}

.buy-button span {
    position: relative;
    z-index: 1;
}




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

.buy-button:hover::after {
    height: 40px;
    opacity: 1;
    animation: oceanWave 2.8s ease-in-out infinite;
}

.buy-button span {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease 0.3s;
}

.buy-button:hover span {
    color: white;
}

.buy-button:hover {
    border-color: var(--primary-yellow);
    box-shadow: 0 5px 20px rgba(255, 217, 61, 0.4);
}

.buy-button:disabled {
    background: rgba(100, 100, 100, 0.3);
    color: var(--text-gray);
    cursor: not-allowed;
    transform: none;
}

.buy-button:disabled:hover {
    transform: none;
    box-shadow: none;
}

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

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 4rem;
}

.pagination button {
    padding: 0.8rem 1.8rem;
    background: var(--card-bg);
    border: 1px solid var(--border-violet);
    border-radius: 2px;
    color: var(--text-light);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination button:hover:not(:disabled) {
    background: var(--primary-violet);
    color: white;
    border-color: var(--primary-violet);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(107, 42, 255, 0.4);
}

.pagination button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pagination .page-info {
    color: var(--text-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navigraph-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 2rem 4rem;
    position: relative;
    z-index: 1;
}

.navigraph-content {
    max-width: 1000px;
    width: 100%;
}

.navigraph-header {
    text-align: center;
    margin-bottom: 4rem;
}

.navigraph-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(107, 42, 255, 0.3);
}

.navigraph-title .highlight {
    color: var(--primary-violet);
    text-shadow: 0 0 40px var(--primary-violet);
}

.navigraph-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.navigraph-buttons {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.nav-btn {
    position: relative;
    display: block;
    background: var(--card-bg);
    border: 2px solid var(--border-violet);
    border-radius: 4px;
    padding: 3rem 2rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -100%;
    width: 100%;
    height: calc(100% + 4px);
    background: linear-gradient(90deg, transparent, rgba(107, 42, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.nav-btn:hover::before {
    left: 100%;
}

.nav-btn:hover {
    transform: translateY(-10px);
    border-color: var(--primary-violet);
    box-shadow: 0 20px 60px rgba(107, 42, 255, 0.4);
}

.nav-btn-featured {
    border-color: var(--primary-yellow);
}

.nav-btn-featured:hover {
    border-color: var(--primary-yellow);
    box-shadow: 0 20px 60px rgba(255, 193, 7, 0.4);
}

.nav-btn-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--primary-yellow);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 2px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-btn-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-btn-content p {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-price {
    display: inline-block;
    color: var(--primary-violet);
    font-weight: 700;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 1rem;
        height: 60px;
    }
    
    .logo-text {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    
    .logo-text::before {
        width: 3px;
        height: 20px;
        left: -10px;
    }
    
    .hamburger {
        width: 26px;
        height: 20px;
    }
    
    .hamburger span {
        height: 2px;
    }
    
    .menu {
        width: 100%;
        padding: 1.5rem 0;
    }
    
    .menu-header {
        padding: 0 1.5rem 1.5rem;
    }
    
    .menu-title {
        font-size: 1.1rem;
    }
    
    .menu a {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .container {
        padding: 80px 1rem 3rem;
    }
    
    .hero {
        margin-bottom: 2rem;
        padding: 1.5rem 0;
    }
    
    .catalog-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .catalog-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .catalog-title::before {
        width: 15px;
        left: -20px;
    }
    
    .product-count {
        font-size: 0.75rem;
    }
    
    .search-container {
        margin: 1.5rem auto 0;
        max-width: 100%;
    }
    
    .search-input {
        padding: 0.9rem 3rem 0.9rem 3rem;
        font-size: 0.9rem;
    }
    
    .search-icon {
        left: 1rem;
    }
    
    .clear-search {
        right: 1rem;
        font-size: 1.3rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card {
        border-radius: 12px;
    }
    
    .product-image-wrapper {
        height: 200px;
    }
    
    .category-badge {
        padding: 0.25rem 0.6rem;
        font-size: 0.7rem;
        top: 0.8rem;
        left: 0.8rem;
    }
    
    .price-badge {
        padding: 0.4rem 0.8rem;
        font-size: 1rem;
        top: 0.8rem;
        right: 0.8rem;
    }
    
    .product-info {
        padding: 1.2rem;
    }
    
    .product-title {
        font-size: 1rem;
        min-height: 2rem;
        margin-bottom: 0.6rem;
    }
    
    .product-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        min-height: 2.5rem;
    }
    
    .buy-button {
        padding: 0.85rem;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .pagination {
        flex-wrap: wrap;
        gap: 0.8rem;
        margin-top: 2rem;
    }
    
    .pagination button {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .pagination .page-info {
        font-size: 0.85rem;
        width: 100%;
        text-align: center;
        order: -1;
        margin-bottom: 0.5rem;
    }
    
    .no-results {
        padding: 3rem 1.5rem;
        font-size: 1rem;
    }
    
    .payment-modal {
        max-width: 95%;
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .modal-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
    
    .modal-header {
        padding-right: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.2rem;
    }
    
    .modal-price {
        font-size: 1.5rem;
    }
    
    .navigraph-container {
        padding: 80px 1rem 3rem;
    }
    
    .navigraph-header {
        margin-bottom: 2rem;
    }
    
    .navigraph-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .navigraph-description {
        font-size: 1rem;
    }
    
    .navigraph-buttons {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .nav-btn {
        padding: 2rem 1.5rem;
    }
    
    .nav-btn-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .nav-btn-content h3 {
        font-size: 1.5rem;
    }
    
    .nav-btn-content p {
        font-size: 0.9rem;
    }
    
    .nav-price {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0 0.8rem;
        height: 55px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .container {
        padding: 70px 0.8rem 2rem;
    }
    
    .hero {
        padding: 1rem 0;
    }
    
    .catalog-title {
        font-size: 1.5rem;
    }
    
    .product-count {
        font-size: 0.7rem;
    }
    
    .search-input {
        padding: 0.8rem 2.8rem 0.8rem 2.8rem;
        font-size: 0.85rem;
    }
    
    .products-grid {
        gap: 1.2rem;
    }
    
    .product-image-wrapper {
        height: 180px;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .product-title {
        font-size: 0.95rem;
    }
    
    .product-description {
        font-size: 0.8rem;
    }
    
    .buy-button {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    
    .payment-modal {
        max-width: 98%;
        padding: 1rem;
    }
    
    .modal-header h2 {
        font-size: 1rem;
    }
    
    .modal-price {
        font-size: 1.3rem;
    }
    
    .navigraph-title {
        font-size: 1.6rem;
    }
    
    .nav-btn {
        padding: 1.5rem 1.2rem;
    }
    
    .nav-btn-content h3 {
        font-size: 1.3rem;
    }
}

.coming-soon-badge {
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
background:rgba(120,120,120,0.95);
color:white;
padding:0.8rem 2rem;
border-radius:2px;
font-weight:700;
font-size:1rem;
text-transform:uppercase;
letter-spacing:2px;
z-index:10;
border:2px solid white;
}

.product-card.coming-soon{
animation:none !important;
opacity:1 !important;
transform:none !important;
}

.product-card.coming-soon:nth-child(1),
.product-card.coming-soon:nth-child(2),
.product-card.coming-soon:nth-child(3),
.product-card.coming-soon:nth-child(4),
.product-card.coming-soon:nth-child(5),
.product-card.coming-soon:nth-child(6){
animation:none !important;
opacity:1 !important;
transform:none !important;
}