/** Shopify CDN: Minification failed

Line 38:13 Expected identifier but found whitespace
Line 38:22 Unexpected ";"

**/
:root {
    --color-primary: #3F51B5;
    --color-primary-dark: #303F9F;
    --color-dark: #0A0A0E;
    --color-subtle: #1A1A22;
    --color-text: #E0E0E0;
    --color-accent: #00BCD4;
    --color-glass: rgba(255, 255, 255, 0.05);
    --color-glass-border: rgba(255, 255, 255, 0.1);
    
    /* Legacy for compatibility */
    --pokemon-yellow: #FFCB05;
    --dark: #1a1a1a;
    --white: #ffffff;
}

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

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--color-text);
    background: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header styling moved to sections/header.liquid */
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--pokemon-red), var(--pokemon-yellow));
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 100%;
}

.cart-icon {
    font-size: 1.5rem;
    cursor: pointer;
    position: relative;
    transition: transform 0.2s ease;
}

.cart-icon:hover {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--pokemon-red);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Main Content Area */
main {
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero {
    padding: 6rem 3rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.preorder-announcement {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--pokemon-red), #ff4444);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(238, 21, 21, 0.3);
    animation: fadeInDown 0.8s ease, pulse 2s infinite 2s;
}

.announcement-icon {
    font-size: 1.25rem;
}

.announcement-text {
    letter-spacing: 0.3px;
}

.preorder-terms-link {
    margin-top: 1.5rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.preorder-terms-link a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
}

.preorder-terms-link a:hover {
    color: var(--pokemon-red);
    background: rgba(238, 21, 21, 0.05);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--pokemon-red), var(--pokemon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease;
}

.hero p {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Products Container */
.products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--mid-gray);
    animation: fadeInUp 0.6s ease both;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--pokemon-red);
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-image {
    width: 100%;
    height: 350px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Badges */
.product-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 10;
}

