/*
Theme Name: Stone Family
Theme URI: https://stonefamily.com.tr
Author: Stone Family
Author URI: https://stonefamily.com.tr
Description: Stone Family için özel olarak geliştirilen hızlı ve modern WooCommerce teması.
Version: 1.0.0
Text Domain: stone-family
*/

/* =========================================================
   STONE FAMILY - TEMEL STİLLER
   ========================================================= */

:root {
    --sf-black: #171717;
    --sf-white: #ffffff;
    --sf-cream: #f8f7f4;
    --sf-gold: #b08d57;
    --sf-text: #333333;
    --sf-border: #e8e6e1;
    --sf-container: 1280px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background: var(--sf-white);
    color: var(--sf-text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.site-container {
    width: min(100% - 40px, var(--sf-container));
    margin: 0 auto;
}
/* =========================================================
   STONE FAMILY - ANA SAYFA
   ========================================================= */

/* HEADER */
.site-header {
    position: relative;
    z-index: 100;
    background: var(--sf-white);
    border-bottom: 1px solid var(--sf-border);
}

.site-header-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-logo {
    display: inline-block;
    font-family: Georgia, serif;
    font-size: 30px;
    letter-spacing: 4px;
    font-weight: 400;
}

.primary-navigation ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    gap: 28px;
}

.primary-navigation a {
    font-size: 13px;
    letter-spacing: 1.5px;
    font-weight: 600;
    transition: color .2s ease;
}

.primary-navigation a:hover {
    color: var(--sf-gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
}

.cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 19px;
    height: 19px;
    padding: 0 5px;
    margin-left: 4px;
    border-radius: 50%;
    background: var(--sf-gold);
    color: #fff;
    font-size: 10px;
}

/* HERO */
.sf-hero {
    background:
        linear-gradient(90deg, #f8f7f4 0%, #f8f7f4 45%, #efede8 100%);
    overflow: hidden;
}

.sf-hero-grid {
    min-height: 530px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.sf-hero-content {
    padding: 70px 0;
    position: relative;
    z-index: 2;
}

.sf-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--sf-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.sf-hero h1,
.sf-section-heading h2,
.sf-collection-content h2 {
    margin: 0;
    font-family: Georgia, serif;
    font-weight: 400;
    color: var(--sf-black);
}

.sf-hero h1 {
    font-size: clamp(44px, 5vw, 74px);
    line-height: 1.08;
    letter-spacing: -1px;
}

.sf-hero-content p {
    max-width: 480px;
    margin: 24px 0 30px;
    font-size: 17px;
    line-height: 1.8;
    color: #666;
}

/* BUTTONS */
.sf-button {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 16px 24px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: all .25s ease;
}

.sf-button-dark {
    background: var(--sf-black);
    color: #fff;
}

.sf-button-dark:hover {
    background: var(--sf-gold);
    color: #fff;
}

.sf-button-outline {
    border: 1px solid var(--sf-black);
    color: var(--sf-black);
}

.sf-button-outline:hover {
    background: var(--sf-black);
    color: #fff;
}

/* HERO PRODUCTS */
.sf-hero-products {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
}

.sf-hero-decoration {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(176, 141, 87, .16) 0%,
        rgba(176, 141, 87, .04) 45%,
        transparent 70%
    );
    right: -100px;
    top: -40px;
}

.sf-hero-product-grid {
    width: 100%;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: end;
    gap: 16px;
}

.sf-hero-product {
    display: block;
    background: #fff;
    padding: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
    transition: transform .3s ease;
}

.sf-hero-product:nth-child(2) {
    transform: translateY(-35px);
}

.sf-hero-product:hover {
    transform: translateY(-8px);
}

.sf-hero-product:nth-child(2):hover {
    transform: translateY(-43px);
}

.sf-hero-product-image {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #eee;
}

.sf-hero-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sf-hero-empty {
    min-height: 330px;
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        linear-gradient(135deg, #e8e2d7, #f7f5f1);
    border: 1px solid var(--sf-border);
}

.sf-hero-empty span {
    color: var(--sf-gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
}

.sf-hero-empty strong {
    margin-top: 15px;
    font-family: Georgia, serif;
    font-size: 30px;
    font-weight: 400;
}

/* FEATURES */
.sf-features {
    padding: 30px 0;
    border-bottom: 1px solid var(--sf-border);
    background: #fff;
}

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

.sf-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sf-feature-icon {
    flex: 0 0 38px;
    font-size: 30px;
    color: var(--sf-gold);
    text-align: center;
}

.sf-feature strong,
.sf-feature span {
    display: block;
}

.sf-feature strong {
    margin-bottom: 4px;
    font-size: 10px;
    letter-spacing: 1.3px;
}

.sf-feature span {
    font-size: 13px;
    color: #777;
}

/* PRODUCTS */
.sf-products-section {
    padding: 100px 0;
    background: var(--sf-cream);
}

.sf-section-heading {
    max-width: 700px;
    margin: 0 auto 45px;
    text-align: center;
}

.sf-section-heading h2 {
    font-size: 48px;
}

.sf-section-heading p {
    margin: 15px 0 0;
    color: #777;
}

/* WooCommerce ürünleri */
.sf-products-section .woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 0;
}

.sf-products-section .woocommerce ul.products::before,
.sf-products-section .woocommerce ul.products::after {
    display: none;
}

.sf-products-section .woocommerce ul.products li.product {
    width: auto;
    float: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.sf-products-section .woocommerce ul.products li.product a img {
    width: 100%;
    margin: 0 0 15px;
    aspect-ratio: 1 / 1.15;
    object-fit: cover;
    background: #eee;
}

.sf-products-section .woocommerce ul.products li.product .woocommerce-loop-product__title {
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--sf-black);
}

.sf-products-section .woocommerce ul.products li.product .price {
    margin-top: 7px;
    color: var(--sf-gold);
    font-size: 15px;
    font-weight: 700;
}

.sf-products-section .woocommerce ul.products li.product .button {
    display: none;
}

.sf-section-button {
    margin-top: 45px;
    text-align: center;
}

/* COLLECTION BANNER */
.sf-collection-banner {
    padding: 110px 0;
    background:
        linear-gradient(
            135deg,
            #ebe5dc 0%,
            #d8cbb9 50%,
            #bda886 100%
        );
}

.sf-collection-content {
    max-width: 680px;
}

.sf-collection-content h2 {
    font-size: clamp(40px, 4vw, 65px);
    line-height: 1.1;
}

.sf-collection-content p {
    max-width: 530px;
    margin: 24px 0 32px;
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

/* MOBILE */
@media (max-width: 900px) {

    .site-header-inner {
        min-height: 70px;
        flex-wrap: wrap;
        padding: 15px 0;
    }

    .primary-navigation {
        order: 3;
        width: 100%;
    }

    .primary-navigation ul {
        flex-wrap: wrap;
        gap: 15px;
    }

    .sf-hero-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .sf-hero-content {
        padding: 60px 0 30px;
    }

    .sf-hero-products {
        min-height: auto;
        padding-bottom: 60px;
    }

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

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

@media (max-width: 600px) {

    .site-container {
        width: min(100% - 30px, var(--sf-container));
    }

    .site-logo {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .header-actions {
        gap: 10px;
        font-size: 12px;
    }

    .sf-hero h1 {
        font-size: 42px;
    }

    .sf-hero-product-grid {
        gap: 8px;
    }

    .sf-hero-product {
        padding: 6px;
    }

    .sf-features-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .sf-products-section {
        padding: 70px 0;
    }

    .sf-section-heading h2 {
        font-size: 38px;
    }

}
/* =========================================================
   STONE FAMILY - KATEGORİLER
   ========================================================= */

.sf-categories-section {
    padding: 110px 0;
    background: #f4f1eb;
}

.sf-categories-section .sf-section-heading {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.sf-categories-section .sf-eyebrow {
    display: block;
    margin-bottom: 14px;
}

.sf-categories-section h2 {
    margin: 0 0 16px;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.sf-categories-section .sf-section-heading p {
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
    color: #6e6a64;
}


/* KATEGORİ GRID */

.sf-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}


/* KATEGORİ KARTI */

.sf-category-card {
    position: relative;
    display: block;
    min-height: 390px;
    overflow: hidden;
    background: #ded8ce;
    text-decoration: none;
    color: #ffffff;
}


/* GÖRSEL */

.sf-category-image {
    position: absolute;
    inset: 0;
}

.sf-category-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition:
        transform 0.7s cubic-bezier(.2, .7, .2, 1),
        filter 0.4s ease;
}


/* KARARTMA */

.sf-category-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.03) 25%,
            rgba(0, 0, 0, 0.78) 100%
        );
    transition: background 0.4s ease;
}


/* KATEGORİ YAZILARI */

.sf-category-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px;
    z-index: 2;
}

.sf-category-count {
    display: block;
    margin-bottom: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    opacity: 0.82;
}

.sf-category-content h3 {
    margin: 0 0 15px;
    color: #ffffff;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.15;
}

.sf-category-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    opacity: 0.9;
}

.sf-category-link b {
    font-size: 16px;
    font-weight: 400;
    transition: transform 0.3s ease;
}


/* HOVER */

.sf-category-card:hover .sf-category-image img {
    transform: scale(1.07);
    filter: brightness(1.04);
}

.sf-category-card:hover .sf-category-overlay {
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.08) 15%,
            rgba(0, 0, 0, 0.88) 100%
        );
}

