/* ============================================
   POKÉMON BUNDLE - PREMIUM SHOPIFY STYLE
   Modern, clean, conversion-optimized
   ============================================ */

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #2c2c2c;
    background-color: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   ANNOUNCEMENT BARS
   ============================================ */

.announcement-bar {
    text-align: center;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
}

.announcement-bar-1 {
    background-color: #3a3a3a;
    color: #ffffff;
}

.announcement-bar-2 {
    background-color: #1a1a1a;
    color: #F4B942;
}

/* ============================================
   HEADER
   ============================================ */

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, #E91E63, #F4B942);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 28px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: #2c2c2c;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #E91E63;
}

.btn-header {
    padding: 10px 24px;
    background-color: #E91E63;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s;
}

.btn-header:hover {
    background-color: #C2185B;
    transform: translateY(-1px);
}

/* ============================================
   PRODUCT HERO SECTION (SHOPIFY TWO-COLUMN)
   ============================================ */

.product-hero {
    padding: 60px 0 80px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Column - Media */
.product-media {
    position: sticky;
    top: 100px;
}

.main-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    background-color: #f9f9f9;
    margin-bottom: 16px;
}

.main-image {
    width: 100%;
    height: auto;
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 12px;
}

.thumbnail {
    border-radius: 8px;
    overflow: hidden;
    background-color: #f9f9f9;
    border: 2px solid #e8e8e8;
    cursor: pointer;
    transition: border-color 0.2s;
}

.thumbnail:hover {
    border-color: #E91E63;
}

.thumbnail img {
    width: 100%;
    height: auto;
}

.media-caption {
    font-size: 13px;
    color: #6a6a6a;
    text-align: center;
}

/* Right Column - Info */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-brand {
    font-size: 13px;
    font-weight: 600;
    color: #6a6a6a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
}

/* Rating Section */
.rating-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: -8px;
}

.stars {
    color: #F4B942;
    font-size: 18px;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 14px;
    color: #2c2c2c;
    font-weight: 500;
}

.trust-badge {
    font-size: 14px;
    color: #6a6a6a;
    margin-top: -12px;
}

/* Price Block */
.price-block {
    background-color: #fef4f7;
    border: 2px solid #E91E63;
    border-radius: 10px;
    padding: 20px;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 8px;
}

.price-was {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
}

.price-now {
    font-size: 42px;
    font-weight: 800;
    color: #E91E63;
}

.savings-text {
    font-size: 15px;
    font-weight: 600;
    color: #2e7d32;
    margin-bottom: 12px;
}

.stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #2e7d32;
}

.stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #2e7d32;
}

/* Benefit List */
.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: #2c2c2c;
}

.check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #E91E63;
    margin-top: 2px;
}

/* Add to Cart Section */
.add-to-cart-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 8px;
}

.btn-add-to-cart {
    width: 100%;
    padding: 18px 32px;
    background-color: #E91E63;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
    transition: all 0.2s;
}

.btn-add-to-cart:hover {
    background-color: #C2185B;
    box-shadow: 0 6px 16px rgba(233, 30, 99, 0.4);
    transform: translateY(-2px);
}

.checkout-note {
    font-size: 13px;
    color: #6a6a6a;
    text-align: center;
}

/* Trust Icons Row */
.trust-icons-row {
    display: flex;
    justify-content: space-around;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.trust-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #6a6a6a;
    text-align: center;
}

.trust-icon-item span:first-child {
    font-size: 20px;
}

.payment-options {
    font-size: 13px;
    color: #6a6a6a;
    text-align: center;
}

/* Info Tabs */
.info-tabs {
    display: flex;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid #e8e8e8;
}

