/* ============================================================
   STYLE.CSS — Global Styles, Pages, Components
   abantpack.com | Red Brand Theme
   ============================================================ */

/* ----------------------------------------
   CSS VARIABLES (mirrors header.css)
   ---------------------------------------- */
:root {
    --red: #C41E1E;
    --red-dark: #a01818;
    --red-darker: #8B1515;
    --accent-dark: #333333;
    --text-dark: #333333;
    --text-darker: #1a1a1a;
    --text-muted: #666666;
    --text-light: #999999;
    --bg-light: #f8f9fa;
    --bg-lighter: #f5f5f5;
    --footer-bg: #1a1a1a;
    --white: #ffffff;
    --success: #4CAF50;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --radius: 15px;
    --radius-lg: 20px;
    --radius-pill: 50px;
    --transition: 0.3s ease;
    --font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ----------------------------------------
   RESET & BASE
   ---------------------------------------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--red);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--red-dark);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-darker);
}

button {
    cursor: pointer;
    font-family: var(--font);
}

input, textarea, select {
    font-family: var(--font);
}

/* ----------------------------------------
   CONTAINER
   ---------------------------------------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ----------------------------------------
   SECTION HEADER — Centered titles
   ---------------------------------------- */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-darker);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.section-header h2 span {
    color: var(--red);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--red), var(--red-darker));
    border-radius: 2px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.7;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

/* ----------------------------------------
   SECTIONS — Generic padding
   ---------------------------------------- */
section {
    padding: 80px 0;
}

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

section.bg-lighter {
    background: var(--bg-lighter);
}

/* ----------------------------------------
   BUTTONS — Shared
   ---------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    font-family: var(--font);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red), var(--red-darker));
    color: var(--white);
    box-shadow: 0 6px 20px rgba(196, 30, 30, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(196, 30, 30, 0.45);
    color: var(--white);
}

.btn-secondary {
    background: var(--accent-dark);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--text-darker);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--white);
}

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

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

.btn-white {
    background: var(--white);
    color: var(--red);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    color: var(--red);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 13px;
}

.btn-lg {
    padding: 17px 40px;
    font-size: 16px;
}

/* ----------------------------------------
   BREADCRUMBS
   ---------------------------------------- */
.breadcrumb-section {
    background: var(--bg-light);
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
}

.breadcrumb li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.breadcrumb li a:hover {
    color: var(--red);
}

.breadcrumb li.active {
    color: var(--red);
    font-weight: 600;
}

.breadcrumb .separator {
    color: #ccc;
    font-size: 11px;
}

/* ----------------------------------------
   PAGE HEADER — Inner pages
   ---------------------------------------- */
.page-header {
    background: linear-gradient(135deg, rgba(160,20,20,0.7) 0%, rgba(120,10,10,0.75) 60%, rgba(40,40,40,0.7) 100%), url('/uploads/2020/12/hakkimizda-header.jpg') center/cover no-repeat;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 50%;
}

.page-header h1 {
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ----------------------------------------
   HOMEPAGE — V2 Modern
   ---------------------------------------- */

/* Section Common */
.hp-section-head {
    text-align: center;
    margin-bottom: 50px;
}

.hp-section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(196,30,30,0.08);
    color: var(--red);
    font-size: 13px;
    font-weight: 700;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.hp-section-head h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-darker);
    margin-bottom: 12px;
}

.hp-section-head p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Categories */
.hp-categories {
    padding: 80px 0;
}

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

.hp-cat-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid #f0f0f0;
}

.hp-cat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.hp-cat-img {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #f0f0f0;
}

.hp-cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hp-cat-card:hover .hp-cat-img img {
    transform: scale(1.06);
}

.hp-cat-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: var(--red);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px;
    letter-spacing: 0.3px;
}

.hp-cat-body {
    padding: 24px;
}

.hp-cat-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-darker);
    margin-bottom: 8px;
}

.hp-cat-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.hp-cat-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
    font-size: 14px;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.hp-cat-card:hover .hp-cat-link {
    gap: 12px;
}

/* Features */
.hp-features {
    padding: 80px 0;
    background: var(--bg-light);
}

.hp-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hp-features-left .hp-section-tag {
    margin-bottom: 16px;
}

