/* Glownetics Blog Components - Dark Grey & Gold Theme */

:root {
    --glow-gold: #d4af37;
    --glow-gold-light: #e8c96b;
    --glow-gold-dark: #b8942e;
    --glow-dark: #1a1a2e;
    --glow-dark-light: #2d2d44;
    --glow-dark-lighter: #3d3d5c;
    --glow-glass: rgba(26, 26, 46, 0.85);
    --glow-glass-border: rgba(212, 175, 55, 0.3);
    --glow-text: #f5f5f5;
    --glow-text-muted: #b0b0b0;
}

/* FAQ Accordion */
.glow-faq-item {
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--glow-dark);
    border: 1px solid var(--glow-glass-border);
    transition: all 0.3s ease;
}

.glow-faq-item:hover {
    border-color: var(--glow-gold);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
}

.glow-faq-question {
    width: 100%;
    padding: 18px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--glow-text);
    text-align: left;
    transition: all 0.3s ease;
}

.glow-faq-question:hover {
    background: var(--glow-dark-light);
}

.glow-faq-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--glow-gold), var(--glow-gold-dark));
    color: var(--glow-dark);
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.glow-faq-item.active .glow-faq-icon {
    transform: rotate(45deg);
}

.glow-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background: var(--glow-dark-light);
    color: var(--glow-text-muted);
    line-height: 1.7;
}

.glow-faq-item.active .glow-faq-answer {
    max-height: 500px;
    padding: 0 20px 20px 20px;
}

/* Callout Boxes */
.glow-callout {
    margin: 24px 0;
    padding: 20px 24px;
    border-radius: 12px;
    background: var(--glow-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glow-glass-border);
    position: relative;
    overflow: hidden;
}

.glow-callout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--glow-gold), var(--glow-gold-dark));
}

.glow-callout-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.glow-callout-icon {
    font-size: 20px;
}

.glow-callout-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--glow-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.glow-callout-content {
    color: var(--glow-text);
    line-height: 1.7;
}

.glow-callout-content p:last-child {
    margin-bottom: 0;
}

/* Callout Types */
.glow-callout-tip::before {
    background: linear-gradient(180deg, #28a745, #1e7e34);
}

.glow-callout-tip .glow-callout-title {
    color: #28a745;
}

.glow-callout-warning::before {
    background: linear-gradient(180deg, #ffc107, #d39e00);
}

.glow-callout-warning .glow-callout-title {
    color: #ffc107;
}

.glow-callout-product::before {
    background: linear-gradient(180deg, var(--glow-gold), var(--glow-gold-dark));
}

/* Pull Quote */
.glow-pull-quote {
    margin: 32px 0;
    padding: 30px 40px;
    background: linear-gradient(135deg, var(--glow-dark), var(--glow-dark-light));
    border-left: 5px solid var(--glow-gold);
    border-radius: 0 12px 12px 0;
    position: relative;
}

.glow-pull-quote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 60px;
    color: var(--glow-gold);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.glow-pull-quote p {
    font-size: 18px;
    font-style: italic;
    color: var(--glow-text);
    line-height: 1.8;
    margin: 0;
    position: relative;
    z-index: 1;
}

.glow-quote-author {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    color: var(--glow-gold);
    font-style: normal;
    font-weight: 600;
}

/* Comparison Table */
.glow-comparison-wrapper {
    margin: 24px 0;
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid var(--glow-glass-border);
}

.glow-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--glow-dark);
}

.glow-comparison-table th {
    background: linear-gradient(135deg, var(--glow-gold), var(--glow-gold-dark));
    color: var(--glow-dark);
    padding: 15px 20px;
    font-weight: 700;
    text-align: left;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.glow-comparison-table td {
    padding: 15px 20px;
    color: var(--glow-text);
    border-bottom: 1px solid var(--glow-dark-lighter);
}

.glow-comparison-table tr:last-child td {
    border-bottom: none;
}

.glow-comparison-table tr:hover td {
    background: var(--glow-dark-light);
}

.glow-comparison-table td:first-child {
    font-weight: 600;
    color: var(--glow-gold-light);
}

/* Tabs */
.glow-tabs {
    margin: 24px 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glow-glass-border);
}

.glow-tabs-nav {
    display: flex;
    background: var(--glow-dark);
    border-bottom: 1px solid var(--glow-glass-border);
    overflow-x: auto;
}

.glow-tab-button {
    padding: 15px 25px;
    background: transparent;
    border: none;
    color: var(--glow-text-muted);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.glow-tab-button:hover {
    color: var(--glow-text);
    background: var(--glow-dark-light);
}

.glow-tab-button.active {
    color: var(--glow-gold);
}

.glow-tab-button.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--glow-gold), var(--glow-gold-dark));
}

.glow-tabs-content {
    background: var(--glow-dark-light);
}

.glow-tab-panel {
    display: none;
    padding: 25px;
    color: var(--glow-text);
    line-height: 1.7;
}

.glow-tab-panel.active {
    display: block;
}

/* Product Card */
.glow-product-card {
    margin: 24px 0;
    padding: 25px;
    background: linear-gradient(135deg, var(--glow-dark), var(--glow-dark-light));
    border: 1px solid var(--glow-glass-border);
    border-radius: 12px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: all 0.3s ease;
}

.glow-product-card:hover {
    border-color: var(--glow-gold);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.glow-product-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.glow-product-info {
    flex: 1;
}

.glow-product-name {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--glow-gold);
}

.glow-product-desc {
    margin: 0 0 12px 0;
    color: var(--glow-text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.glow-product-price {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: var(--glow-text);
    margin-right: 15px;
}

.glow-product-button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--glow-gold), var(--glow-gold-dark));
    color: #1a1a2e !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.glow-product-button:hover {
    background: linear-gradient(135deg, var(--glow-gold-light), var(--glow-gold));
    color: #1a1a2e !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .glow-faq-question {
        padding: 15px;
        font-size: 15px;
    }
    
    .glow-callout {
        padding: 16px 20px;
    }
    
    .glow-pull-quote {
        padding: 20px 25px;
    }
    
    .glow-pull-quote p {
        font-size: 16px;
    }
    
    .glow-tabs-nav {
        flex-wrap: nowrap;
    }
    
    .glow-tab-button {
        padding: 12px 18px;
        font-size: 13px;
    }
    
    .glow-product-card {
        flex-direction: column;
        text-align: center;
    }
    
    .glow-comparison-table th,
    .glow-comparison-table td {
        padding: 12px 15px;
        font-size: 13px;
    }
}