.badge {
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.badge-preorder {
    background: linear-gradient(135deg, var(--pokemon-red), #ff4444);
    color: white;
    animation: pulse 2s infinite;
}

.badge-popular {
    background: linear-gradient(135deg, var(--pokemon-yellow), #ffd700);
    color: var(--dark);
}

.badge-new {
    background: linear-gradient(135deg, var(--pokemon-blue), #5b6fe0);
    color: white;
}

.badge-limited {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    color: white;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Preorder Info */
.preorder-info {
    background: linear-gradient(135deg, rgba(238, 21, 21, 0.1), rgba(238, 21, 21, 0.05));
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 3px solid var(--pokemon-red);
}

.delivery-estimate {
    font-size: 0.85rem;
    color: var(--dark);
    font-weight: 600;
    margin: 0;
}

.preorder-payment-note {
    font-size: 0.95rem;
    color: #666;
    margin-top: 0.5rem;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.product-card:hover .product-image::before {
    left: 100%;
}

.product-placeholder {
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, rgba(238, 21, 21, 0.1), rgba(59, 76, 202, 0.1));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.product-info {
    padding: 2rem;
}

.product-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.product-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
}

.add-to-cart {
    background: var(--pokemon-red);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.add-to-cart:hover {
    background: var(--dark);
    transform: scale(1.05);
}

.add-to-cart:active {
    transform: scale(0.95);
}

/* Product Page */
.product-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.product-images {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.product-main-image {
    width: 100%;
    height: 500px;
    background: var(--light-gray);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Large badges for product page */
.product-badges-large {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 10;
}

.product-badges-large .badge {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
}

/* Preorder Banner */
.preorder-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(238, 21, 21, 0.1), rgba(238, 21, 21, 0.05));
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--pokemon-red);
    animation: fadeInUp 0.6s ease;
}

.preorder-icon {
    font-size: 2rem;
}

.preorder-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.preorder-text p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

/* Product Price Section */
.product-price-section {
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.preorder-payment-note {
    font-size: 0.95rem;
    color: #666;
    margin-top: 0.75rem;
}

/* Preorder Benefits */
.preorder-benefits {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.preorder-benefits h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.preorder-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.preorder-benefits li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: #444;
}

/* Preorder Button Styling */
.add-to-cart-large.preorder-btn {
    background: linear-gradient(135deg, var(--pokemon-red), #ff4444);
    position: relative;
    overflow: hidden;
}

.add-to-cart-large.preorder-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.add-to-cart-large.preorder-btn:hover::before {
    left: 100%;
}

.secure-payment {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
}

.product-placeholder-large {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    background: linear-gradient(135deg, rgba(238, 21, 21, 0.1), rgba(59, 76, 202, 0.1));
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.thumbnail {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--pokemon-red);
}

.product-details {
    animation: fadeInUp 0.6s ease;
}

.product-title-large {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-price-large {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--pokemon-red);
    margin-bottom: 2rem;
}

.product-description-full {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.product-variants,
.product-quantity {
    margin-bottom: 1.5rem;
}

.product-variants label,
.product-quantity label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-variants select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--mid-gray);
    border-radius: 8px;
    font-size: 1rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-selector input {
    width: 80px;
    padding: 0.75rem;
    border: 1px solid var(--mid-gray);
    border-radius: 8px;
    text-align: center;
    font-size: 1rem;
}

.add-to-cart-large {
    width: 100%;
    background: var(--pokemon-red);
    color: white;
    border: none;
    padding: 1.25rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.add-to-cart-large:hover {
    background: var(--dark);
}

.add-to-cart-large:disabled {
    background: var(--mid-gray);
    cursor: not-allowed;
}

/* Collection Page */
.collection-header {
    text-align: center;
    padding: 3rem 3rem 2rem;
}

.collection-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.collection-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Cart Page */
.cart-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.cart-page h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.cart-page-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.cart-page-item {
    display: grid;
    grid-template-columns: 120px 1fr auto auto auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.cart-page-image {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.cart-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-medium {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, rgba(238, 21, 21, 0.1), rgba(59, 76, 202, 0.1));
}

.cart-page-details h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.variant-title {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.item-price {
    font-weight: 600;
}

.quantity-controls-page {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.line-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.remove-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    transition: color 0.2s ease;
    padding: 0.5rem;
}

.remove-btn:hover {
    color: var(--pokemon-red);
}

.cart-summary {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.shipping-note {
    font-size: 0.9rem;
    color: #666;
    margin: 1.5rem 0;
    padding: 1rem;
    background: white;
    border-radius: 8px;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    padding-top: 1.5rem;
    border-top: 2px solid var(--mid-gray);
    margin-bottom: 1.5rem;
}

.checkout-btn-large {
    width: 100%;
    display: block;
    text-align: center;
    background: var(--pokemon-red);
    color: white;
    text-decoration: none;
    padding: 1.25rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.checkout-btn-large:hover {
    background: var(--dark);
}

.continue-shopping {
    display: block;
    text-align: center;
    color: #666;
    text-decoration: none;
    margin-top: 1rem;
    transition: color 0.2s ease;
}

.continue-shopping:hover {
    color: var(--dark);
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-cart p {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 2rem;
}

.continue-shopping-btn {
    display: inline-block;
    background: var(--pokemon-red);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.continue-shopping-btn:hover {
    background: var(--dark);
}

/* Footer */
.site-footer {
    background: var(--dark);
    color: white;
    padding: 3rem;
    text-align: center;
    margin-top: 6rem;
}

.site-footer p {
    opacity: 0.8;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    right: -450px;
    top: 0;
    width: 450px;
    height: 100vh;
    background: rgba(26, 26, 34, 0.95);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--color-glass-border);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 2rem;
    border-bottom: 1px solid var(--color-glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-glass);
}

.cart-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
}

.close-cart {
    background: var(--color-subtle);
    border: 1px solid var(--color-glass-border);
    color: var(--color-text);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-cart:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.cart-item:hover {
    background: var(--color-subtle);
    border-color: var(--color-primary);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    background: var(--color-dark);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-image .placeholder {
    font-size: 2rem;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
    font-size: 0.95rem;
}

.cart-item-price {
    color: var(--color-accent);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.quantity-btn {
    background: var(--color-subtle);
    border: 1px solid var(--color-glass-border);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
}

.quantity-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.quantity-btn:active {
    transform: scale(0.9);
}

.quantity-display {
    font-weight: 700;
    color: white;
    min-width: 30px;
    text-align: center;
}

.remove-item {
    background: none;
    border: none;
    color: var(--color-text);
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    font-size: 0.85rem;
    transition: color 0.2s ease;
    margin-left: auto;
}

.remove-item:hover {
    color: #ff4444;
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid var(--color-glass-border);
    background: var(--color-glass);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.cart-total span:last-child {
    color: var(--color-accent);
}

.checkout-btn {
    width: 100%;
    display: block;
    text-align: center;
    background: var(--color-primary);
    color: white;
    text-decoration: none;
    border: none;
    padding: 1.25rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.checkout-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(63, 81, 181, 0.4);
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 1999;
    display: none;
}

.cart-overlay.active {
    display: block;
}

@media (max-width: 768px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .product-container {
        grid-template-columns: 1fr;
    }
    
    .product-images {
        position: relative;
        top: 0;
    }
    
    .cart-page-container {
        grid-template-columns: 1fr;
    }
    
    .cart-page-item {
        grid-template-columns: 100px 1fr;
        gap: 1rem;
    }
    
    .cart-page-quantity,
    .cart-page-total {
        grid-column: 2;
    }
    
    .cart-page-remove {
        grid-column: 2;
        justify-self: end;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    nav {
        padding: 1.5rem 1.5rem;
    }
    
    .products-container {
        padding: 2rem 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .product-page {
        padding: 2rem 1.5rem;
    }
    
    .cart-page {
        padding: 2rem 1.5rem;
    }
}