.sf-category-card:hover .sf-category-link b {
    transform: translateX(6px);
}


/* ALT BUTON */

.sf-categories-section .sf-section-button {
    margin-top: 45px;
    text-align: center;
}


/* TABLET */

@media (max-width: 1024px) {

    .sf-categories-section {
        padding: 85px 0;
    }

    .sf-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .sf-category-card {
        min-height: 380px;
    }

}


/* MOBİL */

@media (max-width: 640px) {

    .sf-categories-section {
        padding: 70px 0;
    }

    .sf-categories-section .sf-section-heading {
        margin-bottom: 35px;
    }

    .sf-category-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .sf-category-card {
        min-height: 330px;
    }

    .sf-category-content {
        padding: 24px;
    }

    .sf-category-content h3 {
        font-size: 27px;
    }

}
/* =========================================================
   STONE FAMILY - KATEGORİLER
   ========================================================= */

.sf-categories-section {
    padding: 110px 0;
    background: #f4f1eb;
}

.sf-categories-section .sf-section-heading {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.sf-categories-section .sf-eyebrow {
    display: block;
    margin-bottom: 14px;
}

.sf-categories-section h2 {
    margin: 0 0 16px;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.sf-categories-section .sf-section-heading p {
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
    color: #6e6a64;
}

/* KATEGORİ GRID */

.sf-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

/* KATEGORİ KARTI */

.sf-category-card {
    position: relative;
    display: block;
    min-height: 390px;
    overflow: hidden;
    background: #ded8ce;
    text-decoration: none;
    color: #ffffff;
}

/* GÖRSEL */

.sf-category-image {
    position: absolute;
    inset: 0;
}

.sf-category-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition:
        transform 0.7s cubic-bezier(.2, .7, .2, 1),
        filter 0.4s ease;
}

/* KARARTMA */

.sf-category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.03) 25%,
        rgba(0, 0, 0, 0.78) 100%
    );
    transition: background 0.4s ease;
}

