/* =========================================
   E-COMMERCE PAGE UNIQUE STYLES
   ========================================= */

/* ==========================================
   HERO SECTION — Dark Two-Column Layout
   ========================================== */
.ecommerce-hero {
    position: relative;
    padding: 120px 0 80px;
    background-color: #0d0d0d;
    background-image:
        radial-gradient(circle at 30% 50%, rgba(176, 138, 87, 0.18) 0%, transparent 55%),
        linear-gradient(rgba(176, 138, 87, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(176, 138, 87, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 32px 32px, 32px 32px;
    background-repeat: no-repeat, repeat, repeat;
    overflow: hidden;
    border-bottom: 1px solid rgba(176, 138, 87, 0.12);
}

/* Hero Background Decorations Layer */
.ecommerce-hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.ecommerce-hero-decorations .decor-shape-top-left {
    position: absolute;
    top: 8%;
    left: 4%;
    opacity: 0.07;
    animation: ecFloat 8s ease-in-out infinite;
}

.ecommerce-hero-decorations .decor-shape-top-right {
    position: absolute;
    top: 8%;
    right: 4%;
    opacity: 0.07;
    animation: ecFloat 8s ease-in-out infinite reverse;
}

@keyframes ecFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.02); }
}

/* Two-column hero grid */
.ec-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ---- Left content ---- */
.ec-hero-content {
    align-self: start;
    padding-top: 10px;
}

/* Badge in dark hero */
.ec-badge {
    background: linear-gradient(90deg, rgba(255,255,255,0.04), rgba(176,138,87,0.14), rgba(255,255,255,0.04)) !important;
    background-size: 200% 100% !important;
    border: 1px solid rgba(176, 138, 87, 0.3) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(176, 138, 87, 0.1);
    margin-bottom: 22px;
    animation: ecGradientFlow 3s linear infinite;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ec-badge:hover {
    border-color: rgba(176, 138, 87, 0.7) !important;
    background: rgba(176, 138, 87, 0.2) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(176, 138, 87, 0.25) !important;
    cursor: pointer;
}

.ec-badge .dot {
    background-color: #B08A57 !important;
    animation: ecDotPulse 1.8s infinite alternate;
    box-shadow: 0 0 6px rgba(176, 138, 87, 0.6);
}

@keyframes ecGradientFlow {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes ecDotPulse {
    0%   { transform: scale(0.85); box-shadow: 0 0 4px rgba(176,138,87,0.5); }
    100% { transform: scale(1.2);  box-shadow: 0 0 10px rgba(176,138,87,0.9); }
}

.ec-hero-content h1 {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 0;
    color: #ffffff;
    letter-spacing: -1.5px;
    font-family: 'Nunito', sans-serif;
}

.ec-text-gradient {
    background: linear-gradient(135deg, #9C7A4A 0%, #5C4423 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ec-hero-divider {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 14px 0 18px;
}

.ec-hero-divider::before {
    content: '';
    display: block;
    width: 55px;
    height: 2px;
    background: linear-gradient(90deg, #B08A57, #EED4A6);
}

.ec-hero-divider::after {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #B08A57;
    box-shadow: 0 0 6px rgba(176, 138, 87, 0.6);
}

.ec-hero-content > p {
    font-size: 17px;
    color: #a0a0a0;
    line-height: 1.65;
    margin-bottom: 26px;
    max-width: 480px;
}

/* Action Buttons */
.ec-hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.btn-ec-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #EED4A6, #B08A57) !important;
    color: #111111 !important;
    font-weight: 700;
    font-size: 13.5px;
    padding: 11px 22px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(176, 138, 87, 0.3);
}

.btn-ec-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(176, 138, 87, 0.45);
    color: #111 !important;
}

.btn-ec-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(176, 138, 87, 0.3) !important;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 13.5px;
    padding: 11px 22px;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
}

.btn-ec-whatsapp:hover {
    background: rgba(176, 138, 87, 0.12) !important;
    border-color: #B08A57 !important;
    transform: translateY(-2px);
    color: #fff !important;
}

/* Stats row */
.ec-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(176, 138, 87, 0.15);
    border-radius: 12px;
    overflow: hidden;
    max-width: 480px;
}

.ec-stat-item {
    text-align: center;
    padding: 12px 8px;
    border-right: 1px solid rgba(176, 138, 87, 0.12);
}

.ec-stat-item:last-child {
    border-right: none;
}

.ec-stat-num {
    display: block;
    font-size: 17px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    white-space: nowrap;
    font-family: 'Geist', sans-serif;
}

.ec-stat-label {
    display: block;
    font-size: 9px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    margin-top: 2px;
}

/* ---- Right: Dark Form Card ---- */
.ec-hero-form-card {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(176, 138, 87, 0.2);
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
    animation: ecFloat 7s ease-in-out infinite;
}

/* Gold shimmer top border */
.ec-hero-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #B08A57, #EED4A6, #B08A57, transparent);
    opacity: 0.6;
}

.ec-hero-form-card h3 {
    font-size: 21px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
    letter-spacing: -0.4px;
}

.ec-form-subtitle {
    font-size: 13.5px;
    color: #666;
    margin-bottom: 22px;
}

/* Form fields */
.ec-form-group {
    margin-bottom: 16px;
}