.info-tab {
    font-size: 14px;
    font-weight: 500;
    color: #6a6a6a;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.info-tab:hover,
.info-tab.active {
    color: #E91E63;
    border-bottom-color: #E91E63;
}

/* ============================================
   BENEFIT PILLS STRIP
   ============================================ */

.benefit-pills {
    background-color: #f9f9f9;
    padding: 32px 0;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.pills-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    padding: 20px 16px;
    background-color: #ffffff;
    border-radius: 10px;
    border: 1px solid #e8e8e8;
}

.pill-icon {
    width: 32px;
    height: 32px;
    color: #E91E63;
}

.pill span {
    font-size: 14px;
    font-weight: 600;
    color: #2c2c2c;
}

/* ============================================
   ELEVATE SECTION (DARK)
   ============================================ */

.elevate-section {
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
    color: #ffffff;
    padding: 80px 0;
}

.elevate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-title-light {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.elevate-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.elevate-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.elevate-bullet h3 {
    font-size: 16px;
    font-weight: 600;
    color: #F4B942;
    margin-bottom: 6px;
}

.elevate-bullet p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.elevate-image {
    border-radius: 12px;
    overflow: hidden;
}

.elevate-img {
    width: 100%;
    height: auto;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.stats-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: #1a1a1a;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: #E91E63;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-text {
    font-size: 15px;
    color: #6a6a6a;
    line-height: 1.5;
}

/* ============================================
   WHAT'S INSIDE SECTION
   ============================================ */

.whats-inside-section {
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.product-detail-card {
    background-color: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.2s;
}

.product-detail-card:hover {
    border-color: #E91E63;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.product-card-image {
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    margin-bottom: 16px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.product-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-card-bullets {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-card-bullets li {
    font-size: 14px;
    color: #6a6a6a;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.product-card-bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #E91E63;
    font-weight: 700;
    font-size: 16px;
}

.section-cta {
    text-align: center;
}

.btn-primary {
    display: inline-block;
    padding: 18px 48px;
    background-color: #E91E63;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
    transition: all 0.2s;
}

.btn-primary:hover {
    background-color: #C2185B;
    box-shadow: 0 6px 16px rgba(233, 30, 99, 0.4);
    transform: translateY(-2px);
}

/* ============================================
   COMPARISON SECTION
   ============================================ */

.comparison-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 48px;
}

.section-title-left {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.comparison-bullets {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comparison-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #2c2c2c;
    line-height: 1.6;
}

.check-icon-small {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #2e7d32;
    margin-top: 2px;
}

.comparison-table {
    width: 100%;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.comparison-table thead {
    background-color: #f5f5f5;
}

.comparison-table th {
    padding: 16px;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    color: #1a1a1a;
    border-bottom: 2px solid #e8e8e8;
}

.comparison-table td {
    padding: 16px;
    font-size: 14px;
    color: #6a6a6a;
    border-bottom: 1px solid #e8e8e8;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td.highlight {
    font-weight: 600;
    color: #E91E63;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */

.reviews-section {
    padding: 80px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background-color: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 24px;
}

.review-stars {
    color: #F4B942;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.review-headline {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.3;
}

.review-text {
    font-size: 14px;
    color: #6a6a6a;
    line-height: 1.6;
    margin-bottom: 16px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.author-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.verified-badge {
    font-size: 12px;
    color: #2e7d32;
    background-color: #e8f5e9;
    padding: 3px 8px;
    border-radius: 4px;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: #E91E63;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: #6a6a6a;
    line-height: 1.7;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-text {
    font-size: 15px;
    color: #6a6a6a;
    line-height: 1.7;
    margin-bottom: 24px;
}

.contact-image {
    border-radius: 10px;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: auto;
}

.contact-form {
    background-color: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E91E63;
}

.btn-submit {
    width: 100%;
    padding: 14px 32px;
    background-color: #E91E63;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-submit:hover {
    background-color: #C2185B;
    transform: translateY(-1px);
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */

.final-cta-section {
    background: linear-gradient(135deg, #E91E63, #C2185B);
    padding: 80px 0;
}

.final-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.final-cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
    line-height: 1.6;
}

.btn-final-cta {
    display: inline-block;
    padding: 20px 48px;
    background-color: #ffffff;
    color: #E91E63;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.2s;
}

.btn-final-cta:hover {
    background-color: #f5f5f5;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 48px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 32px;
    align-items: center;
}

.footer-logo {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, #E91E63, #F4B942);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-center {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

.footer-link:hover {
    color: #E91E63;
}

.footer-right {
    text-align: right;
}

.footer-legal {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .product-media {
        position: static;
    }
    
    .pills-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .elevate-grid,
    .comparison-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .elevate-bullets {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-menu {
        display: none;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .price-now {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .section-title-light {
        font-size: 28px;
    }
    
    .pills-row {
        grid-template-columns: 1fr;
    }
    
    .products-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .thumbnail-gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }
    
    .final-cta-title {
        font-size: 28px;
    }
    
    .final-cta-text {
        font-size: 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-right {
        text-align: center;
    }
    
    .footer-center {
        flex-direction: column;
        gap: 12px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}