/* KATEGORİ YAZILARI */

.sf-category-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px;
    z-index: 2;
}

.sf-category-count {
    display: block;
    margin-bottom: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    opacity: 0.82;
}

.sf-category-content h3 {
    margin: 0 0 15px;
    color: #ffffff;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.15;
}

.sf-category-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    opacity: 0.9;
}

.sf-category-link b {
    font-size: 16px;
    font-weight: 400;
    transition: transform 0.3s ease;
}

/* HOVER */

.sf-category-card:hover .sf-category-image img {
    transform: scale(1.07);
    filter: brightness(1.04);
}

.sf-category-card:hover .sf-category-overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.08) 15%,
        rgba(0, 0, 0, 0.88) 100%
    );
}

.sf-category-card:hover .sf-category-link b {
    transform: translateX(6px);
}

/* ALT BUTON */

.sf-categories-section .sf-section-button {
    margin-top: 45px;
    text-align: center;
}

/* TABLET */

@media (max-width: 1024px) {

    .sf-categories-section {
        padding: 85px 0;
    }

    .sf-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .sf-category-card {
        min-height: 380px;
    }
}

/* MOBİL */

@media (max-width: 640px) {

    .sf-categories-section {
        padding: 70px 0;
    }

    .sf-categories-section .sf-section-heading {
        margin-bottom: 35px;
    }

    .sf-category-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .sf-category-card {
        min-height: 330px;
    }

    .sf-category-content {
        padding: 24px;
    }

    .sf-category-content h3 {
        font-size: 27px;
    }
}
/* STONE FAMILY KATEGORİ GRID - ZORLAYICI DÜZELTME */

.site-main .sf-categories-section .sf-category-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    grid-auto-flow: row !important;
    gap: 18px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.site-main .sf-categories-section .sf-category-card {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 390px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

.site-main .sf-categories-section .sf-category-image {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

.site-main .sf-categories-section .sf-category-image img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
}

.site-main .sf-categories-section .sf-category-overlay {
    position: absolute !important;
    inset: 0 !important;
}

.site-main .sf-categories-section .sf-category-content {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 2 !important;
}

/* TABLET */
@media (max-width: 1024px) {
    .site-main .sf-categories-section .sf-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

/* MOBİL */
@media (max-width: 640px) {
    .site-main .sf-categories-section .sf-category-grid {
        grid-template-columns: 1fr !important;
    }

    .site-main .sf-categories-section .sf-category-card {
        min-height: 330px !important;
    }
}
/* =========================================
   STONE FAMILY - MAĞAZA / KATEGORİ SAYFALARI
========================================= */

/* Ana WooCommerce içerik alanı */
.woocommerce-page .site-main,
.tax-product_cat .site-main,
.post-type-archive-product .site-main {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 32px 70px;
    box-sizing: border-box;
}

/* Ürün listesinin ekran kenarlarına yaslanmasını engelle */
.woocommerce ul.products,
.woocommerce-page ul.products {
    margin-left: 0;
    margin-right: 0;
}

/* Ürün kartı */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    margin-bottom: 45px;
}

/* Görsel alanını sabitle */
.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 0 18px;
    background: #f7f7f7;
}

/* Görsel kutusu */
.woocommerce ul.products li.product > a.woocommerce-LoopProduct-link {
    display: block;
}

/* Ürün başlıkları */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 15px;
    line-height: 1.5;
    min-height: 46px;
    margin: 0 0 8px;
}

/* Fiyat */
.woocommerce ul.products li.product .price {
    margin-bottom: 15px;
    display: block;
}

/* Tablet */
@media screen and (max-width: 1024px) {

    .woocommerce-page .site-main,
    .tax-product_cat .site-main,
    .post-type-archive-product .site-main {
        padding: 30px 24px 60px;
    }

}

/* Mobil */
@media screen and (max-width: 767px) {

    .woocommerce-page .site-main,
    .tax-product_cat .site-main,
    .post-type-archive-product .site-main {
        padding: 25px 16px 50px;
    }

    .woocommerce ul.products li.product a img,
    .woocommerce-page ul.products li.product a img {
        aspect-ratio: 1 / 1;
        margin-bottom: 12px;
    }

    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        font-size: 14px;
        min-height: 42px;
    }

}
/* =========================================
   STONE FAMILY - ÜRÜN GÖRSELLERİ
========================================= */

/* Ürün listesindeki görsel alanı */
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
    display: block;
}

