﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}
.site-footer {
    background-color: #F5EFE7; /* Beige */
    padding: 60px 0 20px;
    font-family: 'Inter', sans-serif;
    color: #2E4156; /* Navy */
}

.footer-container {
    /*max-width: 1200px;*/
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-brand h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.6;
    color: #567C8D; /* Teal */
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 14px;
    font-weight: 500;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links ul li {
        margin-bottom: 10px;
        font-size: 14px;
    }

        .footer-links ul li a {
            text-decoration: none;
            color: #2E4156;
            transition: color 0.2s ease;
        }

            .footer-links ul li a:hover {
                color: #567C8D;
            }

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #C8D9E6; /* Sky Blue */
    text-align: center;
    font-size: 13px;
    color: #567C8D;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
.hero-slider {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.slides {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

    .slide.active {
        opacity: 1;
        z-index: 1;
    }

    .slide::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(46, 65, 86, 0.45); /* Navy overlay */
    }

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 80px;
    color: #FFFFFF;
}

    .slide-content h1 {
        font-size: 46px;
        font-weight: 500;
        margin-bottom: 16px;
    }

    .slide-content p {
        font-size: 18px;
        margin-bottom: 28px;
        color: #F5EFE7;
    }

@media (max-width: 768px) {
    .hero-slider {
        height: 38vh;
    }

    .slide-content {
        padding: 60px 14px;
    }

        .slide-content h1 {
            font-size: 20px;
            line-height: 1.2;
            margin-bottom: 4px;
        }

        .slide-content p {
            font-size: 12px;
            line-height: 1.3;
            margin-bottom: 8px;
        }

        .slide-content .btn,
        .slide-content button,
        .slide-content a {
            font-size: 12px;
            padding: 6px 12px;
        }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 32vh;
    }

    .slide-content {
        padding: 14px 10px;
    }

        .slide-content h1 {
            font-size: 18px;
        }

        .slide-content p {
            font-size: 11px;
        }

        .slide-content .btn,
        .slide-content button,
        .slide-content a {
            font-size: 11px;
            padding: 5px 10px;
        }
}

.btn-primary {
    padding: 14px 44px;
    background: linear-gradient( 135deg, #4F6F7C, #3E5A66 );
    color: #FFFFFF;
    border: none;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}


    .btn-primary:hover {
        background: linear-gradient( 135deg, #5F8492, #4B6D7A );
    }


.slider-nav {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

    .slider-nav .dot {
        width: 10px;
        height: 10px;
        background: #C8D9E6;
        border-radius: 50%;
        cursor: pointer;
        opacity: 0.6;
    }

        .slider-nav .dot.active {
            background: #FFFFFF;
            /*opacity: 1;*/
        }

/* Responsive */
@media (max-width: 768px) {
    .slide-content {
        padding: 40px 24px;
    }

        .slide-content h1 {
            font-size: 30px;
        }

        .slide-content p {
            font-size: 15px;
        }
}
.product-showcase {
    padding: 80px 24px;
    background-color: #FFFFFF;
}

.section-header {
    /*max-width: 1200px;*/
    margin: 0 auto 50px;
    text-align: center;
}

    .section-header h2 {
        font-size: 36px;
        font-weight: 500;
        color: #2E4156;
        margin-bottom: 10px;
    }

    .section-header p {
        font-size: 16px;
        color: #567C8D;
    }


.product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    font-family: Arial, sans-serif;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.product-image {
    position: relative;
    width: 100%;
    padding-top: 100%; /* kare oran */
    overflow: hidden;
}

    .product-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
.favorite-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 14px;
    cursor: pointer;
}
.card-brand {
    display: block;
    font-size: 10px;
    color: #999;
    margin-bottom: 2px;
}
.card-category {
    font-size: 11px;
    color: #555;
}

.card-title {
    font-size: 13px;
    margin: 2px 0;
    line-height: 1.2;
}

.card-price {
    font-size: 13px;
    font-weight: bold;
    color: #333;
}

.old-price {
    text-decoration: line-through;
    color: #aaa;
    margin-right: 4px;
}

.card-rating {
    font-size: 11px;
    color: #f5a623;
    margin-top: 2px;
}

.color-options {
    margin-top: 4px;
}

.color-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 3px;
    border: 1px solid #ccc;
}

.card-info {
    padding: 8px 10px;
}
.product-card:hover img {
    transform: scale(1.05);
}

.product-info {
    padding: 18px 4px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .product-info h3 {
        font-size: 17px;
        font-weight: 400;
        color: #2E4156;
    }

.price {
    font-size: 16px;
    font-weight: 500;
    color: #567C8D;
}

.product-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr); /* default 4 */
}

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr); /* orta ekranlarda 3 */
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* küçük ekranlarda 2 */
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* mobilde 1 */
    }
}
@media (max-width: 389px) {
    .product-grid {
        grid-template-columns: repeat(1, 1fr); /* mobilde 1 */
    }
}

