/* ==========================================================================
   Hepsiburada Style - Marketplace Theme
   ========================================================================== */
/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap'); */

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:root {
    /* HB Colors */
    --hb-orange: #ff6000;
    --hb-orange-hover: #e55600;
    --text-dark: #484848;
    --text-gray: #9b9b9b;
    --text-light: #919191;
    --bg-color: #f5f5f5;
    --white: #ffffff;
    --border-color: #e5e5e5;
    --hb-blue: #004ed0;
    --hb-green: #00b500;
    --hb-red: #f34f4f;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, Arial, sans-serif;

    /* Utilities */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.2s ease-in-out;
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--bg-color);
    line-height: 1.5;
    font-size: 14px;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

.logo img,
.footer-logo-img {
    background: transparent !important;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--hb-orange);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--hb-orange-hover);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--hb-orange);
    color: var(--hb-orange);
}

.btn-outline:hover {
    background-color: rgba(255, 96, 0, 0.05);
}

/* ==========================================================================
   Header (Marketplace Style)
   ========================================================================== */
.header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

/* Top Bar */
.top-bar {
    background-color: var(--bg-color);
    color: var(--text-light);
    font-size: 11px;
    padding: 5px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.top-bar a {
    color: var(--text-light);
    text-decoration: none;
}

.top-bar a:hover {
    color: var(--hb-orange);
}

/* Main Header */
.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 30px;
}

.logo {
    color: var(--hb-orange);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Search Bar */
.search-wrapper {
    flex: 1;
    display: flex;
    position: relative;
    max-width: 600px;
}

.search-input {
    width: 100%;
    padding: 12px 20px;
    padding-left: 45px;
    border: 2px solid var(--hb-orange);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    font-size: 15px;
    outline: none;
    font-family: var(--font-primary);
    color: var(--text-dark);
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
    font-size: 16px;
}

.search-btn {
    background-color: var(--hb-orange);
    color: var(--white);
    border: none;
    padding: 0 30px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s;
}

.search-btn:hover {
    background-color: var(--hb-orange-hover);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    position: relative;
}

.action-item:hover {
    background-color: var(--bg-color);
    color: var(--hb-orange);
}

.action-item i {
    font-size: 20px;
    margin-bottom: 3px;
    color: var(--text-dark);
}

.action-item:hover i {
    color: var(--hb-orange);
}

.action-item span {
    font-size: 12px;
    font-weight: 600;
}

.cart-count {
    position: absolute;
    top: 5px;
    right: 5px;
    transform: translate(35%, -55%);
    background-color: var(--hb-orange);
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    min-width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
    padding: 5px;
}

/* Nav Menu — kritik kurallar (header-nav.css gelmeden FOUC önleme) */
.dropdown-menu {
    display: none !important;
}

.mobile-toggle,
.mobile-menu-header,
.mobile-only {
    display: none !important;
}

@media (max-width: 991px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -300px;
        width: 300px;
        height: 100vh;
        z-index: 10000;
        visibility: hidden;
        overflow-y: auto;
        background: #fff;
    }

    .nav-menu.active {
        left: 0;
        visibility: visible;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-toggle,
    .mobile-menu-header {
        display: flex !important;
    }

    .mobile-only {
        display: block !important;
    }
}

/* Nav Menu */
.nav-menu {
    border-top: 1px solid var(--border-color);
}

.nav-list {
    display: flex;
    align-items: center;
}

.nav-list li {
    position: relative;
}

.nav-link {
    display: block;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.nav-link:hover {
    color: var(--hb-orange);
    background-color: var(--bg-color);
}

.nav-link.active {
    color: var(--hb-orange) !important;
    border-bottom: 2px solid var(--hb-orange) !important;
    margin-bottom: -2px;
}

/* ==========================================================================
   Home Content
   ========================================================================== */
/* Main Slider */
.home-banner {
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
    height: 600px;
}

.home-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}

/* Quick Categories */
.quick-categories {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.quick-categories::-webkit-scrollbar {
    height: 6px;
}

.quick-categories::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.q-cat-item {
    min-width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.q-cat-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--hb-orange);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.q-cat-item:hover .q-cat-icon {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--hb-orange);
}

.q-cat-item span {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    color: var(--text-dark);
}

/* Section Header */
.section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ==========================================================================
   Product Cards (Marketplace Style)
   ========================================================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3px;
    margin-bottom: 40px;
}