/* Görsel kutusu */
.woocommerce ul.products li.product img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1;
    object-fit: contain !important;
    object-position: center center;
    display: block;
    background: #fff;
    padding: 8px;
    box-sizing: border-box;
}

/* Ürün kartında görsel taşmasını engelle */
.woocommerce ul.products li.product {
    overflow: hidden;
}

/* Tek ürün sayfasındaki ana görsel */
.woocommerce div.product div.images img {
    width: 100%;
    height: auto;
    object-fit: contain;
    background: #fff;
}

/* Mobil düzenleme */
@media screen and (max-width: 768px) {

    .woocommerce ul.products {
        padding-left: 16px !important;
        padding-right: 16px !important;
        box-sizing: border-box;
    }

    .woocommerce ul.products li.product img {
        aspect-ratio: 1 / 1;
        padding: 5px;
    }

}
/* =========================================
   STONE FAMILY - ÜRÜN DETAY SAYFASI
========================================= */

.single-product .site-main {
    padding: 50px 0 80px;
}

.single-product .woocommerce-breadcrumb {
    margin-bottom: 25px;
    font-size: 14px;
    color: #777;
}

/* ANA ÜRÜN ALANI */

.single-product div.product {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
    gap: 70px;
    align-items: start;
}

/* SOL GÖRSEL */

.single-product div.product .woocommerce-product-gallery {
    width: 100% !important;
    margin: 0 !important;
}

.single-product .woocommerce-product-gallery__wrapper {
    overflow: hidden;
}

.single-product .woocommerce-product-gallery__image img {
    width: 100%;
    height: auto;
    max-height: 680px;
    object-fit: contain;
    display: block;
}

/* SAĞ ÜRÜN BİLGİLERİ */

.single-product div.product .summary {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
    padding-top: 5px;
}

.single-product .product_title {
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1.18;
    margin-bottom: 24px;
    font-weight: 500;
    letter-spacing: -0.5px;
}

/* FİYAT */

.single-product .price {
    font-size: 24px !important;
    margin-bottom: 20px !important;
}

.single-product .price,
.single-product .price .woocommerce-Price-amount {
    color: #9a7a3d !important;
}

/* STOK */

.single-product .stock {
    display: inline-block;
    padding: 9px 14px;
    margin-bottom: 22px;
    font-size: 14px;
    background: #f5f2ec;
    color: #555;
}

/* SEPET FORMU */

.single-product form.cart {
    display: flex;
    align-items: stretch;
    gap: 12px;
    margin: 25px 0 30px !important;
}

.single-product form.cart .quantity {
    margin: 0 !important;
}

.single-product form.cart .quantity input.qty {
    width: 70px;
    height: 52px;
    border: 1px solid #d7d0c5;
    background: #fff;
    text-align: center;
    font-size: 16px;
}

/* SEPETE EKLE */

.single-product form.cart .single_add_to_cart_button {
    min-height: 52px;
    padding: 0 32px !important;
    border: 1px solid #222 !important;
    border-radius: 0 !important;
    background: #222 !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all .25s ease;
}

.single-product form.cart .single_add_to_cart_button:hover {
    background: #fff !important;
    color: #222 !important;
}

/* META BİLGİLERİ */

.single-product .product_meta {
    padding-top: 22px;
    border-top: 1px solid #e4e0d9;
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

.single-product .product_meta span {
    display: block;
}

/* SEKME ALANI */

.single-product .woocommerce-tabs {
    margin-top: 70px;
    border-top: 1px solid #ded9d1;
    padding-top: 35px;
}

.single-product .woocommerce-tabs ul.tabs {
    padding: 0 !important;
    margin: 0 0 30px !important;
    border: 0 !important;
    display: flex;
    gap: 10px;
}

.single-product .woocommerce-tabs ul.tabs::before,
.single-product .woocommerce-tabs ul.tabs li::before,
.single-product .woocommerce-tabs ul.tabs li::after {
    display: none !important;
}

.single-product .woocommerce-tabs ul.tabs li {
    border: 1px solid #ddd7ce !important;
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.single-product .woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 12px 22px;
    color: #444 !important;
}

.single-product .woocommerce-tabs ul.tabs li.active {
    background: #222 !important;
    border-color: #222 !important;
}

.single-product .woocommerce-tabs ul.tabs li.active a {
    color: #fff !important;
}

/* AÇIKLAMA */

.single-product .woocommerce-Tabs-panel {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.8;
    color: #4d4d4d;
}

/* İLGİLİ ÜRÜNLER */

.single-product .related.products {
    margin-top: 70px;
}

.single-product .related.products > h2 {
    font-size: 30px;
    margin-bottom: 30px;
}

/* İLGİLİ ÜRÜN GÖRSELLERİ */

.single-product .related ul.products li.product img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: #f7f6f3;
    display: block;
}

/* =========================================
   MOBİL
========================================= */

@media (max-width: 768px) {

    .single-product .site-main {
        padding: 25px 0 55px;
    }

    .single-product div.product {
        display: block;
    }

    .single-product div.product .summary {
        margin-top: 30px !important;
    }

    .single-product .product_title {
        font-size: 30px;
    }

    .single-product form.cart {
        gap: 8px;
    }

    .single-product form.cart .single_add_to_cart_button {
        flex: 1;
        padding: 0 15px !important;
    }

    .single-product .woocommerce-tabs {
        margin-top: 50px;
    }

    .single-product .related.products {
        margin-top: 50px;
    }

    .single-product .related.products > h2 {
        font-size: 25px;
    }
}
/* =========================================
   STONE FAMILY - HEADER GELİŞTİRME
========================================= */

