/* Red Bubble Store Section Styles */
.redbubble-store {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 4rem 0;
    margin: 3rem 0;
}

.redbubble-store h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.store-description {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* CTA Button Section */
.redbubble-cta {
    text-align: center;
    margin: 2.5rem 0;
}

.btn-redbubble {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e31c23 0%, #c41e3a 100%);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(227, 28, 35, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-redbubble:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 28, 35, 0.4);
    background: linear-gradient(135deg, #c41e3a 0%, #e31c23 100%);
}

.btn-redbubble:active {
    transform: translateY(0);
}

.store-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 1.25rem;
    text-align: center;
}

.product-info h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-type {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .redbubble-store {
        padding: 3rem 0;
        margin: 2rem 0;
    }

    .redbubble-store h2 {
        font-size: 2rem;
    }

    .store-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .btn-redbubble {
        padding: 0.9rem 2rem;
        font-size: 1.1rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .redbubble-store h2 {
        font-size: 1.75rem;
    }

    .btn-redbubble {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