.product-card {
    background: var(--white);
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    padding: 15px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.p-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    margin-bottom: 12px;
    background: #fff;
    overflow: hidden;
    border-radius: 4px;
}

.p-image-wrapper a.p-image-link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.p-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.p-image-wrapper img.primary-img {
    position: relative;
    z-index: 2;
    filter: blur(0);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.p-image-wrapper img.secondary-img,
.p-image-wrapper .secondary-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    overflow: hidden;
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.p-image-wrapper .secondary-video-container iframe,
.p-image-wrapper .secondary-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    pointer-events: none;
}

/* Premium Image/Video Hover Transitions */
/* If there is a secondary hover image: */
.product-card:hover .p-image-wrapper.has-hover-image img.primary-img {
    opacity: 0;
    transform: scale(0.95);
}

/* For video hover, keep primary image visible underneath with blur and zoom for a premium look! */
.product-card:hover .p-image-wrapper.has-hover-video img.primary-img {
    opacity: 0.8;
    filter: blur(12px);
    transform: scale(1.08);
}

.product-card:hover .p-image-wrapper.has-hover-image img.secondary-img {
    opacity: 1;
    transform: scale(1);
    z-index: 3;
}

.product-card:hover .p-image-wrapper.has-hover-video .secondary-video-container {
    opacity: 1;
    z-index: 3;
}

/* If there is only a single image (no hover image and no hover video), apply a premium smooth zoom: */
.product-card:hover .p-image-wrapper:not(.has-hover-image):not(.has-hover-video) img.primary-img {
    transform: scale(1.08);
}

.p-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background-color: #f34f4f;
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 4px;
    z-index: 10;
}

.p-cargo-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background-color: #fff;
    color: #00b894;
    border: 1px solid #e0f2f1;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 5px;
}

.p-cargo-badge i {
    color: #00b894;
    font-size: 10px;
}

.p-brand-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    margin-bottom: 5px;
}

.p-brand {
    font-weight: 700;
    font-size: 11px;
    color: #919191;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.p-name {
    font-size: 15px;
    font-weight: 600;
    color: #2d3436;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0 0 5px 0;
    height: 42px;
    line-height: 1.4;
}

.p-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.p-stars {
    color: #f5a623;
    font-size: 11px;
}

.p-rating-count {
    color: var(--text-light);
    font-size: 11px;
}

.p-price-box {
    margin-top: auto;
}

.p-price-old {
    color: #b2bec3;
    font-size: 12px;
    text-decoration: line-through;
    font-weight: 500;
    display: flex;
    align-items: baseline;
    gap: 3px;
}

.p-price-current {
    color: var(--hb-orange);
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.currency {
    font-size: 16px;
    font-weight: 700;
    color: inherit;
}

.p-add-cart {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--hb-orange);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-weight: 700;
    margin-top: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    box-shadow: 0 4px 15px rgba(255, 96, 0, 0.2);
}

.p-add-cart.notify-me {
    background-color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-card:hover .p-add-cart.notify-me {
    background-color: #000 !important;
}

.product-card:hover .p-add-cart {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    background-color: var(--hb-orange-hover);
}

.p-stock-status {
    color: #00b894;
    font-size: 13px;
    font-weight: 600;
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* List View Styles (Horizontal) */
.product-grid.list-view {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
}

.product-grid.list-view .product-card {
    flex-direction: row !important;
    padding: 12px !important;
    align-items: center !important;
    gap: 5px !important;
    height: auto !important;
    border-radius: 15px !important;
}

.product-grid.list-view .p-image-wrapper {
    width: 200px !important;
    height: 200px !important;
    min-width: 200px !important;
    margin-bottom: 0 !important;
    border-radius: 10px !important;
    margin-left: 10px !important;
}

.product-grid.list-view .p-card-body {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 3px !important;
}

.product-grid.list-view .p-brand-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    margin-top: 0 !important;
}

.product-grid.list-view .p-name {
    height: auto !important;
    margin-bottom: 5px !important;
    font-size: 16px !important;
}

.product-grid.list-view .p-price-current {
    color: var(--hb-orange) !important;
}

.product-grid.list-view .p-add-cart {
    margin-top: 0 !important;
    width: auto !important;
    min-width: 180px !important;
    padding: 12px 25px !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    margin-left: auto !important;
    background-color: var(--hb-orange) !important;
}

.product-grid.list-view .p-add-cart.notify-me {
    background-color: #333 !important;
}

.product-grid.list-view .wishlist-btn {
    display: none !important;
}

@media (max-width: 768px) {
    .product-grid.list-view .product-card {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .product-grid.list-view .p-add-cart {
        width: 100% !important;
        margin-left: 0 !important;
    }
}

/* ==========================================================================
   Shop/Products Page Layout
   ========================================================================== */
.shop-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 20px;
    margin-top: 20px;
}

.shop-sidebar {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    height: fit-content;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.filter-list li {
    margin-bottom: 10px;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-dark);
    cursor: pointer;
}

.filter-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--hb-orange);
    cursor: pointer;
}

