/* Belcher Button Tool Specific Styles */

/* Preview Components - General styles for all tools */
.preview-button {
    font-weight: 700;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.preview-button::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;
}

.preview-button:hover::before {
    left: 100%;
}

.preview-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.preview-box {
    position: relative;
    width: 14rem;
    height: 18rem;
    border-radius: 0.75rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.4s;
    overflow: hidden;
}

.preview-box:hover {
    transform: rotateY(10deg) translateY(-10px);
}

.box-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
    position: relative;
    z-index: 2;
}

.box-title {
    font-size: 1.375rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.box-subtitle {
    font-size: 0.875rem;
    opacity: 0.9;
    font-weight: 500;
}

.box-accent {
    width: 100%;
    height: 0.375rem;
    border-radius: 0.1875rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.box-overlay {
    position: absolute;
    inset: 0;
    border-radius: 0.75rem;
    opacity: 0.15;
    z-index: 1;
}

.funnel-container {
    width: 100%;
    max-width: 32rem;
}

.funnel-stage {
    margin: 0 auto 0.75rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    padding: 1.25rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.funnel-stage::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;
}

.funnel-stage:hover::before {
    left: 100%;
}

.funnel-stage:hover {
    transform: translateY(-2px) scale(1.02);
}

/* Belcher Button Specific Preview Styles */
.belcher-preview-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.belcher-style1-container {
    background-color: white;
    text-align: center;
    font-family: Arial, sans-serif;
    position: relative;
}

.belcher-style2-container {
    margin: 0 auto;
    font-family: Tahoma, Arial, sans-serif;
    background-color: transparent;
}

.belcher-price-text {
    font-weight: bold;
    margin-bottom: 15px;
}

.belcher-button {
    margin: 15px 0;
    cursor: pointer;
    transition: transform 0.2s;
    font-weight: bold;
    text-align: center;
    word-wrap: break-word;
}

.belcher-button:hover {
    transform: scale(1.05);
}

.belcher-link {
    text-decoration: underline;
    margin: 15px 0;
    display: block;
    word-wrap: break-word;
    cursor: pointer;
}

.belcher-urgency {
    font-weight: bold;
    margin: 15px 0;
    word-wrap: break-word;
}

.belcher-payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.belcher-payment-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 4px;
}

.belcher-powered-by {
    color: #888;
    margin-top: 15px;
}

/* Style 2 specific elements */
.belcher-style2-title {
    text-align: center;
    margin-bottom: 10px;
    word-wrap: break-word;
}

.belcher-style2-border {
    border-style: dashed;
    border-width: 3px;
    text-align: center;
    background-color: white;
}

.belcher-pricing-section {
    margin-bottom: 10px;
    color: #333;
}

.belcher-pricing-section del {
    color: #666;
    text-decoration: line-through;
}

.belcher-pricing-section ins {
    text-decoration: none;
    font-weight: bold;
}

.belcher-style2-button {
    display: block;
    max-width: 90%;
    margin: 5px auto;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s;
    word-wrap: break-word;
}

.belcher-style2-button:hover {
    transform: scale(1.02);
}

.belcher-style2-link {
    text-decoration: underline;
    margin: 10px 0;
    display: block;
    word-wrap: break-word;
}

/* Responsive adjustments for Belcher button */
@media (max-width: 768px) {
    .belcher-style1-container {
        padding: 15px;
    }
    
    .belcher-style2-container {
        width: 100%;
        max-width: 280px;
    }
    
    .belcher-button {
        padding: 15px 25px;
    }
    
    .belcher-style2-button {
        width: 160px;
        padding: 5px 10px 2px;
    }
    
    .belcher-payment-card {
        width: 40px;
        height: 24px;
    }
    
    .belcher-payment-methods {
        gap: 3px;
        margin: 10px 0;
    }
} 