/*
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;
}

/* FOOTER */
.site-footer {
    padding: 55px 0 25px;
    background: var(--sf-black);
    color: #fff;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-main h3 {
    margin: 0 0 8px;
    font-family: Georgia, serif;
    font-size: 30px;
    font-weight: 400;
}

.footer-main p {
    margin: 0;
    color: #aaa;
}

.footer-main ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.footer-bottom {
    padding-top: 20px;
    color: #888;
    font-size: 13px;
}

/* 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;
    }

    .footer-main {
        flex-direction: column;
    }

    .footer-main ul {
        flex-wrap: wrap;
    }
}
/* =========================================================
   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 - FOOTER
========================================= */

.site-footer {
    background: #1f1f1f;
    color: #e8e8e8;
    padding: 70px 0 25px;
}

.sf-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    gap: 55px;
    padding-bottom: 50px;
}

.sf-footer-column h3 {
    margin: 0 0 25px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);

    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: #ffffff;
}

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

.sf-footer-links li {
    margin-bottom: 14px;
}

.sf-footer-links a,
.sf-footer-contact a {
    color: #cfcfcf;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sf-footer-links a:hover,
.sf-footer-contact a:hover {
    color: #c8a46a;
}

.sf-contact-item {
    margin: 0 0 20px;
    color: #cfcfcf;
    line-height: 1.7;
}

.sf-contact-item strong {
    color: #ffffff;
    margin-right: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    font-size: 13px;
    color: #9f9f9f;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: #bdbdbd;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #c8a46a;
}


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

    .sf-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px 35px;
    }

}


/* MOBİL */
@media screen and (max-width: 767px) {

    .site-footer {
        padding: 50px 0 25px;
    }

    .sf-footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 35px;
    }

    .sf-footer-column h3 {
        margin-bottom: 18px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

}
/* =========================================
   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;
    }

}