:root {
    --background-primary: #0F121B;
    --background-secondary: #1a1e2a;
    --background-card: #161b26;
    --text-primary: #c4ad70;
    --text-secondary: #8a7a55;
    --text-muted: #a8956b;
    --text-white: #ffffff;
    --border-color: rgba(196, 173, 112, 0.2);
    --accent: #c4ad70;
    --success: #22c55e;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-primary);
    color: var(--text-white);
    line-height: 1.6;
}

.shop-main {
    padding: 4rem 2rem;
    min-height: calc(100vh - 200px);
}

.shop-container {
    max-width: 1200px;
    margin: 0 auto;
}

.shop-header {
    text-align: center;
    margin-bottom: 3rem;
}

.shop-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.shop-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-cube {
    background: var(--background-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem 1rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.pricing-cube:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.cube-image {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.pricing-cube h3 {
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.pricing-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    width: 100%;
}

.cube-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
}

.cube-price span {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-left: 0.25rem;
}

.cube-buy-btn {
    background: var(--text-secondary);
    color: white;
    border: none;
    padding: 0.75rem 2.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cube-buy-btn:hover {
    background: var(--text-primary);
    transform: translateY(-2px);
}

.shop-footer {
    background: var(--background-primary);
    border-top: 1px solid var(--border-color);
    padding: 2.5rem 0;
    margin-top: 4rem;
}

.shop-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.shop-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.shop-footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    flex: 1;
    min-width: 300px;
}

.shop-footer-logo {
    max-width: 200px;
    height: auto;
    flex-shrink: 0;
}

.shop-footer-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.25rem;
}

.shop-footer-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.shop-footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.shop-footer-links a:hover {
    color: #c4ad70;
}

.shop-footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #c4ad70;
    transition: width 0.3s ease;
}

.shop-footer-links a:hover::after {
    width: 100%;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--text-primary);
    border-radius: 4px;
    transition: background 0.3s ease;
}

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

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand {
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        justify-content: center;
    }
}