.site-header {
    position: relative;
    z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid #e9e5df;
}

.site-header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* LOGO */

.site-branding {
    flex: 0 0 auto;
}

.site-logo {
    display: flex;
    flex-direction: column;
    color: #1f1f1f;
    text-decoration: none;
}

.site-logo-main {
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 1.1;
}

.site-logo-tagline {
    margin-top: 5px;
    font-size: 9px;
    letter-spacing: 2px;
    color: #9a7a3d;
    text-transform: uppercase;
}

/* MENÜ */

.primary-navigation {
    margin-left: auto;
}

.sf-primary-menu,
.primary-navigation ul {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-navigation a {
    position: relative;
    display: block;
    padding: 32px 0;
    color: #222;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.primary-navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 24px;
    width: 0;
    height: 1px;
    background: #9a7a3d;
    transition: width .25s ease;
}

.primary-navigation a:hover::after,
.primary-navigation .current-menu-item > a::after {
    width: 100%;
}

/* SAĞ TARAF */

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: 10px;
}

.sf-header-action {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #222;
    text-decoration: none;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
}

.sf-header-action:hover {
    color: #9a7a3d;
}

.sf-header-action-icon {
    font-size: 18px;
    line-height: 1;
}

.sf-header-cart {
    position: relative;
}

.cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    box-sizing: border-box;
    border-radius: 50%;
    background: #9a7a3d;
    color: #fff;
    font-size: 9px;
}

/* MOBİL BUTON */

.sf-mobile-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.sf-mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    margin: 6px 0;
    background: #222;
}

/* TABLET */

@media (max-width: 1100px) {

    .site-header-inner {
        gap: 18px;
    }

    .sf-primary-menu,
    .primary-navigation ul {
        gap: 18px;
    }

    .header-actions {
        gap: 12px;
    }

    .sf-header-action-text {
        display: none;
    }

}

/* MOBİL */

@media (max-width: 768px) {

    .site-header-inner {
        min-height: 68px;
        position: relative;
    }

    .site-logo-main {
        font-size: 18px;
    }

    .site-logo-tagline {
        font-size: 7px;
    }

    .sf-mobile-menu-toggle {
        display: block;
        order: 3;
    }

    .primary-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin: 0;
        padding: 15px 24px 20px;
        background: #fff;
        border-top: 1px solid #e9e5df;
        border-bottom: 1px solid #e9e5df;
    }

    .primary-navigation.is-open {
        display: block;
    }

    .sf-primary-menu,
    .primary-navigation ul {
        display: block;
    }

    .primary-navigation li {
        border-bottom: 1px solid #efebe6;
    }

    .primary-navigation li:last-child {
        border-bottom: 0;
    }

    .primary-navigation a {
        padding: 15px 0;
    }

    .primary-navigation a::after {
        display: none;
    }

    .header-actions {
        margin-left: auto;
        gap: 10px;
    }

    .sf-header-shop {
        display: none;
    }

}
/* MOBİL MENÜ BUTONUNU GÖRÜNÜR YAP */
@media (max-width: 768px) {

    .sf-mobile-menu-toggle {
        display: block !important;
        width: 42px !important;
        height: 42px !important;
        padding: 8px !important;
        border: 0 !important;
        background: transparent !important;
        cursor: pointer !important;
        margin-left: 10px !important;
    }

    .sf-mobile-menu-toggle span {
        display: block !important;
        width: 24px !important;
        height: 2px !important;
        margin: 5px auto !important;
        background: #222222 !important;
    }

    .site-header-inner {
        display: flex !important;
        align-items: center !important;
    }

}

/* =========================================================
   STONE FAMILY - TEK PARÇA MODERN FOOTER
   footer(1).php ile uyumludur.
========================================================= */

:root {
    --sf-footer-bg: #f5f2ec;
    --sf-footer-text: #292b30;
    --sf-footer-muted: #64666b;
    --sf-footer-line: #ddd7cc;
    --sf-footer-gold: #92784e;
    --sf-footer-dark: #25282e;
}

.site-footer {
    margin-top: 0;
    padding: 0;
    background: var(--sf-footer-bg);
    color: var(--sf-footer-text);
    font-family: inherit;
}

.sf-footer-container {
    width: min(1400px, calc(100% - 60px));
    margin: 0 auto;
}

/* -------------------- ÜST ÖZELLİKLER -------------------- */
.sf-footer-features {
    background: var(--sf-footer-bg);
    border-top: 1px solid var(--sf-footer-line);
    border-bottom: 1px solid var(--sf-footer-line);
}

.sf-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sf-feature-item {
    min-height: 102px;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    border-right: 1px solid var(--sf-footer-line);
}

.sf-feature-item:last-child {
    border-right: 0;
}

.sf-feature-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    color: var(--sf-footer-gold);
    font-size: 0;
    text-align: initial;
}

.sf-feature-icon svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sf-feature-item strong {
    display: block;
    margin: 0 0 6px;
    color: var(--sf-footer-text);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1px;
}