.hp-features-left h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-darker);
    margin-bottom: 18px;
    line-height: 1.2;
}

.hp-features-left p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

.hp-features-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: var(--red);
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hp-features-btn:hover {
    background: var(--red-darker);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196,30,30,0.3);
}

.hp-features-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.hp-feat-card {
    background: var(--white);
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hp-feat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: var(--red);
}

.hp-feat-icon {
    width: 48px;
    height: 48px;
    background: rgba(196,30,30,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    margin-bottom: 14px;
}

.hp-feat-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-darker);
    margin-bottom: 6px;
}

.hp-feat-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Blog */
.hp-blog {
    padding: 80px 0;
}

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

.hp-blog-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.hp-blog-img {
    height: 200px;
    overflow: hidden;
}

.hp-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.hp-blog-body {
    padding: 22px;
}

.hp-blog-date {
    font-size: 13px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 8px;
}

.hp-blog-body h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-darker);
    margin-bottom: 12px;
    line-height: 1.4;
}

.hp-blog-link {
    font-size: 14px;
    color: var(--red);
    font-weight: 600;
}

.hp-blog-more {
    text-align: center;
    margin-top: 40px;
}

.hp-outline-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border: 2px solid var(--red);
    color: var(--red);
    border-radius: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hp-outline-btn:hover {
    background: var(--red);
    color: #fff;
    transform: translateY(-2px);
}

/* ----------------------------------------
   PRODUCT CARDS — Within category
   ---------------------------------------- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.product-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--bg-light);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 14px;
    background: var(--red);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card-body {
    padding: 22px;
}

.product-card-category {
    font-size: 12px;
    font-weight: 600;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.product-card-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-darker);
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-card-body h3 a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

.product-card-body h3 a:hover {
    color: var(--red);
}

.product-card-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid #f0f0f0;
}

.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--red);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: gap var(--transition);
}

.product-card-link:hover {
    gap: 10px;
}

/* ----------------------------------------
   CATEGORY & PRODUCT LISTING PAGES
   ---------------------------------------- */
.page-header .breadcrumb {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 14px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.page-header .breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.page-header .breadcrumb a:hover {
    color: #fff;
}

.page-header .breadcrumb .bc-sep {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.4);
}

.page-header .breadcrumb span:not(.bc-sep) {
    color: #fff;
}

/* Category intro description */
.cat-intro {
    background: #fff;
    border-left: 4px solid var(--red);
    border-radius: 0 12px 12px 0;
    padding: 24px 28px;
    margin-bottom: 32px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.cat-intro p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
    margin: 0;
}

/* Product cards grid */
.cat-products-section {
    padding: 50px 0 70px;
}

.cat-products-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.cat-products-count {
    font-size: 14px;
    color: #999;
    font-weight: 500;
}

.cat-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.cat-product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}

.cat-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.cat-product-img {
    position: relative;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    height: 260px;
    overflow: hidden;
}

.cat-product-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.cat-product-card:hover .cat-product-img img {
    transform: scale(1.08);
}

.cat-product-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.cat-product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(196, 30, 30, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.cat-product-overlay span {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 12px 28px;
    border: 2px solid #fff;
    border-radius: 50px;
}

.cat-product-card:hover .cat-product-overlay {
    opacity: 1;
}

.cat-product-body {
    padding: 22px 24px;
    border-top: 1px solid #f0f0f0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cat-product-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-darker);
    margin-bottom: 10px;
    line-height: 1.3;
}

.cat-product-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--red);
    transition: gap 0.3s ease;
}

.cat-product-card:hover .cat-product-arrow {
    gap: 10px;
}

/* "More products" card */
.cat-product-more {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f8f8 0%, #eee 100%);
    border-radius: 16px;
    text-decoration: none;
    border: 2px dashed #ddd;
    transition: all 0.35s ease;
    min-height: 260px;
    gap: 8px;
}

.cat-product-more:hover {
    border-color: var(--red);
    background: linear-gradient(135deg, rgba(196, 30, 30, 0.03) 0%, rgba(196, 30, 30, 0.08) 100%);
    transform: translateY(-4px);
}

.cat-more-count {
    font-size: 42px;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
}

