
/* main-custom-clean.css - optimized version (comments removed, duplicates merged, obvious selector fixes applied) */

:root {
    --primary-color: #6a0dad;
    --secondary-color: #8b008b;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8f8f8;
    --bg-card: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --header-grad-start: #8E2DE2;
    --header-grad-end: #4A00E0;
    --page-bg: #F0F2F5;
    --card-bg-platform: #FFFFFF;
    --text-primary-light: #262626;
    --text-secondary-light: #8e8e8e;
    --border-card: #DBDBDB;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 15px;
}

.instagram-page-wrapper .container, .tiktok-page-wrapper .container, .facebook-page-wrapper .container, .twitter-page-wrapper .container, .telegram-page-wrapper .container, .spotify-page-wrapper .container, .linkedin-page-wrapper .container, .pinterest-page-wrapper .container, .soundcloud-page-wrapper .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 20px;
}

header {
    background-color: #f8f8f8;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
}

.logo {
    font-size: 1.8em;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
}

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

.main-nav {
    flex-grow: 1;
    text-align: center;
}

.main-nav .menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.main-nav .menu li {
    margin: 0 15px;
}

.main-nav .menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 10px 0;
    display: block;
    transition: color 0.3s;
}

.main-nav .menu a:hover {
    color: var(--primary-color);
}

.header-action-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn {
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9em;
    font-weight: 600;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.btn i {
    margin-right: 5px;
}

.btn-order-query {
    background-color: #f1f1f1;
    color: var(--text-dark);
}

.btn-order-query:hover {
    background-color: #e0e0e0;
}

.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

.btn-giris, .btn-account {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-giris:hover, .btn-account:hover {
    background-color: var(--secondary-color);
}

.btn-logout {
    background-color: #dc3545;
    color: #fff;
}

.btn-logout:hover {
    background-color: #c82333;
}

.cart-icon-wrapper {
    position: relative;
    text-decoration: none;
    color: var(--text-dark);
}

.cart-icon-container {
    font-size: 1.3em;
    display: flex;
    align-items: center;
}

.cart-count-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: #dc3545;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.7em;
    font-weight: 700;
    line-height: 1;
}

.menu-toggle {
    display: none;
    font-size: 1.5em;
    color: var(--text-dark);
    cursor: pointer;
    margin-left: 15px;
    z-index: 1001;
    padding: 5px;
    border-radius: 5px;
    transition: background-color 0.2s;
}

.menu-toggle:hover {
    background-color: #f1f1f1;
}

/* Sosyal Medya - Kompakt Footer Tasarımı */
footer {
    background-color: #0f172a; /* Hero bölümü ile aynı koyu ton */
    color: #f8f8f8;
    padding: 60px 0 30px; /* Üstten boşluk artırıldı */
    box-sizing: border-box;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1100px; /* Container ile hizalandı */
    margin: 0 auto;
    padding: 0 20px;
    gap: 30px;
}

.footer-section {
    flex: 1 1 200px;
    box-sizing: border-box;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
    border: none; /* Eski alt çizgiyi kaldırdık */
}

/* Tasarıma uygun turuncu alt çizgi detayı */
.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary); /* Turuncu renk */
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8; /* Soft gri */
    overflow-wrap: break-word;
}

.footer-section.links ul, 
.footer-section.contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section.links ul li a {
    color: #94a3b8;
    font-size: 14px;
    display: block;
    margin-bottom: 12px;
    text-decoration: none;
    transition: var(--transition); /* Yumuşak geçiş */
    overflow-wrap: break-word;
}

/* Link Hover Efekti */
.footer-section.links ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-section.contact ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #94a3b8;
    font-size: 14px;
    overflow-wrap: break-word;
}

.footer-section.contact ul li i {
    margin-right: 12px;
    margin-top: 4px;
    color: var(--secondary); /* İkonlar turuncu */
    width: 16px;
    text-align: center;
}

/* Sosyal Medya İkonları */
.social-links {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.social-links a {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom { 
    text-align: center; 
    padding-top: 25px; 
    margin-top: 40px; 
    border-top: 1px solid rgba(255, 255, 255, 0.05); 
    font-size: 13px; 
    color: #64748b; 
}

/* Responsive Düzenleme */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-section.contact ul li {
        justify-content: center;
    }
    .social-links {
        justify-content: center;
    }
}


.banner {
    padding: 60px 20px;
    text-align: center;
    background-color: #2d3748;
    color: #fff;
}

.banner-content h1 {
    font-size: 3em;
    margin-bottom: 10px;
    color: #ffffff !important;
}

.banner-content p {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.banner-content .btn {
    background-color: transparent;
    color: #ffffff;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.banner-content .btn:hover {
    background-color: #ffffff;
    color: #5e2ab1;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    color: #fff;
    font-size: 1.5em;
    margin: 0 10px;
}

.services {
    padding: 60px 15px;
    background-color: #f8f9fa;
}

.services h2 {
    text-align: center;
    font-size: 2.5em;
    font-weight: 700;
    color: #343a40;
    margin-bottom: 40px;
}

.services .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.services .service-card {
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    color: #ffffff;
}

.services .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.services .service-card i {
    font-size: 48px;
    margin-bottom: 15px;
}

.services .service-card span {
    font-size: 1.3em;
    font-weight: 600;
}

.services .service-card span small {
    display: block;
    font-size: 0.7em;
    font-weight: 400;
}

.service-card.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.service-card.tiktok {
    background-color: #010101;
}

.service-card.twitter {
    background-color: #1DA1F2;
}

.service-card.youtube {
    background-color: #FF0000;
}

.service-card.facebook {
    background-color: #1877F2;
}

.service-card.telegram {
    background-color: #229ED9;
}

.service-card.spotify {
    background-color: #1DB954;
}

.service-card.linkedin {
    background-color: #1d6eb9;
}

.service-card.soundcloud {
    background-color: #FF5500;
}

.service-card.pinterest {
    background-color: #E60023;
}

.guarantee-section {
    padding: 60px 20px !important;
    background-color: #ffffff !important;
    text-align: center !important;
}

.guarantee-header {
    max-width: 800px !important;
    margin: 0 auto 40px auto !important;
}

.guarantee-header h2 {
    font-size: 32px !important;
    color: #333 !important;
    margin-bottom: 10px !important;
}

.guarantee-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.guarantee-card {
    background-color: #f8f8f8 !important;
    padding: 30px !important;
    border-radius: 10px !important;
    text-align: center !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease !important;
}

.guarantee-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-5px) !important;
}