.sf-feature-item span {
    display: block;
    color: var(--sf-footer-muted);
    font-size: 13px;
    line-height: 1.65;
}

/* ---------------------- ANA FOOTER ---------------------- */
.sf-footer-main {
    display: grid;
    grid-template-columns: 1.45fr 1fr 1fr .9fr 1.45fr;
    padding: 74px 0 80px;
}

.sf-footer-brand,
.sf-footer-column,
.sf-footer-contact {
    min-width: 0;
    padding: 0 28px;
    border-right: 1px solid var(--sf-footer-line);
}

.sf-footer-brand {
    padding-left: 0;
}

.sf-footer-contact {
    padding-right: 0;
    border-right: 0;
}

.sf-footer-logo {
    display: inline-flex;
    flex-direction: column;
    color: #3b3028;
    text-decoration: none;
    margin-bottom: 26px;
}

.sf-logo-stone {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 3vw, 54px);
    font-weight: 400;
    line-height: .95;
    letter-spacing: 10px;
}

.sf-logo-family {
    display: block;
    margin-top: 13px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--sf-footer-gold);
    text-align: center;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 8px;
}

.sf-footer-brand p {
    max-width: 310px;
    margin: 0 0 26px;
    color: var(--sf-footer-muted);
    font-size: 15px;
    line-height: 1.8;
}

/* Sosyal bağlantılar ve pazaryerleri */
.sf-social-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.sf-social-links > a {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ebe7df;
    color: #33363b;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.sf-social-links > a:hover {
    background: var(--sf-footer-gold);
    color: #fff;
    transform: translateY(-2px);
}

.sf-social-links svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sf-social-links > a.sf-marketplace {
    width: auto;
    min-width: 78px;
    padding: 0 11px;
    border-radius: 23px;
    font-size: 10px;
    font-weight: 800;
}

.sf-social-links > a.sf-marketplace:hover {
    color: #fff;
}

.sf-marketplace.trendyol {
    color: #f27a1a;
}

.sf-marketplace.hepsiburada {
    color: #f36b21;
}

.sf-marketplace span {
    white-space: nowrap;
}

/* Menü sütunları */
.sf-footer-column h3,
.sf-footer-contact h3 {
    position: relative;
    margin: 0 0 24px;
    padding-bottom: 17px;
    color: var(--sf-footer-text);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .7px;
}

.sf-footer-column h3::after,
.sf-footer-contact h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 44px;
    height: 1px;
    background: var(--sf-footer-gold);
}

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

.sf-footer-column li {
    margin: 0;
    padding: 0;
}

.sf-footer-column a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 0;
    color: #4e5055;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.45;
    transition: color .2s ease, padding-left .2s ease;
}

.sf-footer-column a span {
    flex: 0 0 auto;
    color: var(--sf-footer-gold);
    font-size: 23px;
    line-height: .8;
}

.sf-footer-column a:hover {
    padding-left: 5px;
    color: var(--sf-footer-gold);
}

/* İletişim */
.sf-contact-item {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 13px;
    align-items: start;
    margin: 0 0 20px;
    color: var(--sf-footer-muted);
}

.sf-contact-item:last-child {
    margin-bottom: 0;
}

.sf-contact-icon {
    padding-top: 1px;
    color: var(--sf-footer-text);
    font-size: 19px;
    line-height: 1.35;
}

.sf-contact-item p {
    margin: 0;
    color: var(--sf-footer-muted);
    font-size: 14px;
    line-height: 1.75;
}

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

.sf-contact-item a:hover {
    color: var(--sf-footer-gold);
}

/* ----------------------- BÜLTEN ------------------------ */
.sf-newsletter {
    border-top: 1px solid var(--sf-footer-line);
    background: var(--sf-footer-bg);
}

.sf-newsletter-inner {
    min-height: 138px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.sf-newsletter-text {
    display: flex;
    align-items: center;
    gap: 18px;
}

.sf-newsletter-icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #ebe4d8;
    color: #4b4640;
    font-size: 23px;
}

.sf-newsletter-text strong,
.sf-newsletter-text span {
    display: block;
}

.sf-newsletter-text strong {
    margin-bottom: 6px;
    color: var(--sf-footer-text);
    font-size: 16px;
}

.sf-newsletter-text span {
    color: var(--sf-footer-muted);
    font-size: 14px;
}

.sf-newsletter-form {
    width: min(560px, 100%);
    display: flex;
    align-items: stretch;
}

.sf-newsletter-form input {
    min-width: 0;
    flex: 1 1 auto;
    height: 58px;
    padding: 0 20px;
    border: 1px solid #d7d1c7;
    border-right: 0;
    border-radius: 5px 0 0 5px;
    outline: 0;
    background: #fff;
    color: var(--sf-footer-text);
    font: inherit;
}

.sf-newsletter-form input:focus {
    border-color: var(--sf-footer-gold);
}

.sf-newsletter-form button {
    height: 58px;
    min-width: 150px;
    padding: 0 22px;
    border: 0;
    border-radius: 0 5px 5px 0;
    background: var(--sf-footer-dark);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    transition: background .2s ease;
}

.sf-newsletter-form button:hover {
    background: var(--sf-footer-gold);
}

/* ---------------------- ALT FOOTER --------------------- */
.sf-footer-bottom {
    background: var(--sf-footer-dark);
    color: #e8e9eb;
}

