/*
Theme Name: HostingKupon
Description: Hosting ve teknoloji kuponları için özel WordPress teması
Version: 1.0.0
Author: HostingKupon
Text Domain: hostingkupon
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/
/* Box Sizing Reset */

:root {
    --primary-color: #2563eb;
    --secondary-color: #0891b2;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --dark-color: #1f2937;
    --light-color: #f9fafb;
    --border-color: #e5e7eb;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

/* Box Sizing Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* HTML & Body */
html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}
section {
	margin-bottom: 5rem;
}
/* Headings */
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1rem 0;
    font-weight: 600;
    line-height: 1.2;
    color: #222;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

/* Paragraphs */
p {
    margin: 0 0 1.5rem 0;
    line-height: 1.7;
}

/* Links */
a {
    color: #0073aa;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #005177;
    text-decoration: none;
}
/*
a:focus {
    outline: 2px solid #0073aa;
    outline-offset: 2px;
}*/

/* Lists */
ul, ol {
    margin: 0 0 1.5rem 0;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.5rem;
}

ul ul, ol ol, ul ol, ol ul {
    margin-bottom: 0;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
    border: 0;
}

/* Figures */
figure {
    margin: 0 0 1.5rem 0;
}

figcaption {
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

th, td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    font-weight: 600;
    background-color: #f5f5f5;
}

/* Forms */
input, textarea, select, button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="date"],
textarea,
select {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    transition: border-color 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

/* Buttons */
button,
input[type="submit"],
input[type="button"],
.button,
.wp-block-button__link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background-color: #0073aa;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
.button:hover,
.wp-block-button__link:hover {
    background-color: #005177;
}

/* Blockquote */
blockquote {
    margin: 0 0 1.5rem 0;
    padding: 1rem 1.5rem;
    border-left: 4px solid #0073aa;
    background-color: #f5f5f5;
    font-style: italic;
}

blockquote p:last-child {
    margin-bottom: 0;
}

/* Code */
code, pre {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.875rem;
}

code {
    padding: 0.2rem 0.4rem;
    background-color: #f5f5f5;
    border-radius: 3px;
}

pre {
    padding: 1rem;
    background-color: #f5f5f5;
    border-radius: 4px;
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

pre code {
    padding: 0;
    background-color: transparent;
}

/* Horizontal Rule */
hr {
    border: 0;
    border-top: 1px solid #ddd;
    margin: 2rem 0;
}

/* ==========================================================================
   Container Styles
   ========================================================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

.container-narrow {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Container Responsive */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
}

@media (max-width: 768px) {
    .container,
    .container-narrow,
    .container-wide {
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .container,
    .container-narrow,
    .container-wide {
        padding: 0 10px;
    }
}

/* ==========================================================================
   WordPress Specific Classes
   ========================================================================== */

/* Alignment */
.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
}

.alignnone {
    margin-bottom: 1.5rem;
}

/* Clearfix */
.clearfix::after,
.entry-content::after,
.comment-content::after,
.site-header::after,
.site-content::after,
.site-footer::after {
    content: "";
    display: table;
    clear: both;
}

/* WordPress Galleries */
.gallery {
    margin-bottom: 1.5rem;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
    margin: 0;
}

.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

.gallery-columns-5 .gallery-item {
    max-width: 20%;
}

.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}

/* WordPress Captions */
.wp-caption {
    max-width: 100%;
    margin-bottom: 1.5rem;
}

.wp-caption img {
    display: block;
    margin: 0 auto;
}

.wp-caption-text {
    font-size: 0.875rem;
    color: #666;
    padding: 0.5rem 0;
    text-align: center;
}

/* Screen Reader Text */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

/* Display */
.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-flex { display: flex; }
.d-none { display: none; }

/* Text Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

/* Margin & Padding Utilities */
.m-0 { margin: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.p-0 { padding: 0; }
.pt-1 { padding-top: 0.5rem; }
.pt-2 { padding-top: 1rem; }
.pt-3 { padding-top: 1.5rem; }
.pt-4 { padding-top: 2rem; }
.pb-1 { padding-bottom: 0.5rem; }
.pb-2 { padding-bottom: 1rem; }
.pb-3 { padding-bottom: 1.5rem; }
.pb-4 { padding-bottom: 2rem; }

/* Font Weight */
.fw-normal { font-weight: 400; }
.fw-bold { font-weight: 700; }
.fw-light { font-weight: 300; }

/* Responsive Typography */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
    h5 { font-size: 1.1rem; }
    h6 { font-size: 1rem; }
}

@media (max-width: 576px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    h4 { font-size: 1.1rem; }
}

/* Header */
.header {
    background: rgb(255 255 255 / 0.6);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    max-width: 225px;
    height: auto;
    max-height: 50px;
    object-fit: contain;
}