.ec-form-group label {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: #aaa;
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ec-form-group input,
.ec-form-group select,
.ec-form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid rgba(176, 138, 87, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    font-family: inherit;
    font-size: 14px;
    color: #e8e8e8;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.ec-form-group input::placeholder,
.ec-form-group textarea::placeholder {
    color: #555;
}

.ec-form-group select option {
    background: #1a1a1a;
    color: #e8e8e8;
}

.ec-form-group input:focus,
.ec-form-group select:focus,
.ec-form-group textarea:focus {
    outline: none;
    border-color: rgba(176, 138, 87, 0.5);
    background: rgba(176, 138, 87, 0.05);
    box-shadow: 0 0 0 3px rgba(176, 138, 87, 0.08);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.ec-form-trust {
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    gap: 10px;
}

.ec-form-trust span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.ec-form-trust .fa-check {
    color: #B08A57;
    font-size: 10px;
}

/* Entrance Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpEffect 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in-down {
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDownEffect 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

@keyframes fadeInUpEffect {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDownEffect {
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   RESPONSIVE — Tablet / Mobile
   ========================================== */
@media (max-width: 900px) {
    .ec-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ecommerce-hero {
        padding: 100px 0 60px;
    }

    .ec-hero-content h1 {
        font-size: 38px;
    }

    .ec-hero-stats {
        max-width: 100%;
    }

    .ec-hero-form-card {
        padding: 28px 24px;
    }
}

@media (max-width: 480px) {
    .ec-hero-content h1 {
        font-size: 30px;
        letter-spacing: -1px;
    }

    .ec-hero-actions {
        flex-direction: column;
    }

    .ec-hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .ec-stat-item:nth-child(2) {
        border-right: none;
    }
}

/* Entrance Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpEffect 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in-down {
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDownEffect 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 {
    animation-delay: 0.15s;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.45s;
}

@keyframes fadeInUpEffect {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDownEffect {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Light Beige Sections */
.ecommerce-section-light {
    padding: 100px 0;
    background-color: var(--bg-light);
    color: var(--text-main);
    position: relative;
    overflow: hidden;
}

.section-header-editorial {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ec-badge-pill-editorial {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(176, 138, 87, 0.35) !important;
    color: #B08A57 !important;
    font-family: 'Satoshi', sans-serif;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    padding: 7px 16px !important;
    border-radius: 50px !important;
    margin-bottom: 20px !important;
    background: rgba(176, 138, 87, 0.04) !important;
    box-shadow: none !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ec-badge-pill-editorial:hover {
    border-color: rgba(176, 138, 87, 0.75) !important;
    background: rgba(176, 138, 87, 0.12) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(176, 138, 87, 0.15) !important;
}

.ec-badge-dot {
    width: 6px !important;
    height: 6px !important;
    background-color: #B08A57 !important;
    border-radius: 50% !important;
    display: inline-block !important;
}

.section-header-editorial h2 {
    font-family: 'Satoshi', sans-serif;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.15;
    margin-top: 0;
    margin-bottom: 16px;
    color: #111111;
    letter-spacing: -1px;
}

.section-header-editorial h2 .editorial-accent {
    color: #B08A57;
    font-family: inherit;
}

.section-header-editorial p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Editorial Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid rgba(176, 138, 87, 0.12);
    box-shadow: 0 16px 40px rgba(176, 138, 87, 0.05);
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

/* Mobile Swipe Indicator for Comparison Table removed */

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 850px;
}

.comparison-table th, 
.comparison-table td {
    padding: 18px 24px;
    border-bottom: 1px solid rgba(176, 138, 87, 0.06);
    border-right: 1px solid rgba(176, 138, 87, 0.04);
    font-size: 14.5px;
    vertical-align: top;
    transition: background-color 0.2s ease;
}

.comparison-table th:last-child, 
.comparison-table td:last-child {
    border-right: none;
}

.comparison-table th {
    background-color: rgba(176, 138, 87, 0.025);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    color: #1A1A1A;
    font-size: 15px;
    letter-spacing: -0.2px;
    border-bottom: 2px solid rgba(176, 138, 87, 0.1);
    padding: 20px 22px;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    color: #1A1A1A;
    width: 25%;
    background-color: rgba(176, 138, 87, 0.015);
    padding-left: 24px;
    border-right: 1px solid rgba(176, 138, 87, 0.06);
}

.comparison-table tbody tr:hover td {
    background-color: rgba(176, 138, 87, 0.015);
}

.comparison-table tbody tr:hover td:first-child {
    background-color: rgba(176, 138, 87, 0.03);
}

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

.comparison-table .comp-title {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 6px;
    line-height: 1.3;
}

@media (max-width: 650px) {
    .comparison-table th, 
    .comparison-table td {
        padding: 12px 14px;
        font-size: 13px;
    }
    .comparison-table th:first-child,
    .comparison-table td:first-child {
        padding-left: 16px;
    }
    .comparison-table .comp-title {
        font-size: 13px;
    }
    .comparison-table .comp-desc {
        font-size: 11.5px;
    }
}

.comparison-table .comp-stars {
    color: #C5A880;
    font-size: 13px;
    letter-spacing: 1.5px;
    margin-left: 8px;
    font-weight: 700;
    white-space: nowrap;
    display: inline-block;
    vertical-align: middle;
}

.comparison-table .star-muted {
    color: rgba(176, 138, 87, 0.25);
    font-weight: 400;
}

.comparison-table .comp-desc {
    display: block;
    font-size: 13px;
    color: #6E6E73;
    line-height: 1.5;
    font-weight: 400;
}

/* Highlighted Recommendation Row styling */
.comparison-table tr.comp-recommendation-row td {
    background-color: rgba(176, 138, 87, 0.08) !important; /* Increased opacity from 0.04 */
    border-top: 1.5px solid rgba(176, 138, 87, 0.12) !important;
    border-bottom: none !important;
}

.comparison-table tr.comp-recommendation-row td:first-child {
    background: #1A1510 !important; /* Deep dark gold-tinted black for recommendation highlight */
    color: #C5A880 !important; /* Gold text */
    border-left: 3px solid #C5A880 !important;
}

/* Background Decorative Elements for Platform Comparison Section */
.ec-comparison-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 0 0, rgba(176, 138, 87, 0.16) 1.2px, transparent 1.2px), /* Increased dot opacity from 0.09 */
        linear-gradient(rgba(176, 138, 87, 0.04) 1px, transparent 1px), /* Increased grid opacity from 0.02 */
        linear-gradient(90deg, rgba(176, 138, 87, 0.04) 1px, transparent 1px); /* Increased grid opacity from 0.02 */
    background-size: 40px 40px, 40px 40px;
    background-repeat: repeat, repeat;
    pointer-events: none;
    z-index: 1;
    opacity: 0.95; /* Highly visible grid opacity */
}

.ec-comparison-decor-1 {
    position: absolute;
    top: -10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(176, 138, 87, 0.08) 0%, rgba(250, 248, 255, 0) 70%);
    filter: blur(50px);
    z-index: 1;
    pointer-events: none;
}

.ec-comparison-decor-2 {
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(176, 138, 87, 0.06) 0%, rgba(250, 248, 255, 0) 70%);
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
}

