/* BlackFriday Gemini Generator - Frontend Styles for Enhanced Readability */

/* Article Content Readability Enhancements */
.bfgg-section-title {
    color: #2c3e50;
    font-size: 1.8em;
    font-weight: 700;
    margin: 35px 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 3px solid #3498db;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bfgg-section-icon {
    font-size: 0.9em;
}

.bfgg-subsection-title {
    color: #34495e;
    font-size: 1.4em;
    font-weight: 600;
    margin: 25px 0 15px 0;
    line-height: 1.4;
}

.bfgg-sub-subsection-title {
    color: #555;
    font-size: 1.2em;
    font-weight: 600;
    margin: 20px 0 12px 0;
    line-height: 1.4;
}

.bfgg-paragraph {
    margin: 15px 0;
    color: #2c3e50;
    line-height: 1.8;
    font-size: 1.05em;
}

.bfgg-highlight {
    background: linear-gradient(120deg, #f39c12 0%, #f1c40f 100%);
    padding: 2px 6px;
    border-radius: 3px;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.bfgg-emphasis {
    font-style: italic;
    color: #555;
    font-weight: 500;
}

/* Enhanced List Styles */
.bfgg-bullet-list {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.bfgg-bullet-item {
    position: relative;
    margin: 12px 0;
    padding-left: 30px;
    color: #2c3e50;
    line-height: 1.7;
    font-size: 1.05em;
}

.bfgg-bullet-item:before {
    content: "🔥";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
}

.bfgg-numbered-list {
    margin: 20px 0;
    padding-left: 30px;
    counter-reset: bfgg-counter;
}

.bfgg-numbered-item {
    margin: 12px 0;
    color: #2c3e50;
    counter-increment: bfgg-counter;
    position: relative;
    line-height: 1.7;
    font-size: 1.05em;
}

/* Callout Boxes */
.bfgg-pro-tip {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-left: 4px solid #4caf50;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
}

.bfgg-tip-icon {
    font-size: 1.2em;
    margin-right: 8px;
}

.bfgg-warning {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-left: 4px solid #ff9800;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.2);
}

.bfgg-warning-icon {
    font-size: 1.2em;
    margin-right: 8px;
}

.bfgg-note {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left: 4px solid #2196f3;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.2);
}

.bfgg-note-icon {
    font-size: 1.2em;
    margin-right: 8px;
}

/* BlackFriday Gemini Generator - Frontend Amazon Button Styles */

/* Amazon Purchase Button */
.bfgg-amazon-button-container {
    text-align: center;
    margin: 30px auto;
    padding: 20px;
    background: linear-gradient(135deg, #f7f1e3 0%, #fff8e1 100%);
    border-radius: 15px;
    border: 2px solid #ff9900;
    position: relative;
    overflow: hidden;
    max-width: 500px;
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.2);
}

.bfgg-amazon-button-container:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 153, 0, 0.1), transparent);
    animation: bfgg-amazon-shine 3s infinite;
}

@keyframes bfgg-amazon-shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.bfgg-amazon-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff9900 0%, #ff6600 100%) !important;
    color: #fff !important;
    text-decoration: none !important;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 153, 0, 0.4);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.bfgg-amazon-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 153, 0, 0.6);
    text-decoration: none !important;
    color: #fff !important;
}

.bfgg-amazon-button:focus {
    outline: none;
    box-shadow: 0 12px 35px rgba(255, 153, 0, 0.6), 0 0 0 3px rgba(255, 153, 0, 0.3);
}

.bfgg-amazon-button:active {
    transform: translateY(-1px) scale(1.02);
}

.bfgg-amazon-icon {
    margin-right: 10px;
    font-size: 20px;
    animation: bfgg-cart-bounce 2s infinite;
}

@keyframes bfgg-cart-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-3px); }
    60% { transform: translateY(-2px); }
}

.bfgg-amazon-text {
    margin: 0 10px;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    font-weight: bold;
}

.bfgg-amazon-arrow {
    margin-left: 5px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.bfgg-amazon-button:hover .bfgg-amazon-arrow {
    transform: translateX(5px);
}

/* Amazon button glow effect */
.bfgg-amazon-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 50%, rgba(255,255,255,0.1) 100%);
    z-index: -1;
}

/* Container decoration removed - subtitle is now in HTML for multilingual support */

/* Responsive design */
@media (max-width: 768px) {
    .bfgg-amazon-button {
        font-size: 16px;
        padding: 12px 25px;
    }
    
    .bfgg-amazon-button-container {
        margin: 20px auto;
        padding: 15px;
        max-width: 90%;
    }
    
    .bfgg-amazon-icon {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .bfgg-amazon-button {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .bfgg-amazon-text {
        margin: 0 5px;
    }
}

/* Override any theme styles that might interfere */
.bfgg-amazon-button-container * {
    box-sizing: border-box;
}

/* Ensure button displays properly in any theme */
.bfgg-amazon-button {
    line-height: 1.4 !important;
    vertical-align: baseline !important;
    text-align: center !important;
}

/* Additional specificity for stubborn themes */
article .bfgg-amazon-button,
.post-content .bfgg-amazon-button,
.entry-content .bfgg-amazon-button {
    background: linear-gradient(135deg, #ff9900 0%, #ff6600 100%) !important;
    color: #fff !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}
