
:root {
    --primary: #d4a574;
    --primary-dark: #b8895c;
    --pink: #e8b4b8;
    --pink-light: #f8e8e0;
    --dark: #2c2c2c;
    --gray: #6c757d;
    --light: #f9f5f0;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; color: var(--dark); background: var(--white); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* Top Bar */
.top-bar { background: var(--dark); color: #fff; padding: 8px 0; font-size: 13px; }
.top-bar a { color: #ccc; margin-right: 15px; transition: color .3s; }
.top-bar a:hover { color: var(--primary); }
.top-social a { margin-left: 10px; font-size: 16px; }

/* Navbar */
.main-nav { background: var(--white); box-shadow: 0 2px 15px rgba(0,0,0,.08); padding: 8px 0; z-index: 1000; }
.brand-text { font-size: 24px; font-weight: 700; color: var(--primary); }
.navbar-nav .nav-link { color: var(--dark); font-weight: 500; padding: 8px 16px !important; transition: color .3s; }
.navbar-nav .nav-link:hover { color: var(--primary); }
.dropdown-menu { border: none; box-shadow: 0 5px 20px rgba(0,0,0,.1); border-radius: 8px; }
.dropdown-item:hover { background: var(--pink-light); color: var(--primary); }
.offcanvas-title { font-weight: 700; color: var(--primary-dark); }

.btn-whatsapp { background: #25d366; color: #fff !important; border-radius: 20px; padding: 6px 16px; font-weight: 500; border: none; }
.btn-whatsapp:hover { background: #1da851; color: #fff !important; }

/* Hero Slider — çapraz solma, Ken Burns, ok/nokta — misslisa.com.tr tarzı */
.hero-section {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, #fef5ee 0%, #fce8e0 35%, #f8e8e0 70%, #f5e6d8 100%);
    isolation: isolate;
}
.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
    min-height: 600px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s ease, visibility 0.9s ease;
    z-index: 0;
}
.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}
.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    will-change: transform;
}
@media (min-width: 992px) {
    .hero-slide-bg {
        /* Masaüstünde görsel kırpılmasın, alana sığsın */
        background-size: contain;
        background-position: center center;
    }
    .hero-section {
        background: #f8efe8;
    }
}
.hero-slide.active .hero-slide-bg {
    animation: heroKenBurns 11s ease-out forwards;
}
.hero-slide:not(.active) .hero-slide-bg {
    animation: none !important;
    transform: scale(1);
}
@media (prefers-reduced-motion: reduce) {
    .hero-slide {
        transition-duration: 0.2s;
    }
    .hero-slide.active .hero-slide-bg {
        animation: none;
    }
    .hero-overlay {
        transition-duration: 0.15s;
    }
}
@keyframes heroKenBurns {
    from { transform: scale(1); }
    to { transform: scale(1.07); }
}
.hero-slide-bg--fallback {
    background: linear-gradient(145deg, var(--pink-light) 0%, var(--pink) 45%, var(--light) 100%);
}
.hero-slide-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        165deg,
        rgba(255, 252, 248, 0.15) 0%,
        rgba(248, 232, 224, 0.35) 35%,
        rgba(44, 44, 44, 0.25) 100%
    );
}
.hero-slide-scrim--light {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(248, 232, 224, 0.55) 100%);
}
.hero-overlay {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 0 8px;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease 0.12s, transform 0.65s ease 0.12s;
}
.hero-slide.active .hero-overlay {
    opacity: 1;
    transform: translateY(0);
}
.hero-section h1 {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
    line-height: 1.15;
    text-shadow: 0 1px 24px rgba(255, 255, 255, 0.65);
    white-space: normal;
}
.hero-section p {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: #4a4a4a;
    margin-bottom: 26px;
    line-height: 1.55;
    text-shadow: 0 1px 16px rgba(255, 255, 255, 0.5);
}
/* Miss Lisa stiline daha yakın masaüstü yerleşimi */
@media (min-width: 992px) {
    .hero-section {
        min-height: 640px;
    }
    .hero-slide {
        min-height: 640px;
        align-items: flex-end;
        padding-bottom: 90px;
    }
    .hero-slide-scrim {
        background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(255, 255, 255, 0.06) 52%,
            rgba(255, 255, 255, 0.82) 74%,
            rgba(255, 255, 255, 0.96) 100%
        );
    }
    .hero-overlay {
        max-width: 900px;
    }
    .hero-section h1 {
        font-size: clamp(2.3rem, 4.8vw, 3.5rem);
        text-transform: uppercase;
        letter-spacing: 0.02em;
        margin-bottom: 14px;
        text-shadow: none;
    }
    .hero-section p {
        text-transform: uppercase;
        color: #1f1f1f;
        font-size: 1.1rem;
        margin-bottom: 22px;
        text-shadow: none;
    }
    .hero-section .btn-primary-custom,
    .hero-section .btn-outline-custom {
        border-radius: 999px;
        min-width: 170px;
        font-weight: 700;
    }
    .hero-section .btn-outline-custom {
        background: rgba(255,255,255,.7);
        color: #b8895c;
        border-color: rgba(184,137,92,.7);
    }
    .hero-dots {
        background: rgba(255,255,255,.9);
    }
}
.hero-ui {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 22px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.hero-ui > * {
    pointer-events: auto;
}
.hero-dots {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(212, 165, 116, 0.35);
    cursor: pointer;
    transition: transform 0.25s, background 0.25s, width 0.25s;
}
.hero-dot:hover,
.hero-dot:focus-visible {
    background: rgba(212, 165, 116, 0.65);
    outline: none;
}
.hero-dot.active {
    background: var(--primary);
    width: 26px;
    border-radius: 6px;
    transform: scale(1);
}
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    color: var(--primary);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.hero-nav:hover,
.hero-nav:focus-visible {
    background: var(--primary);
    color: #fff;
    outline: none;
}
.hero-nav-prev {
    left: 16px;
}
.hero-nav-next {
    right: 16px;
}
.hero-nav i {
    font-size: 1.35rem;
    line-height: 1;
}
@media (max-width: 576px) {
    .hero-nav {
        width: 38px;
        height: 38px;
    }
    .hero-nav-prev {
        left: 6px;
    }
    .hero-nav-next {
        right: 6px;
    }
    .hero-nav i {
        font-size: 1.1rem;
    }
}
.btn-primary-custom { background: var(--primary); color: #fff; border: none; padding: 12px 30px; border-radius: 30px; font-weight: 600; transition: all .3s; }
.btn-primary-custom:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); }
.btn-outline-custom { border: 2px solid var(--primary); color: var(--primary); padding: 10px 28px; border-radius: 30px; font-weight: 600; background: transparent; transition: all .3s; }
.btn-outline-custom:hover { background: var(--primary); color: #fff; }

/* Section Common */
.section { padding: 80px 0; }
.section-light { background: var(--light); }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 36px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.section-title p { color: var(--gray); font-size: 16px; }
.section-title h2::after { content: ''; display: block; width: 60px; height: 3px; background: var(--primary); margin: 15px auto 0; }

/* Service Cards */
.service-card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,.06); transition: all .3s; margin-bottom: 30px; display: flex; flex-direction: column; height: 100%; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,.12); }
.service-card .card-img-wrap { position: relative; width: 100%; padding-top: 65%; overflow: hidden; }
.service-card .card-img-wrap img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-card:hover .card-img-wrap img { transform: scale(1.05); }
.service-card img:not(.card-img-wrap img) { width: 100%; height: 220px; object-fit: cover; }
.service-card .card-body { padding: 25px; text-align: center; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.service-card h5 { font-weight: 600; color: var(--dark); margin-bottom: 10px; font-size: 17px; }
.service-card p { color: var(--gray); font-size: 14px; flex: 1; }
.service-card .btn-primary-custom { margin-top: auto; display: inline-block; }

/* Product Cards */
.product-card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,.06); transition: all .3s; margin-bottom: 30px; display: flex; flex-direction: column; height: 100%; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,.12); }
.product-card .card-img-wrap { position: relative; width: 100%; padding-top: 75%; overflow: hidden; }
.product-card .card-img-wrap img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .card-img-wrap img { transform: scale(1.05); }
.product-card img:not(.card-img-wrap img) { width: 100%; height: 250px; object-fit: cover; }
.product-card .card-body { padding: 20px; }
.product-card h5 { font-weight: 600; margin-bottom: 8px; }
.product-card .price { color: var(--primary); font-size: 20px; font-weight: 700; margin: 10px 0; }
.product-card .btn-order { background: #25d366; color: #fff; border: none; padding: 8px 20px; border-radius: 20px; font-size: 14px; font-weight: 500; display: inline-flex; align-items: center; gap: 6px; }
.product-card .btn-order:hover { background: #1da851; }

/* Brand Steps */
.brand-steps { text-align: center; }
.step-item {
    padding: 30px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.step-item i { font-size: 48px; color: var(--primary); margin-bottom: 15px; display: block; }
.step-item h5 { font-weight: 600; margin-bottom: 10px; }
.step-item p { color: var(--gray); font-size: 14px; margin-bottom: 0; flex: 1; }

/* Reviews */
.review-card { background: var(--white); border-radius: 12px; padding: 30px; box-shadow: 0 5px 15px rgba(0,0,0,.05); margin-bottom: 20px; text-align: center; }
.review-card .stars { color: #ffc107; margin-bottom: 15px; font-size: 18px; }
.review-card p { font-style: italic; color: var(--gray); margin-bottom: 15px; }
.review-card .reviewer { font-weight: 600; color: var(--dark); }
.review-card .source { font-size: 12px; color: var(--gray); }

/* Ana sayfa: ürün / yorum — Swiper (tam genişlik; ürün md 2 / lg 3, yorum geniş 2’li) */
.home-section-swiper.swiper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 4px 44px 42px;
    overflow: hidden;
    --swiper-theme-color: var(--primary);
    --swiper-navigation-size: 22px;
}
.home-products-swiper .swiper-slide,
.home-reviews-swiper .swiper-slide {
    display: flex;
    height: auto;
    box-sizing: border-box;
}
.home-products-swiper .swiper-slide > .product-card,
.home-reviews-swiper .swiper-slide > .review-card {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}
.home-reviews-swiper .swiper-slide > .review-card {
    text-align: center;
    justify-content: flex-start;
    min-height: 220px;
    padding: 28px 32px;
}
@media (min-width: 992px) {
    .home-reviews-swiper .swiper-slide > .review-card {
        min-height: 260px;
        padding: 36px 40px;
    }
    .home-reviews-swiper .review-card p {
        font-size: 1.05rem;
        line-height: 1.65;
        max-width: 42rem;
        margin-left: auto;
        margin-right: auto;
    }
}
.home-swiper-nav {
    width: 42px;
    height: 42px;
    margin-top: 0 !important;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 2px 14px rgba(0,0,0,.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s, box-shadow .2s;
}
.home-swiper-nav::after { display: none !important; }
.home-swiper-nav i { font-size: 1.35rem; line-height: 1; pointer-events: none; }
.home-swiper-nav:hover,
.home-swiper-nav:focus {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 18px rgba(212,165,116,.35);
}
.home-section-swiper .swiper-button-prev { left: 0; }
.home-section-swiper .swiper-button-next { right: 0; }
.home-swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 6px;
}
.home-swiper-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    opacity: .35;
    background: var(--primary);
    transition: opacity .2s, transform .2s;
}
.home-swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.12);
}

