/*
Theme Name: Pisik Child
Template: twentytwentyfive
Version: 1.0
Description: Custom child theme for Pisik merch store with dynamic company landing pages
Author: Kodukana
*/

/* Company Landing Page Styles */
.pisik-company-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.pisik-hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    margin-bottom: 40px;
}

.pisik-company-logo {
    max-width: 200px;
    max-height: 150px;
    margin: 0 auto 30px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.pisik-company-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.pisik-message {
    font-size: 2.5em;
    font-weight: 700;
    margin: 20px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pisik-tagline {
    font-size: 1.2em;
    opacity: 0.9;
    margin-top: 10px;
}

.pisik-products-section {
    margin-top: 50px;
}

.pisik-products-section h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
    color: #333;
}

.pisik-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pisik-product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pisik-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.pisik-product-image {
    width: 100%;
    height: 300px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.pisik-product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.pisik-product-info {
    padding: 25px;
}

.pisik-product-title {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.pisik-product-price {
    font-size: 1.5em;
    color: #667eea;
    font-weight: 700;
    margin-bottom: 15px;
}

.pisik-add-to-cart {
    width: 100%;
    padding: 15px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.pisik-add-to-cart:hover {
    background: #5568d3;
}

.pisik-company-footer {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    color: #666;
    border-top: 1px solid #eee;
}

/* Size selector */
.pisik-size-selector {
    margin: 15px 0;
}

.pisik-size-selector label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.pisik-size-selector select {
    width: 100%;
    padding: 10px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1em;
    background: white;
}

/* Responsive */
@media (max-width: 768px) {
    .pisik-message {
        font-size: 1.8em;
    }
    
    .pisik-products-grid {
        grid-template-columns: 1fr;
    }
    
    .pisik-hero {
        padding: 40px 20px;
    }
}

/* Loading state */
.pisik-loading {
    text-align: center;
    padding: 60px;
    color: #666;
}

/* Error state */
.pisik-error {
    text-align: center;
    padding: 60px;
    color: #e74c3c;
}

.pisik-error h2 {
    font-size: 2em;
    margin-bottom: 20px;
}
