/* Store Pages Shared Styles */

main#main-content {
    padding-top: 0;
    padding-bottom: 80px;
}

.store-hero {
    background-color: var(--black);
    color: var(--white);
    padding: 120px 2rem 80px;
    text-align: left;
}

.store-hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
}

.store-hero p {
    color: #cccccc;
    font-size: 1.1rem;
    max-width: 600px;
    line-height: 1.8;
}

.store-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 2rem;
}

.product-showcase {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.product-showcase-image {
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 700px;
    padding: 1rem;
}

.product-showcase-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 90%;
    object-fit: contain;
}

.product-info-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.product-info-section p {
    color: #666666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.price-section {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.store-button {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 1rem 3rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.store-button:hover {
    background: #e01030;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(241, 27, 63, 0.4);
}

.features-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 2px solid var(--border);
}

.features-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--black);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border-top: 3px solid var(--accent);
    transition: all 0.3s ease;
}

.feature-box:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-box:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-box:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-box:nth-child(n+4) {
    animation-delay: 0.4s;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-box h3 {
    color: var(--black);
    margin-bottom: 1rem;
}

.feature-box p {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 2px solid var(--border);
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--black);
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question::before {
    content: "+";
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--accent);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
}

.faq-item.active .faq-question::before {
    transform: rotate(45deg);
}

.faq-answer {
    color: #666666;
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}

.faq-answer.active {
    max-height: 500px;
    opacity: 1;
}

.cta-final {
    background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 4rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 4rem;
}

.cta-final h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-final p {
    color: #cccccc;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

@media (max-width: 768px) {
    main#main-content {
        padding-bottom: 40px;
    }

    .store-hero {
        padding: 60px 1.5rem 40px;
    }

    .store-hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .store-hero p {
        font-size: 0.95rem;
    }

    .store-container {
        padding: 40px 1.5rem;
    }

    .product-showcase {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        margin-bottom: 2rem;
        gap: 1.5rem;
    }

    .product-showcase-image {
        aspect-ratio: 16 / 9;
    }

    .product-info-section h2 {
        font-size: 1.5rem;
    }

    .product-info-section p {
        font-size: 0.9rem;
    }

    .price-section {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .price-amount {
        font-size: 1.8rem;
    }

    .store-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .features-section {
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .features-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-box {
        padding: 1.5rem;
    }

    .feature-box h3 {
        font-size: 1.1rem;
    }

    .feature-box p {
        font-size: 0.9rem;
    }

    .faq-section {
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .faq-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .faq-item {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .faq-question {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .faq-question::before {
        font-size: 1.2rem;
        margin-right: 0.75rem;
    }

    .faq-answer {
        font-size: 0.9rem;
        max-height: 400px;
    }

    .cta-final {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
        border-radius: 8px;
    }

    .cta-final h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .cta-final p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .product-showcase {
        grid-template-columns: 1fr;
    }

    .store-hero h1 {
        font-size: 3rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}
