/**
 * Empire Sports Pages - New Sections Styles
 * Matches existing Empire design system from sports-product.css
 * Uses Empire color variables and design patterns
 */

/* ==========================================================================
   REVIEWS + PRICING SPLIT SECTION
   ========================================================================== */
.esp-reviews-pricing-section {
    padding: 60px 0;
    background: var(--empire-gray-light);
}

.esp-split-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: start;
}

/* Side Titles */
.esp-side-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--empire-primary);
    margin: 0 0 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Reviews Side */
.esp-reviews-side {
    background: var(--empire-white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
}

.esp-reviews-compact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.esp-review-item {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--empire-gray-light);
}

.esp-review-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.esp-review-item .esp-review-stars {
    color: #fbbf24;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.esp-review-item .esp-review-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--empire-text);
    margin: 0 0 12px;
    font-style: italic;
}

.esp-review-item .esp-review-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.esp-review-item .esp-review-author strong {
    font-size: 0.85rem;
    color: var(--empire-primary);
    font-weight: 600;
}

.esp-review-item .esp-review-author span {
    font-size: 0.8rem;
    color: var(--empire-text-light);
}

.esp-reviews-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--empire-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.esp-reviews-link:hover {
    color: var(--empire-primary);
}

/* Pricing Side */
.esp-pricing-side {
    background: var(--empire-white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
}

/* Responsive Split Layout */
@media (max-width: 992px) {
    .esp-split-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .esp-reviews-side,
    .esp-pricing-side {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .esp-reviews-pricing-section {
        padding: 50px 0;
    }

    .esp-side-title {
        font-size: 1.1rem;
    }

    .esp-reviews-side,
    .esp-pricing-side {
        padding: 20px;
    }
}

/* ==========================================================================
   PRICING SECTION - Compact Tabbed Pricing
   ========================================================================== */
.esp-pricing-section {
    padding: 60px 0;
    background: var(--empire-gray-light);
}

.esp-pricing-section .section-header {
    text-align: center;
    margin-bottom: 30px;
}

.esp-pricing-section .section-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--empire-primary);
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.esp-pricing-section .section-subtitle {
    font-size: 1rem;
    color: var(--empire-text-light);
    margin: 0;
}

/* Pricing Tabs Container */
.esp-pricing-tabbed {
    max-width: 900px;
    margin: 0 auto;
}

/* Pricing Tabs Navigation */
.esp-pricing-tabs {
    display: flex;
    gap: 4px;
    background: var(--empire-white);
    padding: 6px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.esp-pricing-tab {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--empire-text-light);
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.esp-pricing-tab:hover {
    background: var(--empire-gray-light);
    color: var(--empire-primary);
}

.esp-pricing-tab.active {
    background: var(--empire-primary);
    color: var(--empire-white);
}

/* Pricing Panels */
.esp-pricing-panel {
    display: none;
}

.esp-pricing-panel.active {
    display: block;
}

/* Tab Content (alternative class) */
.esp-pricing-tab-content {
    display: none;
    background: var(--empire-white);
    border: 1px solid var(--empire-gray-light);
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 20px;
    max-height: 450px;
    overflow-y: auto;
}

.esp-pricing-tab-content.active {
    display: block;
}

/* Current Product Highlight Box */
.esp-current-product {
    background: linear-gradient(135deg, rgba(191, 10, 48, 0.08) 0%, rgba(191, 10, 48, 0.03) 100%);
    border: 2px solid var(--empire-accent);
    border-radius: 8px;
    padding: 14px 18px;
    margin-bottom: 20px;
    position: relative;
}

.esp-current-label {
    position: absolute;
    top: -10px;
    left: 14px;
    background: var(--empire-accent);
    color: var(--empire-white);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 4px;
}

.esp-current-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
}

.esp-current-row .esp-product-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--empire-primary);
}

.esp-current-row .esp-product-price {
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--empire-accent);
}

/* Category Groups */
.esp-pricing-categories {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.esp-pricing-category {
    border: 1px solid var(--empire-gray-light);
    border-radius: 6px;
    overflow: hidden;
}

.esp-category-title {
    background: var(--empire-gray-light);
    margin: 0;
    padding: 10px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--empire-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #ddd;
}

.esp-pricing-list {
    padding: 0;
    margin: 0;
}

.esp-pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 14px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.85rem;
    transition: background 0.2s ease;
}

.esp-pricing-row:last-child {
    border-bottom: none;
}

.esp-pricing-row:hover {
    background: rgba(0, 40, 104, 0.02);
}

.esp-pricing-row span:first-child {
    color: var(--empire-text);
}

.esp-pricing-row span:last-child {
    font-weight: 700;
    color: var(--empire-primary);
}

.esp-pricing-row.esp-current {
    background: rgba(191, 10, 48, 0.06);
}

.esp-pricing-row.esp-current span:first-child {
    font-weight: 600;
    color: var(--empire-primary);
}

.esp-pricing-row.esp-current span:last-child {
    color: var(--empire-accent);
}

/* Custom Scrollbar for Tab Content */
.esp-pricing-tab-content::-webkit-scrollbar {
    width: 5px;
}

.esp-pricing-tab-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.esp-pricing-tab-content::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.esp-pricing-tab-content::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

