/* Merchant BTC Template Styles */

/* Page header s ikonou */
.page-header {
    margin-bottom: 2rem;
}

.page-title-container {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.page-title-container h1 {
    margin-bottom: 0;
    flex: 1;
    z-index: 1;
}

.page-icon {
    position: absolute;
    right: -20px;
    top: -10px;
    flex-shrink: 0;
    opacity: 0.9;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 12px rgba(225, 29, 72, 0.15));
    z-index: 2;
}

.page-icon:hover {
    transform: scale(1.05) rotate(5deg);
    filter: drop-shadow(0 8px 20px rgba(225, 29, 72, 0.25));
}

.page-icon svg {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-3px) rotate(1deg); }
    50% { transform: translateY(-6px) rotate(0deg); }
    75% { transform: translateY(-3px) rotate(-1deg); }
}

/* Merchant header with logo */
.merchant-header {
    text-align: center;
    margin: 2rem 0;
}

.merchant-logo-big {
    margin-bottom: 1.5rem;
}

.merchant-logo-image {
    max-width: 150px;
    max-height: 100px;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Status info - obyčejný text, ne tlačítko */
.merchant-status-info {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 1rem;
}

.merchant-status-info.btc-status {
    color: #22c55e;
}

.status-icon {
    font-size: 1.5rem;
}

.page-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Payment method card */
.payment-method-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(225, 29, 72, 0.2);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Features grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(225, 29, 72, 0.15);
    border-color: #e11d48;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.feature-text {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Support section - jiný layout než grid */
.support-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.support-item {
    background: white;
    border: 1px solid rgba(225, 29, 72, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.support-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(225, 29, 72, 0.15);
    border-color: #e11d48;
}

.support-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.support-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.support-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.support-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    margin-left: 3rem;
}

/* CTA buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        align-items: center;
    }
    
    .page-icon {
        position: static;
        transform: scale(0.8);
        right: auto;
        top: auto;
    }
    
    .merchant-logo-image {
        max-width: 120px;
        max-height: 80px;
    }
    
    .payment-method-card {
        padding: 2rem;
    }
    
    .bitcoin-icon {
        font-size: 3rem;
    }
    
    .step {
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .step-content h4 {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .support-list {
        gap: 1rem;
    }
    
    .support-item p {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .support-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .page-intro,
    .payment-description {
        font-size: 1rem;
    }
    
    .feature-card,
    .support-item {
        padding: 1.5rem;
    }
    
    .feature-icon,
    .support-icon {
        font-size: 2rem;
    }
}