.ec-comparison-decor-grid {
    position: absolute;
    top: 12%;
    right: 4%;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(rgba(176, 138, 87, 0.15) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    opacity: 0.7;
    z-index: 1;
    pointer-events: none;
}

/* Concentric rings decor like home hero */
.ec-comparison-decor-circle-left {
    position: absolute;
    top: 5%;
    left: -200px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    border: 1px solid rgba(176, 138, 87, 0.12);
    pointer-events: none;
    z-index: 1;
}

.ec-comparison-decor-circle-left::before,
.ec-comparison-decor-circle-left::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(176, 138, 87, 0.08);
}

.ec-comparison-decor-circle-left::before {
    top: 40px;
    left: 40px;
    right: 40px;
    bottom: 40px;
}

.ec-comparison-decor-circle-left::after {
    top: 80px;
    left: 80px;
    right: 80px;
    bottom: 80px;
}

.ec-comparison-decor-circle-right {
    position: absolute;
    bottom: 5%;
    right: -250px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(176, 138, 87, 0.1);
    pointer-events: none;
    z-index: 1;
}

.ec-comparison-decor-circle-right::before {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(176, 138, 87, 0.07);
    top: 50px;
    left: 50px;
    right: 50px;
    bottom: 50px;
}

/* Pricing Grid & Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
    padding-top: 20px;
}

.pricing-card {
    background: var(--bg-surface);
    border-radius: 24px;
    border: 1px solid var(--border);
    padding: 50px 36px 40px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(176, 138, 87, 0.08);
    border-color: rgba(176, 138, 87, 0.3);
}

.pricing-card.highlighted {
    transform: translateY(-20px);
    border: 2px solid var(--accent);
    box-shadow: 0 24px 48px rgba(176, 138, 87, 0.12);
}

.pricing-card.highlighted:hover {
    transform: translateY(-25px);
}

.popular-badge, .premium-badge {
    position: absolute;
    top: 20px;
    right: 24px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popular-badge {
    background: var(--accent);
    color: #ffffff;
}

.premium-badge {
    background: #111111;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--text-main);
}

.card-best-for {
    font-size: 13.5px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 24px;
    display: block;
}

.pricing-tag {
    margin-bottom: 30px;
}

.price-sub {
    font-size: 13px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-main);
}

.card-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    flex-grow: 1;
}

.card-features-list li {
    font-size: 14.5px;
    color: var(--text-muted);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-features-list li i {
    color: var(--accent);
    font-size: 12px;
}

/* Projects grid (Editorial Cards - Warm Light Vibe) */
.ecommerce-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    row-gap: 30px;
    position: relative;
    z-index: 2;
}

.ecommerce-project-card {
    background: var(--bg-surface);
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.015);
}

.ecommerce-project-card:hover {
    transform: translateY(-6px);
    border-color: rgba(176, 138, 87, 0.38);
    box-shadow: 0 16px 32px rgba(176, 138, 87, 0.1);
}

/* Frameless project image container */
.ecommerce-project-img-wrapper {
    position: relative;
    padding: 0;
    overflow: hidden;
    background-color: var(--bg-light);
}

.ecommerce-project-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: top;
    border-radius: 0;
    border: none;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ecommerce-project-card:hover .ecommerce-project-img {
    transform: scale(1.025);
}