.product-image {
    position: relative;
    overflow: hidden;
    background-color: #F5EFE7;
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: opacity 0.4s ease, transform 0.6s ease;
    }

    .product-image .img-hover {
        position: absolute;
        inset: 0;
        opacity: 0;
    }

.product-card:hover .img-main {
    opacity: 0;
}

.product-card:hover .img-hover {
    /*opacity: 1;*/
}

.product-card:hover img {
    transform: scale(1.05);
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.brand-story {
    padding: 80px 20px;
    background-color: #F5EFE8; /* Beige */
    text-align: center;
}

.brand-story-inner {
    max-width: 800px;
    margin: 0 auto;
}

.brand-story h2 {
    font-size: 36px;
    font-weight: 500;
    color: #2E4156; /* Navy */
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.brand-story p {
    font-size: 18px;
    line-height: 1.8;
    color: #567C8D; /* Teal */
}
@media (max-width: 768px) {
    .brand-story {
        padding: 40px 15px; /* üst-alt ve yan padding küçüldü */
    }

        .brand-story h2 {
            font-size: 28px; /* başlık küçüldü */
            margin-bottom: 15px;
        }

        .brand-story p {
            font-size: 16px; /* paragraf küçüldü */
            line-height: 1.6;
        }
}

@media (max-width: 480px) {
    .brand-story {
        padding: 30px 10px; /* daha da daraltıldı */
    }

        .brand-story h2 {
            font-size: 24px;
        }

        .brand-story p {
            font-size: 14px;
            line-height: 1.5;
        }
}
.category-showcase {
    padding: 80px 24px;
    background-color: #FFFFFF;
}

.category-grid {
    /*max-width: 1200px;*/
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.category-card {
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
}

    .category-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.category-overlay {
    position: absolute;
    inset: 0;
    background: rgba(46, 65, 86, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    opacity: 1;
    transition: opacity 0.3s ease;
}

    .category-overlay h3 {
        font-size: 22px;
        font-weight: 400;
        margin-bottom: 10px;
    }

    .category-overlay span {
        font-size: 13px;
        letter-spacing: 1px;
        border-bottom: 1px solid #FFFFFF;
        padding-bottom: 2px;
    }

.category-card:hover img {
    transform: scale(1.05);
}

.category-card:hover .category-overlay {
    /*opacity: 1;*/
}

/* Responsive */
@media (max-width: 900px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
}
.why-zarifcam {
    padding: 90px 24px;
    background-color: #F5EFE8;
}

.why-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

    .why-inner h2 {
        font-size: 34px;
        font-weight: 500;
        color: #2E4156;
        margin-bottom: 50px;
    }

.why-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.why-item h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #2E4156;
}

.why-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #567C8D;
}

/* Responsive */
@media (max-width: 900px) {
    .why-zarifcam {
        padding: 40px 16px;
    }

    .why-inner h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .why-items {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-item h3 {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .why-item p {
        font-size: 14px;
        line-height: 1.4;
        margin: 0;
    }
}

@media (max-width: 600px) {
    .why-zarifcam {
        padding: 28px 14px; /* asıl fark burada */
    }

    .why-inner h2 {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .why-items {
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .container,
    .container-fluid,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl,
    .container-xxl {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}
@media (max-width: 768px) {
    .slide-content {
        max-width: 100%;
        padding: 0 16px;
        text-align: center;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

        .slide-content h1 {
            font-size: 18px;
            line-height: 1.2;
            margin-bottom: 6px;
        }

        .slide-content p {
            font-size: 12px;
            line-height: 1.3;
            margin-bottom: 10px;
        }

        .slide-content .btn,
        .slide-content button,
        .slide-content a {
            font-size: 11px;
            padding: 6px 14px;
            letter-spacing: 1px;
        }
}
@media (max-width: 768px) {
    .site-footer {
        padding: 32px 16px 16px;
        text-align: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-brand h3 {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .footer-brand p {
        font-size: 13px;
        line-height: 1.4;
    }

    .footer-links h4 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .footer-links ul li {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .footer-bottom {
        margin-top: 20px;
        padding-top: 12px;
        font-size: 12px;
    }
}

.category-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    /*padding: 0 40px;*/ /* butonlar için boşluk */
}


    .category-track::-webkit-scrollbar {
        display: none;
    }

.category-card {
    flex-shrink: 0;
    width: 260px; /* 🔴 ASIL KRİTİK NOKTA */
    height: 180px;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    flex: 0 0 auto; /* kartların sabit genişlikte olması */
}


@media (max-width: 768px) {
    .category-card {
        min-width: 85%;
    }
}




    .slider-btn.left {
        left: 0;
    }

    .slider-btn.right {
        right: 0;
    }
/* TABLET */
@media (max-width: 1024px) {
    .category-card {
        width: 220px;
        height: 160px;
    }
}

/* MOBİL */
@media (max-width: 768px) {
    .category-card {
        width: 85%;
        height: 200px;
    }

    .slider-btn {
        display: none;
    }
}


.category-title {
    text-align: center;
    font-size: 34px;
    font-weight: 500;
    margin-bottom: 40px;
    color: #2E4156;
}

.category-slider {
    /*max-width: 1200px;*/
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
}


.slider-btn {
    background: none;
    border: none;
    font-size: 42px;
    cursor: pointer;
    color: #567C8D;
    padding: 0 12px;
    user-select: none;
}

    .slider-btn:hover {
        color: #2E4156;
    }
.category-bar {
    border-top: 1px solid rgba(0,0,0,0.05);
    background: #fff;
}



  

.category-bar {
    border-top: 1px solid rgba(0,0,0,0.05);
    background: #fff;
}


.category-track a {
    font-size: 13px;
    color: #2E4156;
    white-space: nowrap;
    overflow-x: auto;
    overflow-x: hidden;
    text-decoration: none;
    transition: color .2s ease;
    -webkit-overflow-scrolling: touch;
}

        .category-track a:hover {
            color: #567C8D;
        }
.category-track {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    
}

.category-item {
    position: relative;
}

.category-link {
    cursor: pointer;
    font-weight: 500;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
}

.category-item.open .submenu {
    display: flex;
}

.submenu a {
    padding: 10px 14px;
    text-decoration: none;
    color: #333;
}

    .submenu a:hover {
        background: #f5f5f5;
    }
.header-category-track {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 28px;
    padding: 12px 24px;
    list-style: none;
    overflow: visible; /* 🔥 dropdown için şart */
}
.site-header,
.category-bar,
.header-category-track,
.category-item {
    overflow: visible !important;
}
.category-item {
    position: relative;
}
.category-link {
    background: none;
    border: none;
    padding: 0;
    font-weight: 500;
    cursor: pointer;
}
.color-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid #ccc;
    cursor: pointer;
}

    .color-circle.active {
        border-color: #000;
        box-shadow: 0 0 0 2px #000 inset;
    }


    /*watsap*/
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    z-index: 1000;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .whatsapp-float img {
        width: 28px;
        height: 28px;
    }

    .whatsapp-float:hover {
        transform: scale(1.08);
        box-shadow: 0 8px 22px rgba(0,0,0,0.35);
    }
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 70px;
    height: 70px;
    background-color: #25D366; /* WhatsApp yeşili */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    text-decoration: none;
}

    .whatsapp-float i {
        color: #fff; /* BEYAZ */
        font-size: 36px; /* BÜYÜK */
    }