/* Responsive Tab Content */
@media (max-width: 768px) {
    .esp-pricing-tab-content {
        padding: 15px;
        max-height: 400px;
    }

    .esp-current-product {
        padding: 12px 14px;
    }

    .esp-current-row .esp-product-name {
        font-size: 0.9rem;
    }

    .esp-current-row .esp-product-price {
        font-size: 1.15rem;
    }

    .esp-pricing-row {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .esp-category-title {
        font-size: 0.7rem;
        padding: 8px 12px;
    }
}

/* ==========================================================================
   COMPACT DUAL-COLUMN PRICING - Space Efficient Layout
   ========================================================================== */
.esp-compact-pricing {
    padding: 50px 0;
    background: #f8fafc;
}

/* Wide Container - 1600px */
.empire-container-wide {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 30px;
}

.esp-compact-pricing .esp-pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.esp-compact-pricing .esp-pricing-header h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: var(--empire-primary);
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.esp-compact-pricing .esp-pricing-header p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

/* Current Product Highlight Box */
.esp-current-product-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: linear-gradient(135deg, var(--empire-primary) 0%, #0055a5 100%);
    border-radius: 12px;
    padding: 20px 30px;
    margin-bottom: 24px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 40, 104, 0.25);
}

.esp-current-product-label {
    position: absolute;
    top: -10px;
    left: 24px;
    background: var(--empire-accent);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 12px;
}

.esp-current-product-info {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
}

.esp-current-product-info h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
}

.esp-current-product-prices {
    display: flex;
    gap: 16px;
}

.esp-price-tier {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.15);
    padding: 10px 20px;
    border-radius: 8px;
    min-width: 80px;
}

.esp-price-tier.featured {
    background: var(--empire-accent);
    position: relative;
}

