/* Shop Page Styles */

.shop-page {
    background-color: var(--black);
    color: var(--white);
    min-height: 100vh;
}

/* Header */
.shop-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) var(--spacing-lg);
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.back-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--red);
}

.back-link svg {
    width: 18px;
    height: 18px;
}

.shop-logo img {
    height: 40px;
    width: auto;
    filter: invert(1);
}

.header-spacer {
    width: 80px;
}

/* Main Content */
.shop-main {
    padding-top: 100px;
    padding-bottom: var(--spacing-xxl);
}

.shop-hero {
    text-align: center;
    padding: var(--spacing-xxl) var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.shop-title {
    font-size: 56px;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
}

.shop-subtitle {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gray-light);
    font-weight: 400;
}

/* Products Grid */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.shop-product-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.shop-product-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.shop-product-image {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    background-color: rgba(255, 255, 255, 0.02);
}

.shop-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.shop-product-card:hover .shop-product-image img {
    transform: scale(1.05);
}

.shop-product-info {
    padding: var(--spacing-md);
}

.shop-product-info h3 {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    color: var(--white);
}

.shop-product-price {
    font-size: 16px;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 12px;
}

.shop-product-desc {
    font-size: 12px;
    color: var(--gray-light);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

/* Placeholder styles */
.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    color: var(--gray-light);
    gap: 12px;
}

.product-placeholder svg {
    width: 48px;
    height: 48px;
    opacity: 0.4;
}

.product-placeholder span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.5;
}

/* Buy Button Placeholder */
.shopify-btn-placeholder {
    margin-top: var(--spacing-sm);
}

.buy-btn-placeholder {
    width: 100%;
    background-color: var(--white);
    color: var(--black);
    border: none;
    padding: 14px 24px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.buy-btn-placeholder:hover {
    background-color: var(--red);
    color: var(--white);
}

/* Footer */
.shop-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-lg);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.shop-footer p {
    font-size: 10px;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.shop-footer .footer-links {
    display: flex;
    gap: var(--spacing-md);
}

.shop-footer .footer-links a {
    font-size: 10px;
    color: var(--gray-light);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.shop-footer .footer-links a:hover {
    color: var(--white);
}

/* Responsive */
@media (max-width: 1024px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .shop-title {
        font-size: 42px;
        letter-spacing: 6px;
    }
}

@media (max-width: 768px) {
    .shop-header {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .back-link span {
        display: none;
    }
    
    .shop-logo img {
        height: 32px;
    }
    
    .header-spacer {
        width: 40px;
    }
    
    .shop-hero {
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .shop-title {
        font-size: 32px;
        letter-spacing: 4px;
    }
    
    .shop-subtitle {
        font-size: 10px;
        letter-spacing: 3px;
    }
    
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
        padding: 0 var(--spacing-sm);
    }
    
    .shop-product-info {
        padding: var(--spacing-sm);
    }
    
    .shop-product-info h3 {
        font-size: 12px;
        letter-spacing: 1.5px;
    }
    
    .shop-product-price {
        font-size: 14px;
    }
    
    .shop-product-desc {
        font-size: 11px;
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .shop-main {
        padding-top: 80px;
    }
    
    .shop-title {
        font-size: 28px;
        letter-spacing: 3px;
    }
    
    .shop-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .product-placeholder svg {
        width: 36px;
        height: 36px;
    }
    
    .buy-btn-placeholder {
        padding: 12px 20px;
        font-size: 9px;
    }
}

