/**
 * Growth Sheriff - Font & CSS Fixes
 * Acumin Pro + Montserrat proper usage
 * Person cards, Price tabs, SVG fixes
 * 
 * @package GrowthSheriff
 * @since 1.0.1
 */

/* ================================================
   FONT DECLARATIONS - Acumin Pro (Adobe Fonts)
   ================================================ */

/* Acumin Pro - Self-hosted fallback using system fonts */
/* Note: For proper Acumin Pro, use Adobe Fonts subscription */
@font-face {
    font-family: 'Acumin Pro';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: local('Acumin Pro Light'), local('AcuminPro-Light');
}

@font-face {
    font-family: 'Acumin Pro';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Acumin Pro Regular'), local('AcuminPro-Regular');
}

@font-face {
    font-family: 'Acumin Pro';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local('Acumin Pro Medium'), local('AcuminPro-Medium');
}

@font-face {
    font-family: 'Acumin Pro';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: local('Acumin Pro Semibold'), local('AcuminPro-Semibold');
}

@font-face {
    font-family: 'Acumin Pro';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Acumin Pro Bold'), local('AcuminPro-Bold');
}

/* ================================================
   CSS VARIABLES UPDATE
   ================================================ */
:root {
    /* Primary Font: Montserrat for body/content */
    --gs-font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Secondary Font: Acumin Pro for headings/titles (with Montserrat fallback) */
    --gs-font-secondary: 'Acumin Pro', 'Montserrat', -apple-system, sans-serif;
    
    /* Display Font: For large headings */
    --gs-font-display: 'Acumin Pro', 'Montserrat', sans-serif;
}

/* ================================================
   TYPOGRAPHY RULES - Proper Font Assignment
   ================================================ */

/* Body text - Montserrat */
body,
p,
.elementor-widget-text-editor,
.elementor-widget-container p,
.gs-article__content,
.gs-content {
    font-family: var(--gs-font-primary) !important;
    font-weight: 400;
    line-height: 1.7;
}

/* Headings - Acumin Pro with Montserrat fallback */
h1, h2, h3, h4, h5, h6,
.elementor-heading-title,
.elementor-widget-heading .elementor-heading-title,
.gs-article__title,
.section-title,
.widget-title {
    font-family: var(--gs-font-secondary) !important;
    font-weight: 700;
    line-height: 1.2;
}

/* Navigation - Montserrat */
.gs-nav,
.gs-nav a,
.elementor-nav-menu,
.elementor-nav-menu a,
.menu-item a,
nav a {
    font-family: var(--gs-font-primary) !important;
    font-weight: 500;
}

/* Buttons - Montserrat */
.elementor-button,
.gs-btn,
button,
input[type="submit"],
.wp-block-button__link {
    font-family: var(--gs-font-primary) !important;
    font-weight: 600;
}

/* ================================================
   PERSON CARDS - Full CSS Fix
   ================================================ */
.gs-person-cards {
    display: grid;
    gap: 30px;
    width: 100%;
}

.gs-person-cards--cols-2 { grid-template-columns: repeat(2, 1fr); }
.gs-person-cards--cols-3 { grid-template-columns: repeat(3, 1fr); }
.gs-person-cards--cols-4 { grid-template-columns: repeat(4, 1fr); }

.person-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.person-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(98, 84, 231, 0.15);
}