.cat-more-text {
    font-size: 15px;
    color: #888;
    font-weight: 500;
}

.cat-more-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--red);
    margin-top: 8px;
}

/* Category block on all-products page */
.cat-block-section {
    padding: 50px 0;
    border-bottom: 1px solid #f0f0f0;
}

.cat-block-section:nth-child(even) {
    background: #fafafa;
}

.cat-block-section:last-of-type {
    border-bottom: none;
}

.cat-block-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 20px;
}

.cat-block-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-darker);
    margin-bottom: 6px;
}

.cat-block-desc {
    font-size: 15px;
    color: #888;
    margin: 0;
}

.cat-block-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--red);
    text-decoration: none;
    white-space: nowrap;
    padding: 10px 20px;
    border: 2px solid var(--red);
    border-radius: 50px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.cat-block-link:hover {
    background: var(--red);
    color: #fff;
}

/* Other categories section */
.cat-other-section {
    padding: 50px 0 70px;
    background: #f8f8f8;
}

.cat-other-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-darker);
    margin-bottom: 24px;
}

.cat-other-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.cat-other-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #fff;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.cat-other-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-color: var(--red);
}

.cat-other-icon {
    width: 52px;
    height: 52px;
    background: rgba(196, 30, 30, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--red);
}

.cat-other-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-darker);
    margin-bottom: 4px;
}

.cat-other-info span {
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
}

/* Category responsive */
@media (max-width: 1024px) {
    .cat-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
}

@media (max-width: 768px) {
    .cat-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cat-product-img {
        height: 220px;
    }

    .cat-block-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cat-block-title {
        font-size: 22px;
    }
}

/* ----------------------------------------
   STATS SECTION
   ---------------------------------------- */
.stats-section {
    padding: 80px 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stat-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(196, 30, 30, 0.1), rgba(139, 21, 21, 0.05));
    border-radius: 50%;
    font-size: 28px;
    color: var(--red);
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number span {
    font-size: 24px;
}

.stat-label {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ----------------------------------------
   FEATURES — "Neden Abant Makine?"
   ---------------------------------------- */
.features-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--red), var(--red-darker));
    border-radius: var(--radius);
    font-size: 32px;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(196, 30, 30, 0.25);
}

.feature-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-darker);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ----------------------------------------
   BLOG / NEWS CARDS
   ---------------------------------------- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.news-card-image {
    height: 220px;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.news-card-body {
    padding: 25px;
}

.news-card-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.news-card-date i {
    color: var(--red);
}

.news-card-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-darker);
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-card-body h3 a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

.news-card-body h3 a:hover {
    color: var(--red);
}

.news-card-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--red);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: gap var(--transition);
}

.news-card-link:hover {
    gap: 10px;
}

/* ----------------------------------------
   CTA SECTION
   ---------------------------------------- */
.cta-section {
    background: var(--footer-bg);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(196, 30, 30, 0.08);
    border-radius: 50%;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ----------------------------------------
   FOOTER
   ---------------------------------------- */
.main-footer {
    background-color: #e8e8e8;
    color: #666;
    padding: 0;
    margin-top: 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 1fr 1fr 1.2fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--red);
    border-radius: 2px;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--red);
}

.footer-about .footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-description {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    max-width: 320px;
}

.footer-column .contact-info {
    list-style: none;
}

.footer-column .contact-info li {
    color: #555;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-column .contact-info li a {
    color: #555;
    text-decoration: none;
}

.footer-column .contact-info li a:hover {
    color: var(--red);
}

.footer-cta-column .footer-cta-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 18px;
    line-height: 1.6;
}

.footer-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-darker) 100%);
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 30, 30, 0.3);
}

.footer-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 30, 0.4);
    color: white;
}

.footer-bottom {
    border-top: 1px solid #d0d0d0;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: #666;
}

.footer-legal {
    margin-top: 8px !important;
}

.footer-legal a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--red);
}

/* ----------------------------------------
   BLOG LIST PAGE
   ---------------------------------------- */
.blog-list-section {
    padding: 60px 0 80px;
}

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

.blog-sidebar {
    grid-column: span 1;
}

.blog-sidebar-widget {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    margin-bottom: 25px;
}