.filter-count {
    color: var(--text-light);
    font-size: 12px;
    margin-left: auto;
}

/* ==========================================================================
   About Page (Hakkımızda)
   ========================================================================== */
.about-page {
    padding: 60px 0 80px;
}

.about-hero {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}

.about-eyebrow {
    color: var(--hb-orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
}

.about-title {
    font-size: clamp(26px, 5vw, 42px);
    font-weight: 900;
    margin: 20px 0 30px;
    color: var(--text-dark);
    line-height: 1.2;
}

.about-lead {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
    align-items: center;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: block;
}

.about-features-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.about-feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(255, 96, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hb-orange);
    font-size: 20px;
}

.about-feature-body h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 5px;
    color: var(--text-dark);
}

.about-feature-body p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .about-split {
        gap: 32px;
        margin-top: 48px;
    }

    .about-features-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .about-page {
        padding: 0 0 48px;
    }

    .about-hero {
        margin: 0 0 32px;
        text-align: left;
    }

    .about-eyebrow {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .about-title {
        margin: 0 0 16px;
        font-size: clamp(24px, 5vw, 36px);
    }

    .about-lead {
        font-size: 16px;
        line-height: 1.7;
    }

    .about-split {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 32px;
    }

    .about-image {
        border-radius: 16px;
        max-height: 280px;
        object-fit: cover;
    }

    .about-features-title {
        font-size: 22px;
        margin-bottom: 16px;
        text-align: center;
    }

    .about-feature-list {
        gap: 16px;
    }

    .about-feature {
        background: #fff;
        border: 1px solid #f0f0f0;
        border-radius: 14px;
        padding: 16px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    }

    .about-feature-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .about-feature-body h3 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .about-page {
        padding: 0 0 40px;
    }

    .about-hero {
        margin-bottom: 28px;
    }

    .about-image {
        max-height: 220px;
        border-radius: 12px;
    }

    .about-feature {
        padding: 14px;
        gap: 12px;
    }
}

/* ==========================================================================
   FAQ Page (SSS)
   ========================================================================== */
.faq-page {
    padding: 60px 0 70px;
}

.faq-hero {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}

.faq-title {
    font-size: clamp(26px, 5vw, 36px);
    font-weight: 900;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
}

.faq-lead {
    color: var(--text-light);
    margin: 15px 0 0;
    font-size: 16px;
    line-height: 1.6;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 25px;
}

.faq-question {
    margin: 0 0 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-dark);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}