.esp-price-tier .qty {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.esp-price-tier .price {
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
}

.esp-price-tier .best {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    margin-top: 2px;
}

.esp-current-product-cta {
    background: white;
    color: var(--empire-primary);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.esp-current-product-cta:hover {
    background: var(--empire-accent);
    color: white;
    transform: translateY(-2px);
}

/* Dual Grid Layout */
.esp-pricing-dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.esp-pricing-column {
    background: var(--empire-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* Compact Table Styles */
.esp-compact-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
}

.esp-compact-table thead {
    background: var(--empire-primary);
}

.esp-compact-table thead th {
    padding: 10px 8px;
    color: white;
    font-weight: 700;
    text-align: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.esp-compact-table thead th.product-col {
    text-align: left;
    padding-left: 14px;
    width: 50%;
}

.esp-compact-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s ease;
}

.esp-compact-table tbody tr:hover {
    background: #f8fafc;
}

.esp-compact-table tbody td {
    padding: 8px 8px;
    text-align: center;
    color: #374151;
    font-weight: 600;
}

.esp-compact-table tbody td.product-col {
    text-align: left;
    padding-left: 14px;
    font-weight: 500;
    color: #1f2937;
}

.esp-compact-table tbody td.best-value {
    background: rgba(191, 10, 48, 0.06);
    color: var(--empire-accent);
    font-weight: 700;
}

/* Current Product Row */
.esp-compact-table tr.current-product {
    background: linear-gradient(90deg, rgba(0, 40, 104, 0.1) 0%, rgba(0, 40, 104, 0.04) 100%);
    border-left: 3px solid var(--empire-primary);
}

.esp-compact-table tr.current-product td {
    font-weight: 700;
}

.esp-compact-table tr.current-product td.product-col strong {
    color: var(--empire-primary);
}

.esp-compact-table .you-badge {
    display: inline-block;
    background: var(--empire-accent);
    color: white;
    font-size: 0.55rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 8px;
    margin-left: 6px;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Category Header Row */
.esp-compact-table tr.category-header td {
    background: #f1f5f9;
    padding: 7px 14px;
    font-weight: 700;
    font-size: 0.7rem;
    color: var(--empire-primary);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-bottom: 2px solid var(--empire-accent);
}

.esp-compact-table tr.category-header:hover {
    background: #f1f5f9;
}

/* Pricing CTA */
.esp-compact-pricing .esp-pricing-cta {
    text-align: center;
    margin-top: 24px;
}

/* Responsive Dual Grid */
@media (max-width: 1200px) {
    .esp-current-product-box {
        flex-wrap: wrap;
        gap: 20px;
    }

    .esp-current-product-info {
        gap: 24px;
    }

    .esp-price-tier {
        padding: 8px 16px;
        min-width: 70px;
    }

    .esp-price-tier .price {
        font-size: 1.2rem;
    }
}

@media (max-width: 900px) {
    .esp-pricing-dual-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .esp-current-product-box {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .esp-current-product-info {
        flex-direction: column;
        gap: 16px;
    }

    .esp-current-product-prices {
        justify-content: center;
    }

    .esp-current-product-cta {
        width: 100%;
        text-align: center;
    }

    .esp-compact-table {
        font-size: 0.8rem;
    }

    .esp-compact-table thead th {
        padding: 8px 6px;
        font-size: 0.7rem;
    }

    .esp-compact-table tbody td {
        padding: 7px 6px;
    }
}

@media (max-width: 480px) {
    .esp-compact-pricing {
        padding: 40px 0;
    }

    .empire-container-wide {
        padding: 0 15px;
    }

    .esp-current-product-info h3 {
        font-size: 1.1rem;
    }

    .esp-price-tier {
        padding: 8px 12px;
        min-width: 60px;
    }

    .esp-price-tier .price {
        font-size: 1.1rem;
    }

    .esp-compact-table {
        font-size: 0.75rem;
    }

    .esp-compact-table thead th,
    .esp-compact-table tbody td {
        padding: 6px 4px;
    }

    .esp-compact-table thead th.product-col,
    .esp-compact-table tbody td.product-col {
        padding-left: 10px;
    }

    .esp-compact-table .you-badge {
        display: none;
    }
}

/* ==========================================================================
   SIMPLE PRICING TABLE - Clean & Scannable
   ========================================================================== */
.esp-simple-pricing {
    padding: 60px 0;
    background: #f8fafc;
}

.esp-pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.esp-pricing-header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--empire-primary);
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.esp-pricing-header p {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
}

.esp-pricing-table-wrap {
    max-width: 900px;
    margin: 0 auto;
    background: var(--empire-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Simple Table */
.esp-simple-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.esp-simple-table thead {
    background: var(--empire-primary);
}

.esp-simple-table thead th {
    padding: 16px 12px;
    color: white;
    font-weight: 700;
    text-align: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.esp-simple-table thead th.product-col {
    text-align: left;
    padding-left: 20px;
    width: 40%;
}

.esp-simple-table thead th.best-value {
    background: var(--empire-accent);
}

.esp-simple-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.esp-simple-table tbody tr:hover {
    background: #f8fafc;
}

.esp-simple-table tbody td {
    padding: 12px;
    text-align: center;
    color: #374151;
    font-weight: 600;
}

.esp-simple-table tbody td.product-col {
    text-align: left;
    padding-left: 20px;
    font-weight: 500;
    color: #1f2937;
}

.esp-simple-table tbody td.best-value {
    background: rgba(191, 10, 48, 0.04);
    color: var(--empire-accent);
    font-weight: 700;
}

/* Current Product Row */
.esp-simple-table tr.current-product {
    background: linear-gradient(90deg, rgba(0, 40, 104, 0.08) 0%, rgba(0, 40, 104, 0.03) 100%);
    border-left: 4px solid var(--empire-primary);
}

.esp-simple-table tr.current-product td {
    font-weight: 700;
}

.esp-simple-table tr.current-product td.product-col strong {
    color: var(--empire-primary);
}

.you-badge {
    display: inline-block;
    background: var(--empire-accent);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    margin-left: 8px;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Category Header Row */
.esp-simple-table tr.category-header td {
    background: #f1f5f9;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--empire-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--empire-accent);
}

.esp-simple-table tr.category-header:hover {
    background: #f1f5f9;
}

/* Pricing CTA */
.esp-pricing-cta {
    text-align: center;
    margin-top: 30px;
}

.esp-quote-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--empire-accent);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.esp-quote-btn:hover {
    background: #a30832;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(191, 10, 48, 0.3);
}

/* Responsive Simple Table */
@media (max-width: 768px) {
    .esp-simple-pricing {
        padding: 40px 0;
    }

    .esp-pricing-table-wrap {
        margin: 0 10px;
        border-radius: 8px;
        overflow-x: auto;
    }

    .esp-simple-table {
        font-size: 0.8rem;
        min-width: 600px;
    }

    .esp-simple-table thead th,
    .esp-simple-table tbody td {
        padding: 10px 8px;
    }

    .esp-simple-table thead th.product-col,
    .esp-simple-table tbody td.product-col {
        padding-left: 12px;
    }

    .you-badge {
        display: block;
        margin-left: 0;
        margin-top: 4px;
        font-size: 0.55rem;
    }
}

/* ==========================================================================
   STANDALONE PRICING SECTION (Full Width) - IMPROVED LAYOUT
   ========================================================================== */
.esp-pricing-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--empire-white);
    border-radius: var(--radius-lg);
    padding: 0;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

/* Improved Tabs - Pill Style */
.esp-pricing-container .esp-pricing-tabs {
    display: flex;
    background: var(--empire-primary);
    padding: 0;
    margin: 0;
    gap: 0;
    border-radius: 0;
}

.esp-pricing-container .esp-pricing-tab {
    flex: 1;
    padding: 18px 24px;
    background: transparent;
    border: none;
    border-radius: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    border-right: 1px solid rgba(255,255,255,0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.esp-pricing-container .esp-pricing-tab:last-child {
    border-right: none;
}

.esp-pricing-container .esp-pricing-tab:hover {
    background: rgba(255,255,255,0.1);
    color: var(--empire-white);
}

.esp-pricing-container .esp-pricing-tab.active {
    background: var(--empire-accent);
    color: var(--empire-white);
}

/* Tab Content - Clean Layout */
.esp-pricing-container .esp-pricing-tab-content {
    border: none;
    border-radius: 0;
    padding: 30px;
    max-height: 500px;
    overflow-y: auto;
    background: var(--empire-white);
}

/* Current Product - Prominent Display */
.esp-pricing-container .esp-current-product {
    background: linear-gradient(135deg, var(--empire-primary) 0%, #0055a5 100%);
    border: none;
    border-radius: 10px;
    padding: 20px 24px;
    margin-bottom: 24px;
    position: relative;
    color: var(--empire-white);
}

.esp-pricing-container .esp-current-label {
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--empire-accent);
    color: var(--empire-white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 14px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(191, 10, 48, 0.3);
}

.esp-pricing-container .esp-current-row .esp-product-name {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--empire-white);
}

.esp-pricing-container .esp-current-row .esp-product-price {
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--empire-white);
    background: rgba(255,255,255,0.2);
    padding: 6px 16px;
    border-radius: 8px;
}

/* Category Groups - Card Style */
.esp-pricing-container .esp-pricing-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.esp-pricing-container .esp-pricing-category {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    background: var(--empire-white);
    transition: all 0.3s ease;
}

.esp-pricing-container .esp-pricing-category:hover {
    border-color: var(--empire-accent);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.esp-pricing-container .esp-category-title {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    margin: 0;
    padding: 12px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--empire-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--empire-accent);
}

.esp-pricing-container .esp-pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.88rem;
    transition: background 0.2s ease;
}

.esp-pricing-container .esp-pricing-row:last-child {
    border-bottom: none;
}

.esp-pricing-container .esp-pricing-row:hover {
    background: rgba(0, 40, 104, 0.03);
}

.esp-pricing-container .esp-pricing-row span:first-child {
    color: #374151;
}

.esp-pricing-container .esp-pricing-row span:last-child {
    font-weight: 700;
    color: var(--empire-accent);
    background: rgba(191, 10, 48, 0.08);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.esp-pricing-container .esp-pricing-row.esp-current {
    background: rgba(191, 10, 48, 0.08);
}

/* Pricing Footer */
.esp-pricing-container .esp-pricing-footer {
    margin: 0;
    padding: 24px 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-top: 1px solid #e5e7eb;
}

.esp-pricing-container .esp-pricing-footer p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0 0 16px;
}

@media (max-width: 992px) {
    .esp-pricing-container .esp-pricing-categories {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .esp-pricing-container {
        margin: 0;
        border-radius: 12px;
    }

    .esp-pricing-container .esp-pricing-tabs {
        flex-wrap: wrap;
    }

    .esp-pricing-container .esp-pricing-tab {
        flex: 1 1 50%;
        padding: 14px 12px;
        font-size: 0.85rem;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .esp-pricing-container .esp-pricing-tab:nth-child(odd) {
        border-right: 1px solid rgba(255,255,255,0.1);
    }

    .esp-pricing-container .esp-pricing-tab-content {
        padding: 20px;
    }

    .esp-pricing-container .esp-current-product {
        padding: 16px 18px;
    }

    .esp-pricing-container .esp-current-row .esp-product-price {
        font-size: 1.4rem;
    }
}

/* ==========================================================================
   STANDALONE REVIEWS SECTION - CAROUSEL
   ========================================================================== */
.esp-reviews-section {
    padding: 60px 0;
    background: var(--empire-white);
    overflow: hidden;
}

.esp-reviews-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.esp-reviews-section .section-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--empire-primary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Reviews Carousel Container */
.esp-reviews-carousel {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 50px;
}

/* Carousel Track */
.esp-reviews-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0 20px;
}

.esp-reviews-track::-webkit-scrollbar {
    display: none;
}

/* Individual Review Card in Carousel */
.esp-reviews-track .esp-review-card {
    flex: 0 0 350px;
    background: var(--empire-white);
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.esp-reviews-track .esp-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-color: var(--empire-accent);
}

/* Review Card Stars */
.esp-reviews-track .esp-review-stars {
    color: #fbbf24;
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

/* Review Card Text */
.esp-reviews-track .esp-review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #374151;
    margin: 0 0 20px;
    font-style: italic;
}

/* Review Card Author */
.esp-reviews-track .esp-review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.esp-reviews-track .esp-review-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--empire-primary) 0%, #0066cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--empire-white);
    font-weight: 700;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.esp-reviews-track .esp-review-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.esp-reviews-track .esp-review-info .name {
    font-weight: 700;
    color: var(--empire-primary);
    font-size: 0.95rem;
}

.esp-reviews-track .esp-review-info .team {
    font-size: 0.82rem;
    color: #6b7280;
}

/* Carousel Navigation Arrows */
.esp-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--empire-white);
    border: 2px solid var(--empire-gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.esp-carousel-arrow:hover {
    background: var(--empire-primary);
    border-color: var(--empire-primary);
    color: var(--empire-white);
}

.esp-carousel-arrow svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.esp-carousel-arrow.prev {
    left: 0;
}

.esp-carousel-arrow.next {
    right: 0;
}

/* Carousel Dots */
.esp-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.esp-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--empire-gray-light);
    border: 2px solid #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.esp-carousel-dot.active,
.esp-carousel-dot:hover {
    background: var(--empire-accent);
    border-color: var(--empire-accent);
}

.esp-reviews-cta {
    text-align: center;
    margin-top: 30px;
}

/* Legacy Grid for fallback */
.esp-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .esp-reviews-track .esp-review-card {
        flex: 0 0 300px;
    }

    .esp-reviews-carousel {
        padding: 0 40px;
    }

    .esp-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .esp-reviews-section {
        padding: 50px 0;
    }

    .esp-reviews-carousel {
        padding: 0 20px;
    }

    .esp-reviews-track .esp-review-card {
        flex: 0 0 280px;
    }

    .esp-carousel-arrow {
        width: 36px;
        height: 36px;
    }

    .esp-carousel-arrow.prev {
        left: -5px;
    }

    .esp-carousel-arrow.next {
        right: -5px;
    }

    .esp-reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Compact Pricing Table */
.esp-pricing-table.compact {
    width: 100%;
    border-collapse: collapse;
    background: var(--empire-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    font-size: 0.9rem;
}

.esp-pricing-table.compact thead {
    background: var(--empire-primary);
}

.esp-pricing-table.compact thead th {
    padding: 12px 10px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--empire-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.esp-pricing-table.compact thead th:first-child {
    text-align: left;
    padding-left: 16px;
}

.esp-pricing-table.compact tbody tr {
    border-bottom: 1px solid var(--empire-gray-light);
}

.esp-pricing-table.compact tbody tr:last-child {
    border-bottom: none;
}

.esp-pricing-table.compact tbody tr:hover {
    background: rgba(0, 40, 104, 0.03);
}

.esp-pricing-table.compact tbody td {
    padding: 12px 10px;
    text-align: center;
    font-weight: 600;
    color: var(--empire-text);
}

.esp-pricing-table.compact tbody td:first-child {
    text-align: left;
    padding-left: 16px;
    font-weight: 700;
    color: var(--empire-primary);
}

.esp-pricing-table.compact tbody td:first-child span {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--empire-text-light);
    margin-top: 2px;
}

/* Bundles Table - Second Column Styling */
.esp-pricing-table.compact.bundles tbody td:nth-child(2) {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--empire-text-light);
    text-align: left;
    max-width: 180px;
}

/* Pricing Footer */
.esp-pricing-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
}

.esp-pricing-footer p {
    font-size: 0.85rem;
    color: var(--empire-text-light);
    margin: 0 0 16px;
}

.esp-pricing-footer strong {
    color: var(--empire-primary);
}

/* Responsive Compact Table */
@media (max-width: 768px) {
    .esp-pricing-tabs {
        flex-wrap: wrap;
    }

    .esp-pricing-tab {
        flex: 1 1 45%;
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .esp-pricing-table.compact {
        font-size: 0.8rem;
    }

    .esp-pricing-table.compact thead th,
    .esp-pricing-table.compact tbody td {
        padding: 10px 6px;
    }

    .esp-pricing-table.compact thead th {
        font-size: 0.7rem;
    }

    .esp-pricing-table.compact.bundles tbody td:nth-child(2) {
        font-size: 0.7rem;
        max-width: 100px;
    }
}

/* ==========================================================================
   SIZE CHART SECTION - Split Layout
   ========================================================================== */
.esp-size-chart-section {
    padding: 80px 0;
    background: var(--empire-white);
}

.esp-size-chart-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.esp-size-chart-section .section-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--empire-primary);
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.esp-size-chart-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--empire-accent), var(--empire-primary));
    border-radius: 2px;
}

/* Split Layout Container */
.esp-size-chart-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

/* Left Side - Content */
.esp-size-info {
    padding: 20px 0;
}

.esp-size-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--empire-primary);
    margin: 0 0 20px;
}