.blog-sidebar-widget h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-darker);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--bg-light);
}

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

.blog-sidebar-widget ul li {
    margin-bottom: 10px;
}

.blog-sidebar-widget ul li a {
    color: var(--text-muted);
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition), padding-left var(--transition);
}

.blog-sidebar-widget ul li a:hover {
    color: var(--red);
    padding-left: 5px;
}

.blog-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-tag-cloud a {
    display: inline-block;
    padding: 5px 14px;
    background: var(--bg-light);
    color: var(--text-muted);
    font-size: 13px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: all var(--transition);
}

.blog-tag-cloud a:hover {
    background: var(--red);
    color: var(--white);
}

/* ----------------------------------------
   BLOG DETAIL PAGE
   ---------------------------------------- */
.blog-detail-section {
    padding: 40px 0 80px;
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.blog-detail-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 14px;
    color: var(--text-muted);
}

.blog-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-detail-meta i {
    color: var(--red);
}

.blog-detail-cover {
    width: 100%;
    border-radius: var(--radius);
    margin-bottom: 30px;
    max-height: 450px;
    object-fit: cover;
}

.blog-detail-content h1 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-darker);
    margin-bottom: 20px;
    line-height: 1.3;
}

.blog-detail-body {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
}

.blog-detail-body p {
    margin-bottom: 18px;
}

.blog-detail-body h2 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--text-darker);
}

.blog-detail-body h3 {
    font-size: 20px;
    margin: 25px 0 12px;
    color: var(--text-darker);
}

.blog-detail-body img {
    border-radius: var(--radius);
    margin: 20px 0;
}

.blog-detail-body ul,
.blog-detail-body ol {
    margin: 15px 0;
    padding-left: 25px;
    list-style: disc;
}

.blog-detail-body ol {
    list-style: decimal;
}

.blog-detail-body li {
    margin-bottom: 8px;
}

.blog-detail-body blockquote {
    border-left: 4px solid var(--red);
    padding: 15px 20px;
    margin: 20px 0;
    background: var(--bg-light);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--text-muted);
}

.blog-detail-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
}

.blog-detail-tags strong {
    font-size: 14px;
    color: var(--text-dark);
}

.blog-detail-tags a {
    padding: 5px 14px;
    background: var(--bg-light);
    color: var(--text-muted);
    font-size: 13px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: all var(--transition);
}

.blog-detail-tags a:hover {
    background: var(--red);
    color: var(--white);
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.blog-share strong {
    font-size: 14px;
    color: var(--text-dark);
}

.blog-share a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 10px;
    color: var(--text-muted);
    font-size: 16px;
    transition: all var(--transition);
}

.blog-share a:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-3px);
}

.related-posts {
    margin-top: 50px;
}

.related-posts h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-darker);
    margin-bottom: 25px;
}

/* ----------------------------------------
   PRODUCT LIST / CATEGORY PAGE
   ---------------------------------------- */
.product-list-section {
    padding: 60px 0 80px;
}

.product-list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.product-list-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-darker);
}

.product-list-count {
    font-size: 14px;
    color: var(--text-muted);
}

.product-filter-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.product-filter-btn {
    padding: 9px 22px;
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid #e8e8e8;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font);
}

.product-filter-btn:hover,
.product-filter-btn.active {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

/* ----------------------------------------
   PRODUCT DETAIL PAGE
   ---------------------------------------- */

/* Breadcrumb Bar */
.pd-breadcrumb-bar {
    background: #f8f8f8;
    border-bottom: 1px solid #eee;
    padding: 14px 0;
}

.pd-breadcrumb-bar .breadcrumb {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 13px;
    color: #999;
    flex-wrap: wrap;
}

.pd-breadcrumb-bar .breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.pd-breadcrumb-bar .breadcrumb a:hover {
    color: var(--red);
}

.bc-sep {
    margin: 0 8px;
    color: #ccc;
}

.bc-current {
    color: var(--text-darker);
    font-weight: 600;
}

/* Hero Section */
.pd-hero {
    padding: 50px 0 60px;
}

.pd-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Gallery */
.pd-gallery {
    position: sticky;
    top: 90px;
}

.pd-gallery-main {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3;
}

.pd-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 30px;
    transition: transform 0.4s ease;
}

