/* Store Page Styles - Blessed Reverie */
/* Matches existing site aesthetic: black, gold, teal */

body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', arial, sans-serif;
    background: linear-gradient(180deg, #000000 0%, #1a1a2e 50%, #31c0e8 100%);
    min-height: 100vh;
}

/* Hero Section */
.store-hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(49,192,232,0.3) 100%);
}

.store-hero h1 {
    font-family: 'Geraldine Personal Use', cursive;
    font-size: 48px;
    color: gold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.store-hero p {
    font-size: 20px;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
}

/* Category Filter */
.category-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 30px 20px;
    background-color: rgba(0,0,0,0.8);
    flex-wrap: wrap;
}

.filter-btn {
    background-color: transparent;
    border: 2px solid gold;
    color: gold;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 25px;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: gold;
    color: black;
}

/* Products Container */
.products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin: 40px 0 30px;
}

.section-title h2 {
    font-family: 'Geraldine Personal Use', cursive;
    font-size: 36px;
    color: gold;
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 3px solid gold;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Product Card */
.product-card {
    background: linear-gradient(145deg, #1a1a2e 0%, #0d0d1a 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 20px rgba(255, 215, 0, 0.1);
}

/* Product Image */
.product-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #2a2a4a 0%, #1a1a2e 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: gold;
    color: black;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 20px;
    text-transform: uppercase;
}

.product-badge.new {
    background: #31c0e8;
    color: white;
}

/* Product Info */
.product-info {
    padding: 25px;
}

.product-title {
    font-family: 'Voces', 'Open Sans', arial, sans-serif;
    font-size: 24px;
    color: gold;
    margin: 0 0 10px;
}

.product-description {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 15px;
    min-height: 60px;
}

/* Product Meta */
.product-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.product-size,
.product-burn {
    font-size: 12px;
    color: #888;
    background: rgba(255,255,255,0.1);
    padding: 5px 12px;
    border-radius: 15px;
}

/* Product Price */
.product-price {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
}

.price-original {
    font-size: 18px;
    color: #888;
    text-decoration: line-through;
    margin-right: 10px;
}

/* Buy Button */
.buy-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, gold 0%, #d4af37 100%);
    border: none;
    color: black;
    font-size: 16px;
    font-weight: bold;
    font-family: 'Geraldine Personal Use', cursive;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.buy-btn:hover {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

/* Store Footer */
.store-footer {
    text-align: center;
    padding: 40px 20px;
    background: rgba(0,0,0,0.8);
}

.store-footer p {
    color: #cccccc;
    font-size: 16px;
    margin: 10px 0;
}

.store-footer a {
    color: gold;
    text-decoration: none;
}

.store-footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
    .store-hero h1 {
        font-size: 32px;
    }
    
    .store-hero p {
        font-size: 16px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .category-filter {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
}

@media only screen and (max-width: 480px) {
    .store-hero {
        padding: 40px 15px;
    }
    
    .store-hero h1 {
        font-size: 26px;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .product-title {
        font-size: 20px;
    }
    
    .product-price {
        font-size: 24px;
    }
}

/* Coaching card specific styles */
.product-card.coaching .product-image {
    height: 200px;
}

.product-card.package .product-badge {
    background: linear-gradient(135deg, gold 0%, #ff6b6b 100%);
}