/* Site Title ve Description */
.site-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
}

.site-description {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.3;
    font-weight: 400;
}

@media (max-width: 768px) {
    .nav { 
        display: none !important; 
    }
    .nav-menu {
        display: none !important;
    }
    .mobile-menu-btn { 
        display: block !important; 
    }
    .desktop-only { 
        display: none !important; 
    }
    .cta-button {
        display: none !important;
    }
    .header-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (min-width: 769px) {
    .nav { 
        display: flex !important; 
    }
    .nav-menu {
        display: flex !important;
    }
    .mobile-menu-btn { 
        display: none !important; 
    }
    .cta-button { 
        display: flex !important; 
    }
}

@media (max-width: 480px) {
    .mobile-menu-content {
        width: 100%;
        height: 100vh;
        min-height: 100vh;
    }
       
    .mobile-nav {
        padding: 0.5rem 0;
        min-height: 40vh;
        display: flex;
        flex-direction: column;
    }
    
    .mobile-nav a {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .mobile-nav .nav-menu a {
        padding: 0.75rem 1.5rem !important;
        font-size: 1rem !important;
    }
    
    .mobile-location {
        padding: 1.25rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .mobile-actions {
        padding: 1.5rem 1.5rem 2rem 1.5rem;
    }
}

.nav {
    display: flex;
    gap: 2rem;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #111827;
    font-weight: 500;
    transition: color 0.2s;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    white-space: nowrap;
}

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

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li {
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
    font-weight: 500;
    transition: color 0.2s;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    white-space: nowrap;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-button {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.btn {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Location Info */
.location-info {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    margin-right: 1rem;
    padding: 0.5rem 1rem;
    background: #e0f2fe;
    border: 1px solid #0ea5e9;
    border-radius: 20px;
    font-size: 0.875rem;
    color: #0369a1;
    font-weight: 500;
}

/* Desktop-only elements should be visible by default */
.desktop-only {
    display: flex;
}

.cta-button.desktop-only {
    display: inline-flex;
}

.mobile-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    background: #f8fafc;
    border-bottom: 1px solid #f3f4f6;
    font-size: 1rem;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.location-icon {
    font-size: 1.2rem;
    color: #0ea5e9;
}

.location-text {
    font-weight: 600;
    color: #0369a1;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    flex-direction: column;
    gap: 3px;
    align-items: center;
    justify-content: center;
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.mobile-menu-btn:hover .hamburger-line {
    background: var(--primary-color);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
}

.mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(2px);
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    background: white;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
	box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
	pointer-events: auto;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    padding: 0.7rem 2rem 0.7rem 2rem;
    border-bottom: 1px solid #f3f4f6;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background-color: #f3f4f6;
    color: #111827;
}

.mobile-menu-close svg {
    width: 20px;
    height: 20px;
}

.mobile-nav {
    flex: 1;
    padding: 0.2rem 0;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
}

.mobile-nav a {
    display: block;
    padding: 1.5rem 2rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    width: 100%;
    box-sizing: border-box;
}

.mobile-nav a:hover {
    background: #f8fafc;
    border-left-color: var(--primary-color);
    color: var(--primary-color);
}

/* Mobil menüdeki WordPress menüsü için özel stiller */
.mobile-nav .nav-menu {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.mobile-nav .nav-menu li {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
}

.mobile-nav .nav-menu a {
    display: block !important;
    padding: 0.75rem 2rem !important;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1)) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 1.1rem !important;
    transition: all 0.2s ease !important;
    border-left: 3px solid transparent !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
}

.mobile-nav .nav-menu a:hover {
    background: #f8fafc !important;
    border-left-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.mobile-menu-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 0 2rem;
}

.mobile-actions {
    padding: 2rem 2rem 3rem 2rem;
    flex-shrink: 0;
}

.mobile-cta-button {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.mobile-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}



/* Main Content */
.main-content {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 50%, #ecfeff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.hero::before {
    background: var(--primary-color);
    top: 20%;
    left: -100px;
}

.hero::after {
    background: var(--secondary-color);
    bottom: 20%;
    right: -100px;
}

.hero-content {
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #dbeafe;
    color: #1e40af;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero h2 {
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: clamp(1.25rem, 2.5vw, 1.25rem);
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
    margin-bottom: 2rem;
    line-height: 1.6;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}
.stat span{ 
    font-size: 0.875rem;
    line-height: 1.25rem;
	font-weight: 500;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
	--tw-space-x-reverse: 0;
    margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.stat .dot {
    width: 8px;
    height: 8px;
    background: var(--success-color);
    border-radius: 50%;
    animation: blink 2s infinite;
}
.text-blue-600 {
    --tw-text-opacity: 1;
    color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}
.text-orange-500 {
    --tw-text-opacity: 1;
    color: rgb(249 115 22 / var(--tw-text-opacity, 1));
}
.w-4 {
    width: 1.2rem;
}
.h-4 {
    height: 1rem;
}
.text-gray-600 {
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.w-5 {
    width: 1.25rem;
}
.h-5 {
    height: 1.25rem;
}
.text-green-600 {
    --tw-text-opacity: 1;
    color: rgb(22 163 74 / var(--tw-text-opacity, 1));
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
.section {
    padding-top: 2rem;
    padding-bottom: 6rem;
}

.section-alt {
    background-color: var(--light-color);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.85rem 1.5rem 0.85rem 1.5rem;
    color: #c2410c;
    font-size: 0.975rem;
    font-weight: 600;
    margin-bottom: 1rem;
	border: 1px solid #fed7aa;
    border-radius: 10px;
	line-height: 1.25rem;
	background: linear-gradient(to right, #fff7ed, #fff7ed);
}

.section-header h3 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Categories Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 1015px;
    margin: 0 auto;
}

.category-card {
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}
.category-icon-large {display: ruby;}
.category-icon-large img{
	font-size: clamp(1rem, 2vw, 1.5rem);margin-right: 7px !important;
}
.category-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
   /* background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));*/
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.category-icon-placeholder {
    font-size: 1.5rem;
}

.category-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;text-align: start;
}

.category-card p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Kategori Sayfası Stilleri */
.archive-header {
     display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
}

.category-header-image {
    margin-bottom: 2rem;
}

.category-header-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.archive-header h1 {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 700;
    color: var(--text-primary);
}

.archive-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    max-width: 600px;
}

.category-stats {
    display: flex;
    justify-content: center;
}

.post-count {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.no-posts {
    text-align: center;
    padding: 3rem;
    grid-column: 1/-1;
}

.no-posts h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.no-posts p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    gap: 0.5rem;
}

.pagination a,
.pagination span {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
}

.pagination a:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination .current {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Deal Title Link */
.deal-title-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.deal-title-link:hover {
    color: var(--primary-color);
}

/* Deal Single Page */
.deal-single {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.deal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.deal-header h1,
.deal-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin: 1rem 0 0.5rem 0;
    color: var(--text-primary);
}

.deal-description-preview {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0.5rem 0 1rem 0;
    max-height: 3.2rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.deal-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    margin: 0.5rem 0 1rem 0;
    line-height: 1.3;
}

.deal-meta {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.deal-details {
    margin-bottom: 4rem;
}

.deal-card-detailed {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin-bottom: 2rem;
}

.deal-description {
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    margin-bottom: 1rem !important;
    position: relative !important;
    z-index: 1 !important;
}

.deal-description h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    background: none;
    padding: 0;
    border: none;
    box-shadow: none;
}

.deal-description .content {
    line-height: 1.7;
    color: var(--text-secondary);
    background: none;
    padding: 0;
    border: none;
    box-shadow: none;
    margin: 0;
}

.deal-description .content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
}

/* Similar Deals */
.similar-deals {
    margin-top: 4rem;
}

.similar-deals h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-align: center;
}

.similar-deals .deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 20px;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.notification.show {
    transform: translateX(0);
}

/* Loading Spinner */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.deal-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}


/* Features - Her satırda yeşil tik */
.feature {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.4;
	margin-bottom: 0.5rem;
}

.feature-icon {
    color: #059669;
}

.features {
    margin: 1rem 0;
    padding: 0;
    background: none;
    border: none;
	margin-bottom: 16px;
}

.feature:last-child {
    margin-bottom: 0;
}

.feature span:last-child {
    flex: 1;
}

.feature-item {
	font-size: 0.875rem;
    line-height: 1.25rem;
	color: rgb(75 85 99 / var(--tw-text-opacity, 1));
	display: flex;
    gap: 10px;
    align-items: center;
	padding-bottom: 8px;
}
/* Company Details - Başlık ve açıklama hizalama */
.company-details {
    margin: 0;
    padding: 0;
}

.company-details h5,
.company-details h3 {
    margin: 0 0 0.5rem 0;
    padding: 0;
    background: none;
    box-shadow: none;
    border: none;
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}
/* Yeni Kupon Tasarımı */
.coupon-new {
    margin: 1rem 0;
}

.coupon-reveal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f9fa;
    border: 2px dashed #c3c3c3;
    border-radius: 8px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.coupon-reveal:hover {
    border-color: var(--primary-color);
    background: #e3f2fd;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.coupon-text {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.coupon-scissors {
    font-size: 1.2rem;
    color: #dc3545;
}

.coupon-revealed {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #28a745, #20c997);
    border: 2px solid #28a745;
    border-radius: 8px;
    padding: 1rem;
    color: white;
    animation: revealAnimation 0.5s ease-out;
}

.coupon-code-full {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

@keyframes revealAnimation {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Yeşil Ana Buton */
.deal-btn-primary {
    width: 100%;
    background: linear-gradient(135deg, #2563eb, #0891b2);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    box-shadow: 0 4px 8px rgb(129 129 129 / 30%);
    position: relative;
    overflow: hidden;
}

.deal-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.deal-btn-primary:hover::before {
    left: 100%;
}

.deal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    background: linear-gradient(135deg, #218838, #1ea085);
}

.deal-btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(40, 167, 69, 0.3);
}

.deal-btn-primary.loading {
    opacity: 0.8;
    cursor: not-allowed;
    transform: none;
}

.deal-btn-primary.loading:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}


.category-link {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.category-link:hover {
    color: var(--secondary-color);
}

/* Filter Section */
/* Filtre genel stilleri */
.filter-section {
    margin: 20px 0;
}

.filter-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

/* Custom dropdown container */
.custom-dropdown {
    position: relative;
    width: 200px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Dropdown selected elementi */
.dropdown-selected {
    padding: 12px 40px 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: white;
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    transition: all 0.2s ease;
    position: relative;
}

.dropdown-selected:hover {
    border-color: #999;
    background-color: #f8f9fa;
}

.dropdown-selected::after {
    content: "▼";
    color: #666;
    font-size: 12px;
    transition: transform 0.3s ease;
    position: absolute;
    right: 15px;
}

.dropdown-selected.open::after {
    transform: rotate(180deg);
}

/* Dropdown list */
.dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
	margin-top: 5px;
    background-color: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;/*
    max-height: 200px;
    overflow-y: auto;*/
    display: none;
}

.dropdown-list.open {
    display: block;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Dropdown options */
.dropdown-option {
    padding: 12px 15px;
    cursor: pointer;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.dropdown-option:hover {
    background-color: #f5f5f5;
}

.dropdown-option.selected {
    background-color: #e3f2fd;
    font-weight: 500;
    color: #1976d2;
}

.dropdown-option.selected::after {
    content: "✓";
    color: #1976d2;
    font-weight: bold;
    font-size: 16px;
}

.dropdown-option:last-child {
    border-bottom: none;
    border-radius: 0 0 6px 6px;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .filter-content {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .custom-dropdown {
        width: 100%;
    }
}
/* Deals Grid */
/* Deal Cards - Tam Eşleşme */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.deal-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.2s ease;
    position: relative;
}

.deal-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.deal-badge {
    position: absolute;
    top: 15px;
    right: 20px;
    background: linear-gradient(to right, #f97316, #ef4444);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    z-index: 10;
}

.deal-content {
    padding: 40px 20px;
}

.deal-content h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.deal-content h2 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.deal-content h2 a:hover {
    color: #3b82f6;
}

.deal-content .company-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    margin: 1rem 0 0.5rem 0;
    line-height: 1.3;
}

.deal-content .company-name .category-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.deal-content .company-name .category-link:hover {
    color: #3b82f6;
}

/* Company Info */
.company-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.company-logo {
    width: 90px; 
    height: 90px;
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 0.875rem;
    overflow: hidden; /*
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));*/
    position: relative;
}

.company-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    padding: 8px;
}

.company-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

/* Deal Title Full Width */
.deal-title-full {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.3;
    margin-bottom: 1rem;
}

/* Benzer Teklifler Bölümü */
.similar-deals {
    margin-top: 2rem;
}

.similar-deals h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1.5rem;
}

.similar-deals .deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.similar-deals .deal-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.similar-deals .deal-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.similar-deals .deal-content {
    padding: 1.5rem;
}

.similar-deals .deal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.similar-deals .deal-content h2 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.similar-deals .deal-content h2 a:hover {
    color: #3b82f6;
}

.similar-deals .company-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.similar-deals .company-logo {
    width: 120px;
    height: 90px;
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 0.875rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
}

.similar-deals .company-info h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

.similar-deals .company-info h2 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.similar-deals .company-info h2 a:hover {
    color: #3b82f6;
}

.similar-deals .company-details {
    margin-bottom: 1rem;
}

.similar-deals .deal-description {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    max-height: 3.2rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.similar-deals .company-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    margin: 1rem 0 0.5rem 0;
    line-height: 1.3;
}

.similar-deals .company-name .category-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.similar-deals .company-name .category-link:hover {
    color: #3b82f6;
}

.similar-deals .features {
    margin: 1rem 0;
}

.similar-deals .feature {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #374151;
}

.similar-deals .feature-icon {
    color: #10b981;
    font-weight: bold;
    margin-right: 0.5rem;
    font-size: 1rem;
}

.similar-deals .rating {
    display: flex;
    align-items: center;
    margin: 1rem 0;
}

.similar-deals .stars {
    display: flex;
    gap: 2px;
}

.similar-deals .star {
    color: #fbbf24;
    font-size: 1.2rem;
}

.similar-deals .star.empty {
    color: #d1d5db;
}

.similar-deals .rating-text {
    margin-left: 0.5rem;
    font-weight: 600;
    color: #111827;
}

.similar-deals .pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1rem 0;
}

.price-period {
	text-transform: uppercase;color: #6b7280;
}
.similar-deals .price-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.similar-deals .current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
}

.similar-deals .old-price {
    font-size: 1.125rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.similar-deals .discount-badge {
    background: #ef4444;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.similar-deals .period {
    font-size: 0.9rem;
    color: #6b7280;
}

.similar-deals .coupon-new {
    margin: 1rem 0;
}

.similar-deals .coupon-reveal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.similar-deals .coupon-reveal:hover {
    border-color: #3b82f6;
    background: #f8fafc;
}

.similar-deals .coupon-text {
    font-weight: 600;
    color: #374151;
}

.similar-deals .coupon-scissors {
    font-size: 1.2rem;
}

.similar-deals .deal-btn-primary {
    width: 100%;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.similar-deals .deal-btn-primary:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-1px);
}

/* Kategori Resmi */
.category-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.company-details h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 2px 0;
}

.company-details p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

/* Rating */
.rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.stars {
    display: flex;
    align-items: center;
}

.star {
    color: #fbbf24;
    font-size: 1.5rem;
	text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.rating-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #374151;
    margin-left: 2px;
	margin-top: 4px;
}

.rating-number {
	font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin-left: 5px;
	height: 20px;
}

/* Pricing */
.pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.old-price {
    font-size: 1rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.discount-badge {
    background: #ef4444;
    color: white;
    padding: 3px 9px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 500;
}

.period {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Coupon */
.coupon {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 16px;
}

.coupon-header {
    font-size: 0.75rem;
    font-weight: 600;
    color: #2563eb;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.coupon-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.coupon-code {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e40af;
    font-family: monospace;
}

.secondary-btn {
    background: #6b7280 !important;
    margin-top: 8px;
}

.secondary-btn:hover {
    background: #4b5563 !important;
}

.copy-btn {
    background: white;
    border: 1px solid #bfdbfe;
    color: #2563eb;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    cursor: pointer;
    font-weight: 500;
    white-space: nowrap;
}

.copy-btn:hover {
    background: #f0f9ff;
}

/* Deal Button */
.deal-btn {
    width: 100%;
    padding: 10px;
    background: #3b82f6;
    color: white !important;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s ease;
    text-decoration: none !important;
}

.deal-btn:hover {
    background: #2563eb;color: white !important;
}

@media (max-width: 480px) {
    .company-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }
   /* 
    .pricing {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .price-info {
        justify-content: center;
        width: 100%;
    }*/
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: #d1d5db;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h6 {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;padding-left: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-info {
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}
.contact-item i {
	color: #5a9fd4;
}
.contact-icon {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--success-color);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    z-index: 10000;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.spinner {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 0.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Widget Stilleri */
.widget {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget ul li {
    margin-bottom: 0.5rem;
}

.widget ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.widget ul li a:hover {
    color: var(--primary-color);
}


/* Footer Widget Stilleri */
.footer-section .widget {
    background: transparent;
    padding: 0;
    box-shadow: none;
    margin-bottom: 0;
}

.footer-section .widget-title {
    color: white;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
}

.footer-section .widget ul li a {
    color: #d1d5db;
}

.footer-section .widget ul li a:hover {
    color: white;
}

/* Responsive Design */
@media (min-width: 768px) {
    .desktop-nav { display: flex; }
    .mobile-menu-btn { display: none; }
    .desktop-only { display: flex !important; }
    .btn-primary.desktop-only { display: inline-flex !important; }
    .filter-content { justify-content: flex-start; }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .category-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 1rem;
    }
}

@media (max-width: 767px) {
    .container { padding: 0 15px; }
    .btn { width: 100%; justify-content: center; }
    .deals-grid { grid-template-columns: 1fr; }
    .main-content {margin-top: 60px;}
    .desktop-nav { 
        display: none !important; 
    }
    .mobile-menu-btn { 
        display: flex !important; 
        visibility: visible !important;
        opacity: 1 !important;
    }
    .desktop-only { 
        display: none !important; 
    }
    
    .logo-icon img {
        max-width: 150px;
        max-height: 40px;
    }
    
    .site-title {
        font-size: 1.25rem;
    }
    
    .site-description {
        font-size: 0.75rem;
    }
    .category-grid { 
        grid-template-columns: 1fr; 
        gap: 0.75rem;
    }
    
    .category-card {
        padding: 0.75rem 1rem;
    }
    
    .category-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .category-card h4 {
        font-size: 1rem;
    }
    
    .category-card p {
        font-size: 0.85rem;
    }
    .filter-content { flex-direction: column; align-items: stretch; }
    .filter-select { width: 100%; min-width: auto; }
    .company-info { flex-direction: column; align-items: center; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-bottom-content { flex-direction: column; text-align: center; }
    .price-info { justify-content: center; }
    .deal-single { padding: 0 0.5rem; }
}

@media (max-width: 480px) {
    .deal-card { margin: 0 5px; }
    .section-header h3 { font-size: 1.75rem; }
    .filter-section { padding: 1rem; }
    .deal-content { padding: 1rem; }
}
/* Company Logo İyileştirmesi */

/* Şirket adına göre farklı renkler */
.company-logo[data-company*="Linux"] {
    background: linear-gradient(135deg, #f59e0b, #dc2626);
}

.company-logo[data-company*="BurtiNET"] {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.company-logo[data-company*="Turhost"] {
    background: linear-gradient(135deg, #10b981, #059669);
}

/* Logo efekti */
.company-logo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Article Styles */
.article-content {
    margin: 0 auto;
}

.article-header {
    text-align: center;
    margin-bottom: 2rem;
}

.article-categories {
    margin-bottom: 1rem;
}

.category-badge {
    display: inline-block;
    padding: 0.75rem;
    background: var(--primary-color);
    color: white;
    border-radius: 10px;
    font-size: 0.875rem;
    text-decoration: none;
    margin: 0 0.25rem;line-height: 1.2;
}

.article-title {
    font-size: 2.2rem;
    margin: 1rem 0;
    color: var(--text-primary);line-height: 1.3;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-featured-image {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
}

.featured-img {
    width: 100%;
    height: auto;
    display: block;
}

.article-body {
    color: var(--text-primary);
}
.article-body h2{
    line-height: 1.3;
    font-size: 1.75rem;font-weight: 700;
    color: var(--text-primary);margin-bottom: 20px;margin: 1.75rem 0 1rem 0;
}
.article-body h3{
    line-height: 1.4;
    font-size: 1.5rem;font-weight: 600;
    color: var(--text-primary);margin-bottom: 20px;margin: 1.75rem 0 1rem 0;
}
.article-body p{
     margin: 0 0 1.5rem 0;
    line-height: 1.8;color: var(--text-primary);
}
.article-body strong{font-weight: 700;}
.article-body ul,ol {
	margin: 1rem 0 1.5rem 0;
    padding-left: 2rem;
    list-style: disc;
}
.article-body li{
	 margin-bottom: 0.5rem;
    line-height: 1.8;
}
.article-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.article-tags {
    margin-bottom: 1.5rem;
}

.tag-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--bg-secondary);
    color: var(--primary-color);
    border-radius: 15px;
    font-size: 0.875rem;
    text-decoration: none;
    margin: 0.25rem;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: transform 0.2s;
}

.share-btn:hover {
    transform: scale(1.1);
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.whatsapp { background: #25d366; }

.article-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 3rem;
}

.article-navigation a {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
}

.article-navigation a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.nav-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.nav-title {
    font-weight: 600;
    color: var(--text-primary);
}

.nav-next {
    text-align: right;
}

@media (max-width: 768px) {
    .article-navigation {
        grid-template-columns: 1fr;
    }
    
    .nav-next {
        text-align: left;
    }
}

/* Single Deal Page Styles */
.deal-single-wrapper {
    padding: 2rem 0;
}

.breadcrumb {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb-item {
    white-space: nowrap;
}

.single-deal-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: start;
}

/* Sol Sidebar - Teklif Kartı */
.deal-card-sidebar {
    position: sticky;
    top: 100px;
}

.deal-card-single {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
}

.deal-badge-top {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(to right, #f97316, #ef4444);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 10;
}

.deal-card-content {
    padding: 2rem;
}

.company-header {
    text-align: center;
    margin-bottom: 0;
}

.company-logo-large {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;/*
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
}

.company-logo-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-logo-text-large {
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

.company-info-header h2 {
    font-size: 1.25rem;
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
}

.company-name-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}
.company-name-label a {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;font-weight: 500;
}
.company-name-label a:hover {color: #0073aa;}
.rating-single {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.rating-single .stars {
    display: flex;
    gap: 0.25rem;
}

.rating-single .rating-number {
    font-weight: 600;
    color: var(--text-primary);
}

.pricing-single {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f6f9fc 0%, #eef2f7 100%);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.price-currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.price-old {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.discount-badge-single {
    display: inline-block;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

.features-list-single {
    margin-bottom: 1.5rem;
}

.feature-item-single {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.feature-item-single:last-child {
    border-bottom: none;
}

.feature-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #10b981;
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
}

.deal-actions-single {
    display: flex;
    flex-direction: column;
    gap: 1rem;margin-bottom: 1.5rem;
}

.coupon-single {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    border-radius: 12px;
    padding: 1rem;
}

.coupon-reveal {
    cursor: pointer;
    text-align: center;
    transition: transform 0.2s;
}

.coupon-reveal:hover {
    transform: scale(1.05);
}

.coupon-text {
    font-weight: 600;
    color: #c2410c;
    margin-bottom: 0.5rem;
}

.coupon-scissors {
    font-size: 1.5rem;
}

.btn-goto-site {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #2563eb, #0891b2);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-goto-site:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);color: white;
}

/* Sağ Taraf - İçerik */
.deal-content-main {
    background: white;
    border-radius: 16px;
    padding: 2rem;/*
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);*/
}

.content-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.content-header h1 {
    font-size: 2.5rem;
    margin: 1rem 0;
    color: var(--text-primary);
}

.post-meta {
    display: flex;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.meta-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-content {
    line-height: 1.8;
    font-size: 1.125rem;
    color: var(--text-primary);
}

.post-content h2,
.post-content h3,
.post-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content ul,
.post-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.post-navigation a {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
}

.post-navigation a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.nav-title {
    font-weight: 600;
    color: var(--text-primary);
}

.nav-next {
    text-align: right;
}

/* Responsive */
@media (max-width: 1024px) {
    .single-deal-grid {
        grid-template-columns: 1fr;
    }
    
    .deal-card-sidebar {
        position: relative;
        top: 0;
        order: -1;
    }
}

@media (max-width: 768px) {
    .content-header h1 {
        font-size: 1.75rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .post-navigation {
        grid-template-columns: 1fr;
    }
    
    .nav-next {
        text-align: left;
    }
}

/* Blog Post Card Styles */
.blog-post-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.blog-post-card .post-thumbnail {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-post-card .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.blog-post-card .post-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-post-card .post-title {
    font-size: 1.25rem;
    margin: 0 0 1rem 0;
    line-height: 1.4;
}

.blog-post-card .post-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-card .post-title a:hover {
    color: var(--primary-color);
}

.blog-post-card .post-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.blog-post-card .post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-post-card .post-meta svg {
    width: 16px;
    height: 16px;
}

.blog-post-card .post-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-post-card .read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.blog-post-card .read-more-btn:hover {
    gap: 0.75rem;
}

.blog-post-card .read-more-btn svg {
    width: 16px;
    height: 16px;
}

/* Grid uyumluluğu - blog ve deal kartları yan yana */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .deals-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-post-card .post-thumbnail {
        height: 180px;
    }
}

/* ============================================
   İÇERİK ALANLARI İÇİN GENEL STİLLER
   ============================================ */

/* Yazı içerikleri için genel container */
.deal-content,
.post-content,
.term-description,
.entry-content,
.page-content {
    line-height: 1.8;
    color: var(--text-primary);
}

/* Başlıklar */
.deal-content h1,
.post-content h1,
.term-description h1,
.entry-content h1,
.page-content h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 2rem 0 1rem 0;
    line-height: 1.3;
    color: var(--text-primary);
}

 
.post-content h2,
.term-description h2,
.entry-content h2,
.page-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 1.75rem 0 1rem 0;
    line-height: 1.3;
    color: var(--text-primary);
}

.deal-content h3,
.post-content h3,
.term-description h3,
.entry-content h3,
.page-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem 0;
    line-height: 1.4;
    color: var(--text-primary);
}

.deal-content h4,
.post-content h4,
.term-description h4,
.entry-content h4,
.page-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.25rem 0 0.5rem 0;
    line-height: 1.4;
}

/* Paragraflar */
.deal-content p,
.post-content p,
.term-description p,
.entry-content p,
.page-content p {
    margin: 0 0 1.5rem 0;
    line-height: 1.8;
}

/* Listeler */
.deal-content ul,
.post-content ul,
.term-description ul,
.entry-content ul,
.page-content ul {
    margin: 1rem 0 1.5rem 0;
    padding-left: 2rem;
    list-style: disc;
}

.deal-content ol,
.post-content ol,
.term-description ol,
.entry-content ol,
.page-content ol {
    margin: 1rem 0 1.5rem 0;
    padding-left: 2rem;
    list-style: decimal;
}

.deal-content li,
.post-content li,
.term-description li,
.entry-content li,
.page-content li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

/* İç içe listeler */
.deal-content ul ul,
.post-content ul ul,
.term-description ul ul,
.entry-content ul ul,
.page-content ul ul,
.deal-content ol ol,
.post-content ol ol,
.term-description ol ol,
.entry-content ol ol,
.page-content ol ol {
    margin: 0.5rem 0;
}

/* Linkler */
.deal-content a,
.post-content a,
.term-description a,
.entry-content a,
.page-content a {
    color: var(--primary-color);/*
    text-decoration: underline;*/
    transition: color 0.3s ease;
}

.deal-content a:hover,
.post-content a:hover,
.term-description a:hover,
.entry-content a:hover,
.page-content a:hover {
    color: #0066cc;
    text-decoration: none;
}

/* Tablolar */
.deal-content table,
.post-content table,
.term-description table,
.entry-content table,
.page-content table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #ddd;
    overflow-x: auto;
    display: block;
}

.deal-content table thead,
.post-content table thead,
.term-description table thead,
.entry-content table thead,
.page-content table thead {
    background: #f5f5f5;
}

.deal-content table th,
.post-content table th,
.term-description table th,
.entry-content table th,
.page-content table th {
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    border: 1px solid #ddd;
    background: #f8f9fa;
}

.deal-content table td,
.post-content table td,
.term-description table td,
.entry-content table td,
.page-content table td {
    padding: 10px 15px;
    border: 1px solid #ddd;
    vertical-align: top;
}

.deal-content table tr:nth-child(even),
.post-content table tr:nth-child(even),
.term-description table tr:nth-child(even),
.entry-content table tr:nth-child(even),
.page-content table tr:nth-child(even) {
    background: #f9f9f9;
}

.deal-content table tr:hover,
.post-content table tr:hover,
.term-description table tr:hover,
.entry-content table tr:hover,
.page-content table tr:hover {
    background: #f0f0f0;
}

/* Tablo responsive */
@media (max-width: 768px) {
    .deal-content table,
    .post-content table,
    .term-description table,
    .entry-content table,
    .page-content table {
        font-size: 0.875rem;
    }
    
    .deal-content table th,
    .post-content table th,
    .term-description table th,
    .entry-content table th,
    .page-content table th,
    .deal-content table td,
    .post-content table td,
    .term-description table td,
    .entry-content table td,
    .page-content table td {
        padding: 8px 10px;
    }
}

/* Resimler */
.deal-content img,
.post-content img,
.term-description img,
.entry-content img,
.page-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5rem auto;
    border-radius: 8px;
}

/* WordPress figcaption */
.deal-content figcaption,
.post-content figcaption,
.term-description figcaption,
.entry-content figcaption,
.page-content figcaption {
    font-size: 0.875rem;
    color: #666;
    text-align: center;
    margin-top: 0.5rem;
    font-style: italic;
}

/* WordPress figure */
.deal-content figure,
.post-content figure,
.term-description figure,
.entry-content figure,
.page-content figure {
    margin: 1.5rem 0;
}

/* Alıntılar (blockquote) */
.deal-content blockquote,
.post-content blockquote,
.term-description blockquote,
.entry-content blockquote,
.page-content blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--primary-color);
    background: #f9f9f9;
    font-style: italic;
    color: #555;
}

/* Kod blokları */
.deal-content pre,
.post-content pre,
.term-description pre,
.entry-content pre,
.page-content pre {
    background: #f5f5f5;
    padding: 1rem;
    border-radius: 4px;
    overflow-x: auto;
    margin: 1.5rem 0;
    border: 1px solid #ddd;
}

.deal-content code,
.post-content code,
.term-description code,
.entry-content code,
.page-content code {
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.deal-content pre code,
.post-content pre code,
.term-description pre code,
.entry-content pre code,
.page-content pre code {
    background: none;
    padding: 0;
}

/* WordPress alignment classes */
.alignleft {
    float: left;
    margin: 0.5rem 1.5rem 1rem 0;
}

.alignright {
    float: right;
    margin: 0.5rem 0 1rem 1.5rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* WordPress gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.gallery-item {
    text-align: center;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* HR çizgisi */
.deal-content hr,
.post-content hr,
.term-description hr,
.entry-content hr,
.page-content hr {
    border: none;
    border-top: 2px solid #e0e0e0;
    margin: 2rem 0;
}

/* Strong ve em */
.deal-content strong,
.post-content strong,
.term-description strong,
.entry-content strong,
.page-content strong {
    font-weight: 700;
}

.deal-content em,
.post-content em,
.term-description em,
.entry-content em,
.page-content em {
    font-style: italic;
}

/* Daha Fazla Göster Butonu */
.show-more-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem;
    margin-top: 0.5rem;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.show-more-features:hover {
    background: #e9ecef;
    border-color: var(--primary-color);
}

.show-more-features svg {
    transition: transform 0.3s ease;
}

.hidden-features {
    margin-top: 0.5rem;
}