/* Project Badge */
.ecommerce-project-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #111111;
    color: #ffffff;
    padding: 4px 10px;
    font-size: 9.5px;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.ecommerce-project-info {
    padding: 18px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.ecommerce-project-info h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-main);
}

.ecommerce-project-info p {
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.45;
    margin-bottom: 12px;
    flex-grow: 1;
}

.ecommerce-project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.ecommerce-tech-tag {
    background: rgba(176, 138, 87, 0.08);
    color: #B08A57;
    font-size: 10.5px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ecommerce-project-link {
    margin-top: 12px;
    font-size: 12px;
    font-weight: 700;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    border-bottom: 1.5px solid rgba(17, 17, 17, 0.12);
    padding-bottom: 2px;
    align-self: flex-start;
}

.ecommerce-project-link:hover {
    color: #B08A57;
    border-color: #B08A57;
    gap: 9px;
}

.ecommerce-project-link i {
    font-size: 10.5px;
    transition: transform 0.3s ease;
}

/* FAQ Accordion Section */
.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-surface);
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-bottom: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(176, 138, 87, 0.3);
}

.faq-question {
    width: 100%;
    padding: 16px 22px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
    font-family: inherit;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    font-size: 14px;
    color: var(--text-muted);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding: 0 22px 16px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.55;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .ecommerce-hero h1 {
        font-size: 44px;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .pricing-card.highlighted {
        transform: none;
    }
    .pricing-card.highlighted:hover {
        transform: translateY(-5px);
    }
    .ecommerce-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ecommerce-hero {
        padding: 120px 0 60px;
    }
    .ecommerce-hero h1 {
        font-size: 36px;
    }
    .ecommerce-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .section-header-editorial h2 {
        font-size: 25px !important;
    }
    .ecommerce-section-dark {
        padding: 40px 0;
    }
    .ecommerce-section-dark .section-header-editorial {
        margin-bottom: 25px;
        padding: 0 16px;
    }
    .ecommerce-section-dark .section-header-editorial h2 {
        font-size: 25px !important;
        line-height: 1.25;
        margin-bottom: 10px;
    }
    .ecommerce-section-dark .section-header-editorial p {
        font-size: 13px !important;
        line-height: 1.45;
        max-width: 90%;
        margin: 0 auto;
    }
    .ecommerce-section-dark .comparison-table-wrapper {
        margin-bottom: 30px;
    }
    .ecommerce-projects-grid {
        grid-template-columns: 1fr;
    }
    .faq-question {
        padding: 20px;
        font-size: 15.5px;
    }
    .faq-answer-inner {
        padding: 0 20px 20px;
    }
}

/* =========================================
   LIGHTBOX MODAL & INTERACTIVE POPUPS
   ========================================= */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content-wrapper {
    background: var(--bg-surface);
    width: 90%;
    max-width: 950px;
    max-height: 90vh;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: scale(0.92);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.lightbox-modal.active .lightbox-content-wrapper {
    transform: scale(1);
}

.lightbox-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.lightbox-close-btn:hover {
    background: var(--primary);
    color: var(--text-light);
    border-color: var(--primary);
    transform: rotate(90deg);
}

.lightbox-scrollable {
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    max-height: 90vh;
}

@media (max-width: 768px) {
    .lightbox-scrollable {
        grid-template-columns: 1fr;
    }
}

.lightbox-img-pane {
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    position: relative;
}

.lightbox-img-pane img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 70vh;
}

.lightbox-details-pane {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .lightbox-details-pane {
        padding: 24px;
    }
}

.modal-category {
    font-size: 13px;
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: inline-block;
}

.modal-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 16px;
    line-height: 1.3;
}

.modal-description {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.modal-tech-header {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.modal-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
}

.modal-tech-tags span {
    background: var(--bg-light);
    color: var(--accent);
    font-size: 12.5px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(176, 138, 87, 0.15);
}

.modal-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #1F5E3F !important;
    border: 1px solid #1F5E3F !important;
    color: #ffffff !important;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(31, 94, 63, 0.2);
}

.modal-cta-btn:hover {
    background-color: #184A31 !important;
    border-color: #184A31 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(31, 94, 63, 0.3);
}

/* ==========================================================================
   E-COMMERCE SHOWCASE SECTION (Section 1.5)
   ========================================================================== */
.ec-showcase-section {
    background-color: #FAF8F5; /* Warm light beige matching theme */
    padding: 90px 0 50px;
    border-bottom: 1px solid rgba(176, 138, 87, 0.12);
    position: relative;
    overflow: hidden;
}

.ec-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.ec-showcase-left {
    padding-right: 15px;
}

/* Badge styling */
.ec-showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(176, 138, 87, 0.35) !important;
    color: #B08A57 !important;
    font-family: 'Satoshi', sans-serif;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    padding: 7px 16px !important;
    border-radius: 50px !important;
    margin-bottom: 22px !important;
    background: rgba(176, 138, 87, 0.04) !important;
    box-shadow: none !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ec-showcase-badge:hover {
    border-color: rgba(176, 138, 87, 0.75) !important;
    background: rgba(176, 138, 87, 0.12) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(176, 138, 87, 0.15) !important;
}

.ec-showcase-badge .badge-dot {
    width: 6px !important;
    height: 6px !important;
    background-color: #B08A57 !important;
    border-radius: 50% !important;
    display: inline-block !important;
}