.person-card__image {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect ratio */
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.person-card__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.person-card:hover .person-card__image img {
    transform: scale(1.05);
}

/* Image shapes */
.person-card--rounded .person-card__image {
    border-radius: 15px;
    margin: 15px;
    width: calc(100% - 30px);
    padding-top: calc(100% - 30px);
}

.person-card--circle .person-card__image {
    border-radius: 50%;
    margin: 20px auto;
    width: 150px;
    height: 150px;
    padding-top: 0;
}

.person-card--circle .person-card__image img {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Overlay style */
.person-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.person-card:hover .person-card__overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Content */
.person-card__content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gs-person-cards--align-center .person-card__content { text-align: center; }
.gs-person-cards--align-left .person-card__content { text-align: left; }
.gs-person-cards--align-right .person-card__content { text-align: right; }

.person-card__name {
    font-family: var(--gs-font-secondary) !important;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.person-card__position {
    font-family: var(--gs-font-primary) !important;
    font-size: 14px;
    font-weight: 500;
    color: #6254E7;
    display: block;
    margin-bottom: 10px;
}

.person-card__desc {
    font-family: var(--gs-font-primary) !important;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

/* Social Links */
.person-card__social {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.gs-person-cards--align-center .person-card__social { justify-content: center; }

.person-card__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #666;
    font-size: 14px;
    transition: all 0.3s ease;
}

.person-card__social a:hover {
    background: #6254E7;
    color: #ffffff;
    transform: translateY(-3px);
}

.person-card__overlay .person-card__social a {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.person-card__overlay .person-card__social a:hover {
    background: #fff;
    color: #6254E7;
}

/* Boxed style */
.gs-person-cards--boxed .person-card {
    border: 1px solid #eee;
    box-shadow: none;
}

.gs-person-cards--boxed .person-card:hover {
    border-color: #6254E7;
}

/* Minimal style */
.gs-person-cards--minimal .person-card {
    background: transparent;
    box-shadow: none;
}

.gs-person-cards--minimal .person-card:hover {
    background: #f8f9fa;
}

/* ================================================
   PRICE TABS - Paketler Page CSS Fix
   ================================================ */
.price-table {
    font-family: var(--gs-font-primary) !important;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Tab buttons container */
.price-tabs {
    display: flex !important;
    flex-wrap: wrap;
    gap: 2px !important;
    background: #1a1a2e;
    padding: 8px;
    border-radius: 15px 15px 0 0;
    justify-content: center;
}

/* Individual tab button */
.price-tab {
    font-family: var(--gs-font-primary) !important;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.price-tab:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.price-tab[aria-selected="true"],
.price-tab.active {
    background: linear-gradient(135deg, #6254E7 0%, #9D00FF 100%);
    color: #ffffff;
}

.price-tab img,
.price-tab svg {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* Tab panels container */
.price-tabpanels {
    background: #ffffff;
    border-radius: 0 0 15px 15px;
    overflow: hidden;
}

/* Individual tab panel */
.price-tabpanel {
    display: none;
    padding: 40px;
    animation: fadeIn 0.3s ease;
}

.price-tabpanel--active,
.price-tabpanel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Package grid */
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Package card */
.package-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(98, 84, 231, 0.15);
    border-color: #6254E7;
}

.package-card--featured {
    background: linear-gradient(135deg, #6254E7 0%, #9D00FF 100%);
    border: none;
    color: #ffffff;
}

.package-card--featured .package-card__title,
.package-card--featured .package-card__price,
.package-card--featured .package-card__price-suffix,
.package-card--featured .package-card__features li {
    color: #ffffff;
}

.package-card__badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #F2295B;
    color: #fff;
    padding: 5px 40px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
}

.package-card__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.package-card__icon img,
.package-card__icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.package-card__title {
    font-family: var(--gs-font-secondary) !important;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 10px 0;
}

.package-card__subtitle {
    font-family: var(--gs-font-primary) !important;
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.package-card__price {
    font-family: var(--gs-font-secondary) !important;
    font-size: 42px;
    font-weight: 800;
    color: #6254E7;
    margin-bottom: 5px;
    line-height: 1;
}

.package-card__price-suffix {
    font-family: var(--gs-font-primary) !important;
    font-size: 14px;
    color: #888;
    margin-bottom: 25px;
    display: block;
}

.package-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.package-card__features li {
    font-family: var(--gs-font-primary) !important;
    font-size: 14px;
    color: #444;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-card__features li:last-child {
    border-bottom: none;
}

.package-card__features li svg,
.package-card__features li .check-icon {
    width: 18px;
    height: 18px;
    color: #10b981;
    flex-shrink: 0;
}

.package-card--featured .package-card__features li svg,
.package-card--featured .package-card__features li .check-icon {
    color: #ffffff;
}

.package-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #6254E7 0%, #9D00FF 100%);
    color: #ffffff;
    font-family: var(--gs-font-primary) !important;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-card__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(98, 84, 231, 0.4);
}

.package-card--featured .package-card__cta {
    background: #ffffff;
    color: #6254E7;
}

.package-card--featured .package-card__cta:hover {
    background: #f0f0f0;
}

/* ================================================
   SVG FIXES
   ================================================ */
svg {
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
}

/* Fix broken/empty SVGs */
svg:empty,
svg:not([viewBox]) {
    display: none;
}

/* Ensure SVG icons in buttons/links display correctly */
.elementor-button svg,
.gs-btn svg,
button svg,
a svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

/* Fix SVG in icon boxes */
.elementor-icon svg {
    width: inherit;
    height: inherit;
}

/* Price tab SVG icons */
.price-tab svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}

/* Package card SVG icons */
.package-card svg {
    fill: currentColor;
}

/* Checkmark SVG in features */
.check-icon svg {
    width: 100%;
    height: 100%;
}

/* ================================================
   ELEMENTOR SPECIFIC OVERRIDES
   ================================================ */

/* Force font family on Elementor widgets */
.elementor-widget-container,
.elementor *:not(i):not(.fa):not(.fas):not(.far):not(.fab):not(.fal):not([class^="eicon"]) {
    font-family: var(--gs-font-primary);
}

/* Elementor headings - use Acumin Pro */
.elementor-widget-heading .elementor-heading-title {
    font-family: var(--gs-font-secondary) !important;
}

/* Preserve icon fonts */
i.fa, i.fas, i.far, i.fab, i.fal,
.fa, .fas, .far, .fab, .fal,
[class^="fa-"], [class*=" fa-"],
.eicon, [class^="eicon-"], [class*=" eicon-"],
.elementor-icon i {
    font-family: inherit !important;
}

/* ================================================
   RESPONSIVE FIXES
   ================================================ */
@media (max-width: 1024px) {
    .gs-person-cards--cols-4 { 
        grid-template-columns: repeat(2, 1fr); 
    }
    
    .price-tabs {
        gap: 4px;
        padding: 6px;
    }
    
    .price-tab {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .price-tabpanel {
        padding: 30px;
    }
    
    .package-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .gs-person-cards--cols-3,
    .gs-person-cards--cols-4 { 
        grid-template-columns: 1fr; 
    }
    
    .price-tabs {
        flex-direction: column;
        gap: 2px;
    }
    
    .price-tab {
        width: 100%;
        justify-content: center;
    }
    
    .price-tabpanel {
        padding: 20px;
    }
    
    .package-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .package-card {
        padding: 25px;
    }
    
    .package-card__price {
        font-size: 32px;
    }
    
    .person-card--circle .person-card__image {
        width: 120px;
        height: 120px;
    }
}

/* ================================================
   PRINT STYLES
   ================================================ */
@media print {
    .price-tabs {
        display: none;
    }
    
    .price-tabpanel {
        display: block !important;
        page-break-inside: avoid;
    }
    
    .person-card {
        page-break-inside: avoid;
    }
}

/* ================================================
   PAKETLER PAGE - WHITE SPACE & LAYOUT FIX
   ================================================ */

/* Remove extra white space in price cards */
.price-card {
    background: linear-gradient(145deg, #1a1a2e 0%, #16162a 100%) !important;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.price-card__header {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.price-card__header__title {
    color: #ffffff !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-card__header__title img {
    width: 35px !important;
    height: 35px !important;
    object-fit: contain;
}

.price-card__body {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
}

.price-card__left,
.price-card__middle,
.price-card__right {
    padding: 25px 30px;
}

.price-card__left {
    background: rgba(98, 84, 231, 0.1);
    border-right: 1px solid rgba(255,255,255,0.1);
}

.price-card__middle {
    border-right: 1px solid rgba(255,255,255,0.1);
}

.price-card__subtitle {
    color: rgba(255,255,255,0.6) !important;
    font-size: 12px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px !important;
}

.price-card__name {
    color: #ffffff !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
}

.price-card__desc {
    color: rgba(255,255,255,0.7) !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin-bottom: 15px !important;
}

.price-card__category {
    color: rgba(255,255,255,0.5) !important;
    font-size: 11px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px !important;
    display: block;
}

.price-card__list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.price-card__list li {
    color: rgba(255,255,255,0.85) !important;
    font-size: 13px !important;
    padding: 8px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
}

.price-card__list li:last-child {
    border-bottom: none !important;
}

.price-card__list li img {
    width: 20px !important;
    height: 20px !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
}

/* Fix multiple icons in same line */
.price-card__list li img + img {
    margin-left: -4px;
}

.price-card__price-area {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.price-card__price {
    font-size: 48px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    line-height: 1 !important;
}

.price-card__price-suffix {
    color: rgba(255,255,255,0.6) !important;
    font-size: 14px !important;
}

.price-card__badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin: 15px 0;
}

.price-card__cta {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.price-card__cta a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.price-card__cta a:hover {
    background: #6254E7;
    transform: translateY(-3px);
}

/* Tab panel background fix */
.price-tabpanel {
    background: #0d0d1a !important;
    padding: 30px !important;
}

/* Responsive fixes */
@media (max-width: 1024px) {
    .price-card__body {
        grid-template-columns: 1fr 1fr;
    }
    
    .price-card__right {
        grid-column: span 2;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
}

@media (max-width: 767px) {
    .price-card__body {
        grid-template-columns: 1fr;
    }
    
    .price-card__left,
    .price-card__middle,
    .price-card__right {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .price-card__right {
        grid-column: span 1;
        border-bottom: none;
    }
}


/* ================================================
   PAKETLER PAGE - ADDITIONAL FIXES (Jan 2026)
   ================================================ */

/* Fix price-card layout - remove white space */
.price-card {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: stretch !important;
    gap: 0 !important;
}

.price-card__left {
    flex: 1 1 250px !important;
    min-width: 250px !important;
}

.price-card__left-copy {
    flex: 1 1 300px !important;
    min-width: 300px !important;
    padding: 25px 30px !important;
    border-left: 1px solid rgba(255,255,255,0.1) !important;
    border-right: 1px solid rgba(255,255,255,0.1) !important;
}

.price-card__right {
    flex: 0 0 220px !important;
    width: 220px !important;
    max-width: 220px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    padding: 25px 20px !important;
    background: rgba(98, 84, 231, 0.15) !important;
    border-radius: 0 20px 20px 0 !important;
}

/* Remove any white background on right panel */
.price-card__right,
.price-card__right * {
    background-color: transparent !important;
}

.price-card__right .price-card__price {
    background: transparent !important;
}

/* Price text styling */
.price-card__price__text,
.price-card__price__text#price {
    font-size: 42px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    background: transparent !important;
    display: block !important;
}

.price-card__price__info {
    font-size: 13px !important;
    color: rgba(255,255,255,0.7) !important;
    margin-top: 5px !important;
}

/* Shield badge */
.price-card__footer.shield {
    margin: 15px 0 !important;
}

.shield--icon {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: #ffffff !important;
    padding: 10px 18px !important;
    border-radius: 50px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
}

.shield--icon::before {
    content: "🛡️" !important;
    font-size: 14px !important;
}

/* Contact icons */
.price-card__contact {
    display: flex !important;
    gap: 12px !important;
    margin-top: 15px !important;
}

.price-card__contact a {
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255,255,255,0.1) !important;
    border-radius: 50% !important;
    color: #ffffff !important;
    font-size: 18px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.price-card__contact a:hover {
    background: #6254E7 !important;
    transform: translateY(-3px) !important;
}

/* ================================================
   TAB ICONS - SVG AND FONT AWESOME FIX
   ================================================ */

/* Price tab icon containers */
.price-tab span.fab,
.price-tab span.fa {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 20px !important;
    height: 20px !important;
    font-size: 14px !important;
}

/* Shopify icon - use brand icon */
.price-tab span.fab.fa-shopify::before {
    font-family: "Font Awesome 5 Brands" !important;
    content: "\f57a" !important;
}

/* Google Ads - SVG is inline, style it */
.price-tab svg {
    width: 16px !important;
    height: 16px !important;
    fill: currentColor !important;
    vertical-align: middle !important;
}

/* Fix fa-box-open - use alternative icon */
.price-tab .fa-box-open::before {
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    content: "\f466" !important; /* box-open */
}

/* If box-open still doesnt work, fallback to cube */
.price-tab .fa.fa-box-open::before {
    content: "\f1b2" !important; /* cube - FA4 compatible */
    font-family: "FontAwesome" !important;
}

/* Search icon */
.price-tab .fa-search::before {
    font-family: "FontAwesome" !important;
    content: "\f002" !important;
}

/* Envelope icon */
.price-tab .fa-envelope::before {
    font-family: "FontAwesome" !important;
    content: "\f0e0" !important;
}

/* Star icon */
.price-tab .fa-star::before {
    font-family: "FontAwesome" !important;
    content: "\f005" !important;
}

/* Comments icon */
.price-tab .fa-comments::before {
    font-family: "FontAwesome" !important;
    content: "\f086" !important;
}

/* Bullhorn icon */
.price-tab .fa-bullhorn::before {
    font-family: "FontAwesome" !important;
    content: "\f0a1" !important;
}

/* WhatsApp icon */
.fab.fa-whatsapp::before {
    font-family: "Font Awesome 5 Brands" !important;
    content: "\f232" !important;
}

/* Phone icon */
.fa.fa-phone::before {
    font-family: "FontAwesome" !important;
    content: "\f095" !important;
}

/* Ensure icons show */
.price-tab span[class*="fa-"]::before,
.price-tab span.fab::before,
.price-tab span.fa::before {
    display: inline-block !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
}

/* ================================================
   RESPONSIVE - Price card layout
   ================================================ */
@media (max-width: 1200px) {
    .price-card__right {
        flex: 0 0 180px !important;
        width: 180px !important;
        max-width: 180px !important;
    }
    
    .price-card__price__text,
    .price-card__price__text#price {
        font-size: 36px !important;
    }
}

@media (max-width: 991px) {
    .price-card {
        flex-direction: column !important;
    }
    
    .price-card__left,
    .price-card__left-copy,
    .price-card__right {
        flex: 1 1 auto !important;
        width: 100% !important;
        max-width: 100% !important;
        border-left: none !important;
        border-right: none !important;
        border-radius: 0 !important;
    }
    
    .price-card__left-copy {
        border-top: 1px solid rgba(255,255,255,0.1) !important;
        border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    }
    
    .price-card__right {
        border-radius: 0 0 20px 20px !important;
        padding: 30px !important;
    }
}

/* Hide extra nested tabpanels that may cause issues */
.price-card__price .price-tabpanels {
    display: inline !important;
    background: transparent !important;
    padding: 0 !important;
}

.price-card__price .price-tabpanel {
    display: none !important;
    padding: 0 !important;
    background: transparent !important;
}

.price-card__price .price-tabpanel--active,
.price-card__price .price-tabpanel.active {
    display: inline !important;
}

/* ================================================
   PAKETLER - BEYAZ ALAN FIX (AGGRESSIVE)
   ================================================ */

/* Force dark background on ALL price-related elements */
.price-table,
.price-table *,
.price-tabs,
.price-tabpanels,
.price-tabpanel,
.price-tabpanel--active,
.price-card,
.price-card *,
.price-card__left,
.price-card__left-copy,
.price-card__right,
.price-card__right *,
.price-card__price,
.price-card__price *,
.price-card__footer,
.price-card__footer * {
    background-color: transparent !important;
    background: transparent !important;
}

/* Main tabpanel background - dark */
.price-tabpanels {
    background: #0d0d1a !important;
    border-radius: 0 0 15px 15px !important;
}

.price-tabpanel,
.price-tabpanel--active {
    background: #0d0d1a !important;
}

/* Price card main background */
.price-card {
    background: linear-gradient(145deg, #1a1a2e 0%, #16162a 100%) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
}

/* Right section with subtle purple tint */
.price-card__right {
    background: rgba(98, 84, 231, 0.12) !important;
}

/* Nested tabpanels inside price cards - completely transparent */
.price-card .price-tabpanels,
.price-card__price .price-tabpanels,
.price-card__price__text .price-tabpanels {
    background: none !important;
    background-color: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.price-card .price-tabpanel,
.price-card__price .price-tabpanel {
    background: none !important;
    background-color: transparent !important;
    padding: 0 !important;
    display: none !important;
}

.price-card .price-tabpanel--active,
.price-card__price .price-tabpanel--active {
    display: inline !important;
    background: none !important;
}

/* Remove any white/light backgrounds from elementor widgets inside */
.price-tabpanel .elementor-widget-container,
.price-card .elementor-widget-container {
    background: transparent !important;
}

/* Shield badge - keep green gradient */
.shield--icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
}

EOF
echo "CSS appended successfully"

/* ================================================
   PAKETLER - BEYAZ ALAN FIX (AGGRESSIVE)
   ================================================ */

/* Force dark background on ALL price-related elements */
.price-table *,
.price-tabpanels *,
.price-card *,
.price-card__right *,
.price-card__price * {
    background-color: transparent !important;
}

/* Main tabpanel background - dark */
.price-tabpanels {
    background: #0d0d1a !important;
    border-radius: 0 0 15px 15px !important;
}

.price-tabpanel,
.price-tabpanel--active {
    background: #0d0d1a !important;
}

/* Price card main background */
.price-card {
    background: linear-gradient(145deg, #1a1a2e 0%, #16162a 100%) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
}

/* Right section with subtle purple tint */
.price-card__right {
    background: rgba(98, 84, 231, 0.12) !important;
}

/* Nested tabpanels inside price cards - completely transparent */
.price-card .price-tabpanels,
.price-card__price .price-tabpanels,
.price-card__price__text .price-tabpanels {
    background: none !important;
    background-color: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.price-card .price-tabpanel,
.price-card__price .price-tabpanel {
    background: none !important;
    background-color: transparent !important;
    padding: 0 !important;
    display: none !important;
}

.price-card .price-tabpanel--active,
.price-card__price .price-tabpanel--active {
    display: inline !important;
    background: none !important;
}

/* Remove any white/light backgrounds from elementor widgets inside */
.price-tabpanel .elementor-widget-container,
.price-card .elementor-widget-container {
    background: transparent !important;
}

/* Shield badge - keep green gradient */
.shield--icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
}

/* Force no white anywhere in price area */
#shopify,
#google-ads,
#meta,
#seo,
#klaviyo,
#loyalpp,
#review-io,
#optimonk,
#pushowl,
#diger {
    background: #0d0d1a !important;
}

/* Any div inside price-card with potential white bg */
.price-card > div,
.price-card > div > div {
    background: transparent !important;
}

/* ================================================
   FIX: Remove white space between tabpanel and price-card
   ================================================ */

/* Remove padding from price-tabpanel - this was causing the white gap */
.price-tabpanel,
.price-tabpanel--active,
.price-tabpanel.active,
div.price-tabpanel {
    padding: 0 !important;
    margin: 0 !important;
    background: #0d0d1a !important;
}

/* If you want small padding, use this on price-card instead */
.price-tabpanel > .price-card:first-child {
    margin-top: 0 !important;
}

.price-tabpanel > .price-card {
    margin: 15px !important;
}

/* Ensure tabpanels container has no gap */
.price-tabpanels {
    padding: 0 !important;
    background: #0d0d1a !important;
}

/* ================================================
   FINAL FIX: Override Elementor price-card__right background
   ================================================ */

/* Override the rgba(255,255,255,0.04) from Elementor */
.price-card__right {
    background-color: rgba(98, 84, 231, 0.15) !important;
    background: rgba(98, 84, 231, 0.15) !important;
}

/* Ensure no white tint anywhere */
.elementor-125 .price-card__right,
.elementor-page-125 .price-card__right,
body.elementor-page-125 .price-card__right {
    background-color: rgba(98, 84, 231, 0.15) !important;
    background: rgba(98, 84, 231, 0.15) !important;
}