.guarantee-icon {
    color: var(--primary-color, #6a0dad) !important;
    font-size: 40px !important;
    margin-bottom: 15px !important;
}

.faq-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.faq-header, .testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2, .testimonials-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.faq-header p, .testimonials-header p {
    font-size: 1.1rem;
    color: #666;
}

.faq-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #6a0dad;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
}

.faq-icon {
    background: #6a0dad;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 3px;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

.faq-answer {
    margin-top: 15px;
    padding-left: 45px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.testimonials-section {
    padding: 80px 20px;
    background: white;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.customer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6a0dad, #8b008b);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
}

.customer-info h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.stars {
    color: #ffc107;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-content p {
    color: #555;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
    font-style: italic;
}

.instagram-page-wrapper, .tiktok-page-wrapper, .facebook-page-wrapper, .twitter-page-wrapper, .telegram-page-wrapper, .spotify-page-wrapper, .linkedin-page-wrapper, .pinterest-page-wrapper, .soundcloud-page-wrapper {
    background-color: var(--page-bg);
}

.hero-header-purple {
    background: #2d3748;
    padding: 80px 20px;
    text-align: center;
    color: #000000;
}

.hero-header-purple h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #ffffff !important;
}

.hero-header-purple p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
    color: #ffffff !important;
}

.instagram-page-wrapper .service-card .title, .tiktok-page-wrapper .service-card .title, .facebook-page-wrapper .service-card .title, .twitter-page-wrapper .service-card .title, .telegram-page-wrapper .service-card .title, .spotify-page-wrapper .service-card .title, .linkedin-page-wrapper .service-card .title, .youtube-page-wrapper .service-card .title, .pinterest-page-wrapper .service-card .title, .soundcloud-page-wrapper .service-card .title {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary-light);
    line-height: 1.3;
    margin-bottom: 2px !important;
}

.instagram-page-wrapper .service-card .subtitle, .tiktok-page-wrapper .service-card .subtitle, .facebook-page-wrapper .service-card .subtitle, .twitter-page-wrapper .service-card .subtitle, .telegram-page-wrapper .service-card .subtitle, .spotify-page-wrapper .service-card .subtitle, .linkedin-page-wrapper .service-card .subtitle, .youtube-page-wrapper .service-card .subtitle, .pinterest-page-wrapper .service-card .subtitle, .soundcloud-page-wrapper .service-card .subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary-light);
    margin-top: 2px;
    line-height: 1.3;
}

.instagram-page-wrapper .service-card .content, .tiktok-page-wrapper .service-card .content, .facebook-page-wrapper .service-card .content, .twitter-page-wrapper .service-card .content, .telegram-page-wrapper .service-card .content, .spotify-page-wrapper .service-card .content, .linkedin-page-wrapper .service-card .content, .youtube-page-wrapper .service-card .content, .pinterest-page-wrapper .service-card .content, .soundcloud-page-wrapper .service-card .content {
    flex-grow: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.instagram-page-wrapper .service-grid, .tiktok-page-wrapper .service-grid, .facebook-page-wrapper .service-grid, .twitter-page-wrapper .service-grid, .telegram-page-wrapper .service-grid, .spotify-page-wrapper .service-grid, .linkedin-page-wrapper .service-grid, .youtube-page-wrapper .service-grid, .pinterest-page-wrapper .service-grid, .soundcloud-page-wrapper .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.instagram-page-wrapper .service-card, .tiktok-page-wrapper .service-card, .facebook-page-wrapper .service-card, .twitter-page-wrapper .service-card, .telegram-page-wrapper .service-card, .spotify-page-wrapper .service-card, .linkedin-page-wrapper .service-card, .youtube-page-wrapper .service-card, .pinterest-page-wrapper .service-card, .soundcloud-page-wrapper .service-card {
    display: flex;
    align-items: center;
    background-color: var(--card-bg-platform);
    padding: 20px 25px;
    border-radius: 16px;
    border: 1px solid var(--border-card);
    text-decoration: none;
    color: var(--text-primary-light);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.instagram-page-wrapper .service-card .icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
    background-color: #E1306C;
    color: #FFFFFF;
}

.tiktok-page-wrapper .service-card .icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
    background-color: #09b7c4fe;
    color: #FFFFFF;
}

.facebook-page-wrapper .service-card .icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
    background-color: #1877F2;
    color: #FFFFFF;
}

.twitter-page-wrapper .service-card .icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
    background-color: #1DA1F2;
    color: #FFFFFF;
}

.telegram-page-wrapper .service-card .icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
    background-color: #0088CC;
    color: #FFFFFF;
}

.spotify-page-wrapper .service-card .icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
    background-color: #1DB954;
    color: #FFFFFF;
}

.linkedin-page-wrapper .service-card .icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
    background-color: #0A66C2;
    color: #FFFFFF;
}