/* Main title styling */
.ec-showcase-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    color: #111111;
    margin-bottom: 20px;
    font-family: 'Nunito', sans-serif;
    letter-spacing: -1.2px;
}

.ec-showcase-title .title-highlight {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 600;
    background: linear-gradient(135deg, #B08A57 0%, #8C6A3C 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ec-showcase-subtitle {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 500px;
}

/* Features Grid */
.ec-showcase-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.ec-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.ec-feature-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #FAF4EB;
    border: 1px solid rgba(176, 138, 87, 0.18);
    color: #B08A57;
    font-size: 16px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.ec-feature-item:hover .ec-feature-icon-wrapper {
    background-color: #B08A57;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(176, 138, 87, 0.25);
}

.ec-feature-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 4px;
    line-height: 1.2;
}

.ec-feature-text p {
    font-size: 12.5px;
    color: #777777;
    margin: 0;
    line-height: 1.35;
}

/* Actions CTAs */
.ec-showcase-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.btn-showcase-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #111111;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 13.5px;
    padding: 11px 24px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #111111;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.btn-showcase-view-all:hover {
    background-color: #B08A57;
    border-color: #B08A57;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(176, 138, 87, 0.3);
}

.btn-showcase-view-all i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.btn-showcase-view-all:hover i {
    transform: translateX(4px);
}

.btn-showcase-discuss {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #111111 !important;
    font-weight: 700;
    font-size: 13.5px;
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.btn-showcase-discuss::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: #B08A57;
    transform: scaleX(0.7);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.btn-showcase-discuss:hover {
    color: #B08A57 !important;
}

.btn-showcase-discuss:hover::after {
    transform: scaleX(1);
}

.btn-showcase-discuss i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.btn-showcase-discuss:hover i {
    transform: translateX(4px);
}

/* RIGHT CONTENT - CAROUSEL SLIDER */
.ec-showcase-right {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.ec-showcase-slider-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 480px; /* Center-aligned and compact */
    margin: 0 auto;
}

/* Viewport and sliding track */
.ec-slider-viewport {
    overflow: hidden;
    width: 100%;
    border-radius: 8px;
    cursor: grab;
}

.ec-slider-viewport:active {
    cursor: grabbing;
}

.ec-slider-track {
    display: flex;
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1); /* smooth, high-end manual slide */
    width: 100%;
}

.ec-showcase-slide {
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
}

.phone-mockups-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100%;
}

/* Premium Phone Frame wrapper styling */
.phone-mockup {
    width: 210px;
    height: 420px;
    border-radius: 34px;
    background-color: #000000;
    border: 8px solid #1a1a1a;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12), 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    user-select: none;
}

/* Apple Dynamic Island Notch */
.phone-mockup::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 55px;
    height: 14px;
    border-radius: 8px;
    background-color: #000000;
    z-index: 10;
}

/* Indicators dots styling */
.ec-slider-dots-wrapper {
    display: flex;
    gap: 8px;
    margin-top: 25px;
    justify-content: center;
    width: 100%;
}

.ec-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d8d3c9;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ec-slider-dot.active {
    background-color: #B08A57;
    transform: scale(1.3);
}

/* ==========================================
   FIXED SCREENSHOT INTERFACES
   ========================================== */
.scrollable-screenshot {
    overflow-y: hidden;
    overflow-x: hidden;
    height: 100%;
    width: 100%;
    background-color: #ffffff;
    position: relative;
}

.screenshot-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}


/* ==========================================
   BOTTOM BRANDS TRUST BAR
   ========================================== */
.ec-brands-bar {
    max-width: 1200px;
    margin: 60px auto 0;
    background-color: #ffffff;
    border: 1px solid rgba(176, 138, 87, 0.12);
    border-radius: 16px;
    padding: 24px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(176, 138, 87, 0.03);
}

.ec-brands-title {
    font-size: 13px;
    font-weight: 700;
    color: #888888;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.ec-brands-logos {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
    flex-wrap: wrap;
    flex-grow: 1;
    margin-left: 40px;
}

.ec-brand-logo {
    font-size: 17px;
    font-weight: 700;
    color: #666666;
    opacity: 0.65;
    transition: all 0.3s ease;
}

.ec-brand-logo.serif {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
}

.ec-brand-logo.bold {
    font-weight: 850;
    letter-spacing: -0.5px;
}

.ec-brand-logo:hover {
    opacity: 1;
    color: #B08A57;
    transform: scale(1.05);
}


/* ==========================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================== */
@media (max-width: 991px) {
    .ec-showcase-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .ec-showcase-left {
        padding-right: 0;
        text-align: center;
    }
    
    .ec-showcase-badge,
    .ec-showcase-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .ec-showcase-features {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }
    
    .ec-showcase-actions {
        justify-content: center;
    }
    
    .ec-showcase-right {
        margin-top: 15px;
    }
    
    .ec-brands-bar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 24px;
    }
    
    .ec-brands-logos {
        justify-content: center;
        margin-left: 0;
        gap: 30px;
    }
}

