/* ===== FONTS & BASE ===== */
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    /* Premium Dark Orange Gradient */
    background: linear-gradient(135deg, #d35400 0%, #e67e22 100%);
    background-attachment: fixed;
    color: #ffffff;
    line-height: 1.4;
    min-height: 100vh;
}

/* ===== TYPOGRAPHY (Lobster & Centered) ===== */
h1, h2, h3 {
    font-family: 'Lobster', cursive;
    text-align: center;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3.5rem;
    position: relative;
    padding-top: 3rem;
    padding-bottom: 20px;
    margin-bottom: 2rem;
}

/* Decorative line under H1 */
h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 4px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* ===== GRID & SECTIONS ===== */
.product-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.category-section {
    width: 100%;
    padding: 3rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.category-section h2 {
    font-size: 2.8rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* ===== CONTENT LAYOUT ===== */
.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    width: 100%;
}

.product-main-img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border: 4px solid rgba(255, 255, 255, 0.1);
}

/* ===== STORE BUTTONS (200% Size & Spaced) ===== */
.direct-buy-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem; /* Large clickable space */
    width: 100%;
    padding: 1.5rem 0;
}

/* Book Order Buttons (ebook) */
.store-btn-img img {
    /* 200% Size: 128px for Mobile */
    width: 140px;
    height: 140px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.95); /* Glass effect for logo clarity */
    padding: 15px;
    border-radius: 24px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.store-btn-img:hover img {
    transform: scale(1.1) translateY(-5px);
    background: #ffffff;
    box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

/* Merch Buttons */
.store-btn {
    padding: 1.2rem 2rem;
    background-color: #222;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: bold;
    min-width: 220px; /* Wider for easier mobile clicking */
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.2s ease;
}

.store-btn:hover {
    background-color: #000;
