/*
Theme Name: Oxofix
Theme URI: https://oxofix.com
Description: Oxofix yedek parça katalog sitesi için özel WordPress teması
Version: 1.0.0
Author: Oxofix
Text Domain: oxofix
*/

/* ============================================================
   CSS Custom Properties
   ============================================================ */
:root {
    --color-primary:      #6BBF23;
    --color-primary-dark: #5AA61E;
    --color-text:         #1a1a1a;
    --color-text-light:   #666666;
    --color-bg:           #ffffff;
    --color-footer-bg:    #1a1a1a;
    --color-footer-text:  #ffffff;

    --font-primary:       'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

    --container-width:    1280px;
    --header-height:      80px;
    --topbar-height:      40px;
}

/* ============================================================
   Modern CSS Reset
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

/* ============================================================
   Base Typography
   ============================================================ */
body {
    font-family:      var(--font-primary);
    color:            var(--color-text);
    background-color: var(--color-bg);
    font-size:        16px;
    line-height:      1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* ============================================================
   Container Utility
   ============================================================ */
.container {
    max-width:  var(--container-width);
    margin:     0 auto;
    padding:    0 20px;
    width:      100%;
}

/* ============================================================
   Button Styles
   ============================================================ */
.btn {
    padding:         12px 28px;
    border-radius:   6px;
    font-weight:     600;
    font-size:       15px;
    transition:      all 0.3s ease;
    cursor:          pointer;
    display:         inline-block;
    border:          2px solid transparent;
    text-align:      center;
    line-height:     1;
    letter-spacing:  0.02em;
}

.btn-primary {
    background-color: var(--color-primary);
    color:            #ffffff;
    border-color:     var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color:     var(--color-primary-dark);
    color:            #ffffff;
    transform:        translateY(-1px);
    box-shadow:       0 4px 12px rgba(107, 191, 35, 0.35);
}

.btn-outline {
    background-color: transparent;
    color:            var(--color-primary);
    border-color:     var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color:            #ffffff;
}

/* ============================================================
   Top Bar
   ============================================================ */
.top-bar {
    background-color: #1a1a1a;
    color:            #ffffff;
    font-size:        13px;
    height:           var(--topbar-height);
    display:          flex;
    align-items:      center;
}

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

.top-bar__left {
    display:     flex;
    align-items: center;
    gap:         24px;
}

.top-bar__right {
    display:     flex;
    align-items: center;
    gap:         14px;
}

.top-bar__item {
    display:     flex;
    align-items: center;
    gap:         8px;
}

.top-bar__item a {
    color:           #ffffff;
    text-decoration: none;
    transition:      color 0.3s ease;
    font-size:       13px;
    font-weight:     400;
}

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

.top-bar__icon {
    display:     flex;
    align-items: center;
    flex-shrink: 0;
    color:       var(--color-primary);
}

.top-bar__social {
    display:         flex;
    align-items:     center;
    color:           rgba(255, 255, 255, 0.7);
    transition:      color 0.3s ease, transform 0.3s ease;
}

.top-bar__social:hover {
    color:     var(--color-primary);
    transform: translateY(-1px);
}

/* ============================================================
   Site Header — Sticky
   ============================================================ */
.site-header {
    background-color: #ffffff;
    box-shadow:       0 2px 10px rgba(0, 0, 0, 0.08);
    position:         sticky;
    top:              0;
    z-index:          1000;
}

.site-header__container {
    display:         flex;
    justify-content: space-between;
    align-items:     center;
    height:          var(--header-height);
}

/* Logo */
.site-logo {
    display:     flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo img {
    max-height: 50px;
    width:      auto;
}

.site-logo__text {
    font-size:       28px;
    font-weight:     800;
    color:           var(--color-primary);
    text-decoration: none;
    letter-spacing:  -0.03em;
    line-height:     1;
}

.site-logo__text:hover {
    color: var(--color-primary-dark);
}

/* ============================================================
   Main Navigation
   ============================================================ */
.main-nav {
    display:     flex;
    align-items: center;
}

.main-nav__list {
    display:    flex;
    list-style: none;
    gap:        32px;
    margin:     0;
    padding:    0;
}

.main-nav__list a {
    color:           var(--color-text);
    font-weight:     500;
    font-size:       15px;
    text-decoration: none;
    position:        relative;
    transition:      color 0.3s ease;
    padding-bottom:  4px;
}

.main-nav__list a::after {
    content:          '';
    position:         absolute;
    bottom:           0;
    left:             0;
    width:            0;
    height:           2px;
    background-color: var(--color-primary);
    transition:       width 0.3s ease;
}

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

.main-nav__list a:hover::after {
    width: 100%;
}

.main-nav__list .current-menu-item > a {
    color: var(--color-primary);
}

.main-nav__list .current-menu-item > a::after {
    width: 100%;
}

/* ============================================================
   Hamburger Menu Icon
   ============================================================ */
.hamburger {
    display:          none;
    flex-direction:   column;
    justify-content:  center;
    align-items:      center;
    gap:              5px;
    cursor:           pointer;
    background:       rgba(0, 0, 0, 0.15);
    border:           none;
    padding:          10px;
    margin-right:     -8px;
    border-radius:    6px;
    box-shadow:       0 2px 8px rgba(0, 0, 0, 0.25);
}

.hamburger span {
    display:          block;
    width:            24px;
    height:           2px;
    background-color: var(--color-text);
    border-radius:    2px;
    transition:       transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity:   0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   Mobile Navigation — Slide-in Panel
   ============================================================ */
.mobile-nav__overlay {
    position:         fixed;
    inset:            0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index:          1999;
    display:          none;
    opacity:          0;
    transition:       opacity 0.3s ease;
}

.mobile-nav__overlay.active {
    display: block;
    opacity: 1;
}

.mobile-nav {
    position:         fixed;
    top:              0;
    right:            -100%;
    width:            300px;
    height:           100vh;
    background-color: #ffffff;
    box-shadow:       -4px 0 20px rgba(0, 0, 0, 0.15);
    z-index:          2000;
    transition:       right 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y:       auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav__header {
    display:          flex;
    justify-content:  space-between;
    align-items:      center;
    padding:          20px 24px;
    border-bottom:    1px solid #f0f0f0;
}

.mobile-nav__close {
    background:    none;
    border:        none;
    font-size:     24px;
    cursor:        pointer;
    color:         var(--color-text-light);
    line-height:   1;
    padding:       4px 8px;
    border-radius: 4px;
    transition:    color 0.3s ease, background-color 0.3s ease;
}

.mobile-nav__close:hover {
    color:            var(--color-text);
    background-color: #f5f5f5;
}

.mobile-nav__list {
    list-style: none;
    padding:    0;
    margin:     0;
}

.mobile-nav__list li a {
    display:          block;
    padding:          16px 24px;
    border-bottom:    1px solid #f0f0f0;
    font-size:        16px;
    font-weight:      500;
    color:            var(--color-text);
    text-decoration:  none;
    transition:       color 0.3s ease, background-color 0.3s ease, padding-left 0.3s ease;
}

.mobile-nav__list li a:hover {
    color:            var(--color-primary);
    background-color: #f9f9f9;
    padding-left:     32px;
}

.mobile-nav__list .current-menu-item > a {
    color:            var(--color-primary);
    border-left:      3px solid var(--color-primary);
}

/* ============================================================
   Main Content Area
   ============================================================ */
.site-main {
    min-height: 60vh;
    padding:    60px 0;
}

/* ============================================================
   Page Header
   ============================================================ */
.page-header {
    background-color: #f8f8f8;
    padding:          40px 0;
    margin-bottom:    40px;
    border-bottom:    1px solid #eee;
}

.page-header h1 {
    font-size: 32px;
    color:     var(--color-text);
}

/* ============================================================
   Product Filters
   ============================================================ */
.product-filters {
    display:       flex;
    gap:           12px;
    flex-wrap:     wrap;
    margin-bottom: 32px;
}

.product-filters a {
    padding:     8px 20px;
    border:      1px solid #ddd;
    border-radius: 4px;
    color:       var(--color-text);
    font-size:   14px;
    font-weight: 500;
    transition:  all 0.3s ease;
}

.product-filters a:hover,
.product-filters a.is-active {
    background-color: var(--color-primary);
    color:            #ffffff;
    border-color:     var(--color-primary);
}

/* ============================================================
   Product Grid
   ============================================================ */
.product-grid {
    display:               grid;
    grid-template-columns: repeat(4, 1fr);
    gap:                   24px;
    margin-bottom:         48px;
}

.product-card {
    background:    #ffffff;
    border:        1px solid #eee;
    border-radius: 8px;
    overflow:      hidden;
    transition:    box-shadow 0.3s ease, transform 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform:  translateY(-2px);
}

.product-card__link {
    text-decoration: none;
    color:           inherit;
    display:         block;
}

.product-card__image {
    aspect-ratio: 1;
    background:   #f5f5f5;
    overflow:     hidden;
}

.product-card__image img {
    width:      100%;
    height:     100%;
    object-fit: cover;
}

.product-card__placeholder {
    width:      100%;
    height:     100%;
    background: #f0f0f0;
}

.product-card__info {
    padding: 16px;
}

.product-card__title {
    font-size:     16px;
    font-weight:   600;
    color:         var(--color-text);
    margin-bottom: 4px;
}

.product-card__oem {
    font-size: 13px;
    color:     var(--color-text-light);
}

/* ============================================================
   Breadcrumb
   ============================================================ */
.breadcrumb {
    padding:       16px 0;
    font-size:     14px;
    color:         var(--color-text-light);
    background:    #f8f8f8;
    border-bottom: 1px solid #eee;
}

.breadcrumb a {
    color: var(--color-text-light);
}

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

.breadcrumb__sep {
    margin: 0 8px;
    color:  #ccc;
}

.breadcrumb__current {
    color:       var(--color-text);
    font-weight: 500;
}

/* ============================================================
   Search Form
   ============================================================ */
.search-form__wrapper {
    display:    flex;
    max-width:  700px;
    width:      100%;
    margin:     0 auto;
}

.search-form__input {
    flex:          1;
    padding:       14px 20px;
    border:        2px solid #eee;
    border-right:  none;
    border-radius: 6px 0 0 6px;
    font-size:     15px;
    font-family:   var(--font-primary);
    outline:       none;
    transition:    border-color 0.3s ease;
    color:         var(--color-text);
}

.search-form__input:focus {
    border-color: var(--color-primary);
}

.search-form__submit {
    border-radius: 0 6px 6px 0;
    display:       flex;
    align-items:   center;
    gap:           8px;
    white-space:   nowrap;
    border:        2px solid var(--color-primary);
}

.search-bar {
    margin-top:    32px;
    margin-bottom: 32px;
    text-align:    center;
}

.search-form .search-form__label {
    position: absolute;
    width:    1px;
    height:   1px;
    padding:  0;
    margin:   -1px;
    overflow: hidden;
    clip:     rect(0, 0, 0, 0);
    border:   0;
}

.search-results__query {
    font-size:  16px;
    color:      var(--color-text-light);
    margin-top: 8px;
}

/* ============================================================
   Product Detail
   ============================================================ */
.product-detail {
    padding: 40px 0;
}

.product-detail__grid {
    display:               grid;
    grid-template-columns: 1fr 1fr;
    gap:                   48px;
    align-items:           start;
}

.product-detail__main-image {
    border-radius: 8px;
    overflow:      hidden;
    background:    #f5f5f5;
    aspect-ratio:  1;
}

.product-detail__main-image img {
    width:      100%;
    height:     100%;
    object-fit: contain;
}

.product-detail__placeholder {
    width:      100%;
    height:     100%;
    background: #f0f0f0;
}

.product-detail__thumbs {
    display:    flex;
    gap:        8px;
    margin-top: 12px;
    flex-wrap:  wrap;
}

.product-detail__thumb {
    width:        72px;
    height:       72px;
    border:       2px solid #eee;
    border-radius: 4px;
    overflow:     hidden;
    cursor:       pointer;
    padding:      0;
    background:   none;
    transition:   border-color 0.3s ease;
}

.product-detail__thumb.is-active {
    border-color: var(--color-primary);
}

.product-detail__thumb img {
    width:      100%;
    height:     100%;
    object-fit: cover;
}

.product-detail__title {
    font-size:     28px;
    margin-bottom: 16px;
}

.product-detail__oem {
    font-size:     15px;
    color:         var(--color-text-light);
    margin-bottom: 12px;
    padding:       10px 16px;
    background:    #f5f5f5;
    border-radius: 4px;
    display:       inline-block;
}

.product-detail__brand {
    font-size:     15px;
    margin-bottom: 16px;
}

.product-detail__brand a {
    color:       var(--color-primary);
    font-weight: 500;
}

.product-detail__desc {
    font-size:     15px;
    line-height:   1.7;
    color:         var(--color-text);
    margin-bottom: 24px;
}

.product-detail__share {
    display:      flex;
    align-items:  center;
    gap:          12px;
    flex-wrap:    wrap;
    padding-top:  20px;
    border-top:   1px solid #eee;
}

.product-detail__share-label {
    font-weight: 600;
    font-size:   14px;
}

.product-detail__share-btn {
    display:         inline-flex;
    align-items:     center;
    justify-content: center;
    width:           40px;
    height:          40px;
    border-radius:   50%;
    transition:      all 0.3s ease;
    flex-shrink:     0;
}

.product-detail__share-btn svg {
    width:  18px;
    height: 18px;
    fill:   #fff;
}

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

.product-detail__share-btn--facebook {
    background-color: #1877F2;
}

.product-detail__share-btn--twitter {
    background-color: #1DA1F2;
}

.product-detail__share-btn--linkedin {
    background-color: #0A66C2;
}

.product-detail__share-btn--pinterest {
    background-color: #E60023;
}

.product-detail__share-btn:hover {
    opacity:   0.85;
    transform: translateY(-2px);
}

/* ============================================================
   Pagination
   ============================================================ */
.pagination {
    text-align: center;
    margin:     40px 0;
}

.nav-links a,
.nav-links span {
    display:       inline-block;
    padding:       8px 14px;
    border:        1px solid #ddd;
    margin:        0 4px;
    border-radius: 4px;
    transition:    all 0.3s ease;
}

.nav-links a:hover {
    background-color: var(--color-primary);
    color:            #ffffff;
    border-color:     var(--color-primary);
}

.nav-links .current {
    background-color: var(--color-primary);
    color:            #ffffff;
    border-color:     var(--color-primary);
}

/* ============================================================
   No Results
   ============================================================ */
.no-results {
    text-align:  center;
    padding:     60px 20px;
    color:       var(--color-text-light);
    grid-column: 1 / -1;
}

/* ============================================================
   Site Footer
   ============================================================ */
.site-footer {
    background-color: var(--color-footer-bg);
    color:            var(--color-footer-text);
}

.site-footer__main {
    padding: 60px 0;
}

.site-footer__grid {
    display:               grid;
    grid-template-columns: repeat(4, 1fr);
    gap:                   40px;
}

.site-footer__title {
    font-size:     18px;
    font-weight:   600;
    margin-bottom: 20px;
    position:      relative;
    color:         var(--color-footer-text);
}

.site-footer__title::after {
    content:    '';
    display:    block;
    width:      40px;
    height:     2px;
    background: var(--color-primary);
    margin-top: 10px;
}

.site-footer__list {
    list-style: none;
    padding:    0;
    margin:     0;
}

.site-footer__list li {
    margin-bottom: 12px;
    display:       flex;
    align-items:   flex-start;
    gap:           10px;
}

.site-footer__list li svg {
    width:      16px;
    height:     16px;
    fill:       currentColor;
    flex-shrink: 0;
    margin-top: 3px;
}

.site-footer__list a {
    color:           var(--color-footer-text);
    text-decoration: none;
    transition:      color 0.3s ease;
}

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

/* Footer nav menu — generated by wp_nav_menu */
.site-footer__links li {
    margin-bottom: 12px;
}

.site-footer__links li a {
    color:           var(--color-footer-text);
    text-decoration: none;
    transition:      color 0.3s ease;
    font-size:       15px;
}

.site-footer__links li a:hover {
    color: var(--color-primary);
}

.site-footer__social {
    display:       flex;
    gap:           16px;
    margin-bottom: 20px;
}

.site-footer__social-link {
    display:         flex;
    align-items:     center;
    justify-content: center;
    width:           40px;
    height:          40px;
    border-radius:   50%;
    border:          1px solid rgba(255, 255, 255, 0.3);
    transition:      all 0.3s ease;
    flex-shrink:     0;
}

.site-footer__social-link:hover {
    border-color:     var(--color-primary);
    background-color: var(--color-primary);
}

.site-footer__social-link svg {
    width:  18px;
    height: 18px;
    fill:   #ffffff;
}

.site-footer__desc {
    color:       rgba(255, 255, 255, 0.7);
    font-size:   14px;
    line-height: 1.6;
}

.site-footer__bottom {
    border-top:  1px solid rgba(255, 255, 255, 0.1);
    padding:     20px 0;
    text-align:  center;
}

.site-footer__bottom p {
    font-size: 14px;
    color:     rgba(255, 255, 255, 0.6);
    margin:    0;
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
    position:        relative;
    overflow:        hidden;
    background:      #1a1a1a;
    min-height:      100vh;
    display:         flex;
    align-items:     center;
    justify-content: center;
    color:           #ffffff;
    text-align:      center;
}

.hero__video {
    position:   absolute;
    top:        50%;
    left:       50%;
    transform:  translate(-50%, -50%);
    min-width:  100%;
    min-height: 100%;
    width:      auto;
    height:     auto;
    object-fit: cover;
    z-index:    0;
}

.hero__overlay {
    position:   absolute;
    inset:      0;
    background: rgba(0, 0, 0, 0.45);
    z-index:    1;
}

.hero__inner {
    position: relative;
    z-index:  2;
    padding:  60px 20px;
}

.hero__title {
    font-size:     48px;
    font-weight:   800;
    color:         #ffffff;
    margin-bottom: 16px;
    line-height:   1.1;
}

.hero__subtitle {
    font-size:     20px;
    color:         rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    font-weight:   400;
}

.hero__buttons {
    display:         flex;
    gap:             16px;
    justify-content: center;
    flex-wrap:       wrap;
}

/* Beyaz outline varyant — hero için */
.btn-outline--white {
    color:        #ffffff;
    border-color: #ffffff;
    background:   transparent;
}

.btn-outline--white:hover {
    background-color: var(--color-primary);
    border-color:     var(--color-primary);
    color:            #ffffff;
}

/* ============================================================
   Featured Products Section
   ============================================================ */
.featured-products {
    padding: 80px 0;
}

.featured-products__title {
    font-size:     32px;
    text-align:    center;
    margin-bottom: 48px;
    color:         var(--color-text);
}

.featured-products__grid {
    display:               grid;
    grid-template-columns: repeat(3, 1fr);
    gap:                   30px;
    margin-bottom:         48px;
}

.featured-products__empty {
    text-align:    center;
    color:         var(--color-text-light);
    padding:       40px 0;
    font-size:     16px;
    margin-bottom: 48px;
}

.featured-products__cta {
    text-align: center;
}

/* Product card — featured products versiyonu (daha büyük shadow, radius) */
.featured-products .product-card {
    background:    #ffffff;
    border-radius: 12px;
    box-shadow:    0 2px 12px rgba(0, 0, 0, 0.08);
    overflow:      hidden;
    transition:    box-shadow 0.3s ease, transform 0.3s ease;
    border:        none;
}

.featured-products .product-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.13);
    transform:  translateY(-4px);
}

.featured-products .product-card__image {
    aspect-ratio: 4 / 3;
    background:   #f0f0f0;
    overflow:     hidden;
}

.featured-products .product-card__image img {
    width:      100%;
    height:     100%;
    object-fit: cover;
    display:    block;
}

.featured-products .product-card__placeholder {
    width:      100%;
    height:     100%;
    background: #f0f0f0;
}

.featured-products .product-card__content {
    padding: 20px;
}

.featured-products .product-card__title {
    font-size:     16px;
    font-weight:   600;
    color:         var(--color-text);
    margin-bottom: 4px;
}

/* ============================================================
   Intro Blocks
   ============================================================ */
.intro-block {
    padding: 80px 0;
}

.intro-block + .intro-block {
    padding-top: 0;
}

.intro-block__grid {
    display:               grid;
    grid-template-columns: 1fr 1fr;
    gap:                   48px;
    align-items:           center;
}

.intro-block--reverse .intro-block__grid {
    direction: rtl;
}

.intro-block--reverse .intro-block__grid > * {
    direction: ltr;
}

.intro-block__image img {
    width:         100%;
    border-radius: 16px;
    display:       block;
}

/* Scroll animations */
.intro-block__image,
.intro-block__text {
    opacity:    0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.intro-block .intro-block__image {
    transform: translateX(-60px);
}

.intro-block .intro-block__text {
    transform: translateX(60px);
}

.intro-block--reverse .intro-block__image {
    transform: translateX(60px);
}

.intro-block--reverse .intro-block__text {
    transform: translateX(-60px);
}

.intro-block__image.is-visible,
.intro-block__text.is-visible {
    opacity:   1;
    transform: translateX(0);
}

.intro-block__text h2 {
    font-size:     28px;
    color:         var(--color-text);
    margin-bottom: 16px;
}

.intro-block__text p {
    color:         var(--color-text-light);
    line-height:   1.7;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .intro-block__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .intro-block--reverse .intro-block__grid {
        direction: ltr;
    }

    .intro-block {
        padding: 48px 0;
    }
}

/* ============================================================
   Video Showcase Section
   ============================================================ */
.video-showcase {
    padding: 0 0 80px;
}

.video-showcase__player {
    width:         100%;
    border-radius: 0;
    display:       block;
}

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

    .video-showcase__player {
        border-radius: 0;
    }
}

/* ============================================================
   Why Us Section
   ============================================================ */
.why-us {
    background-color: var(--color-primary);
    padding:          80px 0 60px;
    text-align:       center;
    position:         relative;
    margin-bottom:    60px;
}

.why-us__title {
    font-size:     32px;
    color:         #ffffff;
    margin-bottom: 8px;
}

.why-us__subtitle {
    color:         rgba(255, 255, 255, 0.85);
    font-size:     16px;
    margin-bottom: 48px;
}

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

.why-us__card {
    background:       #ffffff;
    border-radius:    16px;
    padding:          24px 20px;
    text-align:       center;
    transition:       transform 0.3s ease, box-shadow 0.3s ease;
    overflow:         hidden;
}

.why-us__card:hover {
    transform:  translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.why-us__card-img {
    width:         100%;
    height:        240px;
    display:       flex;
    align-items:   center;
    justify-content: center;
    margin-bottom: 16px;
}

.why-us__card-img svg {
    width:  120px;
    height: 120px;
}

.why-us__card-img img {
    width:            100%;
    height:           100%;
    object-fit:       cover;
    object-position:  60% center;
    border-radius:    12px;
}

/* Photo card — full background image */
.why-us__card--photo {
    background-size:     130%;
    background-position: 60% 70%;
    background-repeat:   no-repeat;
    padding:             0;
    position:            relative;
    overflow:            hidden;
    display:             flex;
    flex-direction:      column;
    justify-content:     flex-end;
    min-height:          340px;
}

.why-us__card--photo .why-us__card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 55%, transparent 100%);
    padding:    60px 24px 28px;
    width:      100%;
}

.why-us .why-us__card--photo h3 {
    color:       #ffffff !important;
    font-size:   20px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.why-us .why-us__card--photo p {
    color:       #ffffff !important;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.why-us__card--photo:hover {
    transform:  translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.why-us__card h3 {
    font-size:     18px;
    color:         var(--color-primary-dark);
    margin-bottom: 8px;
    font-weight:   600;
}

.why-us__card p {
    font-size:   14px;
    color:       var(--color-text-light);
    line-height: 1.5;
}

.why-us__triangle {
    position:   absolute;
    bottom:     -59px;
    left:       0;
    width:      100%;
    height:     60px;
    background: var(--color-primary);
    clip-path:  polygon(0 0, 100% 0, 50% 100%);
}

/* ============================================================
   About Summary Section
   ============================================================ */
.about-summary {
    padding:    80px 0;
    background: #f8f8f8;
}

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

.about-summary__title {
    font-size:     32px;
    margin-bottom: 20px;
    color:         var(--color-text);
}

.about-summary__text p {
    color:         var(--color-text-light);
    margin-bottom: 16px;
    line-height:   1.7;
    font-size:     15px;
}

.about-summary__image-placeholder {
    width:         100%;
    aspect-ratio:  4 / 3;
    background:    linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
    border-radius: 12px;
}

/* ============================================================
   Page Header — Hakkımızda ve diğer sayfa başlıkları
   ============================================================ */
.page-header--dark {
    background-color: var(--color-footer-bg);
    padding:          0;
    margin-bottom:    0;
    border-bottom:    none;
    min-height:       200px;
    display:          flex;
    align-items:      center;
}

.page-header--dark .page-header__inner {
    padding:    40px 0;
    width:      100%;
    text-align: center;
}

.page-header--dark .page-header__title {
    font-size:     36px;
    color:         #ffffff;
    margin-bottom: 12px;
}

.page-header--dark .breadcrumb {
    background:    transparent;
    border-bottom: none;
    padding:       0;
    color:         rgba(255, 255, 255, 0.65);
}

.page-header--dark .breadcrumb a {
    color:      rgba(255, 255, 255, 0.65);
    transition: color 0.3s ease;
}

.page-header--dark .breadcrumb a:hover {
    color: var(--color-primary);
}

.page-header--dark .breadcrumb__sep {
    color: rgba(255, 255, 255, 0.3);
}

.page-header--dark .breadcrumb__current {
    color:       rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ============================================================
   Detail Hero (Ürün Detay Sayfası)
   ============================================================ */
.detail-hero-wrap {
    padding: 0 40px;
}

.detail-hero {
    position:            relative;
    min-height:          260px;
    display:             flex;
    align-items:         center;
    background-size:     cover;
    background-position: center;
    background-repeat:   no-repeat;
    border-radius:       24px;
    overflow:            hidden;
    margin-bottom:       40px;
}

.detail-hero__overlay {
    position:   absolute;
    inset:      0;
    background: rgba(0, 0, 0, 0.55);
    z-index:    1;
}

.detail-hero__content {
    position:  relative;
    z-index:   2;
    padding:   60px 20px;
    text-align: center;
}

.detail-hero__title {
    font-size:     32px;
    font-weight:   800;
    color:         #ffffff;
    margin-bottom: 12px;
    line-height:   1.2;
}

.breadcrumb--hero {
    background:    transparent;
    padding:       0;
    margin:        0;
}

.breadcrumb--hero a {
    color: rgba(255, 255, 255, 0.8);
}

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

.breadcrumb--hero .breadcrumb__sep {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb--hero .breadcrumb__current {
    color:       rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

@media (max-width: 768px) {
    .detail-hero-wrap {
        padding: 0 16px;
    }

    .detail-hero {
        min-height:    180px;
        border-radius: 16px;
        margin-bottom: 24px;
    }

    .detail-hero__title {
        font-size: 24px;
    }

    .detail-hero__content {
        padding: 40px 16px;
    }
}

/* ============================================================
   About Content (Hakkımızda Sayfası)
   ============================================================ */
.about-content {
    padding: 80px 0;
}

.about-section {
    margin-bottom: 60px;
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-section {
    text-align: center;
}

.about-section h2 {
    font-size:     28px;
    margin-bottom: 20px;
    color:         var(--color-text);
    position:      relative;
    padding-bottom: 16px;
}

.about-section h2::after {
    content:    '';
    display:    block;
    position:   absolute;
    bottom:     0;
    left:       50%;
    transform:  translateX(-50%);
    width:      40px;
    height:     2px;
    background: var(--color-primary);
}

.about-section p {
    color:         var(--color-text-light);
    line-height:   1.7;
    font-size:     15px;
    margin-bottom: 14px;
    max-width:     700px;
    margin-left:   auto;
    margin-right:  auto;
}

.about-features {
    list-style:            none;
    padding:               0;
    margin:                0 0 24px;
    display:               grid;
    grid-template-columns: repeat(2, 1fr);
    gap:                   20px;
}

.about-features li {
    display:        flex;
    flex-direction: column;
    align-items:    center;
    text-align:     center;
    gap:            12px;
    padding:        24px;
    border:         1px solid #f0f0f0;
    border-radius:  8px;
    font-size:      15px;
    color:          var(--color-text);
}

.about-features__icon {
    flex-shrink: 0;
    margin-top:  2px;
    color:       var(--color-primary);
}

.about-cta {
    margin-top: 40px;
    text-align: center;
    padding-top: 20px;
    border-top:  1px solid #eee;
}

/* ============================================================
   Bayilik Talebi — Form Section
   ============================================================ */
.bayilik-form-section {
    padding: 80px 0;
}

.bayilik-form-section__grid {
    display:               grid;
    grid-template-columns: 1fr 1fr;
    gap:                   60px;
    align-items:           start;
}

.bayilik-info h2 {
    font-size:     28px;
    margin-bottom: 16px;
}

.bayilik-info p {
    color:         var(--color-text-light);
    margin-bottom: 32px;
    line-height:   1.7;
}

.bayilik-info__list {
    list-style: none;
    padding:    0;
    margin:     0;
}

.bayilik-info__item {
    display:       flex;
    align-items:   flex-start;
    gap:           14px;
    margin-bottom: 16px;
    font-size:     15px;
    line-height:   1.5;
}

.bayilik-info__icon {
    display:          flex;
    align-items:      center;
    justify-content:  center;
    width:            32px;
    height:           32px;
    border-radius:    50%;
    background-color: var(--color-primary);
    color:            #ffffff;
    flex-shrink:      0;
    margin-top:       -2px;
}

/* ============================================================
   Contact Form (shared by bayilik + iletisim)
   ============================================================ */
.contact-form {
    background:    #ffffff;
    padding:       40px;
    border-radius: 12px;
    box-shadow:    0 4px 24px rgba(0, 0, 0, 0.08);
}

.contact-form__grid {
    display:               grid;
    grid-template-columns: 1fr 1fr;
    gap:                   20px;
}

.contact-form__field {
    display:        flex;
    flex-direction: column;
}

.contact-form__field label {
    font-weight:   600;
    font-size:     14px;
    margin-bottom: 6px;
    color:         var(--color-text);
}

.contact-form__field .required {
    color:       #e53935;
    margin-left: 2px;
}

.contact-form__field--full {
    grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
    padding:       12px 16px;
    border:        1px solid #ddd;
    border-radius: 6px;
    font-size:     15px;
    font-family:   var(--font-primary);
    color:         var(--color-text);
    outline:       none;
    transition:    border-color 0.3s ease, box-shadow 0.3s ease;
    width:         100%;
    background:    #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--color-primary);
    box-shadow:   0 0 0 3px rgba(107, 191, 35, 0.15);
    background:   #ffffff;
}

.contact-form textarea {
    resize:     vertical;
    min-height: 130px;
}

.contact-form__submit {
    grid-column: 1 / -1;
    text-align:  right;
}

/* Form Messages */
.form-message {
    margin-bottom: 24px;
    padding:       16px 20px;
    border-radius: 6px;
}

.form-message--success {
    background:  #e8f5e9;
    border-left: 4px solid var(--color-primary);
    color:       #1b5e20;
}

.form-message--error {
    background:  #ffebee;
    border-left: 4px solid #e53935;
    color:       #b71c1c;
}

.form-message strong {
    display:       block;
    margin-bottom: 4px;
    font-size:     15px;
}

.form-message p {
    margin:    0;
    font-size: 14px;
}

/* ============================================================
   Contact Page — İletişim
   ============================================================ */
.contact-page {
    padding: 80px 0;
}

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

.contact-info h2 {
    font-size:     28px;
    margin-bottom: 32px;
}

.contact-info__list {
    list-style: none;
    padding:    0;
    margin:     0;
}

.contact-info__item {
    display:       flex;
    align-items:   center;
    gap:           20px;
    margin-bottom: 24px;
}

.contact-info__icon {
    display:          flex;
    align-items:      center;
    justify-content:  center;
    width:            48px;
    height:           48px;
    border-radius:    50%;
    background-color: var(--color-primary);
    flex-shrink:      0;
}

.contact-info__icon svg {
    width:  22px;
    height: 22px;
    stroke: #ffffff;
    fill:   none;
}

.contact-info__text h4 {
    font-size:     15px;
    font-weight:   600;
    margin-bottom: 4px;
    color:         var(--color-text);
}

.contact-info__text a,
.contact-info__text p {
    color:      var(--color-text-light);
    font-size:  15px;
    margin:     0;
    transition: color 0.3s ease;
}

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

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

/* ============================================================
   CTA Section
   ============================================================ */
.cta-section {
    background-size:     cover;
    background-position: center center;
    background-repeat:   no-repeat;
    position:            relative;
}

.cta-section__overlay {
    background:  rgba(0, 0, 0, 0.65);
    padding:     100px 0;
    text-align:  center;
}

.cta-section__title {
    font-size:     36px;
    color:         #ffffff;
    margin-bottom: 16px;
}

.cta-section__text {
    font-size:     18px;
    color:         rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width:     600px;
    margin-left:   auto;
    margin-right:  auto;
}

.cta-section__buttons {
    display:         flex;
    gap:             16px;
    justify-content: center;
    flex-wrap:       wrap;
}

@media (max-width: 768px) {
    .cta-section__overlay {
        padding: 60px 0;
    }

    .cta-section__title {
        font-size: 28px;
    }
}

/* ============================================================
   WhatsApp Floating Button
   ============================================================ */
.whatsapp-float {
    position:         fixed;
    bottom:           24px;
    right:            24px;
    z-index:          999;
    width:            60px;
    height:           60px;
    border-radius:    50%;
    background-color: #25D366;
    display:          flex;
    align-items:      center;
    justify-content:  center;
    box-shadow:       0 4px 12px rgba(0, 0, 0, 0.25);
    transition:       transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform:  scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    color:      #25D366;
}

.whatsapp-float svg {
    width:  28px;
    height: 28px;
}

/* ============================================================
   Responsive Breakpoints
   ============================================================ */

/* Tablet — hide desktop nav, show hamburger */
@media (max-width: 992px) {
    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .site-header__container {
        position: relative;
    }

    .site-logo {
        position:  absolute;
        left:      50%;
        transform: translateX(-50%);
    }

    /* Footer: 2 columns on tablet */
    .site-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Product grid: 3 columns on tablet */
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Featured products: 2 columns on tablet */
    .featured-products__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* About summary: 1 column on tablet */
    .about-summary__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Hero: smaller on tablet */
    .hero {
        min-height: 400px;
    }

    .hero__title {
        font-size: 36px;
    }

    /* Page header dark: slightly smaller */
    .page-header--dark {
        min-height: 180px;
    }
}

/* Mobile — top bar adjustments, smaller header */
@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .why-us__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .why-us {
        padding: 48px 0;
    }

    .top-bar {
        font-size: 12px;
        height: 36px;
    }

    .top-bar__left {
        gap: 16px;
    }

    .top-bar__right {
        gap: 10px;
    }

    .site-logo__text {
        font-size: 22px;
    }

    /* Product grid: 2 columns on mobile */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Featured products: 2 columns on mobile */
    .featured-products__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Hero: smaller on mobile */
    .hero {
        min-height: 350px;
    }

    .hero__title {
        font-size: 30px;
    }

    .hero__subtitle {
        font-size: 16px;
    }

    /* Page header dark: smaller on mobile */
    .page-header--dark {
        min-height: 150px;
    }

    .page-header--dark .page-header__title {
        font-size: 28px;
    }

    /* About summary: tighter padding */
    .about-summary {
        padding: 60px 0;
    }

    .about-content {
        padding: 60px 0;
    }

    /* Product detail: single column on mobile */
    .product-detail__grid {
        grid-template-columns: 1fr;
    }

    .product-detail__title {
        font-size: 22px;
    }

    /* Bayilik form: single column on mobile */
    .bayilik-form-section__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 24px;
    }

    .contact-form__grid {
        grid-template-columns: 1fr;
    }

    /* Contact page: single column on mobile */
    .contact-page__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Small mobile */
@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }

    /* WhatsApp float: smaller on small mobile */
    .whatsapp-float {
        bottom: 16px;
        right:  16px;
        width:  52px;
        height: 52px;
    }

    .top-bar__left {
        gap: 12px;
    }

    .mobile-nav {
        width: 280px;
    }

    /* Footer: 1 column on small mobile */
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    /* Product grid: 1 column on small mobile */
    .product-grid {
        grid-template-columns: 1fr;
    }

    /* Featured products: 2 columns on small mobile */
    .featured-products__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Hero buttons: stack on small mobile */
    .hero__buttons {
        flex-direction: column;
        align-items:    center;
    }

    /* About sections: reduce spacing */
    .about-section {
        margin-bottom: 40px;
    }

    .featured-products {
        padding: 60px 0;
    }

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

    /* Search form: icon only on small mobile */
    .search-form__submit span {
        display: none;
    }

    .search-form__wrapper {
        max-width: 100%;
    }
}