@media (max-width: 575px) {
    .ec-showcase-section {
        padding: 60px 0;
    }
    
    .ec-showcase-title {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .ec-showcase-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .ec-showcase-slider-container {
        padding-right: 0;
        max-width: 350px;
    }
    
    .phone-mockups-row {
        gap: 12px;
    }
    
    .phone-mockup {
        width: 145px;
        height: 290px;
        border-width: 5px;
        border-radius: 24px;
    }
    
    .phone-mockup::before {
        width: 40px;
        height: 10px;
        top: 5px;
    }
}


/* ==========================================================================
   DARK SECTION & COMPARISON TABLE OVERRIDES
   ========================================================================== */
.ecommerce-section-dark {
    padding: 100px 0;
    background-color: #0d0d0d;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(176, 138, 87, 0.12);
}

/* Section Header in Dark Comparison */
.ecommerce-section-dark .section-header-editorial h2 {
    color: #ffffff;
    font-family: 'Satoshi', sans-serif;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.15;
    margin-top: 0;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.ecommerce-section-dark .section-header-editorial p {
    color: #a0a0a0;
}

/* Background grid pattern adjustment for dark mode */
.ecommerce-section-dark .ec-comparison-grid-pattern {
    background-image:
        radial-gradient(circle at 0 0, rgba(176, 138, 87, 0.18) 1.2px, transparent 1.2px),
        linear-gradient(rgba(176, 138, 87, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(176, 138, 87, 0.03) 1px, transparent 1px);
    opacity: 0.8;
}

/* Table wrapper styling for dark mode */
.ecommerce-section-dark .comparison-table-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(176, 138, 87, 0.2);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Table styling for dark mode */
.ecommerce-section-dark .comparison-table th {
    background-color: rgba(176, 138, 87, 0.08);
    color: #ffffff;
    border-bottom: 2px solid rgba(176, 138, 87, 0.25);
    border-right: 1px solid rgba(176, 138, 87, 0.1);
}

.ecommerce-section-dark .comparison-table td {
    color: #d8d8d8;
    border-bottom: 1px solid rgba(176, 138, 87, 0.08);
    border-right: 1px solid rgba(176, 138, 87, 0.06);
}

.ecommerce-section-dark .comparison-table th:first-child,
.ecommerce-section-dark .comparison-table td:first-child {
    background-color: rgba(255, 255, 255, 0.01);
    color: #ffffff;
    border-right: 1px solid rgba(176, 138, 87, 0.12);
}

.ecommerce-section-dark .comparison-table tbody tr:hover td {
    background-color: rgba(176, 138, 87, 0.05);
}

.ecommerce-section-dark .comparison-table tbody tr:hover td:first-child {
    background-color: rgba(176, 138, 87, 0.08);
}

.ecommerce-section-dark .comparison-table .comp-title {
    color: #ffffff;
}

.ecommerce-section-dark .comparison-table .comp-desc {
    color: #a0a0a0;
}

/* Table Recommendation Row in dark mode */
.ecommerce-section-dark .comparison-table tr.comp-recommendation-row td {
    background-color: rgba(176, 138, 87, 0.12) !important;
    border-top: 1.5px solid rgba(176, 138, 87, 0.2) !important;
    border-bottom: none !important;
}

.ecommerce-section-dark .comparison-table tr.comp-recommendation-row td:first-child {
    background: #15110d !important;
    color: #EED4A6 !important;
    border-left: 3px solid #B08A57 !important;
}

/* Glow decorations for dark mode */
.ecommerce-section-dark .ec-comparison-decor-1 {
    background: radial-gradient(circle, rgba(176, 138, 87, 0.12) 0%, rgba(13, 13, 13, 0) 70%);
}

.ecommerce-section-dark .ec-comparison-decor-2 {
    background: radial-gradient(circle, rgba(176, 138, 87, 0.09) 0%, rgba(13, 13, 13, 0) 70%);
}

.ecommerce-section-dark .comparison-table .star-muted {
    color: rgba(255, 255, 255, 0.15);
}




/* ==========================================================================
   PREMIUM PRICING SECTION — LIGHT CREAM THEME (Matches Reference)
   ========================================================================== */

/* Section wrapper */
.ec-pricing-section {
    background-color: #FAF8F4;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(176, 138, 87, 0.06) 0%, transparent 55%),
        radial-gradient(circle at 20% 80%, rgba(176, 138, 87, 0.04) 0%, transparent 50%);
    padding: 20px 0 70px; /* Reduced top padding to 20px */
    position: relative;
    overflow: hidden;
}

/* Subtle dot grid background */
.ec-pricing-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(176, 138, 87, 0.12) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.5;
    pointer-events: none;
}

/* Section header override — centered for pricing */
.ec-pricing-section .section-header-editorial {
    text-align: center;
}

.ec-pricing-section .section-header-editorial h2 {
    font-family: 'Satoshi', sans-serif;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.15;
    color: #111111;
    margin-top: 10px;
    margin-bottom: 14px;
    letter-spacing: -1px;
}

.ec-pricing-section .section-header-editorial p {
    font-size: 16px; /* Match comparison's 16px */
    color: #6E6E73;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto;
}

/* Segment Switcher Tabs */
.pricing-tabs-container {
    display: flex;
    justify-content: center;
    margin-top: 32px;
    margin-bottom: 36px;
    position: relative;
    z-index: 5;
}

.pricing-tabs-nav {
    display: inline-flex;
    background: #FFFFFF;
    border: 1px solid rgba(176, 138, 87, 0.15);
    border-radius: 100px;
    padding: 5px;
    gap: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.pricing-tab-btn {
    background: transparent;
    border: none;
    outline: none;
    padding: 10px 24px;
    font-family: 'Nunito', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: #888888;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.pricing-tab-btn i {
    font-size: 13px;
    color: #AAAAAA;
    transition: color 0.3s ease;
}

.pricing-tab-btn:hover {
    color: #B08A57;
}

.pricing-tab-btn:hover i {
    color: #B08A57;
}

.pricing-tab-btn.active {
    background: #B08A57;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(176, 138, 87, 0.3);
}

.pricing-tab-btn.active i {
    color: #ffffff;
}

/* Pricing Grids */
.pricing-grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: start;
    position: relative;
    z-index: 3;
}

.pricing-grid.active {
    display: grid;
    animation: pricingGridFadeInUp 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes pricingGridFadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ==============================
   PRICING CARDS — Compact Light
   ============================== */
.pricing-card {
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid rgba(176, 138, 87, 0.12);
    padding: 22px 24px 20px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow: 0 20px 40px rgba(176, 138, 87, 0.15);
    border-color: rgba(176, 138, 87, 0.38);
}

/* Highlighted center card */
.pricing-card.highlighted {
    border: 1.5px solid #B08A57;
    box-shadow: 0 8px 28px rgba(176, 138, 87, 0.1);
}

@media (min-width: 992px) {
    .pricing-card.highlighted {
        transform: translateY(-4px);
    }
    .pricing-card.highlighted:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow: 0 24px 48px rgba(176, 138, 87, 0.22);
        border-color: rgba(176, 138, 87, 0.5);
    }
}

/* Card icon */
.pricing-card-icon {
    width: 38px;
    height: 38px;
    background: #FAF6F0;
    border: 1px solid rgba(176, 138, 87, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card-icon i {
    font-size: 15px;
    color: #B08A57;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card:hover .pricing-card-icon {
    background: #B08A57;
    border-color: #B08A57;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 10px rgba(176, 138, 87, 0.3);
}

.pricing-card:hover .pricing-card-icon i {
    color: #ffffff;
    transform: rotate(360deg);
}

/* Card title */
.pricing-card .card-title {
    font-family: 'Nunito', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 3px;
    line-height: 1.2;
}

/* Card subtitle */
.pricing-card .card-best-for {
    font-family: 'Nunito', sans-serif;
    font-size: 12.5px;
    color: #8E8E93;
    margin-bottom: 0;
    line-height: 1.4;
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
}

/* Divider between subtitle and price */
.pricing-card .pricing-divider {
    width: 100%;
    height: 1px;
    background: rgba(176, 138, 87, 0.08);
    margin: 10px 0;
}

/* Price tag block */
.pricing-card .pricing-tag {
    margin-bottom: 12px;
    width: 100%;
    text-align: center;
}

.pricing-card .price-sub {
    font-family: 'Nunito', sans-serif;
    font-size: 9.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #B08A57;
    margin-bottom: 2px;
    display: block;
}

.pricing-card .price-amount {
    font-family: 'Nunito', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #111111;
    line-height: 1;
}

/* Features list */
.pricing-card .card-features-list {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0 0 14px 0;
    flex-grow: 1;
    text-align: left;
    border-top: 1px solid rgba(176, 138, 87, 0.1);
    padding-top: 10px;
}

.pricing-card .card-features-list li {
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #3A3A3C;
    padding: 4px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}

.pricing-card .card-features-list li:last-child {
    border-bottom: none;
}

.pricing-card .card-features-list li i {
    color: #B08A57;
    font-size: 13px;
    flex-shrink: 0;
}

/* Popular / Most Popular badge */
.pricing-card .popular-badge,
.pricing-card .premium-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #B08A57;
    color: #ffffff;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 800;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(176, 138, 87, 0.25);
    white-space: nowrap;
    border: none;
}

/* CTA Buttons - Matched to Homepage black style */
.pricing-card .btn-ec-pricing-primary,
.pricing-card .btn-ec-pricing-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 9px 18px;
    border-radius: 12px; /* radius-md = 12px */
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

/* Outlined black button style */
.pricing-card .btn-ec-pricing-secondary {
    background: transparent !important;
    border: 1px solid #111111 !important;
    color: #111111 !important;
}

.pricing-card .btn-ec-pricing-secondary:hover {
    background: #FAF8F4 !important;
    border-color: #222222 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Solid black button style */
.pricing-card .btn-ec-pricing-primary {
    background: #111111 !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.pricing-card .btn-ec-pricing-primary:hover {
    background: #222222 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Help Banner */
.pricing-help-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFFFFF;
    border: 1px solid rgba(176, 138, 87, 0.12);
    border-radius: 14px;
    padding: 20px 28px;
    margin-top: 36px;
    gap: 24px;
    position: relative;
    z-index: 3;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-help-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(176, 138, 87, 0.12);
    border-color: rgba(176, 138, 87, 0.3);
}

.pricing-help-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pricing-help-icon {
    width: 44px;
    height: 44px;
    background: #FAF6F0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-help-icon i {
    font-size: 18px;
    color: #B08A57;
}

.pricing-help-text h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #111111;
    margin: 0 0 3px 0;
}

.pricing-help-text p {
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    color: #6E6E73;
    margin: 0;
    max-width: 340px;
    line-height: 1.5;
}

.pricing-help-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.btn-pricing-help {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #111111 !important;
    color: #ffffff !important;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    white-space: nowrap;
}

.btn-pricing-help:hover {
    background: #222222 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

.pricing-help-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #8E8E93;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-help-badge i {
    color: #B08A57;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 991px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    .pricing-card.highlighted {
        transform: none;
    }
    .pricing-card.highlighted:hover {
        transform: translateY(-4px);
    }
    .pricing-help-banner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 20px;
    }
    .pricing-help-left {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .pricing-help-cta {
        flex-direction: column;
        gap: 12px;
    }
    .btn-pricing-help {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 650px) {
    .ec-pricing-section {
        padding: 20px 0 45px;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .ec-pricing-section .section-header-editorial h2 {
        font-family: 'Satoshi', sans-serif;
        font-size: 25px !important;
        font-weight: 900;
        line-height: 1.25;
        letter-spacing: -0.5px;
        margin-bottom: 10px;
    }
    .ec-pricing-section .section-header-editorial p {
        font-size: 13px !important;
        line-height: 1.45;
        max-width: 90%;
        margin: 0 auto;
    }
    .pricing-tabs-container {
        width: 100%;
        padding: 4px 20px 16px;
        display: flex;
        justify-content: center;
        overflow-x: visible;
    }
    .pricing-tabs-nav {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        background: transparent;
        box-shadow: none;
        gap: 10px;
        border-radius: 0;
        padding: 0;
    }
    .pricing-tab-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 13.5px;
        white-space: nowrap;
        text-align: center;
        background: #FFFFFF;
        color: #1a1a1a;
        border: 1px solid rgba(176, 138, 87, 0.15);
        border-radius: 100px;
        box-shadow: 0 4px 12px rgba(176, 138, 87, 0.03);
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    .pricing-tab-btn i {
        font-size: 14px;
        color: #B08A57;
        transition: transform 0.25s ease;
    }
    .pricing-tab-btn.active {
        background: #111111;
        color: #ffffff;
        border-color: #111111;
        box-shadow: 0 8px 20px rgba(17, 17, 17, 0.15);
        transform: translateY(-2px);
    }
    .pricing-tab-btn.active i {
        color: #EED4A6;
    }
    .pricing-help-badge {
        justify-content: center;
    }
    .pricing-card {
        padding: 20px 18px;
    }
    .pricing-card .price-amount {
        font-size: 30px;
    }
}

/* Decorative Background Shapes */
.ec-pricing-shape {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.ec-pricing-shape.shape-ribbon-right {
    top: -50px;
    right: -50px;
    width: 350px;
    height: 350px;
    opacity: 0.07; /* Reduced opacity to prevent text legibility issues */
    transform: rotate(15deg);
}

.ec-pricing-shape.shape-arrow-left {
    bottom: -60px;
    left: -60px;
    width: 280px;
    height: 280px;
    opacity: 0.05; /* Reduced opacity to prevent text legibility issues */
    transform: rotate(-10deg);
}

@keyframes floatShape1 {
    0% { transform: translate(0, 0) rotate(15deg); }
    50% { transform: translate(10px, -15px) rotate(18deg); }
    100% { transform: translate(0, 0) rotate(15deg); }
}

@keyframes floatShape2 {
    0% { transform: translate(0, 0) rotate(-10deg); }
    50% { transform: translate(-10px, 12px) rotate(-8deg); }
    100% { transform: translate(0, 0) rotate(-10deg); }
}

.ec-pricing-shape.shape-ribbon-right svg {
    animation: floatShape1 8s ease-in-out infinite;
}

.ec-pricing-shape.shape-arrow-left svg {
    animation: floatShape2 7s ease-in-out infinite;
}

/* Projects Section wrapper & actions */
.ec-projects-section {
    background-color: #FAFBF9;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(176, 138, 87, 0.06) 0%, transparent 55%),
        radial-gradient(circle at 85% 75%, rgba(176, 138, 87, 0.05) 0%, transparent 50%);
    padding: 70px 0 35px; /* Reduced bottom padding from 80px to 35px */
    position: relative;
    overflow: hidden;
}

.ec-projects-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(176, 138, 87, 0.08) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.5;
    pointer-events: none;
}

/* Spacing Override between Projects and FAQ Section */
#faq {
    padding-top: 35px !important;
}

/* ==========================================
   ECOMMERCE PAGE — COMPACT FAQ OVERRIDES
   (Smaller than home page FAQ)
   ========================================== */
#faq .faq-container {
    gap: 8px;
}

#faq .faq-item {
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(176, 138, 87, 0.01);
}

#faq .faq-question {
    padding: 14px 22px;
    font-size: 14.5px;
    font-weight: 700;
}

#faq .faq-question span {
    padding-right: 14px;
}

#faq .faq-icon-wrapper {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

#faq .faq-answer-content {
    padding: 12px 22px 16px;
}

#faq .faq-answer p {
    font-size: 13.5px;
    line-height: 1.55;
}

#faq .faq-cta-container {
    margin-top: 36px;
}





