/*
Theme Name: GeneratePress Child Custom
Theme URI: https://netcup.coupons/
Description: Custom child theme for Netcup Coupons sharing website.
Author: Antigravity
Author URI: https://netcup.coupons/
Template: generatepress
Version: 1.0.0
*/

/* -------------------------------------------------------------
   1. Core Design System Variables & Base Settings
   ------------------------------------------------------------- */
:root {
    --bg-color: #0b0f19;
    --card-bg: #151c2c;
    --card-border: #222d44;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --accent-blue: #2563eb;
    --accent-blue-hover: #1d4ed8;
    --accent-cyan: #38bdf8;
    --status-green: #10b981;
    --pulse-glow: rgba(16, 185, 129, 0.4);
    --code-bg: #0f172a;
    --code-border: #1e293b;
}

/* Global Reset overrides for standard page layouts */
body {
    background-color: var(--bg-color) !important;
    color: var(--text-secondary) !important;
    font-family: 'Outfit', sans-serif !important;
    margin: 0;
    padding: 0;
}

/* Base Typography Styling */
h1, h2, h3, h4, h5, h6,
.entry-title, .entry-title a,
.widget-title, .comments-title,
.reply-title {
    color: var(--text-primary) !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
}

a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

a:hover {
    color: var(--text-primary);
}

/* -------------------------------------------------------------
   2. Styled Header Custom Elements (Matching page-coupons.php)
   ------------------------------------------------------------- */
.site-header-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 20px;
    border-bottom: 1px solid var(--card-border);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 48px;
    width: 48px;
    object-fit: contain;
}

.logo-text {
    font-size: 34px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--text-secondary);
}

.status-dot-pulse {
    width: 12px;
    height: 12px;
    background-color: var(--status-green);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 var(--pulse-glow);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 var(--pulse-glow);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Language Switcher Dropdown Style */
.lang-switcher-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 4px 10px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.lang-switcher-wrapper:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 8px rgba(56, 189, 248, 0.2);
}

.globe-icon {
    color: var(--text-secondary);
    flex-shrink: 0;
}

.lang-selector {
    background: transparent !important;
    border: none !important;
    color: var(--text-primary) !important;
    font-size: 13px !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 500 !important;
    padding: 2px 20px 2px 4px !important;
    margin: 0 !important;
    cursor: pointer;
    outline: none !important;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right center !important;
    background-size: 12px !important;
}

.lang-selector option {
    background-color: #121824 !important;
    color: #f8fafc !important;
}

/* Deals Header Button */
.deals-btn-header {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 8px;
    padding: 8px 14px;
    color: #38bdf8;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.15);
}

.deals-btn-header:hover {
    background: rgba(37, 99, 235, 0.2);
    border-color: #38bdf8;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
    transform: translateY(-1px);
}

.deals-btn-icon {
    font-size: 14px;
    color: #f59e0b;
    animation: pulse-deals 1.5s infinite alternate;
}

@keyframes pulse-deals {
    0% { transform: scale(1); filter: drop-shadow(0 0 2px rgba(245, 158, 11, 0.5)); }
    100% { transform: scale(1.15); filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.9)); }
}

/* Blog Header Button */
.blog-btn-header {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 8px 14px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.blog-btn-header:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--text-secondary);
    color: var(--text-primary);
    transform: translateY(-1px);
}

/* -------------------------------------------------------------
   3. Custom Footer Styling
   ------------------------------------------------------------- */
.site-footer-custom {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding: 40px 20px;
    border-top: 1px solid var(--card-border);
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
}

.site-footer-custom a {
    color: var(--accent-cyan);
    text-decoration: none;
}