.pd-gallery-main img:hover {
    transform: scale(1.05);
}

.pd-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.pd-thumb {
    background: #fff;
    border: 2px solid #eaeaea;
    border-radius: 10px;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

.pd-thumb:hover,
.pd-thumb.active {
    border-color: var(--red);
    box-shadow: 0 0 0 1px var(--red);
}

/* Info Panel */
.pd-info {
    padding-top: 10px;
}

.pd-category {
    display: inline-block;
    background: rgba(196, 30, 30, 0.08);
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.pd-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-darker);
    line-height: 1.2;
    margin-bottom: 28px;
}

/* Highlights */
.pd-highlights {
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.pd-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--text);
    line-height: 1.5;
}

.pd-highlight-item svg {
    flex-shrink: 0;
}

/* Action Buttons */
.pd-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.pd-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red);
    color: #fff;
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(196, 30, 30, 0.3);
}

.pd-btn-primary:hover {
    background: var(--red-darker);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(196, 30, 30, 0.4);
    color: #fff;
}

.pd-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--text-darker);
    padding: 16px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.pd-btn-secondary:hover {
    border-color: var(--red);
    color: var(--red);
    transform: translateY(-2px);
}

/* Trust Badges */
.pd-trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.pd-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    background: #fafafa;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
}

.pd-badge svg {
    flex-shrink: 0;
}

.pd-badge div {
    display: flex;
    flex-direction: column;
}

.pd-badge strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-darker);
    line-height: 1.3;
}

.pd-badge span {
    font-size: 11px;
    color: #999;
}

/* TABS Section */
.pd-tabs-section {
    background: #f8f8f8;
    padding: 50px 0 60px;
}

.pd-tabs-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 30px;
}

.pd-tab-btn {
    background: none;
    border: none;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.pd-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    border-radius: 3px 3px 0 0;
    transition: background 0.3s ease;
}

.pd-tab-btn:hover {
    color: var(--text-darker);
}

.pd-tab-btn.active {
    color: var(--red);
}

.pd-tab-btn.active::after {
    background: var(--red);
}

.pd-tab-panel {
    display: none;
}

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

.pd-tab-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.pd-tab-panel ul li {
    padding: 14px 20px 14px 44px;
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
    border-bottom: 1px solid #f5f5f5;
    position: relative;
}

.pd-tab-panel ul li:last-child {
    border-bottom: none;
}

.pd-tab-panel ul li::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 20px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
}

.pd-tab-panel ul li strong {
    color: var(--text-darker);
    font-weight: 600;
}

.pd-tab-panel p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 16px;
    padding: 0 20px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

/* Section Titles */
.pd-section-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-darker);
    margin-bottom: 30px;
    text-align: center;
}

/* Video Section */
.pd-video-section {
    padding: 60px 0;
}

.pd-video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}

.pd-video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* CTA Banner */
.pd-cta-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 60px 0;
}

.pd-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.pd-cta-text h2 {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.pd-cta-text p {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    margin: 0;
}

.pd-cta-actions {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
}

.pd-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 30, 30, 0.4);
}

.pd-cta-btn:hover {
    background: var(--red-darker);
    transform: translateY(-2px);
    color: #fff;
}

.pd-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.pd-cta-phone:hover {
    border-color: #fff;
    color: #fff;
}

/* Related Products */
.pd-related {
    padding: 60px 0 80px;
    background: #f8f8f8;
}

.pd-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pd-related-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pd-related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.pd-related-img {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    height: 200px;
}

.pd-related-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.pd-related-placeholder {
    color: #ccc;
    font-size: 14px;
}

.pd-related-info {
    padding: 18px 20px;
    border-top: 1px solid #f0f0f0;
}

.pd-related-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-darker);
    margin-bottom: 6px;
}

.pd-related-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
}

.pd-related-link span {
    transition: transform 0.3s ease;
    display: inline-block;
}