.sf-footer-bottom-inner {
    min-height: 165px;
    display: grid;
    grid-template-columns: 1fr 1.45fr 180px;
    align-items: center;
    gap: 30px;
}

.sf-payment-area > span {
    display: block;
    margin-bottom: 15px;
    color: #f0f0f1;
    font-size: 12px;
    letter-spacing: .7px;
}

.sf-payment-icons {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 8px;
}

.sf-payment-icons > div {
    min-width: 58px;
    height: 48px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 6px;
    color: #e9eaec;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.05;
}

.sf-payment-icons .sf-mastercard {
    min-width: 62px;
    gap: 0;
}

.sf-mastercard i,
.sf-mastercard b {
    width: 19px;
    height: 19px;
    display: block;
    border-radius: 50%;
}

.sf-mastercard i {
    margin-right: -7px;
    background: #ef5137;
}

.sf-mastercard b {
    background: #f5ad31;
}

.sf-payment-icons .sf-amex {
    min-width: 70px;
    color: #9fc8e6;
    font-size: 8px;
    text-align: center;
}

.sf-payment-icons .sf-ssl {
    min-width: 78px;
    color: #fff;
    font-size: 10px;
    text-align: center;
}

.sf-copyright {
    text-align: center;
}

.sf-copyright p {
    margin: 0 0 12px;
    color: #f0f0f1;
    font-size: 13px;
}

.sf-copyright div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

.sf-copyright a,
.sf-copyright span {
    color: #d8dade;
    font-size: 13px;
}

.sf-copyright a {
    text-decoration: none;
}

.sf-copyright a:hover {
    color: #fff;
}

.sf-back-to-top {
    justify-self: end;
    min-width: 118px;
    height: 52px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid rgba(211, 184, 139, .6);
    border-radius: 6px;
    background: transparent;
    color: #e8dcc9;
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
}

.sf-back-to-top:hover {
    background: var(--sf-footer-gold);
    border-color: var(--sf-footer-gold);
    color: #fff;
}

.sf-back-to-top span {
    font-size: 18px;
    line-height: 1;
}

/* --------------------- RESPONSIVE ---------------------- */
@media (max-width: 1180px) {
    .sf-feature-item { padding: 18px 18px; }
    .sf-footer-main {
        grid-template-columns: 1.25fr 1fr 1fr 1.35fr;
        gap: 0;
    }
    .sf-footer-main .sf-footer-brand { grid-column: 1 / -1; border-right: 0; padding: 0 0 36px; }
    .sf-footer-main .sf-footer-brand p { max-width: 520px; }
    .sf-footer-main .sf-footer-contact { border-right: 0; }
    .sf-footer-bottom-inner { grid-template-columns: 1fr; padding: 30px 0; justify-items: center; }
    .sf-payment-area { text-align: center; }
    .sf-payment-icons { justify-content: center; }
    .sf-back-to-top { justify-self: center; }
}

@media (max-width: 900px) {
    .sf-footer-container { width: min(100% - 40px, 1400px); }
    .sf-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sf-feature-item:nth-child(2) { border-right: 0; }
    .sf-feature-item:nth-child(-n+2) { border-bottom: 1px solid var(--sf-footer-line); }
    .sf-footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 58px 0; }
    .sf-footer-brand { grid-column: 1 / -1; border-right: 0; padding: 0 0 35px; }
    .sf-footer-contact { border-right: 0; }
    .sf-newsletter-inner { min-height: 0; padding: 32px 0; flex-direction: column; align-items: stretch; }
    .sf-newsletter-form { width: 100%; }
}

@media (max-width: 620px) {
    .sf-footer-container { width: min(100% - 32px, 1400px); }
    .sf-feature-grid { grid-template-columns: 1fr; }
    .sf-feature-item,
    .sf-feature-item:nth-child(2) {
        min-height: 92px;
        padding: 18px 8px;
        border-right: 0;
        border-bottom: 1px solid var(--sf-footer-line);
    }
    .sf-feature-item:last-child { border-bottom: 0; }
    .sf-footer-main { grid-template-columns: 1fr; padding: 45px 0; }
    .sf-footer-brand,
    .sf-footer-column,
    .sf-footer-contact {
        padding: 0 0 26px;
        margin-bottom: 26px;
        border-right: 0;
        border-bottom: 1px solid var(--sf-footer-line);
    }
    .sf-footer-contact { margin-bottom: 0; border-bottom: 0; }
    .sf-logo-stone { font-size: 43px; }
    .sf-newsletter-text { align-items: flex-start; }
    .sf-newsletter-form { flex-direction: column; }
    .sf-newsletter-form input {
        width: 100%;
        border-right: 1px solid #d7d1c7;
        border-radius: 5px;
    }
    .sf-newsletter-form button {
        width: 100%;
        margin-top: 9px;
        border-radius: 5px;
    }
    .sf-footer-bottom-inner { min-height: 0; gap: 24px; }
    .sf-copyright div { flex-wrap: wrap; }
}
/* =========================================
   HEADER LOGO BOYUTU
========================================= */