.site-footer-custom a:hover {
    text-decoration: underline;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.footer-link-item {
    color: var(--text-secondary);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link-item:hover {
    color: var(--text-primary);
}

/* -------------------------------------------------------------
   4. GeneratePress Layout Adaptations (Blog Archive & Single Posts)
   ------------------------------------------------------------- */
.site-content {
    max-width: 1200px !important;
    margin: 40px auto !important;
    padding: 0 20px !important;
}

/* Card panels inside separate containers */
.separate-containers .inside-article,
.separate-containers .comments-area,
.separate-containers .page-header,
.separate-containers .paging-navigation,
.one-container .site-content {
    background-color: var(--card-bg) !important;
    border: 1px solid var(--card-border) !important;
    border-radius: 16px !important;
    color: var(--text-secondary) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
    padding: 40px !important;
    margin-bottom: 30px !important;
}

/* Blog list items spacing */
.separate-containers .inside-article {
    border-color: var(--card-border) !important;
    transition: transform 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.separate-containers .inside-article:hover {
    border-color: var(--accent-blue) !important;
    transform: translateY(-2px);
}

/* Page heading and archives */
.page-header {
    margin-bottom: 30px !important;
}

.page-header h1 {
    font-size: 32px !important;
    margin: 0 !important;
}

/* Meta information (Dates, Authors, etc.) */
.entry-meta {
    font-size: 14px !important;
    color: var(--text-secondary) !important;
    opacity: 0.8;
    margin-bottom: 24px !important;
}

.entry-meta a {
    color: var(--text-secondary) !important;
}

.entry-meta a:hover {
    color: var(--accent-cyan) !important;
}

/* Entry content formatting styles */
.entry-content p, .entry-content ul, .entry-content ol, .entry-content li {
    font-size: 16px !important;
    line-height: 1.8 !important;
    color: var(--text-secondary) !important;
}

.entry-content h2, .entry-content h3, .entry-content h4 {
    margin-top: 36px !important;
    margin-bottom: 16px !important;
    letter-spacing: -0.5px !important;
}

.entry-content h2 {
    font-size: 26px !important;
}

.entry-content h3 {
    font-size: 22px !important;
}

/* Code block highlight styles matching homepage */
.entry-content pre, .entry-content code {
    font-family: 'JetBrains Mono', monospace !important;
    background-color: var(--code-bg) !important;
    border: 1px solid var(--code-border) !important;
    border-radius: 8px !important;
    color: #f8fafc !important;
}

.entry-content pre {
    padding: 20px !important;
    overflow-x: auto !important;
    margin: 24px 0 !important;
}

.entry-content code {
    padding: 3px 6px !important;
    font-size: 14px !important;
}

.entry-content pre code {
    padding: 0 !important;
    border: none !important;
    background-color: transparent !important;
}

/* Blockquotes */
blockquote {
    border-left: 4px solid var(--accent-blue) !important;
    background-color: rgba(37, 99, 235, 0.05) !important;
    padding: 16px 24px !important;
    margin: 24px 0 !important;
    border-radius: 0 8px 8px 0 !important;
}

blockquote p {
    font-style: italic !important;
    color: var(--text-primary) !important;
    margin: 0 !important;
}

/* Sidebar styling */
#right-sidebar, #left-sidebar, .sidebar {
    background-color: transparent !important;
}

.widget {
    background-color: var(--card-bg) !important;
    border: 1px solid var(--card-border) !important;
    border-radius: 16px !important;
    color: var(--text-secondary) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2) !important;
    padding: 24px !important;
    margin-bottom: 30px !important;
}

.widget-title {
    font-size: 18px !important;
    font-weight: 800 !important;
    margin-bottom: 20px !important;
    border-bottom: 1px solid var(--card-border) !important;
    padding-bottom: 10px !important;
    text-transform: none !important;
    letter-spacing: -0.3px !important;
}

.widget ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.widget ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
    padding: 12px 0 !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
}

.widget ul li:last-child {
    border-bottom: none !important;
}

.widget ul li a {
    color: var(--text-secondary) !important;
}

.widget ul li a:hover {
    color: var(--accent-cyan) !important;
}