.esp-size-info p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--empire-text);
    margin-bottom: 24px;
}

.esp-size-tips {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.esp-size-tips li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--empire-gray-light);
    font-size: 0.95rem;
    color: var(--empire-text);
}

.esp-size-tips li:last-child {
    border-bottom: none;
}

.esp-size-tips li svg {
    width: 20px;
    height: 20px;
    color: var(--empire-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.esp-size-tips li strong {
    color: var(--empire-primary);
}

.esp-size-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    color: var(--empire-primary);
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid var(--empire-primary);
    border-radius: var(--radius-sm);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.esp-size-cta:hover {
    background: var(--empire-primary);
    color: var(--empire-white);
}

.esp-size-cta svg {
    width: 18px;
    height: 18px;
}

/* Right Side - Tabs and Table */
.esp-size-chart-container {
    background: var(--empire-gray-light);
    border-radius: var(--radius-lg);
    padding: 30px;
}

/* Tabs */
.esp-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 0;
}

.esp-tab-btn {
    padding: 12px 24px;
    background: transparent;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--empire-text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.esp-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    transition: background 0.3s ease;
}

.esp-tab-btn:hover {
    color: var(--empire-primary);
}

.esp-tab-btn.active {
    color: var(--empire-accent);
}

.esp-tab-btn.active::after {
    background: var(--empire-accent);
}

/* Tab Panels */
.esp-tab-panel {
    display: none;
}

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

/* Size Table */
.esp-size-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--empire-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.esp-size-table thead {
    background: var(--empire-primary);
}

.esp-size-table th {
    padding: 14px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--empire-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.esp-size-table tbody tr {
    border-bottom: 1px solid var(--empire-gray-light);
    transition: background 0.2s ease;
}

.esp-size-table tbody tr:last-child {
    border-bottom: none;
}

.esp-size-table tbody tr:hover {
    background: var(--empire-accent-light);
}

.esp-size-table td {
    padding: 12px 16px;
    font-size: 0.9rem;
    color: var(--empire-text);
    text-align: center;
}

.esp-size-table td:first-child {
    font-weight: 700;
    color: var(--empire-primary);
}

.esp-size-note {
    margin-top: 20px;
    padding: 16px;
    background: var(--empire-accent-light);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--empire-accent);
}

.esp-size-note p {
    font-size: 0.9rem;
    color: var(--empire-text);
    margin: 0;
    line-height: 1.6;
}

.esp-size-note strong {
    color: var(--empire-primary);
}

/* ==========================================================================
   MATERIALS & FABRIC SECTION
   ========================================================================== */
.esp-materials-section {
    padding: 80px 0;
    background: var(--empire-gray-light);
}

.esp-materials-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.esp-materials-section .section-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--empire-primary);
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.esp-materials-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--empire-accent), var(--empire-primary));
    border-radius: 2px;
}

