/**
 * Sticker Club Frontend Styles
 */

/* Shortcode Section Styles */
.sticker-club-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 60px 20px;
    margin: 40px 0;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.sticker-club-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2b76e6 0%, #1e5fc7 100%);
}

.sticker-club-section-container {
    max-width: 800px;
    margin: 0 auto;
}

.sticker-club-section-content {
    text-align: center;
}

.sticker-club-section-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.sticker-club-section-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0 0 40px 0;
    line-height: 1.6;
}

.sticker-club-section-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.sticker-club-section-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.sticker-club-section-icon {
    width: 24px;
    height: 24px;
    background: #2b76e6;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.sticker-club-section-tiers {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.sticker-club-section-tier-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 30px;
    background: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 100px;
}

.sticker-club-section-tier-highlight:hover {
    border-color: #2b76e6;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(43, 118, 230, 0.15);
}

.sticker-club-section-tier-number {
    font-size: 36px;
    font-weight: 800;
    color: #2b76e6;
    line-height: 1;
    margin-bottom: 5px;
}

.sticker-club-section-tier-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.sticker-club-section-button-wrapper {
    margin-top: 20px;
}

.sticker-club-section-cta-btn {
    background: #2b76e6;
    color: #ffffff;
    border: none;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(43, 118, 230, 0.3);
    display: inline-block;
}

.sticker-club-section-cta-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;
}

.sticker-club-section-cta-btn:hover::before {
    left: 100%;
}

.sticker-club-section-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(43, 118, 230, 0.5);
    background: #1e5fc7;
}

.sticker-club-section-cta-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(43, 118, 230, 0.4);
}

/* Join Button Wrapper - Centers the button */
.sticker-club-button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 20px 0;
}

/* Join Button - Blue/Yellow Theme */
.sticker-club-join-btn {
    background: #1e40af; /* Blue matching your header */
    color: #ffffff;
    border: 3px solid #fbbf24; /* Yellow accent border */
    padding: 14px 32px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(30, 64, 175, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.sticker-club-join-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.3), transparent);
    transition: left 0.5s ease;
}

.sticker-club-join-btn:hover::before {
    left: 100%;
}

.sticker-club-join-btn:hover {
    background: #1e3a8a; /* Darker blue on hover */
    border-color: #f59e0b; /* Darker yellow on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 64, 175, 0.4);
}

.sticker-club-join-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(30, 64, 175, 0.3);
}

.sticker-club-product-banner {
    margin: 20px 0;
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

/* Popup Styles */
.sticker-club-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.sticker-club-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.sticker-club-popup-content {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.sticker-club-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 32px;
    color: #666;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    z-index: 10;
}

.sticker-club-popup-close:hover {
    color: #000;
}

.sticker-club-popup-content h2 {
    margin: 0 0 10px 0;
    font-size: 32px;
    color: #333;
    text-align: center;
}

.sticker-club-popup-description {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

.sticker-club-popup-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.sticker-club-dont-show-again {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

.sticker-club-dont-show-again input {
    margin-right: 5px;
}

/* Discount Info */
.sticker-club-discount-info {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
}

.sticker-club-discount-info h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    color: #333;
}

.sticker-club-tier-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sticker-club-tier-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.sticker-club-tier-list li:last-child {
    border-bottom: none;
}

.sticker-club-tier-list .sticker-club-price {
    font-weight: 700;
    color: #667eea;
    font-size: 18px;
}

/* Subscription Form */
.sticker-club-subscription-form {
    margin-top: 25px;
}

.sticker-club-tier-options {
    margin-bottom: 25px;
}

.sticker-club-tier-option {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
    position: relative;
}

.sticker-club-tier-option:hover {
    opacity: 0.8;
}

.sticker-club-tier-radio {
    width: 24px;
    height: 24px;
    margin: 0 15px 0 0;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: #667eea;
    border: 2px solid #667eea;
    border-radius: 50%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #ffffff;
    position: relative;
}

.sticker-club-tier-radio:checked {
    background-color: #667eea;
    border-color: #667eea;
}

.sticker-club-tier-radio:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ffffff;
}

.sticker-club-tier-option-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
}

.sticker-club-tier-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.sticker-club-tier-option-name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.sticker-club-tier-option-price {
    font-size: 20px;
    font-weight: 700;
    color: #667eea;
}

.sticker-club-tier-option-description {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.sticker-club-add-to-cart-btn {
    width: 100%;
    background: #2b76e6;
    color: #ffffff;
    border: none;
    padding: 18px 32px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(43, 118, 230, 0.3);
    margin-top: 10px;
}

.sticker-club-add-to-cart-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;
}