.pd-related-card:hover .pd-related-link span {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1024px) {
    .pd-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pd-gallery {
        position: static;
    }

    .pd-title {
        font-size: 28px;
    }

    .pd-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pd-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .pd-cta-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .pd-hero {
        padding: 30px 0 40px;
    }

    .pd-title {
        font-size: 24px;
    }

    .pd-gallery-thumbs {
        grid-template-columns: repeat(4, 1fr);
    }

    .pd-actions {
        flex-direction: column;
    }

    .pd-btn-primary,
    .pd-btn-secondary {
        justify-content: center;
        width: 100%;
    }

    .pd-trust-badges {
        grid-template-columns: 1fr;
    }

    .pd-tabs-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .pd-tab-btn {
        padding: 12px 20px;
        font-size: 14px;
        white-space: nowrap;
    }

    .pd-related-grid {
        grid-template-columns: 1fr;
    }

    .pd-cta-text h2 {
        font-size: 20px;
    }

    .pd-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .pd-cta-btn,
    .pd-cta-phone {
        justify-content: center;
        text-align: center;
    }
}

/* ----------------------------------------
   CONTACT PAGE
   ---------------------------------------- */

/* Contact Hero */
.ct-hero {
    background: linear-gradient(135deg, rgba(160,20,20,0.7) 0%, rgba(120,10,10,0.75) 100%), url('/uploads/2020/12/hakkimizda-header.jpg') center/cover no-repeat;
    padding: 80px 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.ct-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
}

.ct-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.ct-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.ct-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* Contact Section */
.ct-section {
    padding: 60px 0 80px;
    background: var(--bg-light);
}

.ct-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

/* Info Side */
.ct-info-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ct-info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.ct-info-card h2 {
    color: var(--red);
    font-size: 24px;
    margin-bottom: 15px;
}

.ct-info-card > p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.6;
}

.ct-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.ct-info-item:last-child {
    margin-bottom: 0;
}

.ct-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(196,30,30,0.08), rgba(196,30,30,0.04));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    flex-shrink: 0;
}

.ct-info-icon svg {
    width: 24px;
    height: 24px;
}

.ct-info-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-darker);
    margin-bottom: 5px;
}

.ct-info-text p,
.ct-info-text a {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
    text-decoration: none;
    margin: 0;
}

.ct-info-text a:hover {
    color: var(--red);
}

/* Map */
.ct-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    min-height: 300px;
}

.ct-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Form Side */
.ct-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.ct-form-card h2 {
    color: var(--red);
    font-size: 28px;
    margin-bottom: 10px;
}

.ct-form-card > p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.ct-optional {
    color: #999;
    font-weight: 400;
    font-size: 12px;
}

/* Alerts */
.ct-alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.ct-alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.ct-alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Form Elements */
.ct-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ct-form-group {
    margin-bottom: 20px;
}

.ct-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.ct-form-group input,
.ct-form-group select,
.ct-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    color: var(--text-dark);
    background: #f9f9f9;
    transition: all 0.3s;
    font-family: var(--font);
    outline: none;
    box-sizing: border-box;
}

.ct-form-group input:focus,
.ct-form-group select:focus,
.ct-form-group textarea:focus {
    border-color: var(--red);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(196, 30, 30, 0.1);
}

.ct-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.ct-form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

/* Submit Button */
.ct-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-darker) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font);
    box-shadow: 0 5px 15px rgba(196, 30, 30, 0.3);
}

.ct-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(196, 30, 30, 0.4);
}

.ct-submit-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.ct-submit-btn:hover svg {
    transform: translateX(5px) translateY(-5px);
}

/* ----------------------------------------
   ABOUT PAGE
   ---------------------------------------- */

/* Intro Section */
.about-intro-section {
    padding: 60px 0;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.about-intro-text h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-darker);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-intro-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-darker);
    margin: 28px 0 14px;
}

.about-intro-text p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 14px;
}

.about-intro-text p strong {
    color: var(--text-darker);
}

.about-intro-text p a {
    color: var(--red);
    font-weight: 600;
    text-decoration: none;
}

.about-intro-text p a:hover {
    text-decoration: underline;
}

.about-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-check-list li {
    padding: 10px 0 10px 32px;
    position: relative;
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
}

.about-check-list li:last-child {
    border-bottom: none;
}

.about-check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 18px;
    height: 18px;
    background: var(--red);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

.about-check-list li a {
    color: var(--red);
    font-weight: 600;
    text-decoration: none;
}