.youtube-page-wrapper .icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.pinterest-page-wrapper .service-card .icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
    background-color: #E60023;
    color: #FFFFFF;
}

.soundcloud-page-wrapper .service-card .icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
    background-color: #FF5500;
    color: #FFFFFF;
}

.instagram-page-wrapper .service-card .arrow-icon, .tiktok-page-wrapper .service-card .arrow-icon, .facebook-page-wrapper .service-card .arrow-icon, .twitter-page-wrapper .service-card .arrow-icon, .telegram-page-wrapper .service-card .arrow-icon, .spotify-page-wrapper .service-card .arrow-icon, .linkedin-page-wrapper .service-card .arrow-icon, .pinterest-page-wrapper .service-card .arrow-icon, .soundcloud-page-wrapper .service-card .arrow-icon {
    color: var(--text-secondary-light);
    font-size: 1.3rem;
    margin-left: 15px;
    transition: transform 0.2s ease;
}

.youtube-page-wrapper .service-card .arrow-icon {
    color: var(--text-secondary-light);
    font-size: 1.3rem;
    margin-left: 15px;
    transition: transform 0.2s ease;
    transform: translateX(3px);
}

.instagram-page-wrapper .service-card:hover .arrow-icon, .tiktok-page-wrapper .service-card:hover .arrow-icon, .facebook-page-wrapper .service-card:hover .arrow-icon, .twitter-page-wrapper .service-card:hover .arrow-icon, .telegram-page-wrapper .service-card:hover .arrow-icon, .spotify-page-wrapper .service-card:hover .arrow-icon, .linkedin-page-wrapper .service-card:hover .arrow-icon, .pinterest-page-wrapper .service-card:hover .arrow-icon, .soundcloud-page-wrapper .service-card:hover .arrow-icon {
    transform: translateX(3px);
}

.youtube-page-wrapper .service-card .icon-circle {
    background-color: #FF0000;
    color: #FFFFFF;
}

.page-header.service-banner {
    background: #2d3748;
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 40px;
}

.service-banner .banner-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 0 0 10px 0;
    color: #ffffff;
    text-shadow: none;
}

.service-banner .banner-content p {
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
    margin: 0;
}

.container .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card-new {
    background-color: var(--bg-card);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
    position: relative;
}

.card-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.card-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-right: 16px;
    flex-shrink: 0;
}

.card-title-group {
    flex-grow: 1;
}

.card-platform {
    font-size: 14px;
    color: #888;
    font-weight: 500;
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin: 0;
    line-height: 1.2;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    border-top: 1px solid #eee;
    padding-top: 24px;
    flex-grow: 1;
}

.card-features li {
    color: #555;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 15px;
}

.card-features li i {
    color: var(--success-color);
    margin-right: 10px;
    font-size: 18px;
}

.card-price {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 24px;
}

.card-price i.fa-tag {
    color: #4A90E2;
    font-size: 24px;
    margin-right: 12px;
}

.card-price .price .woocommerce-Price-amount {
    font-size: 28px;
    font-weight: 700;
    color: #222;
}

.card-price .price del .woocommerce-Price-amount {
    font-size: 18px;
    color: #999;
    font-weight: 400;
}

.card-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.btn-add-cart-new {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    background-color: var(--success-color);
    color: white;
}

.btn-add-cart-new:hover, #cart-popup .woocommerce-mini-cart__buttons .checkout:hover {
    background-color: #218838;
}

.btn-add-cart-new i {
    margin-right: 8px;
}

.custom-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 10002;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.custom-popup.show {
    display: flex;
}

.custom-popup .popup-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 420px;
    max-width: 100%;
    position: relative;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    text-align: center;
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}

.custom-popup.show .popup-content {
    transform: scale(1);
    opacity: 1;
}

.popup-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    font-size: 36px;
    color: #333;
    z-index: 11;
    line-height: 1;
    transition: color 0.2s ease;
}

.popup-close-btn:hover {
    color: var(--primary-color);
}

.popup-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

#popup-form .popup-content {
    text-align: left;
    padding: 25px;
    width: 450px;
    max-width: 90%;
    border-radius: 8px;
}

#popup-form #popup-title {
    text-align: center;
    margin-bottom: 20px;
}

#add-to-cart-form {
    text-align: center;
}

#add-to-cart-form label {
    font-weight: 600;
    margin: 0 auto 5px auto;
    display: block;
    width: 400px;
    max-width: 100%;
}

#add-to-cart-form input[type="text"] {
    width: 400px;
    max-width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#add-to-cart-form button {
    width: 400px;
    max-width: 100%;
    background: var(--success-color);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease;
    display: block;
    margin: 15px auto 0 auto;
}

#add-to-cart-form button:hover {
    opacity: 0.85;
}

#ajax-message {
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
}

#ajax-message.error {
    color: #dc3545;
}

#ajax-message.success {
    color: var(--success-color);
}

.popup-icon.success {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px auto;
    border: 4px solid var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--success-color);
    font-size: 3rem;
}

#success-popup .popup-message {
    color: var(--text-dark) !important;
    font-weight: 500;
    opacity: 1 !important;
    margin-top: 10px;
    font-size: 1.1rem;
}

.popup-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.popup-buttons button, .popup-buttons a {
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    border: none;
    transition: all 0.2s ease;
    text-align: center;
}

.popup-buttons .btn-secondary {
    background-color: #6c5ce7;
    color: #fff;
    border: 1px solid #6c5ce7;
}

.popup-buttons .btn-secondary:hover {
    background-color: #5847d0;
}

.popup-buttons .btn-primary {
    background-color: #dc3545;
    color: #fff;
}

