
.store-content {
    padding-top: 6rem;
    min-height: 100vh;
    background: var(--bg-primary);
    position: relative;
}


.store-content::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
}

.store-content::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 20%, rgba(0, 255, 136, 0.03) 0%, transparent 50%);
    z-index: -1;
}


.nav-link.active {
    color: var(--primary-green);
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.nav-link.active::before {
    opacity: 1;
}


.product-container {
    max-width: 1600px; 
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; 
    gap: 3rem;
    align-items: center;
}


.product-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 700px; 
    padding: 0.5rem;
}


.product-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: none; 
    min-width: 600px; 
    min-height: 600px; 
    aspect-ratio: 16/10;
}

.product-image img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 20px;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.product-image:hover img {
    transform: scale(1.02);
}


.product-details {
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-width: 500px; 
}

.product-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.product-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 400;
}


.risk-warning {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-green);
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    align-self: flex-start;
}

.risk-warning iconify-icon {
    font-size: 1.1rem;
}


.purchase-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: none;
    margin: 0;
}

.purchase-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}


.sellauth-embeds {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.embed-container {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.embed-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.embed-container:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.embed-container:hover::before {
    opacity: 1;
}


.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.plan-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.plan-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-green);
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.sellauth-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: var(--bg-primary);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-primary);
}

.sellauth-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.sellauth-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.sellauth-button:hover::before {
    left: 100%;
}

.sellauth-button .icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.sellauth-button:hover .icon.cart {
    transform: scale(1.1);
}

.sellauth-button .icon.spinner {
    display: none;
    animation: spin 1s linear infinite;
}

.sellauth-button.loading .icon.cart {
    display: none;
}

.sellauth-button.loading .icon.spinner {
    display: block;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


.product-info {
    max-width: 1600px; 
    margin: 4rem auto 0;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}


.highlights {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.highlights h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: var(--bg-primary);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.feature-list li:hover {
    transform: translateX(5px);
    border-color: rgba(0, 255, 136, 0.3);
    background: rgba(0, 255, 136, 0.05);
}


.requirements {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.requirements h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.requirements-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-weight: 500;
}


@media (max-width: 1200px) {
    .product-container {
        max-width: 1400px;
        grid-template-columns: 1fr 1fr; 
        gap: 2rem;
    }
    
    .product-image {
        min-width: 500px;
        min-height: 500px;
    }
    
    .product-details {
        max-width: none;
    }
}

@media (max-width: 1024px) {
    .product-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
        align-items: center;
    }
    
    .product-image-wrapper {
        min-height: 600px;
        padding: 1rem;
        justify-self: center;
    }
    
    .product-image {
        min-width: 400px;
        min-height: 450px;
        max-width: 900px; 
    }
    
    .product-details {
        max-width: none;
    }
    
    .purchase-section {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .product-info {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .product-container {
        padding: 1rem;
    }
    
    .product-image-wrapper {
        min-height: 450px;
        padding: 0.5rem;
    }
    
    .product-image {
        min-width: 300px;
        min-height: 350px;
        max-width: 100%;
        aspect-ratio: 16/9;
    }
    
    .product-title {
        font-size: 2.5rem;
    }
    
    .product-description {
        font-size: 1.1rem;
    }
    
    .purchase-section {
        padding: 1.25rem;
        max-width: 100%;
        margin: 0;
    }
    
    .embed-container {
        padding: 0.875rem;
    }
    
    .plan-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .sellauth-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .product-info {
        padding: 0 1rem;
    }
    
    .highlights,
    .requirements {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .product-container {
        padding: 0.5rem;
    }
    
    .product-image-wrapper {
        min-height: 350px;
        padding: 0.25rem;
    }
    
    .product-image {
        min-width: 250px;
        min-height: 300px;
        aspect-ratio: 16/9;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .purchase-section {
        padding: 1rem;
    }
    
    .embed-container {
        padding: 0.75rem;
    }
    
    .sellauth-button {
        padding: 0.625rem 1rem;
        font-size: 0.85rem;
    }
    
    .product-info {
        margin-top: 1rem;
        padding: 0 0.5rem;
    }
    
    .highlights,
    .requirements {
        padding: 1rem;
    }
    
    .feature-list li {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
}


.sellauth-button:focus,
.embed-container:focus-within {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}


.sellauth-button.loading {
    pointer-events: none;
    opacity: 0.8;
}


* {
    transition: all 0.3s ease;
}


.embed-container:hover .plan-price {
    transform: scale(1.05);
}

.highlights:hover,
.requirements:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}