.sticker-club-add-to-cart-btn:hover::before {
    left: 100%;
}

.sticker-club-add-to-cart-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(43, 118, 230, 0.5);
    background: #1e5fc7;
}

.sticker-club-add-to-cart-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(43, 118, 230, 0.4);
}

.sticker-club-add-to-cart-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 8px rgba(43, 118, 230, 0.2);
}

.sticker-club-add-to-cart-btn:disabled:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(43, 118, 230, 0.2);
}

/* Tiers Grid (old - keeping for compatibility) */
.sticker-club-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.sticker-club-tier {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    background: #ffffff;
    cursor: pointer;
}

.sticker-club-tier:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.sticker-club-tier-header {
    margin-bottom: 15px;
}

.sticker-club-tier-header h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
    color: #333;
}

.sticker-club-tier-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.sticker-club-price-amount {
    font-size: 36px;
    font-weight: 700;
    color: #667eea;
}

.sticker-club-price-period {
    font-size: 16px;
    color: #666;
}

.sticker-club-tier-description {
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
}

.sticker-club-select-tier-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.sticker-club-select-tier-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.sticker-club-modal-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.sticker-club-note {
    color: #999;
    font-size: 14px;
    margin: 0;
}

/* Order Bump Styles */
.sticker-club-order-bump {
    background: #ffffff;
    border: 2px dashed #d0d0d0;
    border-radius: 8px;
    margin: 20px 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sticker-club-order-bump-header {
    background: #fff9e6;
    padding: 15px 20px;
    border-bottom: 1px solid #e8e8e8;
}

.sticker-club-order-bump-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    margin: 0;
    font-weight: 600;
    font-size: 16px;
    color: #1a1a1a;
}

.sticker-club-order-bump-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #2b76e6;
    flex-shrink: 0;
}

.sticker-club-order-bump-checkbox-text {
    flex: 1;
    color: #28a745;
    font-weight: 700;
}

.sticker-club-order-bump-content {
    padding: 20px;
    background: #ffffff;
}

.sticker-club-order-bump-quantity {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.sticker-club-order-bump-quantity label {
    font-weight: 600;
    color: #333;
    font-size: 15px;
    white-space: nowrap;
}

.sticker-club-order-bump-quantity-select {
    flex: 1;
    padding: 10px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    background: #ffffff;
    color: #333;
    cursor: pointer;
    transition: border-color 0.3s ease;
    max-width: 300px;
}

.sticker-club-order-bump-quantity-select:focus {
    outline: none;
    border-color: #2b76e6;
}

.sticker-club-order-bump-offer {
    margin-top: 15px;
}

.sticker-club-order-bump-badge {
    display: inline-block;
    background: #dc3545;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.sticker-club-order-bump-description {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .sticker-club-popup-content {
        padding: 30px 20px;
        width: 95%;
    }

    .sticker-club-tiers {
        grid-template-columns: 1fr;
    }

    .sticker-club-popup-content h2 {
        font-size: 24px;
    }

    .sticker-club-tier-option-content {
        padding: 15px;
    }

    .sticker-club-tier-option-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .sticker-club-tier-option-name {
        font-size: 16px;
    }

    .sticker-club-tier-option-price {
        font-size: 18px;
    }

    .sticker-club-add-to-cart-btn {
        padding: 16px 24px;
        font-size: 16px;
        letter-spacing: 0.8px;
    }

    /* Section responsive */
    .sticker-club-section {
        padding: 40px 15px;
    }

    .sticker-club-section-title {
        font-size: 32px;
    }

    .sticker-club-section-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .sticker-club-section-features {
        gap: 20px;
        margin-bottom: 30px;
    }

    .sticker-club-section-feature {
        font-size: 14px;
    }

    .sticker-club-section-tiers {
        gap: 15px;
        margin-bottom: 30px;
    }

    .sticker-club-section-tier-highlight {
        padding: 15px 20px;
        min-width: 80px;
    }

    .sticker-club-section-tier-number {
        font-size: 28px;
    }

    .sticker-club-section-cta-btn {
        padding: 16px 36px;
        font-size: 16px;
        width: 100%;
        max-width: 300px;
    }

    /* Order bump responsive */
    .sticker-club-order-bump-quantity {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .sticker-club-order-bump-quantity-select {
        width: 100%;
        max-width: 100%;
    }

    .sticker-club-order-bump-checkbox-label {
        font-size: 15px;
    }
}