.faq-question i {
    color: var(--hb-orange);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-answer {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
    padding-left: 30px;
}

@media (max-width: 768px) {
    .faq-page {
        padding: 0 0 48px;
    }

    .faq-hero {
        margin: 0 0 32px;
        text-align: left;
    }

    .faq-lead {
        font-size: 15px;
        margin-top: 12px;
    }

    .faq-list {
        gap: 12px;
    }

    .faq-item {
        padding: 18px 16px;
        border-radius: 14px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    }

    .faq-question {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .faq-question i {
        font-size: 18px;
    }

    .faq-answer {
        font-size: 14px;
        line-height: 1.7;
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .faq-page {
        padding: 0 0 40px;
    }

    .faq-hero {
        margin-bottom: 28px;
    }

    .faq-item {
        padding: 16px 14px;
    }

    .faq-question {
        font-size: 15px;
    }
}

/* ==========================================================================
   Contact Page (İletişim)
   ========================================================================== */
.contact-page {
    padding: 60px 0 70px;
    text-transform: none;
    font-variant-ligatures: normal;
}

.contact-page h1,
.contact-page h3,
.contact-page h4,
.contact-page label,
.contact-page p,
.contact-page a,
.contact-page input,
.contact-page textarea,
.contact-page button {
    text-transform: none;
    letter-spacing: normal;
}

.contact-hero {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}

.contact-title {
    font-size: clamp(26px, 5vw, 36px);
    font-weight: 900;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
}

.contact-lead {
    color: var(--text-light);
    margin: 15px 0 0;
    font-size: 16px;
    line-height: 1.6;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid #eee;
}

.contact-card-icon {
    color: var(--hb-orange);
    font-size: 24px;
    margin-bottom: 15px;
}

.contact-card h4 {
    margin: 0 0 10px;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 700;
}

.contact-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.contact-phone {
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 6px;
}

.contact-phone a {
    color: inherit;
    text-decoration: none;
}

.contact-phone a:hover {
    color: var(--hb-orange);
}

.contact-hours {
    color: var(--text-light);
    font-size: 13px;
    margin-top: 8px !important;
}

.contact-email-link {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}

.contact-email-link:hover {
    color: var(--hb-orange);
}

.contact-email-display {
    display: block;
    margin-top: 6px;
    font-size: 13px;
}

.contact-form-wrap {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid #eee;
}

.contact-form-title {
    margin: 0 0 30px;
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form-message {
    margin-bottom: 30px;
}

.contact-submit {
    width: 100%;
    justify-content: center;
    padding: 15px;
    gap: 8px;
}

.contact-map {
    margin-top: 60px;
}

.contact-map-title {
    margin: 0 0 25px;
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
}

.contact-map-frame {
    background: #fff;
    padding: 10px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid #eee;
    overflow: hidden;
}

.contact-map-frame iframe {
    border: 0;
    border-radius: 12px;
    display: block;
    width: 100%;
    height: 450px;
}

@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-info {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 0 0 48px;
    }

    .contact-hero {
        margin: 0 0 32px;
        text-align: left;
    }

    .contact-lead {
        font-size: 15px;
        margin-top: 12px;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .contact-card {
        padding: 20px;
        border-radius: 16px;
    }

    .contact-card-icon {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .contact-form-wrap {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .contact-form-title {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }

    .contact-form-row .form-group {
        margin-bottom: 16px;
    }

    .contact-form-message {
        margin-bottom: 24px;
    }

    .contact-submit {
        padding: 14px 20px;
        font-size: 15px;
    }

    .contact-map {
        margin-top: 40px;
    }

    .contact-map-title {
        font-size: 20px;
        margin-bottom: 16px;
        text-align: left;
    }

    .contact-map-frame {
        padding: 8px;
        border-radius: 16px;
    }

    .contact-map-frame iframe {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .contact-page {
        padding: 0 0 40px;
    }

    .contact-hero {
        margin-bottom: 28px;
    }

    .contact-card {
        padding: 16px;
    }

    .contact-form-wrap {
        padding: 20px 16px;
    }

    .contact-map-frame iframe {
        height: 240px;
    }
}

/* ==========================================================================
   Blog (liste + yazı)
   ========================================================================== */
.blog-page {
    padding: 50px 0 70px;
}

.blog-page.blog-article {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.blog-hero {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}

.blog-hero-title {
    font-size: clamp(26px, 5vw, 36px);
    font-weight: 900;
    color: var(--text-dark);
    margin: 0 0 12px;
    line-height: 1.2;
}

.blog-hero-lead {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.blog-article-header {
    margin-bottom: 4px;
}

.blog-back {
    margin: 0 0 12px;
    padding: 0;
}

.blog-back a {
    color: var(--hb-orange);
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.blog-back a:hover {
    text-decoration: underline;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.blog-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.blog-card:hover {
    border-color: rgba(255, 96, 0, 0.25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.blog-card-body {
    padding: 24px;
}

.blog-card-title {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 10px;
    line-height: 1.3;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
}

.blog-card-title a:hover {
    color: var(--hb-orange);
}

.blog-card-excerpt {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 16px;
}

.blog-card-link {
    color: var(--hb-orange);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
}

.blog-card-link:hover {
    text-decoration: underline;
}

.blog-post {
    margin: 0;
    padding: 0;
}

.blog-post-title {
    font-size: clamp(24px, 5vw, 34px);
    font-weight: 900;
    margin: 0 0 20px;
    color: var(--text-dark);
    line-height: 1.25;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.blog-article-header .blog-post-title {
    margin-bottom: 20px;
}

.blog-post h2 {
    font-size: 22px;
    font-weight: 800;
    margin: 28px 0 12px;
    color: var(--text-dark);
    line-height: 1.3;
}

.blog-post p {
    line-height: 1.8;
    color: var(--text-light);
    margin: 0 0 18px;
    font-size: 16px;
}

.blog-post p:last-of-type {
    margin-bottom: 24px;
}

.blog-post-cta {
    display: inline-flex;
    width: auto;
    max-width: 100%;
}

@media (max-width: 768px) {
    .blog-page {
        padding-bottom: 48px;
    }

    .blog-hero {
        margin-bottom: 32px;
        text-align: left;
    }

    .blog-hero-lead {
        font-size: 15px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .blog-card-body {
        padding: 20px;
    }

    .blog-card-title {
        font-size: 18px;
    }

    .blog-back {
        margin-bottom: 16px;
    }

    .blog-post-title {
        margin-bottom: 16px;
    }

    .blog-post h2 {
        font-size: 19px;
        margin: 24px 0 10px;
    }

    .blog-post p {
        font-size: 15px;
        line-height: 1.75;
        margin-bottom: 16px;
    }

    .blog-post p:last-of-type {
        margin-bottom: 20px;
    }

    .blog-post-cta {
        display: flex;
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .blog-page {
        padding-bottom: 40px;
    }

    .blog-card-body {
        padding: 16px;
    }

    .blog-post h2 {
        font-size: 18px;
    }
}

/* ==========================================================================
   Footer (Marketplace Style)
   ========================================================================== */
/* Newsletter Section */
.newsletter-section {
    position: relative;
    z-index: 10;
    margin-top: 100px;
    margin-bottom: -140px;
}

.newsletter-card {
    background: #fff;
    padding: 20px 40px;
    border-radius: 100px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #f0f0f0;
}

.newsletter-title {
    font-size: 24px;
    font-weight: 800;
    color: #000;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.newsletter-text {
    color: #636e72;
    font-size: 14px;
    margin-bottom: 25px;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input-wrapper {
    display: flex;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 50px;
    padding: 8px;
    transition: all 0.3s ease;
}

.newsletter-input-wrapper:focus-within {
    border-color: var(--hb-orange);
    box-shadow: 0 0 0 4px rgba(255, 96, 0, 0.1);
    background: #fff;
}

.newsletter-input-group {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.newsletter-input-group i {
    color: #b2bec3;
    font-size: 18px;
    margin-right: 15px;
}

.newsletter-input-group input {
    width: 100%;
    border: none;
    background: transparent;
    padding: 12px 0;
    font-size: 15px;
    outline: none;
    font-family: var(--font-primary);
}

.newsletter-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 0 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: var(--hb-orange);
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 40px 20px;
        border-radius: 30px;
        margin: 0 15px;
    }

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

    .newsletter-input-wrapper {
        flex-direction: column;
        border-radius: 15px;
        background: transparent;
        border: none;
        padding: 0;
        gap: 15px;
    }

    .newsletter-input-group {
        background: #fdfdfd;
        border: 1px solid #eee;
        border-radius: 10px;
        padding: 5px 15px;
    }

    .newsletter-btn {
        padding: 15px;
        border-radius: 10px;
    }

    .newsletter-section {
        margin-bottom: -50px;
    }
}

.footer {
    background: #fdfdfd;
    border-top: 1px solid #eee;
    padding-top: 100px;
    margin-top: 80px;
    color: var(--text-dark);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-dark);
}

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

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

.footer-col ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
}

.footer-col ul li a:hover {
    color: var(--hb-orange);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: #f1f2f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    text-decoration: none;
    transition: 0.3s;
}

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

.footer-bottom {
    background: #fff;
    padding: 30px 0;
    border-top: 1px solid #eee;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
    font-size: 13px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

.payment-icons {
    display: flex;
    gap: 15px;
    color: var(--text-light);
}

.payment-icons i {
    font-size: 24px;
}

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

.footer-col ul li a {
    color: var(--text-dark);
    font-size: 13px;
}

.footer-col ul li a:hover {
    color: var(--hb-orange);
}

.footer-bottom {
    background-color: var(--bg-color);
    padding: 20px 0;
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
}

/* View Controls */
.view-btn,
.density-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    border-radius: 6px;
    color: #636e72;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    transition: 0.2s;
}

.view-btn.active,
.density-btn.active {
    background: #2d3436;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.view-btn:hover:not(.active),
.density-btn:hover:not(.active) {
    background: #e5e6ed;
}

/* Grid System */
.product-grid {
    display: grid;
    gap: 20px;
    transition: all 0.3s ease;
}

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

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

.product-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Final List View Refinement (Screenshot Style) */
.product-grid.list-view {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
}

.product-grid.list-view .product-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    padding: 20px !important;
    height: auto !important;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    position: relative;
}

.product-grid.list-view .p-image-wrapper {
    width: 120px !important;
    height: 120px !important;
    margin-right: 25px;
    border: none !important;
}

.product-grid.list-view .p-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.product-grid.list-view .p-name {
    padding: 0;
    font-size: 16px;
    margin: 0 0 10px 0;
    color: #2d3436;
    line-height: 1.4;
}

.product-grid.list-view .p-brand {
    font-size: 11px;
    text-transform: uppercase;
    color: #b2bec3;
    display: block;
    margin-bottom: 5px;
}

.product-grid.list-view .p-price-box {
    flex-direction: row;
    gap: 10px;
    align-items: baseline;
    justify-content: flex-start;
    padding: 0;
    background: transparent;
    border: none;
    margin-top: 5px;
}

.product-grid.list-view .p-price-current {
    font-size: 20px;
    margin-bottom: 0;
    color: #2d3436;
}

.product-grid.list-view .p-card-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 20px;
}

.product-grid.list-view .p-add-cart {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background: var(--hb-orange) !important;
    color: #fff !important;
    padding: 12px 25px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    width: auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    box-shadow: 0 4px 15px rgba(255, 96, 0, 0.2) !important;
}

.product-grid.list-view .p-badge,
.product-grid.list-view .p-cargo-badge {
    display: none;
    /* Hide badges in list view for super clean look like screenshot */
}

.product-grid.list-view .p-rating {
    padding: 0;
    margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .shop-layout {
        grid-template-columns: 200px 1fr;
    }
}

@media (max-width: 768px) {
    .header-main {
        flex-wrap: wrap;
    }

    .search-wrapper {
        order: 3;
        max-width: 100%;
        margin-top: 10px;
    }

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

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

    .shop-sidebar {
        display: none;
    }

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

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

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

.pagination li a,
.pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 15px;
    border: 1.5px solid #eee;
    border-radius: 10px;
    color: #2d3436;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    background: #fff;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.pagination li a:hover {
    border-color: var(--hb-orange);
    color: var(--hb-orange);
    background: #fff3ed;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 96, 0, 0.15);
}

.pagination li.active span {
    background: var(--hb-orange);
    color: #fff;
    border-color: var(--hb-orange);
    box-shadow: 0 4px 12px rgba(255, 96, 0, 0.25);
    transform: translateY(-2px);
}

.pagination li:first-child a,
.pagination li:last-child a {
    font-weight: 600;
    font-size: 13px;
    color: #636e72;
}

/* Form Styles for Pages */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

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

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    transition: all 0.3s;
    outline: none;
}

.form-control:focus {
    border-color: var(--hb-orange);
    box-shadow: 0 0 0 3px rgba(255, 96, 0, 0.1);
}

.form-control::placeholder {
    color: #b2bec3;
}

/* Global Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--hb-orange);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 96, 0, 0.2);
}

.btn-primary:hover {
    background: #e55600;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 96, 0, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-whatsapp {
    background-color: #25d366;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:active {
    transform: translateY(0);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
    background-color: #128c7e;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--hb-orange);
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9998;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    border: none;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    background-color: #e55600;
    color: #FFF;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

/* Large Screens (1600px already handled by max-width) */

@media (max-width: 1640px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .nav-list li a {
        padding: 12px 10px;
        font-size: 13px;
    }
}

@media (max-width: 992px) {
    .header-main {
        gap: 15px;
    }

    .search-wrapper {
        max-width: none;
    }

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

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

    .shop-sidebar {
        display: none;
    }

    /* Hide sidebar by default on tablet/mobile */
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .header-main {
        flex-wrap: wrap;
        padding: 10px 0;
    }

    .logo {
        order: 1;
    }

    .header-actions {
        order: 2;
        gap: 5px;
    }

    .search-wrapper {
        order: 3;
        width: 100%;
        margin-top: 10px;
    }

    .action-item span {
        display: none;
    }

    .action-item i {
        font-size: 24px;
        margin: 0;
    }

    .nav-menu {
        display: none;
    }

    /* Mobile menu needed */

    .product-grid:not(.cols-2):not(.cols-3):not(.cols-4) {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .section-title {
        font-size: 20px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-logo-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .product-grid:not(.cols-2):not(.cols-4) {
        grid-template-columns: repeat(2, 1fr);
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .logo span {
        font-size: 13px !important;
    }
}

/* Mobilde statik sayfa üst boşluğu — .container padding kısaltmasından sonra */
@media (max-width: 768px) {
    .about-page,
    .contact-page,
    .faq-page,
    .blog-page.blog-index,
    .blog-page.blog-article {
        padding-top: 44px;
    }
}

@media (max-width: 480px) {
    .about-page,
    .contact-page,
    .faq-page,
    .blog-page.blog-index,
    .blog-page.blog-article {
        padding-top: 36px;
    }
}

/* Lightbox Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 95%;
    max-height: 95%;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    transition: 0.2s;
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--hb-orange);
    transform: rotate(90deg);
}

/* 404 Page Styles */
.error-404-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration-404 i {
    font-size: 80px;
    color: #eee;
    animation: float 3s ease-in-out infinite;
}

.error-404-title {
    font-size: 120px;
    font-weight: 800;
    color: var(--hb-orange);
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -5px;
}

.btn-404-home {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 0 10px 20px rgba(255, 96, 0, 0.2);
    transition: all 0.3s ease;
    background-color: var(--hb-orange);
    color: #fff !important;
}

.btn-404-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 96, 0, 0.3);
    color: #fff !important;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* 60/40 Hero Section */
.hero-section {
    margin-top: 25px;
    margin-bottom: 40px;
}

.hero-grid {
    display: flex;
    gap: 20px;
    min-height: 560px;
}

.hero-main {
    flex: 0 0 60%;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 560px;
    background: #f0f0f0;
    border: none;
}

.hero-side {
    flex: 0 0 calc(40% - 20px);
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 560px;
}

/* Swiper başlamadan ilk slayt LCP olarak görünsün */
.main-slider:not(.swiper-initialized) .swiper-slide:not(:first-child) {
    display: none !important;
}

.main-slider:not(.swiper-initialized) .swiper-slide:first-child {
    opacity: 1 !important;
    visibility: visible !important;
}

.main-slider.swiper-fade:not(.swiper-initialized) .swiper-slide:first-child {
    opacity: 1 !important;
}

/* Main Slider */
.main-slider {
    height: 100%;
    width: 100%;
    z-index: 1;
}

.main-slider .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.main-slider .swiper-wrapper {
    border: none !important;
}

.main-slider img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    transition: transform 0.8s ease;
    display: block;
    border: none !important;
    outline: none !important;
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 60px;
    color: #fff;
    z-index: 2;
}

.slide-badge {
    display: inline-block;
    background: var(--hb-orange);
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 11px;
    margin-bottom: 15px;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slide-content h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.slide-content p {
    font-size: 18px;
    max-width: 450px;
    margin-bottom: 30px;
    opacity: 0.85;
    line-height: 1.5;
}

.slide-content .btn {
    width: auto !important;
    min-width: 180px;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.slide-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 96, 0, 0.4);
}

/* Side Banners */
.side-banner {
    flex: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    border: none;
    background: #f0f0f0;
}

.side-banner img,
.side-banner-img {
    width: 100% !important;
    height: 100% !important;
    min-height: 180px;
    object-fit: cover !important;
    object-position: center top !important;
    transition: transform 0.5s ease;
    display: block;
    border: none !important;
    outline: none !important;
    background: transparent;
}

.side-banner:hover img {
    transform: scale(1.05);
}

.side-banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: #fff;
}

.side-banner-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}

.side-banner-content p {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 15px;
}

.side-banner-content a {
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.side-banner-content a:hover {
    text-decoration: underline;
}

/* Swiper Navigation Custom */
.main-slider:not(.swiper-initialized) .swiper-button-prev,
.main-slider:not(.swiper-initialized) .swiper-button-next {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.main-slider .swiper-button-next,
.main-slider .swiper-button-prev {
    color: #fff !important;
    background: rgba(0, 0, 0, 0.35);
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
    border: none !important;
    outline: none !important;
    backdrop-filter: blur(5px);
    transition: opacity 0.2s ease, background 0.2s ease;
}

.main-slider.swiper-initialized .swiper-button-next,
.main-slider.swiper-initialized .swiper-button-prev {
    opacity: 1;
    visibility: visible;
}

.main-slider .swiper-button-next:after,
.main-slider .swiper-button-prev:after {
    font-size: 18px !important;
    font-weight: 900;
}

.swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--hb-orange) !important;
    opacity: 1;
}

/* Responsive Hero */
@media (max-width: 1024px) {
    .hero-grid {
        flex-direction: column;
        min-height: auto;
    }

    .hero-main {
        flex: 0 0 100%;
        height: 450px;
    }

    .hero-side {
        flex: 0 0 100%;
        height: auto;
        gap: 15px;
    }

    .side-banner {
        height: 220px;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .hero-main {
        height: 320px;
    }

    /* Mobilde slider okları gizli (pagination yeterli) */
    .main-slider .swiper-button-prev,
    .main-slider .swiper-button-next {
        display: none !important;
    }

    .main-slider .swiper-pagination {
        bottom: 12px !important;
    }

    .main-slider .swiper-pagination-bullet {
        width: 8px !important;
        height: 8px !important;
        opacity: 0.85;
    }

    .slide-content {
        padding: 30px;
        text-align: center;
        align-items: center;
        background: rgba(0, 0, 0, 0.4);
    }

    .slide-content h2 {
        font-size: 28px;
    }

    .slide-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .slide-content .btn {
        min-width: 150px;
        padding: 10px 25px;
    }

    .side-banner {
        height: 200px;
        min-height: 200px;
    }

    .side-banner img,
    .side-banner-img {
        min-height: 200px;
    }
}

/* ==========================================================================
   Product Image Hover Carousel Styles
   ========================================================================== */
.p-image-wrapper.has-hover-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
}

/* The link wrapper fills the entire image area */
.p-image-wrapper.has-hover-carousel .p-image-link {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

/* All carousel images stack absolutely */
.carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 1;
    pointer-events: none;
}

/* First image visible by default */
.carousel-img[data-index="0"] {
    opacity: 1;
    z-index: 2;
}

/* JS sets data-active on the link — targeted image becomes visible */
.p-image-link[data-active="0"] .carousel-img[data-index="0"] { opacity: 1; z-index: 3; }
.p-image-link[data-active="0"] .carousel-img:not([data-index="0"]) { opacity: 0; z-index: 1; }
.p-image-link[data-active="1"] .carousel-img[data-index="1"] { opacity: 1; z-index: 3; }
.p-image-link[data-active="1"] .carousel-img:not([data-index="1"]) { opacity: 0; z-index: 1; }
.p-image-link[data-active="2"] .carousel-img[data-index="2"] { opacity: 1; z-index: 3; }
.p-image-link[data-active="2"] .carousel-img:not([data-index="2"]) { opacity: 0; z-index: 1; }

/* Invisible hover trigger zones */
.carousel-hover-area {
    position: absolute;
    top: 0;
    height: 100%;
    z-index: 10;
    cursor: pointer;
    background: transparent;
}

/* Dots Container */
.p-image-carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 12px;
    padding: 5px 8px;
    display: inline-flex;
    gap: 5px;
    z-index: 20;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
    white-space: nowrap;
}

/* Show dots on card hover */
.product-card:hover .p-image-carousel-dots,
.p-image-wrapper:hover .p-image-carousel-dots {
    opacity: 1;
}

.p-image-carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: background 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

/* Active dot — set by JS via .active class */
.p-image-carousel-dot.active {
    background: #ffffff;
    transform: scale(1.3);
}

/* Default first dot active */
.p-image-carousel-dot[data-index="0"] {
    background: #ffffff;
    transform: scale(1.3);
}