.esp-materials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.esp-material-card {
    background: var(--empire-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.esp-material-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.esp-material-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--empire-primary);
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.esp-material-card h3 svg {
    width: 24px;
    height: 24px;
    color: var(--empire-accent);
}

/* Composition Card */
.esp-composition-bar {
    height: 12px;
    background: var(--empire-gray-light);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 16px;
}

.esp-composition-segment {
    height: 100%;
    background: var(--empire-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.esp-composition-segment span {
    font-size: 0;
}

.esp-composition-detail {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--empire-gray-light);
}

.esp-composition-detail:last-child {
    border-bottom: none;
}

.esp-composition-detail .label {
    font-size: 0.95rem;
    color: var(--empire-text);
}

.esp-composition-detail .value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--empire-primary);
}

/* Properties Card */
.esp-properties-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.esp-properties-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--empire-gray-light);
    font-size: 0.95rem;
    color: var(--empire-text);
}

.esp-properties-list li:last-child {
    border-bottom: none;
}

.esp-properties-list li svg {
    width: 18px;
    height: 18px;
    color: var(--empire-accent);
    flex-shrink: 0;
}

/* Care Card */
.esp-care-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.esp-care-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px;
    background: var(--empire-gray-light);
    border-radius: var(--radius-md);
}

.esp-care-item svg {
    width: 28px;
    height: 28px;
    color: var(--empire-primary);
    margin-bottom: 8px;
}

