/* Shop Page Styles */

.shop-page {
    min-height: 100vh;
}

/* Hero Section */
.shop-hero-section {
    color: var(--text-contrast);
    padding: 6rem 0 4rem;
}

.shop-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.shop-hero-text {
    flex: 1;
    max-width: 500px;
}

.shop-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.shop-hero-description {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.shop-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.shop-hero-image {
    flex: 1;
    max-width: 500px;
}

.shop-hero-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Section Styles */
.shop-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.shop-section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.shop-section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.shop-section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Featured Section */
.shop-featured-section {
    padding: 5rem 0;
    background: var(--background);
}

.shop-featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.shop-featured-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition-theme);
}

.shop-featured-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.shop-featured-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.shop-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.shop-featured-content {
    padding: 1.5rem;
}

.shop-featured-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.shop-featured-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.shop-featured-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shop-featured-variant {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.shop-featured-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
}

/* Digital Art Section */
.shop-digital-art-section {
    padding: 5rem 0;
    background: var(--card-bg);
}

.shop-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.shop-product-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition-theme);
}

.shop-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.shop-product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.shop-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.shop-product-details {
    padding: 1.5rem;
}

.shop-product-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.shop-product-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.shop-product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.shop-product-variant {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.shop-product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

/* About Digital Art Section */
.shop-about-art-section {
    padding: 5rem 0;
    background: var(--background);
}

.shop-about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.shop-about-text {
    flex: 1;
}

.shop-about-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.shop-about-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.shop-about-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shop-about-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.shop-about-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

.shop-about-image {
    flex: 1;
    max-width: 500px;
}

.shop-about-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

/* FAQ Section */
.shop-faq-section {
    padding: 5rem 0;
    background: var(--card-bg);
}

.shop-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.shop-faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    transition: var(--transition-theme);
}

.shop-faq-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.shop-faq-question {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.shop-faq-answer {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.shop-cta-section {
    padding: 5rem 0;
    background: var(--background);
    text-align: center;
}

.shop-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.shop-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.shop-cta-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

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

/* Button Enhancements - Use global button classes from buttons.css */
/* .btn-block for full width, .btn-lg for large size, .btn-outline for outline style */

/* Responsive Design */
@media (max-width: 768px) {
    .shop-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .shop-hero-title {
        font-size: 2.5rem;
    }

    .shop-hero-actions {
        justify-content: center;
    }

    .shop-about-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .shop-about-title {
        font-size: 2rem;
    }

    .shop-featured-grid,
    .shop-products-grid,
    .shop-faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .shop-cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .shop-hero-section {
        padding: 4rem 0 3rem;
    }

    .shop-hero-title {
        font-size: 2rem;
    }

    .shop-section-title {
        font-size: 2rem;
    }

    .shop-about-title,
    .shop-cta-title {
        font-size: 2rem;
    }

    .shop-featured-card,
    .shop-product-card,
    .shop-faq-item {
        padding: 1.5rem;
    }

    .shop-featured-content,
    .shop-product-details {
        padding: 1.5rem;
    }
}