.popup-buttons .btn-primary:hover {
    background-color: #c82333;
}

#success-popup .popup-content {
    padding: 40px;
}

#success-popup .popup-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

#cart-popup .cart-popup-content {
    width: 850px;
    padding: 0;
    overflow: hidden;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-card);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

#cart-popup .widget_shopping_cart_content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

#cart-popup .mini-cart-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
    text-align: left;
    color: var(--text-dark);
}

#cart-popup .woocommerce-mini-cart.cart_list {
    padding: 0 25px;
    flex-grow: 1;
    overflow-y: auto;
    list-style: none;
}

#cart-popup .woocommerce-mini-cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

#cart-popup .woocommerce-mini-cart-item:last-child, .woocommerce-cart-form__cart-item:last-of-type {
    border-bottom: none;
}

#cart-popup .mini-cart-item-image {
    display: none !important;
    width: 0 !important;
    margin-right: 0 !important;
    height: 0 !important;
    min-width: 0 !important;
}

#cart-popup .mini-cart-item-details {
    display: flex;
    flex-direction: column;
    text-align: left;
    flex-grow: 1;
    margin-left: 0 !important;
}

#cart-popup .mini-cart-item-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 4px;
    line-height: 1.3;
}

#cart-popup .woocommerce-mini-cart-item .variation {
    font-size: 0.9em;
    color: #777;
    margin: 0;
    display: block;
}

#cart-popup .woocommerce-mini-cart-item .quantity {
    display: flex;
    align-items: center;
    margin-top: 8px;
    font-size: 0.95em;
    color: #555;
}

#cart-popup .woocommerce-mini-cart-item .quantity .woocommerce-Price-amount {
    font-weight: 600;
    color: var(--primary-color);
    margin-left: 5px;
}

#cart-popup .woocommerce-mini-cart-item .remove_from_cart_button {
    font-size: 24px !important;
    color: #dc3545 !important;
    text-decoration: none !important;
    line-height: 1 !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    margin-left: 20px !important;
    flex-shrink: 0 !important;
    opacity: 0.8 !important;
    transition: opacity 0.2s ease, transform 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

#cart-popup .woocommerce-mini-cart-item .remove_from_cart_button:hover {
    opacity: 1 !important;
    transform: scale(1.1) !important;
}

#cart-popup .mini-cart-footer {
    padding: 20px 25px;
    border-top: 1px solid #e0e0e0;
    background-color: #f9f9f9;
    flex-shrink: 0;
}

#cart-popup .woocommerce-mini-cart__total {
    padding: 0;
    margin: 0 0 20px 0;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    color: var(--text-dark);
}

#cart-popup .woocommerce-mini-cart__buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0;
    margin: 0;
}

#cart-popup .woocommerce-mini-cart__buttons .button {
    text-align: center;
    padding: 14px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    font-size: 1.05rem;
    transition: all 0.2s ease;
}

#cart-popup .woocommerce-mini-cart__buttons .wc-forward {
    background-color: #e0e0e0;
    color: #333;
}

#cart-popup .woocommerce-mini-cart__buttons .wc-forward:hover {
    background-color: #cccccc;
}

#cart-popup .woocommerce-mini-cart__buttons .checkout {
    background-color: var(--success-color);
    color: #fff;
}

#cart-popup .mini-cart-empty-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: #888;
    padding: 40px;
    font-size: 1.1rem;
}

#cart-popup .mini-cart-empty-wrapper p {
    margin-top: 15px;
}

#cart-popup .woocommerce-mini-cart__total.total, #cart-popup .woocommerce-mini-cart__total.total .woocommerce-Price-amount.amount {
    color: var(--text-dark);
    opacity: 1;
}

.woocommerce-cart .custom-cart-wrapper.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin: 30px auto;
    max-width: 1200px;
    padding: 0 15px;
}

.woocommerce-cart .woocommerce-cart-form {
    flex: 1 1 65%;
    min-width: 300px;
    background-color: var(--bg-card);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.woocommerce-cart .cart-collaterals {
    flex: 1 1 30%;
    min-width: 300px;
    position: sticky;
    top: 100px;
}

.woocommerce-cart .cart-items-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr;
    padding: 15px 20px;
    background-color: #2d3748;
    color: #fff;
    font-weight: 600;
    border-radius: 8px 8px 0 0;
}

.woocommerce-cart-form__cart-item {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr;
    padding: 20px;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.product-title-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 1.1em;
    margin-bottom: 8px;
    color: #d63384;
}

.product-title-wrapper a {
    color: #d63384;
    text-decoration: none;
}

.cart-item-features ul {
    list-style: none;
    padding-left: 0;
    margin: 12px 0 0 0;
    font-size: 0.9em;
    color: #666;
}

.cart-item-features ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
}

.cart-item-features ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--success-color);
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 12px;
}