/* Blog Cards */
.blog-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,.06); transition: all .3s; margin-bottom: 30px; }
.blog-card:hover { transform: translateY(-3px); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card .card-body { padding: 20px; }
.blog-card h5 { font-weight: 600; margin-bottom: 8px; }
.blog-card .date { font-size: 13px; color: var(--gray); }
.blog-featured { background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,.08); }
.blog-featured-image { min-height: 320px; object-fit: cover; background: var(--pink-light); }
.blog-featured-body { padding: 30px; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.blog-featured-badge { display: inline-block; font-size: 12px; font-weight: 600; color: var(--primary); background: rgba(212,165,116,.14); border-radius: 30px; padding: 6px 12px; margin-bottom: 12px; }
.blog-featured h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: 12px; }
.blog-pagination .page-link { border: none; margin: 0 4px; border-radius: 10px; color: var(--dark); background: #f5f5f5; min-width: 38px; text-align: center; }
.blog-pagination .page-item.active .page-link { background: var(--primary); color: #fff; }
.blog-pagination .page-link:hover { background: #ead7c3; color: var(--dark); }

/* Certificate Grid */
.cert-card { position: relative; border-radius: 12px; overflow: hidden; margin-bottom: 30px; cursor: pointer; }
.cert-card img { width: 100%; height: 300px; object-fit: cover; transition: transform .3s; }
.cert-card:hover img { transform: scale(1.05); }
.cert-card .overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; background: linear-gradient(transparent, rgba(0,0,0,.7)); color: #fff; }

/* Contact */
.contact-form { background: var(--white); padding: 40px; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,.06); }
.contact-form .form-control { border: 2px solid #eee; border-radius: 8px; padding: 12px 16px; }
.contact-form .form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 .2rem rgba(212,165,116,.15); }
.contact-info-box { background: var(--primary); color: #fff; padding: 40px; border-radius: 12px; height: 100%; }
.contact-info-box h4 { margin-bottom: 20px; }
.contact-info-box p { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.contact-info-box i { font-size: 20px; }
.contact-map { border-radius: 12px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,.08); position: relative; clear: both; z-index: 1; }
.contact-map iframe,
.contact-map > div,
.contact-map > * {
    width: 100% !important;
    max-width: 100% !important;
    position: static !important;
    float: none !important;
    display: block !important;
}
.contact-map iframe { width: 100% !important; min-height: 320px; height: 320px !important; border: 0; }
@media (max-width: 767.98px) {
    .contact-map iframe { min-height: 260px; height: 260px !important; }
}

/* Page Header */
.page-header { background: linear-gradient(135deg, var(--pink-light), var(--light)); padding: 60px 0; text-align: center; }
.page-header h1 { font-size: 36px; font-weight: 700; color: var(--dark); }
.breadcrumb { justify-content: center; }
.breadcrumb a { color: var(--primary); }

/* Footer */
.site-footer { background: var(--dark); color: #ccc; padding: 60px 0 20px; }
.footer-title { color: #fff; font-weight: 600; margin-bottom: 20px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #ccc; transition: color .3s; }
.footer-links a:hover { color: var(--primary); }
.footer-social a { color: #ccc; font-size: 20px; margin-right: 12px; transition: color .3s; }
.footer-social a:hover { color: var(--primary); }
.site-footer hr { border-color: rgba(255,255,255,.1); margin: 30px 0 15px; }

/* Floating WhatsApp */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background: #25d366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; box-shadow: 0 4px 15px rgba(37,211,102,.4); z-index: 9999; transition: all .3s; animation: pulse 2s infinite; }
.whatsapp-float:hover { background: #1da851; color: #fff; transform: scale(1.1); }
@keyframes pulse { 0%,100% { box-shadow: 0 4px 15px rgba(37,211,102,.4); } 50% { box-shadow: 0 4px 25px rgba(37,211,102,.6); } }
.mobile-sticky-cta { display: none; }

/* Lightbox */
.lightbox-overlay { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,.9); z-index: 10000; align-items: center; justify-content: center; }
.lightbox-overlay.active { display: flex; }
.lightbox-overlay img { max-width: 90%; max-height: 90vh; border-radius: 8px; }
.lightbox-close { position: absolute; top: 20px; right: 30px; color: #fff; font-size: 36px; cursor: pointer; }

/* Category Filter */
.filter-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.filter-tabs a { padding: 8px 20px; border-radius: 20px; background: var(--light); color: var(--dark); font-weight: 500; transition: all .3s; }
.filter-tabs a:hover, .filter-tabs a.active { background: var(--primary); color: #fff; }

/* Alert */
.alert-custom { border-radius: 8px; padding: 15px 20px; }

/* Detail Page */
.detail-content { padding: 40px 0; }
.detail-content h1 { font-size: 32px; font-weight: 700; margin-bottom: 20px; }
.detail-content img { border-radius: 12px; margin-bottom: 20px; }
.share-buttons a { display: inline-flex; align-items: center; gap: 5px; padding: 8px 16px; border-radius: 20px; margin-right: 8px; font-size: 14px; color: #fff; }
.share-fb { background: #1877f2; }
.share-tw { background: #1da1f2; }
.share-wa { background: #25d366; }
.blog-post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.blog-post-nav-link { border: 1px solid #eee; border-radius: 12px; padding: 14px; display: block; color: var(--dark); background: #fff; transition: all .2s; }
.blog-post-nav-link:hover { border-color: var(--primary); box-shadow: 0 6px 14px rgba(212,165,116,.12); color: var(--dark); }
.blog-post-nav-link small { display: block; color: var(--gray); margin-bottom: 4px; }
.blog-post-nav-link strong { font-size: 14px; line-height: 1.45; display: block; }
.blog-related-card { border: 1px solid #eee; border-radius: 12px; overflow: hidden; background: #fff; transition: all .2s; }
.blog-related-card:hover { transform: translateY(-3px); border-color: var(--primary); box-shadow: 0 7px 18px rgba(0,0,0,.08); }
.blog-related-card img { width: 100%; height: 110px; object-fit: cover; }

/* Responsive */
@media (max-width: 768px) {
    .hero-section { min-height: 500px; }
    .hero-slide {
        min-height: 500px;
        padding: 30px 14px 76px;
        align-items: flex-end;
    }
    .hero-slide-bg {
        background-position: center top;
    }
    .hero-slide-scrim {
        background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.06) 0%,
            rgba(255, 255, 255, 0.08) 48%,
            rgba(255, 255, 255, 0.84) 68%,
            rgba(255, 255, 255, 0.98) 100%
        );
    }
    .hero-overlay {
        max-width: 100%;
        background: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(2px);
        border-radius: 14px;
        padding: 14px 12px;
        transform: none;
        opacity: 1;
    }
    .hero-ui { bottom: 10px; }
    .hero-section h1 {
        font-size: 2.2rem;
        margin-bottom: 10px;
        color: #141414;
        text-transform: uppercase;
        text-shadow: none;
        letter-spacing: .02em;
    }
    .hero-section p {
        font-size: 1rem;
        margin: 0 auto 14px;
        color: #1f1f1f;
        font-weight: 500;
        max-width: 92%;
        text-shadow: none;
        text-transform: uppercase;
    }
    .hero-section .btn-primary-custom,
    .hero-section .btn-outline-custom {
        padding: 11px 22px;
        border-radius: 999px;
        font-size: 0.96rem;
        min-width: 148px;
        text-align: center;
        font-weight: 700;
    }
    .hero-section .btn-outline-custom {
        border-width: 2px;
        background: rgba(255,255,255,.7);
        color: #b8895c;
        border-color: rgba(184,137,92,.75);
    }
    .hero-dots {
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 6px 20px rgba(0,0,0,.14);
    }
    .hero-dot {
        background: rgba(212, 165, 116, 0.55);
    }
    .hero-dot.active {
        background: var(--primary);
        box-shadow: 0 2px 10px rgba(212,165,116,.55);
    }
    .hero-nav {
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 4px 18px rgba(0,0,0,.18);
    }
    .top-bar .top-contact { display: none; }
    .nav-buttons { margin-top: 15px; }
    /* Daha az dikey boşluk: ürün / yorum bölümleri daha erken gelsin */
    .section { padding: 36px 0; }
    .section-title { margin-bottom: 24px; }
    .section-title h2 { font-size: 26px; }
    .section-title p { font-size: 14px; }
    .service-card { margin-bottom: 18px; }
    .service-card .card-img-wrap { padding-top: 54%; }
    .service-card .card-body { padding: 16px 14px; }
    .brand-steps .step-item { padding: 14px 8px; }
    .brand-steps .step-item i { font-size: 30px; margin-bottom: 8px; }
    .brand-steps .step-item h5 { font-size: 0.8rem; margin-bottom: 6px; line-height: 1.25; letter-spacing: 0.02em; }
    .brand-steps .step-item p { font-size: 11px; line-height: 1.35; }
    .section-brand-steps { padding-top: 28px !important; padding-bottom: 28px !important; }
    .section-brand-steps .section-title { margin-bottom: 16px; }
    .section-brand-steps .section-title h2 { font-size: 1.35rem; }
    .product-card { margin-bottom: 18px; }
    .product-card .card-img-wrap { padding-top: 58%; }
    .product-card .card-body { padding: 16px; }
    .blog-card { margin-bottom: 18px; }
    .blog-card img { height: 160px; }
    .blog-card .card-body { padding: 16px; }
    .blog-featured .row { --bs-gutter-x: 0; }
    .blog-featured-image { min-height: 220px; }
    .blog-featured-body { padding: 18px; }
    .blog-featured h2 { font-size: 1.25rem; }
    .blog-post-nav { grid-template-columns: 1fr; }
    .review-card { padding: 20px 16px; margin-bottom: 14px; }
    .home-section-swiper { padding-left: 38px; padding-right: 38px; padding-bottom: 38px; }
    .home-swiper-nav { width: 36px; height: 36px; }
    .home-swiper-nav i { font-size: 1.1rem; }
    .page-header { padding: 32px 0; }
    .page-header h1 { font-size: 26px; }
    .filter-tabs { margin-bottom: 22px; gap: 8px; }
}

@media (max-width: 576px) {
    .hero-section { min-height: 540px; }
    .hero-slide { min-height: 540px; padding: 26px 10px 84px; }
    .hero-overlay { padding: 12px 10px; border-radius: 12px; background: rgba(255, 255, 255, 0.56); }
    .hero-section h1 {
        font-size: 2.25rem;
        line-height: 1.16;
        margin-bottom: 12px;
    }
    .hero-section p {
        font-size: 1rem;
        line-height: 1.34;
        margin-bottom: 16px;
    }
    .hero-section .btn-primary-custom,
    .hero-section .btn-outline-custom {
        min-width: 152px;
        font-size: 0.94rem;
        padding: 10px 16px;
    }
    .hero-ui { bottom: 10px; }
    .section { padding: 28px 0; }
    .section-title { margin-bottom: 20px; }
    .service-card .card-img-wrap { padding-top: 50%; }
    .home-section-swiper { padding-left: 32px; padding-right: 32px; }
    .home-swiper-nav { width: 32px; height: 32px; }
}

/* ========== ADMIN PANEL ========== */
.admin-wrapper { display: flex; min-height: 100vh; }
.admin-sidebar { width: 260px; background: var(--dark); color: #fff; padding: 20px 0; position: fixed; top: 0; left: 0; bottom: 0; overflow-y: auto; z-index: 100; }
.admin-sidebar .brand { padding: 15px 20px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 15px; }
.admin-sidebar .brand h4 { color: var(--primary); font-weight: 700; margin: 0; font-size: 18px; }
.admin-sidebar .nav-menu { list-style: none; padding: 0; }
.admin-sidebar .nav-menu li a { display: flex; align-items: center; gap: 10px; padding: 12px 20px; color: #ccc; transition: all .3s; font-size: 14px; }
.admin-sidebar .nav-menu li a:hover, .admin-sidebar .nav-menu li a.active { background: rgba(255,255,255,.1); color: var(--primary); }
.admin-sidebar .nav-menu li a i { font-size: 18px; width: 24px; text-align: center; }
.admin-content { margin-left: 260px; padding: 30px; flex: 1; background: #f4f6f9; min-height: 100vh; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.admin-header h2 { font-weight: 700; color: var(--dark); }
.admin-card { background: #fff; border-radius: 12px; padding: 25px; box-shadow: 0 2px 10px rgba(0,0,0,.05); margin-bottom: 20px; }
.stat-card { text-align: center; padding: 25px; }
.stat-card i { font-size: 36px; color: var(--primary); margin-bottom: 10px; }
.stat-card h3 { font-size: 32px; font-weight: 700; margin-bottom: 5px; }
.stat-card p { color: var(--gray); margin: 0; }
.admin-table { width: 100%; }
.admin-table th { background: var(--light); padding: 12px 15px; font-weight: 600; font-size: 14px; }
.admin-table td { padding: 12px 15px; border-bottom: 1px solid #eee; font-size: 14px; vertical-align: middle; }
.admin-table img { width: 60px; height: 60px; object-fit: cover; border-radius: 8px; }
.btn-admin { padding: 6px 14px; border-radius: 6px; font-size: 13px; font-weight: 500; border: none; cursor: pointer; }
.btn-edit { background: var(--primary); color: #fff; }
.btn-edit:hover { background: var(--primary-dark); color: #fff; }
.btn-delete { background: #dc3545; color: #fff; }
.btn-delete:hover { background: #c82333; color: #fff; }
.btn-add { background: var(--primary); color: #fff; padding: 8px 20px; border-radius: 8px; font-weight: 500; }
.btn-add:hover { background: var(--primary-dark); color: #fff; }
.admin-form .form-label { font-weight: 500; color: var(--dark); }
.admin-form .form-control, .admin-form .form-select { border: 2px solid #eee; border-radius: 8px; padding: 10px 14px; }
.admin-form .form-control:focus, .admin-form .form-select:focus { border-color: var(--primary); box-shadow: none; }

.admin-login { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--pink-light), var(--light)); }
.login-card { background: #fff; padding: 40px; border-radius: 16px; box-shadow: 0 10px 40px rgba(0,0,0,.1); max-width: 400px; width: 100%; }
.login-card h2 { text-align: center; color: var(--primary); font-weight: 700; margin-bottom: 30px; }

@media (max-width: 768px) {
    .admin-sidebar { width: 100%; position: relative; }
    .admin-content { margin-left: 0; }
    .admin-wrapper { flex-direction: column; }
}

/* About Feature Cards */
.about-feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,.06);
    transition: all .3s ease;
    height: 100%;
    border: 1px solid rgba(212,165,116,.1);
}
.about-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212,165,116,.15);
    border-color: var(--primary);
}
.about-feature-card .icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--pink-light), var(--pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary);
    transition: all .3s;
}
.about-feature-card:hover .icon-box {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}
.about-feature-card h5 { font-weight: 600; margin-bottom: 10px; color: var(--dark); }
.about-feature-card p { color: var(--gray); font-size: 14px; margin: 0; }

/* Contact Cards */
.contact-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,.06);
    transition: all .3s;
    height: 100%;
}
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
}
.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #fff;
    font-size: 24px;
}
.contact-card h6 { font-weight: 600; margin-bottom: 8px; }
.contact-card p { color: var(--gray); font-size: 14px; margin: 0; }
.contact-card a { color: var(--primary); font-weight: 500; }

/* Enhanced Service Cards */
.service-card .card-body a { text-decoration: none; }
.service-card:hover .card-body h5 { color: var(--primary); }

/* Gradient Overlay for Page Headers */
.page-header {
    background: linear-gradient(135deg, var(--pink-light) 0%, #f5e6d8 50%, var(--light) 100%);
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212,165,116,.15) 0%, transparent 70%);
    border-radius: 50%;
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232,180,184,.15) 0%, transparent 70%);
    border-radius: 50%;
}

/* Animated entrance */
.service-card, .product-card, .blog-card, .review-card, .about-feature-card, .contact-card, .cert-card {
    animation: fadeInUp .6s ease both;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero typography (Ken Burns / overlay ile uyumlu) */
.hero-section .hero-overlay .btn-primary-custom,
.hero-section .hero-overlay .btn-outline-custom {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

/* Better buttons */
.btn-primary-custom { letter-spacing: 0.5px; box-shadow: 0 4px 15px rgba(212,165,116,.3); }
.btn-primary-custom:hover { box-shadow: 0 8px 25px rgba(212,165,116,.4); }

/* Product card price styling */
.product-card .btn-order { transition: all .3s; }
.product-card .btn-order:hover { transform: scale(1.05); box-shadow: 0 4px 15px rgba(37,211,102,.3); }
/* Service Detail Page */
.service-detail-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0,0,0,.06);
    margin-bottom: 30px;
}
.service-detail-hero {
    background: linear-gradient(135deg, var(--pink-light), var(--pink));
    border-radius: 16px;
    padding: 60px 30px;
    text-align: center;
    margin-bottom: 30px;
}
.service-detail-hero i {
    font-size: 60px;
    color: var(--primary);
    display: block;
    margin-bottom: 15px;
}
.service-detail-hero h3 { color: var(--dark); font-weight: 700; }

.service-detail-content h2 { font-size: 28px; font-weight: 700; color: var(--dark); margin-bottom: 20px; }
.service-detail-content h3 { font-size: 20px; font-weight: 600; color: var(--primary); margin: 30px 0 15px; padding-left: 12px; border-left: 3px solid var(--primary); }
.service-detail-content p { line-height: 1.8; color: #555; margin-bottom: 15px; }
.service-detail-content ul, .service-detail-content ol { margin-bottom: 20px; padding-left: 20px; }
.service-detail-content li { line-height: 1.8; color: #555; margin-bottom: 8px; padding-left: 5px; }
.service-detail-content ul li::marker { color: var(--primary); }
.service-detail-content ol li::marker { color: var(--primary); font-weight: 600; }
.service-detail-content strong { color: var(--dark); }

/* Sidebar Cards */
.sidebar-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,.06);
    margin-bottom: 20px;
}
.sidebar-card h5 { font-weight: 600; margin-bottom: 10px; }
.sidebar-card h6 { font-weight: 600; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; }
.sidebar-card p { color: var(--gray); font-size: 14px; }

.cta-card {
    background: linear-gradient(135deg, #fff8f2, #fff);
    border: 2px solid rgba(212,165,116,.2);
    text-align: center;
}
.cta-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px; color: #fff;
}

.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li { padding: 10px 0; border-bottom: 1px solid #f0f0f0; font-size: 14px; color: #555; }
.info-list li:last-child { border-bottom: none; }
.info-list li strong { color: var(--dark); }

.sidebar-service-link {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 14px;
    transition: all .3s;
}
.sidebar-service-link:last-child { border-bottom: none; }
.sidebar-service-link:hover { color: var(--primary); padding-left: 5px; }
.sidebar-service-link i { color: var(--primary); margin-right: 5px; font-size: 12px; }
/* Header Logo */
.header-logo { height: 55px; width: auto; max-width: 200px; object-fit: contain; }
.navbar-brand { padding: 0; margin-right: 20px; }

/* Footer Logo */
.footer-logo { height: 60px; width: auto; max-width: 200px; object-fit: contain; margin-bottom: 5px; }
.footer-logo-link { display: inline-block; }
.footer-contact p { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact i { color: var(--primary); font-size: 16px; margin-top: 3px; min-width: 18px; }
.footer-contact a { color: #ccc; transition: color .3s; }
.footer-contact a:hover { color: var(--primary); }
.footer-bottom { text-align: center; padding-top: 5px; }
.footer-bottom p { margin: 0; font-size: 14px; }
.footer-links i { font-size: 10px; color: var(--primary); margin-right: 5px; }

@media (max-width: 991px) {
    .header-logo { height: 40px; }
    .main-nav .offcanvas {
        width: min(82vw, 340px);
        background: linear-gradient(180deg, #fffdf9 0%, #fff8f1 52%, #ffffff 100%);
        border-left: 1px solid rgba(212,165,116,.2);
    }
    .main-nav .offcanvas-header {
        padding: 14px 16px;
        border-bottom: 1px solid rgba(212,165,116,.18);
        background: rgba(255,255,255,.72);
        backdrop-filter: blur(4px);
    }
    .offcanvas-brand-wrap { display: flex; align-items: center; gap: 10px; max-width: calc(100% - 36px); }
    .offcanvas-brand-logo {
        height: 36px;
        width: auto;
        max-width: 120px;
        object-fit: contain;
        border-radius: 6px;
        background: #fff;
        padding: 3px 6px;
        border: 1px solid rgba(212,165,116,.2);
    }
    .main-nav .offcanvas-title {
        font-size: 1.05rem;
        line-height: 1.2;
        color: #b8895c;
        font-weight: 700;
    }
    .main-nav .offcanvas-body { padding: 10px 16px 14px; }
    .main-nav .offcanvas .navbar-nav { padding-top: 0; align-items: flex-start !important; }
    .main-nav .offcanvas .nav-item { width: 100%; }
    .main-nav .offcanvas .nav-link {
        padding: 11px 10px !important;
        width: 100%;
        border-bottom: 1px solid #f0ece7;
        border-radius: 10px;
        transition: all .25s ease;
    }
    .main-nav .offcanvas .nav-link:hover,
    .main-nav .offcanvas .nav-link:focus {
        color: #b8895c;
        background: linear-gradient(90deg, rgba(212,165,116,.18), rgba(212,165,116,.06));
        box-shadow: inset 3px 0 0 #d4a574;
    }
    .main-nav .offcanvas .nav-link.active {
        color: #b8895c;
        font-weight: 700;
        background: linear-gradient(90deg, rgba(212,165,116,.22), rgba(212,165,116,.08));
        box-shadow: inset 4px 0 0 #d4a574;
    }
    .main-nav .offcanvas .dropdown-menu { position: static !important; border: 1px solid #eee; box-shadow: none; margin-top: 6px; margin-bottom: 8px; width: 100%; }
    .main-nav .offcanvas .btn-whatsapp { margin-top: 8px; display: inline-flex; }
    .whatsapp-float { display: none; }
    .mobile-sticky-cta {
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: 10px;
        z-index: 9999;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        background: rgba(255, 255, 255, 0.88);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(212,165,116,.22);
        border-radius: 16px;
        padding: 7px;
        box-shadow: 0 10px 26px rgba(0,0,0,.14);
    }
    .mobile-sticky-cta a {
        border-radius: 12px;
        padding: 10px 6px;
        text-align: center;
        font-weight: 700;
        font-size: 13px;
        color: #fff;
        box-shadow: 0 6px 14px rgba(0,0,0,.14);
    }
    .mobile-sticky-cta a i { margin-right: 4px; }
    .mobile-cta-call { background: linear-gradient(135deg, #d4a574, #b8895c); }
    .mobile-cta-location { background: linear-gradient(135deg, #8f7a66, #6f5d4e); }
    .mobile-cta-whatsapp { background: #25d366; }
    body { padding-bottom: 88px; }
}