.site-header .site-branding {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-header .custom-logo-link {
    display: block;
    line-height: 0;
}

.site-header .custom-logo {
    display: block;
    width: 180px;
    height: auto;
    max-height: 75px;
    object-fit: contain;
}
/* =========================================================
   STONE FAMILY - WOOCOMMERCE MAĞAZA SAYFASI
   ========================================================= */

/* Mağaza genel alanı */
.woocommerce-page .site-main {
    padding: 70px 0 90px;
}

/* Sayfa başlığı */
.woocommerce-page .woocommerce-products-header {
    margin-bottom: 35px;
    text-align: center;
}

.woocommerce-page .woocommerce-products-header__title.page-title {
    margin: 0;
    font-family: Georgia, serif;
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 400;
    color: var(--sf-black);
}

/* Sonuç sayısı ve sıralama */
.woocommerce-page .woocommerce-result-count {
    margin: 0 0 30px;
    color: #777;
    font-size: 13px;
}

.woocommerce-page .woocommerce-ordering {
    margin: 0 0 30px;
}

.woocommerce-page .woocommerce-ordering select {
    min-width: 210px;
    padding: 11px 38px 11px 14px;
    border: 1px solid var(--sf-border);
    border-radius: 0;
    background: #fff;
    color: var(--sf-text);
    font-size: 13px;
    outline: none;
}

/* Ürün grid */
.woocommerce-page .woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px 24px;
    margin: 0;
    padding: 0;
}

.woocommerce-page .woocommerce ul.products::before,
.woocommerce-page .woocommerce ul.products::after {
    display: none;
}

/* Ürün kartı */
.woocommerce-page .woocommerce ul.products li.product {
    width: auto;
    float: none;
    margin: 0;
    padding: 0;
    text-align: left;
    position: relative;
}

/* Ürün görseli */
.woocommerce-page .woocommerce ul.products li.product > a:first-child {
    display: block;
    overflow: hidden;
    background: #f6f5f2;
    position: relative;
}

.woocommerce-page .woocommerce ul.products li.product a img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    aspect-ratio: 1 / 1.18;
    object-fit: cover;
    transition: transform .4s ease;
}

/* Hover */
.woocommerce-page .woocommerce ul.products li.product:hover a img {
    transform: scale(1.04);
}

/* İndirim rozeti */
.woocommerce-page .woocommerce span.onsale {
    top: 12px;
    left: 12px;
    right: auto;
    margin: 0;
    min-width: auto;
    min-height: auto;
    padding: 7px 10px;
    border-radius: 0;
    background: var(--sf-black);
    color: #fff;
    font-size: 10px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .8px;
}

/* Ürün adı */
.woocommerce-page .woocommerce ul.products li.product
.woocommerce-loop-product__title {
    margin: 16px 0 7px;
    padding: 0;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
    color: var(--sf-black);
}

/* Fiyat */
.woocommerce-page .woocommerce ul.products li.product .price {
    display: block;
    margin: 0 0 15px;
    color: var(--sf-gold);
    font-size: 16px;
    font-weight: 700;
}

.woocommerce-page .woocommerce ul.products li.product .price del {
    margin-right: 6px;
    color: #999;
    font-size: 13px;
    font-weight: 400;
}

.woocommerce-page .woocommerce ul.products li.product .price ins {
    text-decoration: none;
}

/* Sepete ekle butonu */
.woocommerce-page .woocommerce ul.products li.product .button,
.woocommerce-page .woocommerce ul.products li.product a.added_to_cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 12px 18px;
    border: 1px solid var(--sf-black);
    border-radius: 0;
    background: transparent;
    color: var(--sf-black);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1px;
    transition: all .25s ease;
}

.woocommerce-page .woocommerce ul.products li.product .button:hover {
    background: var(--sf-black);
    color: #fff;
}

/* Sepete eklendikten sonra */
.woocommerce-page .woocommerce ul.products li.product a.added_to_cart {
    margin-top: 8px;
    border-color: var(--sf-gold);
    color: var(--sf-gold);
}

/* Sayfalama */
.woocommerce-page .woocommerce nav.woocommerce-pagination {
    margin-top: 55px;
}

.woocommerce-page .woocommerce nav.woocommerce-pagination ul {
    border: 0;
}

.woocommerce-page .woocommerce nav.woocommerce-pagination ul li {
    border: 0;
    margin: 0 3px;
}

.woocommerce-page .woocommerce nav.woocommerce-pagination ul li a,
.woocommerce-page .woocommerce nav.woocommerce-pagination ul li span {
    min-width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--sf-border);
    background: #fff;
    color: var(--sf-black);
    font-size: 13px;
}

.woocommerce-page .woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce-page .woocommerce nav.woocommerce-pagination ul li a:hover {
    border-color: var(--sf-black);
    background: var(--sf-black);
    color: #fff;
}

/* Tablet */
@media (max-width: 900px) {

    .woocommerce-page .woocommerce ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 28px 18px;
    }
}

/* Mobil */
@media (max-width: 600px) {

    .woocommerce-page .site-main {
        padding: 45px 0 65px;
    }

    .woocommerce-page .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 25px 12px;
    }

    .woocommerce-page .woocommerce-products-header__title.page-title {
        font-size: 34px;
    }

    .woocommerce-page .woocommerce-loop-product__title {
        font-size: 13px;
    }

    .woocommerce-page .woocommerce ul.products li.product .price {
        font-size: 14px;
    }

    .woocommerce-page .woocommerce ul.products li.product .button {
        width: 100%;
        padding: 11px 8px;
        font-size: 9px;
    }
}