/* ============================================================
   HYBRID WOOCOMMERCE PRODUCT LAYOUT STYLES
   ============================================================ */

/* Force light mode styles within our hybrid container, regardless of global dark mode */
.skp-hybrid-container {
    background-color: #ffffff !important;
    color: #333333 !important;
    padding: 60px 0;
    
    /* Override global theme CSS variables locally to prevent inline styles from turning white */
    --sk-text: #2c2c2c !important;
    --sk-muted: #555555 !important;
    --sk-border: #eaeaea !important;
    --text-color: #2c2c2c !important;
    --heading-color: #2c2c2c !important;
}

html body .skp-hybrid-container h1, 
html body .skp-hybrid-container h2, 
html body .skp-hybrid-container h3, 
html body .skp-hybrid-container h4, 
html body .skp-hybrid-container h5, 
html body .skp-hybrid-container h6,
html body .skp-hybrid-container .woocommerce-Price-amount,
html body .skp-hybrid-container .product_title,
html body .skp-hybrid-container label {
    color: #2c2c2c !important;
}

html body .skp-hybrid-container .woocommerce-tabs .tabs li a,
html body .skp-hybrid-container .woocommerce-tabs .panel h2,
html body .skp-hybrid-container .accordion-title,
html body .skp-hybrid-container .wc-tab .tab-title,
html body .skp-hybrid-container .wd-accordion-title,
html body .skp-hybrid-container .skp-accordion-header {
    color: #2c2c2c !important;
}

html body .skp-hybrid-container .woocommerce-tabs .tabs li.active a,
html body .skp-hybrid-container .wd-accordion-title.active {
    color: #d4af37 !important;
}

html body .skp-hybrid-container,
html body .skp-hybrid-container p,
html body .skp-hybrid-container li,
html body .skp-hybrid-container span,
html body .skp-hybrid-container div {
    color: #444444 !important;
}

/* Let specific gold/theme colored things remain colored if possible, but force links dark */
html body .skp-hybrid-container a:not(.button) {
    color: #222222 !important;
}
html body .skp-hybrid-container a:not(.button):hover {
    color: #d4af37 !important;
}

.skp-hybrid-container .summary.entry-summary {
    padding: 0 40px; /* Add breathing room for the right column */
}

/* ============================================================
   A4 LUXURY GRID LAYOUT STYLES (Bottom Section)
   ============================================================ */

/* Base Container */
.skp-a4-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 20px;
    font-family: var(--sk-font-body, 'Helvetica Neue', Helvetica, Arial, sans-serif);
    color: #333;
    line-height: 1.6;
    border-top: 1px solid #eaeaea; /* Separator from the main WC area */
}

/* Layout Utilities */
.skp-a4-split {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}
.skp-a4-col {
    flex: 1;
}
.skp-a4-col h2 {
    font-family: var(--sk-font-display, Georgia, serif);
    color: #2c2c2c !important;
    margin-bottom: 25px;
    font-size: 26px;
    border-bottom: 2px solid #d4af37; /* Gold accent */
    padding-bottom: 12px;
    display: inline-block;
}

/* Lists */
.skp-a4-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.skp-a4-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
    position: relative;
    padding-left: 24px;
    font-size: 16px;
    color: #444 !important;
}
.skp-a4-list li::before {
    content: "•";
    color: #d4af37;
    position: absolute;
    left: 0;
    font-size: 22px;
}
.skp-why-list li::before {
    content: none;
}

/* Tables */
.skp-a4-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}
.skp-a4-table th, .skp-a4-table td {
    padding: 15px 18px;
    border: 1px solid #eaeaea;
    text-align: left;
    font-size: 15px;
}
.skp-a4-table th {
    background: #fdfdfd;
    font-weight: 600;
    color: #2c2c2c !important;
    width: 40%;
}
.skp-a4-table td {
    color: #555 !important;
}

/* Responsive */
@media (max-width: 992px) {
    .skp-a4-split {
        flex-direction: column;
        gap: 40px;
    }
    .skp-hybrid-container .summary.entry-summary {
        padding: 0 15px;
    }
}