.esp-care-item span {
    font-size: 0.8rem;
    color: var(--empire-text-light);
}

.esp-material-cta {
    text-align: center;
    margin-top: 40px;
}

.esp-material-cta p {
    font-size: 1rem;
    color: var(--empire-text);
    margin-bottom: 16px;
}

/* ==========================================================================
   CUSTOMIZATION & DECORATION SECTION (Combined)
   ========================================================================== */
.esp-customization-section {
    padding: 80px 0;
    background: var(--empire-white);
}

.esp-customization-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.esp-customization-section .section-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--empire-primary);
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.esp-customization-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--empire-accent), var(--empire-primary));
    border-radius: 2px;
}

.esp-customization-section .section-subtitle {
    font-size: 1.1rem;
    color: var(--empire-text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Decoration Methods - 3 Column */
.esp-decoration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.esp-decoration-card {
    background: var(--empire-gray-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
}

.esp-decoration-card:hover {
    border-color: var(--empire-accent);
    box-shadow: var(--shadow-lg);
}

.esp-decoration-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--empire-accent);
    color: var(--empire-white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.esp-decoration-badge.premium {
    background: var(--empire-primary);
}

.esp-decoration-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, var(--empire-primary) 0%, var(--empire-secondary) 100%);
}

.esp-decoration-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.esp-decoration-card:hover .esp-decoration-image img {
    transform: scale(1.05);
}

.esp-decoration-content {
    padding: 24px;
}

.esp-decoration-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--empire-primary);
    margin: 0 0 12px;
}

.esp-decoration-content > p {
    font-size: 0.95rem;
    color: var(--empire-text-light);
    line-height: 1.6;
    margin: 0 0 16px;
}

.esp-decoration-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.esp-decoration-benefits li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.85rem;
    color: var(--empire-text);
}

.esp-decoration-benefits li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--empire-accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.esp-best-for {
    display: block;
    font-size: 0.8rem;
    color: var(--empire-accent);
    font-weight: 600;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Customization Options - 4 Column */
.esp-options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.esp-option-card {
    padding: 28px 20px;
    background: var(--empire-gray-light);
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    text-align: center;
}

.esp-option-card:hover {
    border-color: var(--empire-accent);
    background: var(--empire-white);
    box-shadow: var(--shadow-md);
}

.esp-option-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--empire-accent);
    border-radius: var(--radius-md);
    color: var(--empire-white);
    transition: all 0.3s ease;
}

.esp-option-card:hover .esp-option-icon {
    transform: scale(1.1);
}

.esp-option-icon svg {
    width: 26px;
    height: 26px;
}

.esp-option-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--empire-primary);
    margin: 0 0 8px;
}

.esp-option-card p {
    font-size: 0.85rem;
    color: var(--empire-text-light);
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   ORDER SAMPLES SECTION
   ========================================================================== */
.esp-samples-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--empire-primary) 0%, var(--empire-secondary) 100%);
    position: relative;
}

.esp-samples-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>') repeat;
    background-size: 100px 100px;
}

.esp-samples-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.esp-samples-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--empire-white);
    margin: 0 0 20px;
}

.esp-samples-content > p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0 0 30px;
}

.esp-samples-includes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.esp-samples-includes li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.esp-samples-includes li svg {
    width: 20px;
    height: 20px;
    color: var(--empire-accent);
    background: var(--empire-white);
    border-radius: 50%;
    padding: 3px;
    flex-shrink: 0;
}

.esp-samples-cta-box {
    background: var(--empire-white);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.esp-samples-price {
    margin-bottom: 24px;
}

.esp-samples-price .label {
    display: block;
    font-size: 0.9rem;
    color: var(--empire-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.esp-samples-price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--empire-accent);
    line-height: 1;
}

.esp-samples-price .note {
    display: block;
    font-size: 0.85rem;
    color: var(--empire-text-light);
    margin-top: 8px;
}

.esp-samples-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 32px;
    background: var(--empire-accent);
    color: var(--empire-white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    margin-bottom: 16px;
}

.esp-samples-btn:hover {
    background: var(--empire-accent-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.esp-samples-btn svg {
    width: 20px;
    height: 20px;
}

.esp-samples-shipping {
    font-size: 0.85rem;
    color: var(--empire-text-light);
    margin: 0;
}

/* ==========================================================================
   CUSTOMER REVIEWS SECTION
   ========================================================================== */
.esp-reviews-section {
    padding: 80px 0;
    background: var(--empire-gray-light);
}

.esp-reviews-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.esp-reviews-section .section-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--empire-primary);
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.esp-reviews-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--empire-accent), var(--empire-primary));
    border-radius: 2px;
}

.esp-reviews-section .section-subtitle {
    font-size: 1.1rem;
    color: var(--empire-text-light);
}