.about-intro-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.about-intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Why Us / Timeline Section */
.about-why-section {
    padding: 60px 0;
    background: #f8f8f8;
}

.about-section-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-darker);
    text-align: center;
    margin-bottom: 40px;
}

.about-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 50px;
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--red), rgba(196,30,30,0.2));
    border-radius: 3px;
}

.about-timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    position: relative;
}

.about-tl-icon {
    width: 48px;
    height: 48px;
    background: #fff;
    border: 2px solid var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--red);
    position: relative;
    left: -50px;
    margin-right: -50px;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.about-tl-content {
    background: #fff;
    border-radius: 14px;
    padding: 22px 26px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    flex: 1;
}

.about-tl-content h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-darker);
    margin-bottom: 8px;
}

.about-tl-content p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
    margin: 0;
}

/* Commitment Section */
.about-commitment-section {
    padding: 60px 0;
}

.about-commit-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}

.about-commit-text h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-darker);
    margin-bottom: 16px;
}

.about-commit-text > p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-commit-footer {
    font-weight: 700;
    color: var(--text-darker);
    margin-top: 12px;
}

.about-commit-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.about-commit-img img {
    width: 100%;
    height: auto;
}

/* Mission & Vision */
.about-mv-section {
    padding: 60px 0;
    background: #f8f8f8;
}

.about-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.about-mv-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.about-mv-card:hover {
    transform: translateY(-4px);
}

.about-mv-icon {
    width: 56px;
    height: 56px;
    background: rgba(196, 30, 30, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    margin-bottom: 18px;
}

.about-mv-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-darker);
    margin-bottom: 12px;
}

.about-mv-card p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
    margin: 0;
}

/* About responsive */
@media (max-width: 1024px) {
    .about-intro-grid,
    .about-commit-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .about-intro-text h2 {
        font-size: 24px;
    }

    .about-mv-grid {
        grid-template-columns: 1fr;
    }

    .about-timeline {
        padding-left: 40px;
    }

    .about-timeline::before {
        left: 18px;
    }

    .about-tl-icon {
        width: 40px;
        height: 40px;
        left: -40px;
        margin-right: -40px;
    }
}

/* ----------------------------------------
   CATALOG PAGE
   ---------------------------------------- */
.catalog-section {
    padding: 60px 0 80px;
}

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

.catalog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

.catalog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.catalog-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(196, 30, 30, 0.1), rgba(139, 21, 21, 0.05));
    border-radius: 50%;
    font-size: 32px;
    color: var(--red);
}

.catalog-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-darker);
    margin-bottom: 10px;
}

.catalog-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.catalog-card .btn {
    width: 100%;
}

/* ----------------------------------------
   GENERIC PAGE STYLES
   ---------------------------------------- */
.generic-page-section {
    padding: 60px 0 80px;
}

.generic-page-content {
    max-width: 800px;
    margin: 0 auto;
}

.generic-page-content h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-darker);
    margin-bottom: 20px;
}

.generic-page-content h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-darker);
    margin: 30px 0 14px;
}

.generic-page-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-darker);
    margin: 25px 0 12px;
}

.generic-page-content p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 16px;
}

.generic-page-content img {
    border-radius: var(--radius);
    margin: 20px 0;
}

.generic-page-content ul,
.generic-page-content ol {
    margin: 15px 0;
    padding-left: 25px;
    list-style: disc;
}

.generic-page-content ol {
    list-style: decimal;
}

.generic-page-content li {
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
}

.generic-page-content blockquote {
    border-left: 4px solid var(--red);
    padding: 15px 20px;
    margin: 20px 0;
    background: var(--bg-light);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--text-muted);
}

/* ----------------------------------------
   PAGINATION
   ---------------------------------------- */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
    list-style: none;
    padding: 0;
}

.pagination li a,
.pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
}

.pagination li a:hover {
    border-color: var(--red);
    color: var(--red);
    background: rgba(196, 30, 30, 0.04);
}

.pagination li.active span {
    background: linear-gradient(135deg, var(--red), var(--red-darker));
    color: var(--white);
    border-color: var(--red);
}

.pagination li.disabled span {
    color: #ccc;
    cursor: not-allowed;
    border-color: #eee;
}