.product-quantity-cell .quantity {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-quantity-cell .quantity .qty {
    width: 60px;
    text-align: center;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.product-remove-cell .sil {
    background: none;
    border: none;
    color: #dc3545;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
    cursor: pointer;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-remove-cell .sil i {
    margin-right: 8px;
    font-size: 18px;
}

.product-remove-cell .sil:hover {
    color: #c82333;
}

.cart-collaterals .cart_totals {
    background-color: var(--bg-card);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 20px;
}

.cart-collaterals .cart_totals tr.shipping, .cart-collaterals .cart_totals tr.order-shipping {
    display: none !important;
}

.cart-collaterals .cart_totals h2 {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.cart-collaterals .cart_totals table {
    width: 100%;
}

.cart-collaterals .cart_totals table th {
    padding: 10px 0;
    border: none !important;
    text-align: left;
    font-weight: 500;
    color: var(--text-light);
}

.cart-collaterals .cart_totals table td {
    padding: 10px 0;
    border: none !important;
    text-align: right;
}

.cart-collaterals .cart_totals tr.order-total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--success-color);
    border-top: 1px dashed #ccc;
    margin-top: 10px;
    padding-top: 10px !important;
}

.cart-collaterals .cart_totals tr.order-total th, .cart-collaterals .cart_totals tr.order-total td {
    padding-top: 15px !important;
}

.cart-collaterals .wc-proceed-to-checkout {
    text-align: center;
    margin-top: 25px;
}

.cart-collaterals .wc-proceed-to-checkout a.checkout-button {
    background-color: var(--success-color);
    color: #fff;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: 600;
    display: block;
    width: 100%;
}

.wc-empty-cart-button {
    background-color: #2d3748;
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    display: block;
    margin-top: 10px;
}

.woocommerce-cart-form .actions {
    display: none;
}

/* --- Masa���st���nde mobil butonlar��� gizle (genel kural) --- */
.mobile-action-buttons {
    display: none;
}

/* --- Mobil Men��� (Hamburger + Butonlar Dahil) --- */
@media (max-width: 768px) {

    /* hamburger + nav yerle���imi */
    .main-nav {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #fff;
        display: none;
        flex-direction: column;
        align-items: center;
        border-top: 1px solid #e0e0e0;
        z-index: 999;
        padding-bottom: 15px;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav .menu {
        display: flex;
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .main-nav .menu li {
        margin: 10px 0;
    }

    /* hamburger butonu g���r���n���r olmas��� */
    .menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.6em;
        color: var(--text-dark);
        cursor: pointer;
        margin-left: auto;
        padding: 8px;
        z-index: 1001;
    }

    /* desktop i���in olan butonlar gizlensin */
    .desktop-only {
        display: none !important;
    }

    /*
      mobilde mobile-action-buttons g���r���n���r kural���:
      - daha y���ksek ���ncelik istenirse !important eklenebilir,
        fakat genelde cascade do���ru s���radaysa gerekmez.
      - burada genel kural (���stte) ���nce tan���mland��ŏ����� i���in
        media query i���indeki kural ge���erli olur.
    */
    .mobile-action-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
        width: 90%;
    }

    .mobile-action-buttons .btn {
        width: 100%;
        justify-content: center;
        font-weight: 600;
        font-size: 1rem;
        padding: 10px;
        border-radius: 6px;
    }
}

/* ==== BLOG SAYFASI TASARIM ==== */

.blog-container {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  background: var(--page-bg, #f0f2f5);
}

.blog-container h1 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 50px;
  color: var(--text-dark);
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

/* Blog Card */
.blog-card {
  background: var(--bg-card, #fff);
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.blog-card a {
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Görsel */
.blog-card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* İçerik */
.blog-card-content {
  padding: 20px 22px 60px 22px;
  flex-grow: 1;
}

.blog-card-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-content .blog-excerpt {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.blog-card-content .read-more {
  color: var(--primary-color);
  font-weight: 600;
  transition: color 0.3s ease;
}

.blog-card-content .read-more:hover {
  color: var(--secondary-color);
}

/* Tarih etiketi */
.blog-date {
  position: absolute;
  bottom: 15px;
  right: 20px;
  font-size: 0.85rem;
  color: var(--text-secondary-light);
  opacity: 0.8;
}

/* Sayfalama */
.blog-pagination {
  margin-top: 40px;
  text-align: center;
}

.blog-pagination .page-numbers {
  display: inline-block;
  margin: 0 5px;
  padding: 10px 15px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #ddd;
  text-decoration: none;
  color: var(--text-dark);
  transition: all 0.2s ease;
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

/* Boş Durum */
.empty-state {
  text-align: center;
  background: #fff;
  padding: 80px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Mobil uyum */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card-content {
    padding: 18px 18px 50px 18px;
  }
}

/* ==== TEKİL BLOG YAZISI TASARIM ==== */

.blog-container {
  max-width: 850px;
  margin: 60px auto;
  padding: 0 20px;
  background: #66ccff
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.blog-post-header {
  text-align: center;
  padding: 40px 25px 20px;
  border-bottom: 1px solid #eee;
}

.blog-post-header h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.3;
}

.blog-meta {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 0.95rem;
  color: var(--text-secondary-light);
}

.blog-category {
  background: var(--primary-color);
  color: #fff;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Öne çıkan görsel */
.blog-post-image {
  margin: 30px auto;
  max-width: 100%;
  text-align: center;
}

.blog-post-image img {
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  height: auto;
}

/* İçerik alanı */
.blog-content {
  padding: 0 25px 40px;
  color: var(--text-dark);
  line-height: 1.8;
  font-size: 1.05rem;
}

.blog-content h2, .blog-content h3 {
  color: var(--primary-color);
  margin-top: 25px;
  margin-bottom: 10px;
}

.blog-content p {
  margin-bottom: 16px;
}

.blog-content a {
  color: var(--primary-color);
  text-decoration: underline;
  transition: color 0.2s;
}

.blog-content a:hover {
  color: var(--secondary-color);
}

/* Footer / etiketler ve gezinti */
.blog-post-footer {
  background: #2d3748; /* koyu arka plan */
  color: #e2e8f0; /* açık gri metin */
}

.blog-post-footer .tags-label {
  color: #e2e8f0; /* etiket başlığı */
}

/* Etiketlerin Kendi Stili (Koyu Arka Plan, Beyaz Metin) */
.blog-post-footer .post-tags a {
    /* Mevcut Stiller */
    background: #495057; /* Daha Koyu Tema için hafif koyu gri arka plan */
    color: #FFFFFF; /* Beyaz yazı rengi */
    padding: 5px 10px; /* Okunurluk için bu ayarı eklemek iyi olur */
    border-radius: 4px; /* Köşeleri yumuşatmak için */

    /* 📌 Yeni Eklenen Ayırma Stilleri 📌 */
    display: inline-block; /* Etiketlerin yan yana durmasını sağlar */
    margin-right: 10px; /* Etiketlerin sağına boşluk ekler */
    margin-bottom: 5px;  /* Alt satıra geçen etiketler için boşluk ekler */
}

/* Etiketlerin Hover Stili */
.blog-post-footer .post-tags a:hover {
  background: #5a6473; /* Hover'da biraz daha açık/farklı bir koyu ton */
  color: #FFFFFF; /* Beyaz yazı rengi */
}

/* Alt yazı link rengi (önceki/sonraki yazı linkleri) */
.blog-post-footer a {
  color: #e2e8f0; /* açık gri link */
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-post-footer a:hover {
  color: #ffffff; /* hover'da beyaza yaklaşır */
}

.nav-previous,
.nav-next {
  font-weight: 600;
  font-size: 1rem;
}

/* Önceki ve sonraki yazı linkleri */
.nav-previous a,
.nav-next a {
  color: #e2e8f0; /* gri ton */
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-previous a:hover,
.nav-next a:hover {
  color: #ffffff; /* hover'da beyaz */
}


/* Yorum alanı (isteğe bağlı güzelleştirme) */
#comments {
  margin-top: 50px;
  background: #fafafa;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

#comments h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 700;
}

/* Mobil uyum */
@media (max-width: 768px) {
  .blog-container {
    margin: 30px 15px;
    padding: 0;
  }

  .blog-post-header {
    padding: 30px 15px 10px;
  }

  .blog-content {
    padding: 0 15px 30px;
  }

  .blog-post-footer {
    padding: 20px 15px 30px;
  }
}



/* --- Hizmet Kartları Kontrast İyileştirme (Erişilebilirlik) --- */
.services .service-card {
    position: relative;
    overflow: hidden;
}

.services .service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.10); /* %10 siyah overlay */
    border-radius: inherit;
    z-index: 1;
}

/* İçerik overlay altında kaybolmasın */
.services .service-card * {
    position: relative;
    z-index: 2;
}

footer,
footer * {
    color: #ffffff !important;
}
/* Pop-up Metinlerini ve Kapatma Tuşunu Koyu Renge Dönüştür */

/* 1. Kapatma Tuşu (X) Rengi */
/* Normalde #333, Hover'da var(--primary-color) #6a0dad */
.popup-close-btn {
    color: var(--text-dark) !important;
}

/* 2. Sepete Ekle Pop-up Başlığı (Örn: "Instagram 25 Türk Takipçi") */
/* Renk: #333333 (var(--text-dark)) */
#popup-form #popup-title {
    color: var(--text-dark) !important;
}

/* 3. Form Etiketi Rengi (Örn: "Hesap Adı / Link:") */
/* Renk: #333333 (var(--text-dark)) */
#add-to-cart-form label {
    color: var(--text-dark) !important;
}

/* 4. Başarılı Pop-up Başlığı (Örn: "Tebrikler") */
/* Renk: #333333 (var(--text-dark)) */
#success-popup .popup-title {
    color: var(--text-dark) !important;
}

/* 5. Başarılı Pop-up Mesajı (Örn: "Ürün sepete eklendi") */
/* Renk: #333333 (var(--text-dark)) */
#success-popup .popup-message {
    color: var(--text-dark) !important;
}

/* 6. Başarısız Pop-up Mesajı (Örn: "Ürün sepete eklenemedi") */
/* Hata mesajı için en yaygın sınıfları ve pop-up'taki genel metin elementlerini hedef alıyoruz. */
.failure-message, 
.error-message, 
#add-to-cart-form > p, 
#add-to-cart-form > div {
    color: var(--text-dark) !important;
}

/* Tik İşaretini (İkonu) Görünür Yapan Kesin Kural */
.popup-icon.success i {
    color: var(--success-color) !important;
}

.paytr-assurance {
    display: flex;
    align-items: center;
    margin-left: 15px; /* Logodan ayırma */
    color: #008000; /* Yeşil tonu güven hissi verir */
}

.paytr-assurance small {
    font-size: 0.8rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px; 
    font-weight: 600;
}

.paytr-assurance .fas {
    color: #008000;
}


/* Genel Kapsayıcı Ayarları */
.payment-assurance {
    /* Sosyal medya ikonlarıyla arasında biraz boşluk bırakma */
    margin-top: 15px; 
    /* İçeriği (Logoyu) ortalamak için Flexbox kullanıldı */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Logo (Görsel) Ayarları - Masaüstü ve Varsayılan */
.paytr-logo {
    /* Masaüstü için varsayılan maksimum genişlik */
    max-width: 80px; 
    /* Oranını koruması için yükseklik otomatik */
    height: auto;
}

/* --- Mobilde Geçerli Ayarlar --- */
/* Ekran genişliği 768 piksel ve altındayken logo boyutunu küçült */
@media (max-width: 768px) {
    .paytr-logo {
        /* Mobilde daha küçük görünmesi için maksimum genişlik 60px olarak ayarlandı */
        max-width: 60px; 
    }
}



/* Genel Kapsayıcı Ayarları */
.payment-assurance-text {
    margin-top: 10px; 
    text-align: center;
    
    /* ✅ YAZI BOYUTUNU DAHA DA BÜYÜTTÜK */
    font-size: 1.25rem; 
    
    color: #4CAF50; /* Yeşil tonu korundu */
    
    font-weight: 700; 
}

.payment-assurance-text small {
    display: inline-flex;
    align-items: center;
    gap: 8px; /* İkon ile metin arasına boşluğu artırdık */
}

/* ✅ İKON BOYUTUNU DAHA DA BÜYÜTTÜK */
.payment-assurance-text .fas {
    font-size: 1.3rem; 
    /* İkonun metinden belirgin olmasını sağlar */
}







/* ======================================================
   SADECE HİZALAMA DÜZENLEMESİ (STİLLER KORUNDU)
====================================================== */

/* 1. TÜM ANA BLOKLARI AYNI GENİŞLİĞE VE HİZAYA GETİR */
.woocommerce-thankyou-order-received,
.woocommerce-order-overview,
.woocommerce-order-details,
.woocommerce-customer-details {
    max-width: 920px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* 2. İÇERİKLERİ SOLA YASLA VE GİRİNTİLERİ SIFIRLA */
.woocommerce-order-overview,
.woocommerce-table--order-details,
.woocommerce-customer-details address {
    text-align: left !important;
}

/* 3. ÜRÜN TABLOSU SOL HİZALAMA */
.woocommerce-table--order-details th,
.woocommerce-table--order-details td {
    text-align: left !important;
    padding-left: 0 !important; /* Sol boşluğu sıfırlayarak tam hizalar */
}

/* 4. HESAP / LİNK KUTUSUNU ÜRÜN İSMİYLE AYNI HİZAYA ÇEK */
.wc-item-meta {
    margin-left: 0 !important;
    padding-left: 15px !important; /* Sadece iç boşluk bırakır, kutuyu kaydırmaz */
    list-style: none !important;
}

.wc-item-meta li {
    margin-left: 0 !important;
    padding-left: 0 !important;
    text-align: left !important;
}

/* 5. FATURA ADRESİ BAŞLIK VE METİN HİZALAMA */
.woocommerce-column__title,
.woocommerce-customer-details address {
    margin-left: 0 !important;
    padding-left: 20px !important; /* Kenardaki yeşil çizgi payı hariç hizalar */
}

/* 6. MOBİLDE HİZALAMAYI KORU */
@media (max-width: 768px) {
    .woocommerce-order-overview {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .woocommerce-order-overview li {
        text-align: left !important;
        padding-left: 0 !important;
    }
}

/* ======================================================

   WOOCOMMERCE THANK YOU PAGE

   FINAL – TEK BLOK / FATURA DÜZENİ

====================================================== */



*, *::before, *::after {

    box-sizing: border-box;

}



/* =========================

   SAYFA GENEL

========================= */

.woocommerce-order {

    background: #e5e7eb;

    padding: 40px 0;

}



/* =========================

   BAŞARILI SİPARİŞ BANNER

========================= */

.woocommerce-thankyou-order-received {

    max-width: 920px;

    margin: 0 auto 28px auto;

    background: #059669;

    color: #ffffff;

    padding: 22px;

    border-radius: 10px;

    font-size: 20px;

    font-weight: 600;

    text-align: center;

}



/* =========================

   ANA BEYAZ BELGE

========================= */

.woocommerce-order > *:not(.woocommerce-thankyou-order-received) {

    max-width: 920px;

    margin: 0 auto 26px auto;

    background: #ffffff;

    border-radius: 10px;

    box-shadow: 0 0 0 1px #e5e7eb;

}



/* =========================

   SİPARİŞ ÖZETİ (PDF ÜST KISIM)

========================= */

.woocommerce-order-overview {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 0;

    padding: 24px;

    border-bottom: 1px solid #e5e7eb;

    list-style: none;

}



.woocommerce-order-overview li {

    padding: 14px 0;

    border-bottom: 1px dashed #e5e7eb;

}



.woocommerce-order-overview li strong {

    display: block;

    font-size: 12px;

    color: #64748b;

    margin-bottom: 4px;

    font-weight: 500;

}



.woocommerce-order-overview li span,

.woocommerce-order-overview li b {

    font-size: 15px;

    font-weight: 700;

    color: #020617;

    word-break: break-word;

}



/* ÖDEME YÖNTEMİ TAM SATIR */

.woocommerce-order-overview__payment-method {

    grid-column: span 2;

    border-bottom: none;

    padding-top: 18px;

}



/* =========================

   SİPARİŞ DETAYLARI

========================= */

.woocommerce-order-details {

    padding: 24px;

    border: none;

    box-shadow: none;

}



.woocommerce-order-details h2 {

    font-size: 18px;

    margin-bottom: 16px;

}



/* TABLO */

.woocommerce-table--order-details {

    width: 100%;

    border-collapse: collapse;

}



.woocommerce-table--order-details thead th {

    background: #f8fafc;

    color: #334155;

    font-size: 13px;

    font-weight: 600;

    padding: 14px;

    text-align: left;

}



.woocommerce-table--order-details td,

.woocommerce-table--order-details th {

    padding: 14px;

    border-bottom: 1px solid #e5e7eb;

}



/* ÜRÜN ADI */

.woocommerce-table--order-details .product-name a {

    color: #020617;

    font-weight: 600;

    text-decoration: none;

}



/* ADET */

.product-quantity {

    color: #64748b;

    font-size: 13px;

}



/* META (HESAP / LINK) – DÜZ METİN */

.wc-item-meta {

    margin-top: 6px;

    padding: 0;

    background: none;

    border: none;

    font-size: 13px;

    color: #334155;

    list-style: none;

}



/* =========================

   TOPLAM ALANI

========================= */

.woocommerce-table--order-details tfoot tr:not(:last-child) {

    background: #f8fafc;

}



.woocommerce-table--order-details tfoot tr:last-child {

    background: #020617;

}



.woocommerce-table--order-details tfoot tr:last-child th,

.woocommerce-table--order-details tfoot tr:last-child td {

    color: #ffffff;

    font-weight: 700;

    font-size: 15px;

}



/* =========================

   FATURA ADRESİ

========================= */

.woocommerce-customer-details {

    padding: 24px;

}



.woocommerce-column__title {

    font-size: 18px;

    margin-bottom: 12px;

}



.woocommerce-customer-details address {

    font-style: normal;

    background: none;

    border-left: 4px solid #059669;

    padding-left: 16px;

    line-height: 1.6;

    color: #020617;

}



/* =========================

   MOBİL

========================= */

@media (max-width: 768px) {



    .woocommerce-order {

        padding: 20px 10px;

    }



    .woocommerce-order-overview {

        grid-template-columns: 1fr;

    }



    .woocommerce-order-overview__payment-method {

        grid-column: span 1;

    }



    .woocommerce-thankyou-order-received {

        font-size: 18px;

        padding: 18px;

    }

}



/* ======================================================
   ÜST SİPARİŞ ÖZETİ – SADECE NO + TARİH
====================================================== */

/* Önce istenmeyenleri gizle */
.woocommerce-order-overview__email,
.woocommerce-order-overview__total,
.woocommerce-order-overview__payment-method {
    display: none !important;
}

/* Üst alanı dikey yap */
.woocommerce-order-overview {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px;
    padding: 0 !important;
    margin-bottom: 25px !important;
}

/* Sadece sipariş no & tarih kutuları */
.woocommerce-order-overview__order,
.woocommerce-order-overview__date {
    display: block !important;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px 18px;
}

/* Başlık */
.woocommerce-order-overview__order strong,
.woocommerce-order-overview__date strong {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 4px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Değer */
.woocommerce-order-overview__order span,
.woocommerce-order-overview__date span {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}
/* ======================================================
   ÜST SİPARİŞ NO & TARİH – SOLA YASLANMA DÜZELTME
====================================================== */

.woocommerce-order-overview {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

/* Kartların kendi iç boşluğu zaten var,
   sadece kapsayıcıyı sağa alıyoruz */

/* ======================================================
   SİPARİŞ DETAYLARI – SOLA YASLANMA DÜZELTME
====================================================== */

/* Tabloyu genel olarak içerden başlat */
.woocommerce-order-details {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

/* Ürün / ara toplam / toplam satırları */
.woocommerce-table--order-details th,
.woocommerce-table--order-details td {
    padding-left: 24px !important;
    padding-right: 24px !important;
}

/* Ürün adı biraz daha nefes alsın */
.woocommerce-table--order-details .product-name {
    padding-left: 4px !important;
}




/* ======================================================
   ORTA KISIM DÜZELTME (TABLO YAPISI KORUNUR)
====================================================== */

/* Orta kısım tabloya geri dönsün */
.woocommerce-table--order-details tr {
    display: table-row !important;
    background: #ffffff !important;
    border: none !important;
    box-shadow: none !important;
}

/* Hücreler */
.woocommerce-table--order-details th,
.woocommerce-table--order-details td {
    padding: 14px 18px !important;
    border-bottom: 1px solid #e5e7eb !important;
    font-size: 14px !important;
}

/* Başlıklar */
.woocommerce-table--order-details th {
    color: #64748b !important;
    font-weight: 600 !important;
}

/* Değerler */
.woocommerce-table--order-details td {
    color: #0f172a !important;
    font-weight: 700 !important;
}

/* Orta kısımda YEŞİL ŞERİT TAMAMEN KAPALI */
.woocommerce-table--order-details tr::before {
    display: none !important;
}


/* ======================================================
   FATURA ADRESİ – ALT ÇİZGİ VE KUTU HİSSİ
====================================================== */

.woocommerce-customer-details address {
    position: relative !important;
    padding: 20px 24px 20px 36px !important;
    background: linear-gradient(
        to right,
        #f1f5f9 0%,
        #ffffff 55%
    ) !important;

    /* GERÇEK ŞERİT */
    border-left: 6px solid #10b981 !important;
    border-top: 1px solid #e2e8f0 !important;
    border-right: 1px solid #e2e8f0 !important;
    border-bottom: 1px solid #e2e8f0 !important;

    border-radius: 12px !important;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05) !important;
}

/* Sahte şeridi tamamen kapat */
.woocommerce-customer-details address::before {
    display: none !important;
}
/* ======================================================
   SİPARİŞ NO & TARİH – KUTU İÇİ BOŞLUK VE HİS DÜZELTME
====================================================== */

/* Sipariş özet kartı – dengeli iç boşluk */
.woocommerce-order-overview li {
    position: relative !important;
    padding: 16px 20px 16px 36px !important; /* sol taraf biraz nefes alır */
    background: linear-gradient(
        to right,
        #f1f5f9 0%,
        #ffffff 55%
    ) !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 14px !important;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05) !important;
}

/* Sol yeşil şerit – stabil yöntem */
.woocommerce-order-overview li {
    border-left: 6px solid #10b981 !important;
}


/* Etiket (Sipariş numarası / Tarih) */
.woocommerce-order-overview li strong {
    font-size: 13px !important;
    color: #64748b !important;
    letter-spacing: 0.3px !important;
}

/* Değer (4612 / Ocak 20, 2026) */
.woocommerce-order-overview li span,
.woocommerce-order-overview li:not(:has(strong)) {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
}

.woocommerce-table--order-details .product-name .product-quantity {
    display: inline-block !important;
    margin-top: 6px !important;
    background: #f1f5f9 !important;
    padding: 3px 8px !important;
    border-radius: 999px !important;
}