/* Review Cards - from CPT */
.esp-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.esp-review-card {
    background: var(--empire-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.esp-review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.esp-review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.esp-review-stars svg {
    width: 18px;
    height: 18px;
    fill: #fbbf24;
    color: #fbbf24;
}

.esp-review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--empire-text);
    margin-bottom: 20px;
    font-style: italic;
}

.esp-review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--empire-gray-light);
}

.esp-review-avatar {
    width: 48px;
    height: 48px;
    background: var(--empire-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--empire-white);
    font-weight: 700;
    font-size: 1.1rem;
}

.esp-review-info .name {
    display: block;
    font-weight: 700;
    color: var(--empire-primary);
    font-size: 0.95rem;
}

.esp-review-info .team {
    display: block;
    font-size: 0.85rem;
    color: var(--empire-text-light);
}

.esp-reviews-cta {
    text-align: center;
    margin-top: 40px;
}

/* ==========================================================================
   EMPIRE REVIEWS LIST - Main Shortcode [empire_reviews]
   ========================================================================== */
.empire-reviews-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.empire-reviews-list .review-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 16px;
    padding: 28px 28px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.empire-reviews-list .review-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: rgba(0, 76, 151, 0.06);
    line-height: 1;
    pointer-events: none;
}

.empire-reviews-list .review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 76, 151, 0.12);
}

/* Review Header with Avatar */
.empire-reviews-list .review-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.empire-reviews-list .review-avatar {
    flex-shrink: 0;
}

.empire-reviews-list .review-avatar img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.empire-reviews-list .review-avatar .avatar-placeholder {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #004C97 0%, #0066cc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
    text-transform: uppercase;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 76, 151, 0.25);
}

.empire-reviews-list .review-meta {
    flex: 1;
    min-width: 0;
}

.empire-reviews-list .review-meta .reviewer-name {
    display: block;
    font-weight: 700;
    font-size: 1.05rem;
    color: #1a1a2e;
    margin-bottom: 2px;
    line-height: 1.3;
}

.empire-reviews-list .review-meta .reviewer-role {
    display: block;
    font-size: 0.85rem;
    color: #004C97;
    font-weight: 500;
    margin-bottom: 2px;
}

.empire-reviews-list .review-meta .team-info {
    display: block;
    font-size: 0.82rem;
    color: #6b7280;
    line-height: 1.4;
}

/* Verified Badge */
.empire-reviews-list .verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(5, 150, 105, 0.3);
}

.empire-reviews-list .verified-badge svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

/* Star Rating */
.empire-reviews-list .review-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.empire-reviews-list .review-rating svg {
    width: 18px;
    height: 18px;
}

.empire-reviews-list .review-rating svg.star.filled {
    fill: #f59e0b;
    color: #f59e0b;
    filter: drop-shadow(0 1px 2px rgba(245, 158, 11, 0.3));
}

.empire-reviews-list .review-rating svg.star.empty {
    fill: none;
    stroke: #d1d5db;
    stroke-width: 1.5;
}

/* Review Text */
.empire-reviews-list .review-text {
    position: relative;
    z-index: 1;
}

.empire-reviews-list .review-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #374151;
    margin: 0;
    font-style: italic;
}

/* ==========================================================================
   COMPACT REVIEWS - Sidebar Shortcode [empire_reviews_compact]
   ========================================================================== */
.esp-reviews-compact {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.esp-reviews-compact .esp-review-item {
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
}

.esp-reviews-compact .esp-review-item:first-child {
    padding-top: 0;
}

.esp-reviews-compact .esp-review-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.esp-reviews-compact .esp-review-item::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 0;
    font-size: 3rem;
    font-family: Georgia, serif;
    color: rgba(0, 76, 151, 0.08);
    line-height: 1;
    pointer-events: none;
}

.esp-reviews-compact .esp-review-item:first-child::before {
    top: 0;
}

/* Compact Stars */
.esp-reviews-compact .esp-review-stars {
    color: #f59e0b;
    font-size: 0.95rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 0 1px 2px rgba(245, 158, 11, 0.2);
}

/* Compact Review Text */
.esp-reviews-compact .esp-review-text {
    font-size: 0.9rem;
    line-height: 1.65;
    color: #374151;
    margin: 0 0 12px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* Compact Author */
.esp-reviews-compact .esp-review-author {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.esp-reviews-compact .esp-review-author strong {
    font-size: 0.9rem;
    color: #004C97;
    font-weight: 700;
}

.esp-reviews-compact .esp-review-author span {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 400;
}

/* Reviews Link */
.esp-reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #004C97;
    text-decoration: none;
    transition: all 0.25s ease;
    padding: 10px 18px;
    background: linear-gradient(135deg, rgba(0, 76, 151, 0.08) 0%, rgba(0, 76, 151, 0.04) 100%);
    border-radius: 8px;
    border: 1px solid rgba(0, 76, 151, 0.1);
}

.esp-reviews-link:hover {
    color: #fff;
    background: linear-gradient(135deg, #004C97 0%, #0066cc 100%);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 76, 151, 0.25);
}

/* ==========================================================================
   REVIEWS SIDE (Split Layout) - Enhanced
   ========================================================================== */
.esp-reviews-side {
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.esp-reviews-side .esp-side-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid #004C97;
    position: relative;
}

.esp-reviews-side .esp-side-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

/* Reviews Summary Stats */
.esp-reviews-summary {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(0, 76, 151, 0.04) 0%, rgba(245, 158, 11, 0.04) 100%);
    border-radius: 12px;
    margin-top: 20px;
    border: 1px solid rgba(0, 76, 151, 0.08);
}

.esp-reviews-summary .rating-big {
    font-size: 2.5rem;
    font-weight: 800;
    color: #004C97;
    line-height: 1;
}

.esp-reviews-summary .rating-details {
    flex: 1;
}

.esp-reviews-summary .rating-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 4px;
}

