/* Shop Page Styles */

.shop-hero {
    text-align: center;
    padding: var(--spacing-2xl) 0 var(--spacing-xl);
}

.shop-hero h2 {
    font-size: var(--font-size-h1);
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.shop-hero p {
    color: var(--color-text-light);
    font-size: var(--font-size-large);
}

/* Product Layout */
.shop-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    padding: var(--spacing-xl) 0;
    max-width: 1000px;
    margin: 0 auto;
}

/* Image Gallery */
.shop-main-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--color-secondary);
    margin-bottom: var(--spacing-md);
}

.shop-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.shop-thumbnails {
    display: flex;
    gap: var(--spacing-sm);
}

.shop-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: opacity var(--transition-base), border-color var(--transition-base);
}

.shop-thumb:hover,
.shop-thumb.active {
    opacity: 1;
    border-color: var(--color-primary);
}

/* Product Info */
.shop-product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.shop-product-info h3 {
    font-size: var(--font-size-h2);
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.shop-product-subtitle {
    color: var(--color-text-light);
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-lg);
}

.shop-product-description p {
    line-height: var(--line-height-base);
    margin-bottom: var(--spacing-md);
}

.shop-product-description ul {
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-xl);
}

.shop-product-description ul li {
    padding: var(--spacing-xs) 0;
    padding-left: var(--spacing-lg);
    position: relative;
}

.shop-product-description ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: var(--font-weight-semibold);
}

/* Etsy Button */
.shop-etsy-button {
    display: inline-block;
    padding: var(--spacing-md) var(--spacing-xl);
    background-color: #F1641E;
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-large);
    text-align: center;
    transition: background-color var(--transition-base), transform var(--transition-base);
    align-self: flex-start;
}

.shop-etsy-button:hover {
    background-color: #D4551A;
    transform: translateY(-2px);
}

/* Video Section */
.shop-video {
    text-align: center;
    padding: var(--spacing-2xl) 0;
}

.shop-video h3 {
    font-size: var(--font-size-h3);
    color: var(--color-primary);
    margin-bottom: var(--spacing-lg);
}

.shop-video-container {
    display: inline-block;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.shop-video-container iframe {
    display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .shop-product {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: var(--spacing-md);
    }

    .shop-thumb {
        width: 60px;
        height: 60px;
    }

    .shop-etsy-button {
        width: 100%;
        text-align: center;
    }

    .shop-video-container iframe {
        width: 280px;
        height: 498px;
    }
}
