/* Template Styles */
.hidden {
    display: none;
}

/* Brand Header */
.brand-header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}


/* Custom Components */
#variant-selector {
    background: #f5f5f5;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
}

#variant-selector select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

#custom-checkout {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.cta-button {
    display: block;
    width: 200px;
    padding: 15px;
    margin: 10px 0;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cta-button.primary {
    background: #007bff;
    color: white;
}

.cta-button:not(.primary) {
    background: white;
    color: #007bff;
    border: 2px solid #007bff;
}

/* Competitor content cleanup */
.competitor-removed {
    display: none !important;
}

.replaced-button {
    background: #28a745 !important;
    color: white !important;
    pointer-events: none;
}

.replaced-button::after {
    content: " (Redirected)";
    font-size: 12px;
    opacity: 0.8;
}