.esp-reviews-summary .rating-stars svg {
    width: 16px;
    height: 16px;
    fill: #f59e0b;
}

.esp-reviews-summary .rating-count {
    font-size: 0.82rem;
    color: #6b7280;
}

/* Responsive */
@media (max-width: 768px) {
    .empire-reviews-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .empire-reviews-list .review-card {
        padding: 22px;
    }

    .empire-reviews-list .review-card::before {
        font-size: 3.5rem;
        top: 12px;
        right: 16px;
    }

    .empire-reviews-list .review-avatar img,
    .empire-reviews-list .review-avatar .avatar-placeholder {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .esp-reviews-side {
        padding: 22px;
    }

    .esp-reviews-compact .esp-review-item::before {
        font-size: 2.5rem;
    }
}

/* ==========================================================================
   TRUST & SUPPORT SECTION
   ========================================================================== */
.esp-trust-section {
    padding: 80px 0;
    background: var(--empire-white);
}

.esp-trust-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.esp-trust-section .section-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--empire-primary);
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.esp-trust-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--empire-accent), var(--empire-primary));
    border-radius: 2px;
}

.esp-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.esp-trust-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--empire-gray-light);
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
}

.esp-trust-card:hover {
    background: var(--empire-white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.esp-trust-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--empire-accent-light);
    border-radius: var(--radius-full);
    color: var(--empire-accent);
    transition: all 0.4s ease;
}

.esp-trust-card:hover .esp-trust-icon {
    background: var(--empire-accent);
    color: var(--empire-white);
}

.esp-trust-icon svg {
    width: 36px;
    height: 36px;
}

.esp-trust-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--empire-primary);
    margin: 0 0 12px;
}

.esp-trust-card > p {
    font-size: 0.95rem;
    color: var(--empire-text-light);
    line-height: 1.6;
    margin: 0 0 16px;
}

.esp-trust-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    text-align: left;
}

.esp-trust-card ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--empire-text);
}

.esp-trust-card ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--empire-accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.esp-trust-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--empire-accent);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.esp-trust-link:hover {
    gap: 10px;
}

.esp-support-contact {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--empire-gray-light);
}

.esp-support-contact > p {
    font-size: 1rem;
    color: var(--empire-text);
    margin-bottom: 20px;
}

.esp-contact-options {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.esp-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.3s ease;
}

.esp-contact-btn.whatsapp {
    background: #25D366;
    color: var(--empire-white);
}

.esp-contact-btn.whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.esp-contact-btn.email {
    background: var(--empire-primary);
    color: var(--empire-white);
}

.esp-contact-btn.email:hover {
    background: var(--empire-accent);
    transform: translateY(-2px);
}

.esp-contact-btn svg {
    width: 18px;
    height: 18px;
}

/* ==========================================================================
   FREE SHIPPING BADGE (Floating)
   ========================================================================== */
.esp-shipping-badge {
    position: fixed;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--empire-accent);
    color: var(--empire-white);
    padding: 16px 20px;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: right 0.4s ease;
}

.esp-shipping-badge.visible {
    right: 0;
}

.esp-badge-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.esp-badge-content svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.esp-badge-text {
    display: flex;
    flex-direction: column;
}

.esp-badge-title {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.esp-badge-subtitle {
    font-size: 0.7rem;
    opacity: 0.9;
}

/* ==========================================================================
   SHARED BUTTONS
   ========================================================================== */
.esp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.esp-btn-primary {
    background: var(--empire-accent);
    color: var(--empire-white);
    border: 2px solid var(--empire-accent);
}

.esp-btn-primary:hover {
    background: var(--empire-accent-hover);
    border-color: var(--empire-accent-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.esp-btn-outline {
    background: transparent;
    color: var(--empire-primary);
    border: 2px solid var(--empire-primary);
}

.esp-btn-outline:hover {
    background: var(--empire-primary);
    color: var(--empire-white);
    transform: translateY(-3px);
}

.esp-btn-large {
    padding: 18px 36px;
    font-size: 1rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1200px) {
    .esp-pricing-grid,
    .esp-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .esp-decoration-grid,
    .esp-materials-grid,
    .esp-reviews-grid,
    .esp-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .esp-size-chart-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .esp-samples-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .esp-pricing-section,
    .esp-size-chart-section,
    .esp-materials-section,
    .esp-customization-section,
    .esp-samples-section,
    .esp-reviews-section,
    .esp-trust-section {
        padding: 60px 0;
    }

    .esp-pricing-grid,
    .esp-decoration-grid,
    .esp-materials-grid,
    .esp-options-grid,
    .esp-reviews-grid,
    .esp-trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .esp-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }

    .esp-tab-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .esp-shipping-badge {
        display: none;
    }

    .esp-contact-options {
        flex-direction: column;
        align-items: center;
    }

    .esp-contact-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .esp-size-table th,
    .esp-size-table td {
        padding: 10px 8px;
        font-size: 0.8rem;
    }

    .esp-pricing-amount .price {
        font-size: 2rem;
    }

    .esp-samples-cta-box {
        padding: 30px 20px;
    }

    .esp-samples-price .amount {
        font-size: 2.5rem;
    }
}