/* Sidebar Search Form */
.search-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-form input[type="search"] {
    width: 100% !important;
    background-color: var(--bg-color) !important;
    border: 1px solid var(--card-border) !important;
    color: var(--text-primary) !important;
    border-radius: 8px !important;
    padding: 12px 14px !important;
    font-size: 14px !important;
    font-family: inherit !important;
    outline: none !important;
    box-sizing: border-box !important;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.search-form input[type="search"]:focus {
    border-color: var(--accent-cyan) !important;
    box-shadow: 0 0 8px rgba(56, 189, 248, 0.2) !important;
}

.search-submit,
.search-form button.search-submit,
.search-form input[type="submit"] {
    background: var(--accent-blue) !important;
    color: var(--text-primary) !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 10px 20px !important;
    cursor: pointer !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    transition: all 0.2s ease !important;
    margin-top: 4px !important;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2) !important;
}

.search-submit:hover,
.search-form button.search-submit:hover,
.search-form input[type="submit"]:hover {
    background: var(--accent-blue-hover) !important;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4) !important;
    transform: translateY(-1px) !important;
}

/* Comments Section Adapters */
.comments-area {
    margin-top: 30px !important;
}

.comment-respond {
    padding: 0 !important;
}

.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
    background-color: var(--bg-color) !important;
    border: 1px solid var(--card-border) !important;
    color: var(--text-primary) !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    font-family: inherit !important;
    outline: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.comment-form textarea:focus,
.comment-form input:focus {
    border-color: var(--accent-cyan) !important;
    box-shadow: 0 0 8px rgba(56, 189, 248, 0.2) !important;
}

.comment-form .submit {
    background-color: var(--accent-blue) !important;
    color: var(--text-primary) !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 12px 24px !important;
    cursor: pointer !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2) !important;
}

.comment-form .submit:hover {
    background-color: var(--accent-blue-hover) !important;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4) !important;
    transform: translateY(-1px) !important;
}

/* Archive Pages Navigation Links */
.paging-navigation, .nav-links {
    display: flex !important;
    gap: 8px !important;
    align-items: center !important;
    justify-content: center !important;
}

.paging-navigation .page-numbers {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid var(--card-border) !important;
    color: var(--text-secondary) !important;
    border-radius: 8px !important;
    width: 40px !important;
    height: 40px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.2s !important;
}

.paging-navigation .page-numbers:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--text-secondary) !important;
    color: var(--text-primary) !important;
}

.paging-navigation .page-numbers.current {
    background: var(--accent-blue) !important;
    border-color: var(--accent-blue) !important;
    color: var(--text-primary) !important;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3) !important;
}

/* Category taxonomy tag links in posts */
.cat-links, .tags-links {
    font-size: 13px !important;
    color: var(--text-secondary) !important;
}

.cat-links a, .tags-links a {
    color: var(--accent-cyan) !important;
    background: rgba(56, 189, 248, 0.1) !important;
    padding: 3px 8px !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    margin-left: 4px !important;
}

.cat-links a:hover, .tags-links a:hover {
    background: rgba(56, 189, 248, 0.2) !important;
    color: var(--text-primary) !important;
}

/* -------------------------------------------------------------
   5. Live Deals Modal Styles (Copied from page-coupons.php)
   ------------------------------------------------------------- */
.deals-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.deals-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.deals-modal-content {
    background: #151c2c;
    border: 1px solid #222d44;
    width: 95%;
    max-width: 1200px;
    height: 90vh;
    max-height: 90vh;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.deals-modal-overlay.active .deals-modal-content {
    transform: scale(1);
}

.deals-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 24px;
    border-bottom: 1px solid #222d44;
}

.deals-modal-title-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.deals-modal-pulse {
    width: 10px;
    height: 10px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
    animation: pulse-dot 1.5s infinite;
}