.pagination li a i {
    font-size: 12px;
}

/* ----------------------------------------
   ALERT / MESSAGES
   ---------------------------------------- */
.alert {
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.alert-error {
    background: rgba(196, 30, 30, 0.1);
    color: var(--red-dark);
    border: 1px solid rgba(196, 30, 30, 0.2);
}

.alert-info {
    background: rgba(33, 150, 243, 0.1);
    color: #1565c0;
    border: 1px solid rgba(33, 150, 243, 0.2);
}

/* ----------------------------------------
   WHATSAPP FLOAT BUTTON
   ---------------------------------------- */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 900;
    transition: all var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    color: var(--white);
}

/* ----------------------------------------
   SCROLL TO TOP
   ---------------------------------------- */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 46px;
    height: 46px;
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    box-shadow: 0 4px 15px rgba(196, 30, 30, 0.3);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
}

/* ----------------------------------------
   LOADING SPINNER
   ---------------------------------------- */
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(196, 30, 30, 0.15);
    border-top-color: var(--red);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 40px auto;
}

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

/* ----------------------------------------
   COOKIE CONSENT
   ---------------------------------------- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--footer-bg);
    color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-banner p {
    font-size: 14px;
    margin: 0;
    flex: 1;
}

.cookie-banner p a {
    color: var(--white);
    text-decoration: underline;
}

.cookie-banner .btn {
    flex-shrink: 0;
}

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

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
    }
}

/* ============================================
   RESPONSIVE — 1024px
   ============================================ */
@media (max-width: 1024px) {
    section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 30px;
    }

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

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

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

    .ct-grid {
        grid-template-columns: 1fr;
    }

    /* old about-intro responsive removed */

    /* product-detail responsive handled in pd-* rules */

    .blog-detail-layout {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px;
        justify-content: flex-start;
    }

    .timeline-item:nth-child(even) {
        margin-left: 0;
        justify-content: flex-start;
    }

    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 11px;
        right: auto;
    }

    .timeline-content {
        margin-right: 0;
        max-width: 100%;
    }

    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
    }
}

/* ============================================
   RESPONSIVE — 768px
   ============================================ */
@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .section-header p {
        font-size: 14px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        height: 300px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .stat-card {
        padding: 25px 15px;
    }

    .stat-number {
        font-size: 34px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .blog-list-grid {
        grid-template-columns: 1fr;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .ct-form-row {
        grid-template-columns: 1fr;
    }

    .ct-form-card {
        padding: 25px;
    }

    .ct-hero h1 {
        font-size: 32px;
    }

    .ct-map {
        min-height: 250px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-about .footer-logo {
        max-width: 150px;
    }

    .footer-container {
        padding: 40px 20px 20px;
    }

    .page-header {
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 30px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .blog-detail-content {
        padding: 25px 20px;
    }

    .blog-detail-content h1 {
        font-size: 24px;
    }

    /* old product-detail responsive removed */

    .product-list-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .pagination {
        flex-wrap: wrap;
    }

    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
    }

    .generic-page-content h1 {
        font-size: 28px;
    }
}

/* ============================================
   RESPONSIVE — 480px
   ============================================ */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 40px 0;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 30px;
    }

    .page-header h1 {
        font-size: 24px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    /* old product thumbs/actions responsive removed */

    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }

    .scroll-top {
        bottom: 85px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .generic-page-content h1 {
        font-size: 24px;
    }

    .blog-detail-content h1 {
        font-size: 22px;
    }

    .cta-section h2 {
        font-size: 24px;
    }
}

/* ----------------------------------------
   HOMEPAGE RESPONSIVE
   ---------------------------------------- */
@media (max-width: 1024px) {
    .hp-cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hp-features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hp-features-left h2 {
        font-size: 30px;
    }

    .hp-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hp-categories,
    .hp-features,
    .hp-blog {
        padding: 50px 0;
    }

    .hp-cat-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hp-cat-img {
        height: 200px;
    }

    .hp-section-head h2,
    .hp-features-left h2 {
        font-size: 26px;
    }

    .hp-features-right {
        grid-template-columns: 1fr;
    }

    .hp-blog-grid {
        grid-template-columns: 1fr;
    }
}