.deals-modal-title {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.deals-modal-close {
    background: transparent;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.deals-modal-close:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.deals-modal-tabs {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 24px;
    border-bottom: 1px solid #222d44;
    background: rgba(11, 15, 25, 0.3);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.deals-modal-tabs::-webkit-scrollbar {
    display: none;
}

.deals-tab-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    padding: 0 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1;
    height: 32px;
    box-sizing: border-box;
}

.deals-tab-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.deals-tab-btn.active {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.3);
}

.deals-modal-body {
    padding: 12px 24px;
    overflow-y: auto;
    background: #0b0f19;
    flex: 1;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}

.deals-card {
    background: #151c2c;
    border: 1px solid #222d44;
    border-radius: 12px;
    padding: 12px 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.deals-card:hover {
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.deals-card.expired {
    opacity: 0.55;
    filter: grayscale(0.2);
    border-color: rgba(34, 45, 68, 0.5);
}

.deals-card.expired:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(34, 45, 68, 0.5);
}

.deals-card.expired .deals-card-accent {
    background: #475569;
}

.deals-card.expired .deals-card-cat {
    color: #64748b;
    background: rgba(148, 163, 184, 0.1);
}

.deals-card.expired .deals-card-badge {
    color: #64748b;
    background: rgba(148, 163, 184, 0.1);
}

.deals-card.expired .deals-card-specs li::before {
    color: #64748b;
}

.deals-card-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #2563eb;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.deals-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.deals-card-cat {
    font-size: 11px;
    font-weight: 700;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.deals-card-badge {
    font-size: 11px;
    font-weight: 700;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

.deals-card-badge.sold-out {
    color: #94a3b8;
    background: rgba(148, 163, 184, 0.1);
}

.deals-card-title {
    font-size: 17px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.deals-card-regular-price {
    font-size: 12px;
    color: #64748b;
    margin: 0 0 6px 0;
}

.deals-card-regular-price span {
    text-decoration: line-through;
}

.deals-card-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}

.deals-card-specs li {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.deals-card-specs li::before {
    content: "✓";
    color: #10b981;
    font-weight: 700;
}

.deals-card-footer {
    border-top: 1px solid #222d44;
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.deals-price-area {
    display: flex;
    flex-direction: column;
}

.deals-price-display {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
}

.deals-price-unit {
    font-size: 11px;
    color: #94a3b8;
}

.deals-price-vat {
    font-size: 9px;
    color: #64748b;
    margin-top: 2px;
}

.deals-card-btn {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border: none;
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.deals-card-btn:hover {
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.4);
    transform: translateY(-1px);
}

.deals-card-btn.sold-out {
    background: #1e293b;
    color: #64748b;
    border: 1px solid #334155;
    cursor: not-allowed;
    pointer-events: none;
}

.deals-no-deals-msg {
    color: #94a3b8;
    font-size: 15px;
    text-align: center;
    padding: 40px 20px;
    grid-column: 1 / -1;
}

/* Deals FAQ styling */
.deals-faq-sec-title {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 14px 0;
}

.deals-faq-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.deals-faq-wrapper {
    background: #151c2c;
    border: 1px solid #222d44;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.deals-faq-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.2s ease;
}

.deals-faq-toggle:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.02);
}

.deals-faq-toggle span {
    padding-right: 15px;
}

.deals-faq-icon {
    font-size: 10px;
    color: #64748b;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.deals-faq-wrapper.active .deals-faq-icon {
    transform: rotate(90deg);
}

.deals-faq-content {
    padding: 0 16px 12px 16px;
    font-size: 12px;
    line-height: 1.6;
    color: #64748b;
    display: none;
}

.deals-faq-wrapper.active .deals-faq-content {
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    padding-top: 10px;
}

/* Single Post Layout Enhancements */
.single.no-sidebar .site-content .content-area {
    width: 100% !important;
    max-width: 1200px;
    margin: 0 auto;
    float: none !important;
}
