/* ==========================================
   AYKARDE Store Header
========================================== */
:root {
    /* Colors */

    --primary: #0F62FE;
    --primary-color: var(--primary);
    --primary-hover: #0043CE;
    --secondary: #212529;
    --success: #24A148;
    --danger: #DA1E28;
    --warning: #F1C21B;
    --white: #ffffff;
    --background: #F8F9FA;
    --text: #212529;
    --text-light: #6C757D;
    --border: #E9ECEF;
    /* Radius */

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    /* Shadows */

    --shadow-sm: 0 4px 12px rgba(0,0,0,.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
    /* Transition */

    --transition: .35s ease;
}

header {
    position: sticky;
    top: 0;
    z-index: 1030;
}

.navbar {
    min-height: 72px;
    transition: background-color .25s ease, box-shadow .25s ease;
}

.navbar-brand {
    font-size: 1.4rem;
    font-weight: 700;
}

    .navbar-brand img {
        max-height: 42px;
        width: auto;
    }

.navbar-nav {
    gap: .35rem;
}

    .navbar-nav .nav-link {
        position: relative;
        padding: .8rem 1rem;
        font-weight: 500;
        color: #222;
        transition: .25s;
    }

        .navbar-nav .nav-link:hover {
            color: var(--bs-primary);
        }

        .navbar-nav .nav-link::after {
            content: "";
            position: absolute;
            left: 1rem;
            right: 1rem;
            bottom: .45rem;
            height: 2px;
            background: var(--bs-primary);
            transform: scaleX(0);
            transition: .25s;
        }

        .navbar-nav .nav-link:hover::after {
            transform: scaleX(1);
        }

.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0,0,0,.12);
    padding: .6rem 0;
    margin-top: .4rem;
}

.dropdown-item {
    padding: .65rem 1.2rem;
    transition: .2s;
}

    .dropdown-item:hover {
        background: #f8f9fa;
        color: var(--bs-primary);
    }


.navbar form input {
    min-width: 220px;
}

#cart-count {
    font-size: .7rem;
}

@media (max-width:991.98px) {

    .navbar-nav {
        gap: 0;
        margin-top: 1rem;
    }

    .navbar form {
        margin: 1rem 0;
    }

        .navbar form input {
            min-width: 50%;
        }
}


/* ==========================================================
   HERO SLIDER
========================================================== */

.hero-wrapper {
    min-height: 700px;
    position: relative;
    z-index: 2;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 700px;
}

    .hero-image img {
        position: relative;
        z-index: 2;
        max-height: 560px;
        width: auto;
        max-width: 100%;
        height: auto;
    }

@media (max-width: 991.98px) {

    .hero-wrapper {
        min-height: auto;
        padding: 30px 0;
        text-align: center;
    }

    .hero-image {
        min-height: auto;
        margin-top: 25px;
    }

        .hero-image img {
            width: 100%;
            max-width: 320px;
            height: auto;
            max-height: none;
        }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .hero-buttons {
        justify-content: center;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    z-index: 10;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: rgba(0,0,0,.35);
    background-size: 22px;
}

@media (max-width:991px) {

    .hero-slider {
        padding: 40px 0 30px;
    }

    .hero-wrapper {
        min-height: auto;
        text-align: center;
        gap: 30px;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 100%;
        margin: 0 auto 25px;
    }

    .hero-features {
        justify-content: center;
        gap: 10px;
        margin-bottom: 25px;
    }

        .hero-features li {
            padding: 10px 16px;
            font-size: .95rem;
        }

    .hero-buttons {
        justify-content: center;
        gap: 12px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        max-width: 320px;
    }

    .hero-image {
        min-height: auto;
        margin-top: 10px;
    }

        .hero-image::before {
            width: 320px;
            height: 320px;
        }

        .hero-image img {
            max-height: 320px;
        }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

.hero-btn-primary {
    min-width: 220px;
    height: 58px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 20px 40px rgba(15,98,254,.25);
}

    .hero-btn-primary:hover {
        transform: translateY(-3px);
    }

.hero-btn-secondary {
    min-width: 220px;
    height: 58px;
    border-radius: 999px;
    font-weight: 700;
    background: #fff;
    border: 2px solid #dbe4f0;
}

    .hero-btn-secondary:hover {
        background: #111827;
        color: #fff;
        border-color: #111827;
        transform: translateY(-3px);
    }
/* LCP FIX */


.carousel-item.active .hero-image::before {
    animation: none !important;
}

.carousel-item.active .hero-image img {
    animation: none !important;
}



.category-section {
    padding: 80px 0;
    background: #ffffff;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    font-weight: 700;
}

.section-subtitle {
    display: inline-block;
    padding: 6px 14px;
    background: #f5f7fb;
    color: #084298;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 14px;
}

.section-title h2 {
    font-size: 34px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.section-title p {
    color: #777;
    font-size: 16px;
    max-width: 650px;
    margin: 0 auto;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 28px;
}

.category-card {
    display: block;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    text-decoration: none;
    transition: .35s;
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
    border: 1px solid #f1f1f1;
}

    .category-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,.12);
    }

.category-image {
    height: 220px;
    overflow: hidden;
    background: #fafafa;
}

    .category-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .5s;
    }

.category-card:hover img {
    transform: scale(1.08);
}

.category-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #c7c7c7;
    background: #f7f7f7;
}

.category-content {
    padding: 24px;
}

    .category-content h3 {
        margin: 0 0 14px;
        color: #222;
        font-size: 22px;
        font-weight: 700;
    }

    .category-content span {
        color: #0d6efd;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: .3s;
    }

.category-card:hover .category-content span {
    gap: 14px;
}

.category-content i {
    transition: .3s;
}

.category-card:hover .category-content i {
    transform: translateX(6px);
}

@media (max-width:992px) {

    .category-section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .category-image {
        height: 200px;
    }
}

@media (max-width:576px) {

    .section-title h2 {
        font-size: 24px;
    }

    .section-title p {
        font-size: 14px;
    }

    .category-content {
        padding: 18px;
    }

        .category-content h3 {
            font-size: 19px;
        }

    .category-image {
        height: 180px;
    }
}

@media (max-width:767px) {
    .category-section {
        padding: 40px 0;
    }

    .category-grid {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 12px;
    }

    .category-image {
        height: 120px;
    }

    .category-content {
        padding: 12px;
    }

        .category-content h3 {
            font-size: 15px;
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .category-content span {
            font-size: 13px;
        }

    .section-title {
        margin-bottom: 30px;
    }

        .section-title h2 {
            font-size: 24px;
        }

        .section-title p {
            font-size: 14px;
        }
}


.home-blog {
    background: #fff;
}

.blog-card {
    border-radius: 16px;
    overflow: hidden;
    transition: .25s;
}

    .blog-card:hover {
        transform: translateY(-6px);
    }

.blog-card-image {
    height: 240px;
    width: 100%;
    object-fit: cover;
}


.blog-meta,
.blog-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    color: #6c757d;
    font-size: .9rem;
}

    .blog-meta i,
    .blog-stats i {
        margin-right: 4px;
        color: var(--bs-primary);
    }

.compare-table {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
}

    .compare-table th,
    .compare-table td {
        padding: 20px;
        vertical-align: middle;
    }

    .compare-table img {
        border-radius: 10px;
    }

    .compare-table tbody tr:nth-child(even) {
        background: #fafafa;
    }

.ay-editor {
    min-height: 400px;
    border: 1px solid #ced4da;
    border-radius: .5rem;
    background: #fff;
    padding: 16px;
    overflow: auto;
}

    .ay-editor:focus {
        outline: none;
    }

.ProseMirror {
    min-height: 360px;
    outline: none;
}

    .ProseMirror p {
        margin-bottom: 1rem;
    }


/* ===========================
   PRODUCT GALLERY
=========================== */

.product-gallery {
    align-items: flex-start;
}

.gallery-main {
    position: relative;
}

.gallery-image-wrapper {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,.06);
    transition: .30s;
}

    .gallery-image-wrapper:hover {
        box-shadow: 0 18px 45px rgba(0,0,0,.10);
        border-color: #0d6efd;
    }

.gallery-main-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    display: block;
    cursor: pointer;
    user-select: none;
    background: #fff;
}


.gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gallery-thumb {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 14px;
    cursor: pointer;
    transition: .25s;
    background: #fff;
}

    .gallery-thumb:hover {
        border-color: #0d6efd;
        transform: translateY(-2px);
    }

    .gallery-thumb.active {
        border-color: #0d6efd;
        box-shadow: 0 0 0 3px rgba(13,110,253,.15);
    }

.gallery-empty {
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ececec;
    border-radius: 20px;
    background: #fafafa;
    color: #888;
    font-size: 18px;
}

/* ===========================
   TABLET
=========================== */

@media(max-width:991px) {

    .gallery-thumbs {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .gallery-thumb {
        width: 80px;
        min-width: 80px;
    }
}

/* ===========================
   MOBILE
=========================== */

@media(max-width:767px) {

    .gallery-image-wrapper {
        border-radius: 16px;
    }

    .gallery-thumb {
        width: 70px;
        min-width: 70px;
        border-radius: 10px;
    }

    .gallery-empty {
        min-height: 300px;
    }
}


* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    transition: var(--transition);
}


.news-cover {
    width: 100%;
    height: 520px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    overflow: hidden;
}

    .news-cover img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

/* ==========================================================
   HOME CONTENT / EDITOR CONTENT
   Rich text entered from the admin is visually normalized here
   so storefront sections keep the AYKARDE design language.
========================================================== */

.home-content {
    padding-top: 20px;
    padding-bottom: 70px;
    background: #fff;
}

    .home-content > .container > .mb-5 {
        margin-bottom: 56px !important;
    }

        .home-content > .container > .mb-5 + .mb-5 {
            padding-top: 42px;
            border-top: 1px solid #e9ecef;
        }

    .home-content .row {
        margin-left: 0;
        margin-right: 0;
    }

    .home-content .editor-content {
        max-width: 1080px;
        margin: 0 auto;
        color: #343a40;
        font-size: 15px;
        line-height: 1.8;
    }

    .home-content .row.mb-4 {
        margin-bottom: 18px !important;
    }

    .home-content .row > .col-12 > h2 {
        position: relative;
        margin: 0;
        padding-bottom: 14px;
        color: #111827;
        font-size: 1.55rem;
        font-weight: 700;
        line-height: 1.3;
    }

        .home-content .row > .col-12 > h2::after {
            content: "";
            display: block;
            width: 46px;
            height: 3px;
            margin-top: 10px;
            border-radius: 999px;
            background: var(--primary);
        }

    .home-content .editor-content h1,
    .home-content .editor-content h2,
    .home-content .editor-content h3,
    .home-content .editor-content h4,
    .home-content .editor-content h5,
    .home-content .editor-content h6 {
        color: #111827;
        line-height: 1.35;
        font-weight: 700;
    }

    .home-content .editor-content h1 {
        margin: 0 0 18px;
        font-size: 1.8rem;
    }

    .home-content .editor-content h2 {
        margin: 28px 0 12px;
        font-size: 1.45rem;
    }

    .home-content .editor-content h3 {
        margin: 24px 0 10px;
        font-size: 1.2rem;
    }

    .home-content .editor-content p {
        margin: 0 0 14px;
    }

    .home-content .editor-content strong,
    .home-content .editor-content b {
        font-weight: 700;
        color: #202124;
    }

    .home-content .editor-content ul,
    .home-content .editor-content ol {
        margin: 14px 0 18px;
        padding-left: 1.5rem;
    }

    .home-content .editor-content li {
        margin-bottom: 6px;
    }

    .home-content .editor-content hr {
        margin: 26px 0;
        border: 0;
        border-top: 1px solid #dee2e6;
    }

    .home-content .editor-content a {
        color: var(--primary);
        text-decoration: none;
        font-weight: 600;
    }

        .home-content .editor-content a:hover {
            text-decoration: underline;
        }

    .home-content .editor-content img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
    }

    .home-content .editor-content table {
        width: 100%;
        margin: 20px 0;
        border-collapse: collapse;
    }

    .home-content .editor-content th,
    .home-content .editor-content td {
        padding: 10px 12px;
        border: 1px solid #dee2e6;
        vertical-align: middle;
    }

    .home-content .editor-content th {
        background: #f8f9fa;
        font-weight: 700;
    }

@media (max-width: 767px) {

    .home-content {
        padding-top: 10px;
        padding-bottom: 40px;
    }

        .home-content > .container > .mb-5 {
            margin-bottom: 38px !important;
        }

            .home-content > .container > .mb-5 + .mb-5 {
                padding-top: 30px;
            }

        .home-content .editor-content {
            font-size: 14px;
            line-height: 1.75;
        }

        .home-content .row > .col-12 > h2 {
            font-size: 1.3rem;
        }

        .home-content .editor-content h1 {
            font-size: 1.5rem;
        }

        .home-content .editor-content h2 {
            font-size: 1.25rem;
        }

        .home-content .editor-content h3 {
            font-size: 1.1rem;
        }

        .home-content .editor-content table {
            display: block;
            overflow-x: auto;
        }
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 16px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,.05);
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 32px rgba(15,23,42,.10);
    }

    .product-card:active {
        transform: translateY(-2px) scale(.99);
    }

.product-card-link {
    display: block;
    text-decoration: none;
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: #fafafa;
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .35s ease;
    }

.product-card:hover .product-image img {
    transform: scale(1.04);
}

.product-image-placeholder {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #999;
    font-size: 15px;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #0d6efd;
    color: #fff;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

.product-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px;
}

.product-card .product-title {
    text-decoration: none;
    color: #222;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 46px;
    transition: color .25s ease;
}

    .product-card .product-title:hover {
        color: #0d6efd;
    }

.product-price {
    margin: 14px 0 18px;
    font-size: 24px;
    font-weight: 700;
    color: #0d6efd;
}

.product-button {
    width: 100%;
    border: 0;
    border-radius: 10px;
    background: #0d6efd;
    color: #fff;
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
    transition: .25s;
}

    .product-button:hover {
        background: #0b5ed7;
    }

@media (max-width:991px) {

    .product-body {
        padding: 15px;
    }

    .product-card .product-title {
        font-size: 15px;
    }

    .product-price {
        font-size: 21px;
    }
}

@media (max-width:767px) {

    .product-body {
        padding: 12px;
    }

    .product-card .product-title {
        font-size: 14px;
        min-height: 40px;
    }

    .product-price {
        margin: 10px 0 14px;
        font-size: 18px;
    }

    .product-button {
        padding: 10px;
        font-size: 14px;
    }

    .product-badge {
        top: 8px;
        left: 8px;
        font-size: 11px;
        padding: 4px 10px;
    }
}
/* ===========================
   PRODUCT DETAIL
=========================== */

.product-delivery-card,
.product-info-box {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 8px 24px rgba(0,0,0,.05);
    transition: .25s;
}

    .product-price-card:hover,
    .product-delivery-card:hover,
    .product-info-box:hover {
        box-shadow: 0 14px 35px rgba(0,0,0,.08);
    }

.product-price-card del {
    font-size: 18px;
}

.product-price-card .display-6 {
    font-size: 2.2rem;
    line-height: 1.1;
}

.product-rating {
    border-bottom: 1px solid #ececec;
    padding-bottom: 20px;
}

.rating-stars {
    color: #ffc107;
    display: flex;
    gap: 3px;
    font-size: 18px;
}

.delivery-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #eef5ff;
    font-size: 24px;
}

.product-info-box {
    line-height: 1.9;
}
/* ===========================
   QUANTITY
=========================== */

.quantity-selector {
    display: flex;
    align-items: center;
    height: 58px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,.05);
}

.qty-btn {
    width: 54px;
    height: 58px;
    border: 0;
    background: #fff;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    transition: .25s;
}

    .qty-btn:hover {
        background: #f3f6fb;
    }

.qty-input {
    width: 70px;
    border: 0;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    outline: none;
}

    .qty-input::-webkit-outer-spin-button,
    .qty-input::-webkit-inner-spin-button {
        appearance: none;
        margin: 0;
    }

/* ===========================
   ADD TO CART
=========================== */

.js-add-cart-btn {
    height: 58px;
    border: 0;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 700;
    background: linear-gradient(135deg,#1d4ed8,#2563eb);
    box-shadow: 0 12px 26px rgba(37,99,235,.28);
    transition: .28s;
}

    .js-add-cart-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 35px rgba(37,99,235,.35);
    }

    .js-add-cart-btn:active {
        transform: scale(.98);
    }

/* ===========================
   FAVORITE
=========================== */

.favorite-button {
    height: 54px;
    border-radius: 14px;
    border: 1px solid #f1d5d5;
    background: #fff;
    transition: .25s;
    font-weight: 600;
}

    .favorite-button:hover {
        background: #fff5f5;
        border-color: #ffb3b3;
        color: #dc2626;
    }

.favorite-icon {
    font-size: 20px;
    margin-right: 8px;
    transition: .25s;
}

.favorite-button:hover .favorite-icon {
    transform: scale(1.2);
}

/* ===========================
   SHARE
=========================== */

.btn-outline-secondary {
    height: 54px;
    border-radius: 14px;
    transition: .25s;
}

    .btn-outline-secondary:hover {
        transform: translateY(-2px);
    }

/* ===========================
   BENEFITS
=========================== */

.product-benefits .col-6 {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 22px 12px;
    transition: .25s;
    box-shadow: 0 8px 22px rgba(0,0,0,.04);
    font-size: 26px;
}

    .product-benefits .col-6:hover {
        transform: translateY(-5px);
        box-shadow: 0 16px 30px rgba(0,0,0,.08);
    }

.product-benefits .small {
    color: #4b5563;
    font-size: 14px;
    font-weight: 600;
}

/* ===========================
   PRICE CARD
=========================== */

.product-price-card {
    position: relative;
    overflow: hidden;
}



/* ===========================
   DELIVERY
=========================== */

.product-delivery-card {
    border-left: 4px solid #22c55e;
}

.product-info-box {
    border-left: 4px solid #2563eb;
}

/* ===========================
   MOBILE
=========================== */

@media (max-width:768px) {

    .quantity-selector {
        width: 100%;
    }

    .js-add-cart-btn {
        width: 100%;
    }

    .product-price-card .display-6 {
        font-size: 1.9rem;
    }

    .product-benefits .col-6 {
        padding: 18px 10px;
    }
}
/* ===========================
   PRODUCT TABS
=========================== */

#productTabs {
    margin-top: 48px;
    margin-bottom: 24px;
    border: 0;
    gap: 12px;
    display: flex;
    flex-wrap: wrap;
}

    #productTabs .nav-item {
        margin: 0;
    }

    #productTabs .nav-link {
        border: 0;
        border-radius: 999px;
        padding: 14px 24px;
        background: #f6f8fb;
        color: #4b5563;
        font-weight: 600;
        transition: .25s;
    }

        #productTabs .nav-link:hover {
            background: #edf4ff;
            color: #2563eb;
            transform: translateY(-2px);
        }

        #productTabs .nav-link.active {
            color: #fff;
            background: linear-gradient(135deg,#2563eb,#3b82f6);
            box-shadow: 0 12px 28px rgba(37,99,235,.25);
        }

.tab-content {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    padding: 34px;
    box-shadow: 0 12px 32px rgba(0,0,0,.05);
}

.tab-pane {
    animation: productTabFade .25s ease;
}

    .tab-pane img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
    }

    .tab-pane table {
        margin-bottom: 0;
    }

    .tab-pane ul {
        padding-left: 20px;
    }

    .tab-pane li {
        margin-bottom: 8px;
    }

@keyframes productTabFade {

    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   MOBILE TABS
=========================== */

@media (max-width:768px) {

    #productTabs {
        gap: 8px;
    }

        #productTabs .nav-link {
            width: 100%;
            text-align: center;
            padding: 12px 18px;
        }

    .tab-content {
        padding: 22px;
    }
}

/* ===========================
   RELATED PRODUCTS
=========================== */

.related-products {
    margin-top: 70px;
}

    .related-products .section-header {
        margin-bottom: 30px;
        padding-bottom: 16px;
        border-bottom: 1px solid #eceff3;
    }

        .related-products .section-header h2 {
            margin: 0;
            font-size: 2rem;
            font-weight: 700;
            color: #111827;
        }

        .related-products .section-header p {
            margin-top: 6px;
            color: #6b7280;
            font-size: .95rem;
        }

    .related-products .row > div {
        transition: transform .25s ease;
    }

        .related-products .row > div:hover {
            transform: translateY(-4px);
        }

@media (max-width:991px) {

    .related-products {
        margin-top: 60px;
    }
}

@media (max-width:768px) {

    .related-products {
        margin-top: 50px;
    }

        .related-products .section-header {
            text-align: center;
        }

            .related-products .section-header h2 {
                font-size: 1.6rem;
            }
}
/* ==========================================
   Sticky Add To Cart
========================================== */

.sticky-add-to-cart {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 20px;
    width: min(900px,calc(100% - 30px));
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0,0,0,.16);
    z-index: 999;
    transform: translateY(140%);
    opacity: 0;
    visibility: hidden;
    transition: .35s;
    backdrop-filter: blur(12px);
}

    .sticky-add-to-cart.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

.sticky-cart-image {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f7f7f7;
}

    .sticky-cart-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


.sticky-cart-content {
    flex: 1;
}

.sticky-cart-button {
    flex-shrink: 0;
    align-items: center;
    white-space: nowrap;
    justify-content: center;
    padding: 14px 28px;
    border: 0;
    outline: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background-color .25s ease, color .25s ease, transform .25s ease;
    background: #0d6efd;
    color: #fff;
}

.sticky-cart-title {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 6px;
}

.sticky-cart-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.sticky-cart-button:hover {
    background: #dc2626; /* veya primary'nin biraz koyusu */
    transform: translateY(-2px);
}

.sticky-cart-button:active {
    transform: translateY(0);
}

@media (max-width:768px) {

    .sticky-add-to-cart {
        bottom: 12px;
        width: calc(100% - 16px);
        padding: 12px;
        gap: 12px;
        justify-content: space-between;
    }

    .sticky-cart-image {
        width: 52px;
        height: 52px;
    }

    .sticky-cart-title {
        font-size: 14px;
    }

    .sticky-cart-price {
        font-size: 18px;
    }

    .sticky-cart-button {
        padding: 12px 18px;
        font-size: 14px;
    }
}

/* ===========================================================
   Product Share
=========================================================== */

.product-share {
    margin-top: 24px;
}

.share-product-btn {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 14px;
    background: #f5f7fb;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: .25s;
}

    .share-product-btn:hover {
        background: #111827;
        color: #fff;
        transform: translateY(-2px);
    }

    .share-product-btn i {
        font-size: 18px;
    }

.share-toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    background: #111827;
    color: #fff;
    padding: 14px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: .3s;
    z-index: 99999;
}

    .share-toast.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .share-toast i {
        color: #22c55e;
    }

.compare-button {
    width: 100%;
    margin-top: 12px;
}

    .compare-button.active {
        background: #0d6efd;
        color: #fff;
        border-color: #0d6efd;
    }

/* ===========================================================
   Product Detail - Mobile UX
=========================================================== */

@media (max-width: 768px) {

    /* Sayfa boşlukları */
    .product-detail {
        padding-top: 16px;
        padding-bottom: 20px;
    }

    /* Ürün bilgileri */
    .product-info {
        margin-top: 20px;
    }

    /* Başlık */
    .product-title {
        font-size: 1.55rem;
        line-height: 1.35;
    }

    /* Fiyat */
    .product-price {
        margin: 18px 0;
        flex-wrap: wrap;
        gap: 10px;
    }

    /* Adet + Sepete Ekle */
    .product-actions {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .quantity-selector,
    .add-to-cart-btn,
    .share-product-btn {
        width: 100%;
    }

    /* Thumbnail */
    .gallery-thumbnails {
        gap: 10px;
        overflow-x: auto;
        scrollbar-width: none;
    }

        .gallery-thumbnails::-webkit-scrollbar {
            display: none;
        }

    /* Sticky Cart */



    /* Related Products */



    /* Recently Viewed */

    .recently-viewed {
        margin-top: 50px;
    }
}



.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%;
    font-size: 14px;
}

body {
    margin-bottom: 60px;
}

/* ===========================================
   Scroll To Top
=========================================== */

#scrollTopBtn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    transition: opacity .25s ease, transform .25s ease;
}

    #scrollTopBtn:hover {
        transform: translateY(-4px);
    }

    #scrollTopBtn.show {
        display: inline-flex;
    }


.product-reviews {
    margin: 80px 0;
}

.reviews-title {
    text-align: center;
    margin-bottom: 40px;
}

    .reviews-title h2 {
        margin-bottom: 10px;
        font-size: 34px;
        font-weight: 700;
    }

    .reviews-title p {
        color: #777;
        font-size: 16px;
    }

.review-summary {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    padding: 35px;
    margin-bottom: 50px;
    border: 1px solid #ececec;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0,0,0,.04);
}

.review-summary-left {
    text-align: center;
    border-right: 1px solid #efefef;
    padding-right: 40px;
}

.review-score {
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-color);
}

.review-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 18px 0;
}

    .review-stars i {
        color: #ffb400;
        font-size: 20px;
    }

.review-count {
    color: #777;
    font-size: 15px;
}

.review-summary-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}

.review-progress {
    display: grid;
    grid-template-columns: 55px 1fr 45px;
    gap: 16px;
    align-items: center;
}

    .review-progress span:first-child {
        font-weight: 600;
    }

.progress-line {
    height: 10px;
    background: #ececec;
    border-radius: 50px;
    overflow: hidden;
}

    .progress-line span {
        display: block;
        height: 100%;
        border-radius: 50px;
        background: linear-gradient(90deg,#ffc107,#ff9800);
    }

.review-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 60px;
}

.review-card {
    display: flex;
    gap: 22px;
    padding: 30px;
    border-radius: 18px;
    border: 1px solid #ececec;
    background: #fff;
    transition: .25s;
}

    .review-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(0,0,0,.07);
    }

.review-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    font-weight: 700;
    flex-shrink: 0;
}

.review-content {
    flex: 1;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .review-header strong {
        font-size: 18px;
    }

    .review-header span {
        color: #888;
        font-size: 14px;
    }

.review-content h4 {
    margin: 15px 0 10px;
    font-size: 19px;
}

.review-content p {
    margin: 0;
    color: #555;
    line-height: 1.8;
}

.empty-review {
    padding: 70px 20px;
    text-align: center;
    border: 2px dashed #e3e3e3;
    border-radius: 18px;
    margin-bottom: 50px;
}

    .empty-review i {
        font-size: 60px;
        color: var(--primary-color);
        margin-bottom: 20px;
    }

    .empty-review h3 {
        margin-bottom: 12px;
        font-size: 30px;
    }

    .empty-review p {
        color: #777;
    }

.review-form-section {
    padding: 40px;
    border: 1px solid #ececec;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0,0,0,.04);
}

.review-form-header {
    margin-bottom: 30px;
}

    .review-form-header h3 {
        margin-bottom: 8px;
        font-size: 30px;
    }

    .review-form-header p {
        color: #777;
    }

.review-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.review-field {
    margin-bottom: 22px;
}

    .review-field label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
    }

    .review-field input,
    .review-field textarea {
        width: 100%;
        padding: 14px 16px;
        border: 1px solid #ddd;
        border-radius: 10px;
        transition: .2s;
        font-size: 15px;
    }

    .review-field textarea {
        resize: vertical;
        min-height: 180px;
    }

        .review-field input:focus,
        .review-field textarea:focus {
            outline: none;
            border-color: var(--primary-color);
        }

.rating-selector {
    display: flex;
    gap: 8px;
}

    .rating-selector i {
        cursor: pointer;
        font-size: 28px;
        color: #d5d5d5;
        transition: .2s;
    }

        .rating-selector i.active {
            color: #ffb400;
        }

.review-submit {
    border: 0;
    border-radius: 10px;
    padding: 15px 35px;
    background: #0d6efd;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: .25s;
}

    .review-submit:hover {
        transform: translateY(-2px);
        opacity: .95;
    }

@media (max-width:992px) {

    .review-summary {
        grid-template-columns: 1fr;
    }

    .review-summary-left {
        border-right: 0;
        border-bottom: 1px solid #ececec;
        padding-right: 0;
        padding-bottom: 30px;
    }

    .review-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        flex-direction: column;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}

.rating-star {
    cursor: pointer;
    user-select: none;
    padding: 4px;
}

footer p,
footer span,
footer small {
    color: #495057;
}

footer .text-muted {
    color: #495057 !important;
}

footer .btn-outline-primary {
    color: #0a58ca;
    border-color: #0a58ca;
}

/* ===========================
   Enterprise Sub Menu
=========================== */

.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu > .dropdown-menu {
        top: -6px;
        left: 100%;
        margin-left: .15rem;
        display: none;
        border-radius: 12px;
    }

    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }

.submenu-toggle {
    position: relative;
    padding-right: 2.2rem;
}

.submenu-icon {
    font-size: .75rem;
    opacity: .7;
}

@media (max-width: 991.98px) {

    .dropdown-submenu > .dropdown-menu {
        position: static;
        display: block;
        margin: 0;
        box-shadow: none;
        border: 0;
        padding-left: 1rem;
    }

    .dropdown-submenu > .dropdown-item.dropdown-toggle::after {
        transform: rotate(0);
    }
}



/* ==========================================================
   HOME CONTENT SECTION
   ========================================================== */

.home-content {
    padding: 80px 0;
    background: var(--white);
}

    .home-content > .container > div {
        margin-bottom: 70px;
    }

        .home-content > .container > div:last-child {
            margin-bottom: 0;
        }

        /* Section title */
        .home-content > .container > div > .row:first-child {
            margin-bottom: 30px !important;
        }

            .home-content > .container > div > .row:first-child h2 {
                position: relative;
                margin: 0;
                padding-bottom: 14px;
                color: var(--text);
                font-size: 2rem;
                font-weight: 700;
                line-height: 1.3;
            }

                .home-content > .container > div > .row:first-child h2::after {
                    content: "";
                    display: block;
                    width: 48px;
                    height: 3px;
                    margin-top: 12px;
                    border-radius: 999px;
                    background: var(--primary);
                }

    /* Editor content */
    .home-content .editor-content {
        color: var(--text);
        font-size: 1rem;
        line-height: 1.8;
    }

        .home-content .editor-content > :first-child {
            margin-top: 0;
        }

        .home-content .editor-content > :last-child {
            margin-bottom: 0;
        }

        .home-content .editor-content h1,
        .home-content .editor-content h2,
        .home-content .editor-content h3,
        .home-content .editor-content h4,
        .home-content .editor-content h5,
        .home-content .editor-content h6 {
            color: var(--text);
            font-weight: 700;
            line-height: 1.35;
            margin-top: 2rem;
            margin-bottom: .85rem;
        }

        .home-content .editor-content h1 {
            font-size: 2rem;
        }

        .home-content .editor-content h2 {
            font-size: 1.7rem;
        }

        .home-content .editor-content h3 {
            font-size: 1.4rem;
        }

        .home-content .editor-content h4 {
            font-size: 1.2rem;
        }

        .home-content .editor-content h5 {
            font-size: 1.05rem;
        }

        .home-content .editor-content h6 {
            font-size: 1rem;
        }

        .home-content .editor-content p {
            margin: 0 0 1rem;
        }

        .home-content .editor-content strong,
        .home-content .editor-content b {
            font-weight: 700;
        }

        .home-content .editor-content ul,
        .home-content .editor-content ol {
            margin: 1rem 0 1.25rem;
            padding-left: 1.5rem;
        }

        .home-content .editor-content li {
            margin-bottom: .45rem;
        }

        .home-content .editor-content a {
            color: var(--primary);
            text-decoration: none;
        }

            .home-content .editor-content a:hover {
                color: var(--primary-hover);
                text-decoration: underline;
            }

        .home-content .editor-content hr {
            margin: 2rem 0;
            border: 0;
            border-top: 1px solid var(--border);
            opacity: 1;
        }

        .home-content .editor-content img {
            display: block;
            max-width: 100%;
            height: auto;
            margin: 1.5rem auto;
            border-radius: 12px;
        }

        .home-content .editor-content blockquote {
            margin: 1.5rem 0;
            padding: 1rem 1.25rem;
            border-left: 4px solid var(--primary);
            background: var(--background);
            border-radius: 0 10px 10px 0;
        }

        .home-content .editor-content table {
            width: 100%;
            max-width: 100%;
            margin: 1.5rem 0;
            border-collapse: collapse;
        }

        .home-content .editor-content th,
        .home-content .editor-content td {
            padding: .75rem;
            border: 1px solid var(--border);
            text-align: left;
        }

        .home-content .editor-content th {
            font-weight: 700;
            background: var(--background);
        }

/* Mobile */
@media (max-width: 767px) {

    .home-content {
        padding: 50px 0;
    }

        .home-content > .container > div {
            margin-bottom: 45px;
        }

            .home-content > .container > div > .row:first-child {
                margin-bottom: 22px !important;
            }

                .home-content > .container > div > .row:first-child h2 {
                    font-size: 1.55rem;
                    padding-bottom: 11px;
                }

        .home-content .editor-content {
            font-size: .95rem;
            line-height: 1.75;
        }

            .home-content .editor-content h1 {
                font-size: 1.65rem;
            }

            .home-content .editor-content h2 {
                font-size: 1.45rem;
            }

            .home-content .editor-content h3 {
                font-size: 1.25rem;
            }

            .home-content .editor-content table {
                display: block;
                overflow-x: auto;
                white-space: nowrap;
            }
}


/* =========================================================
   AYKARDE CHATBOT
   ========================================================= */

.aykarde-chatbot {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1050;
    font-family: inherit;
}

.aykarde-chatbot-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    padding: 0 20px;
    border: 0;
    border-radius: 28px;
    background: var(--bs-primary, #0d6efd);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .aykarde-chatbot-toggle:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
    }

    .aykarde-chatbot-toggle i {
        font-size: 19px;
    }

@media (max-width: 576px) {
    .aykarde-chatbot {
        right: 15px;
        bottom: 15px;
    }

    .aykarde-chatbot-toggle {
        width: 54px;
        height: 54px;
        min-height: 54px;
        padding: 0;
        border-radius: 50%;
    }

        .aykarde-chatbot-toggle span {
            display: none;
        }

        .aykarde-chatbot-toggle i {
            font-size: 21px;
        }
}

/* =========================================================
   AYKARDE CHATBOT PANEL
   ========================================================= */

.aykarde-chatbot-panel {
    position: fixed;
    right: 24px;
    bottom: 88px;
    width: 370px;
    height: 560px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.98);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1051;
}

    .aykarde-chatbot-panel.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

.aykarde-chatbot-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: var(--bs-primary, #0d6efd);
    color: #fff;
}

.aykarde-chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 11px;
}

.aykarde-chatbot-avatar {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    font-size: 20px;
}

.aykarde-chatbot-title {
    font-size: 15px;
    font-weight: 700;
}

.aykarde-chatbot-status {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
    font-size: 12px;
    opacity: 0.9;
}

.aykarde-chatbot-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #36d399;
}

    .aykarde-chatbot-status-dot.offline {
        background-color: #6c757d;
        box-shadow: none;
    }
.aykarde-chatbot-close {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

    .aykarde-chatbot-close:hover {
        background: rgba(255, 255, 255, 0.15);
    }

.aykarde-chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    background: #f5f7fa;
}

.aykarde-chatbot-welcome {
    width: fit-content;
    max-width: 85%;
    padding: 10px 13px;
    margin-bottom: 12px;
    border-radius: 14px 14px 14px 4px;
    background: #fff;
    color: #333;
    font-size: 14px;
    line-height: 1.45;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.aykarde-chatbot-message {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}

    .aykarde-chatbot-message.customer {
        align-items: flex-end;
    }

    .aykarde-chatbot-message.admin {
        align-items: flex-start;
    }

.aykarde-chatbot-message-bubble {
    max-width: 82%;
    padding: 10px 13px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.45;
    word-break: break-word;
}

.aykarde-chatbot-message.customer
.aykarde-chatbot-message-bubble {
    background: var(--bs-primary, #0d6efd);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.aykarde-chatbot-message.admin
.aykarde-chatbot-message-bubble {
    background: #fff;
    color: #333;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.aykarde-chatbot-message-date {
    margin-top: 4px;
    color: #8993a4;
    font-size: 10px;
}

.aykarde-chatbot-footer {
    padding: 10px;
    background: #fff;
    border-top: 1px solid #e8ebef;
}

.aykarde-chatbot-form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.aykarde-chatbot-input {
    flex: 1;
    min-width: 0;
    height: 44px;
    padding: 0 13px;
    border: 1px solid #dce1e7;
    border-radius: 22px;
    outline: none;
    font-size: 14px;
}

    .aykarde-chatbot-input:focus {
        border-color: var(--bs-primary, #0d6efd);
        box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
    }

.aykarde-chatbot-send {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border: 0;
    border-radius: 50%;
    background: var(--bs-primary, #0d6efd);
    color: #fff;
    cursor: pointer;
}

    .aykarde-chatbot-send:hover {
        opacity: 0.9;
    }

    .aykarde-chatbot-send:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

.aykarde-chatbot-actions {
    display: flex;
    justify-content: center;
    padding-top: 7px;
}

.aykarde-chatbot-close-conversation {
    border: 0;
    background: transparent;
    color: #8993a4;
    font-size: 11px;
    cursor: pointer;
}

    .aykarde-chatbot-close-conversation:hover {
        color: #dc3545;
    }

@media (max-width: 576px) {

    .aykarde-chatbot-panel {
        right: 10px;
        left: 10px;
        bottom: 78px;
        width: auto;
        height: min(560px, calc(100vh - 100px));
        border-radius: 16px;
    }
}

.aykarde-chatbot-toggle {
    position: relative;
}

.aykarde-chatbot-notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 21px;
    height: 21px;
    padding: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #dc3545;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border: 2px solid #fff;
    box-shadow: 0 2px 7px rgba(0, 0, 0, .2);
}

/* =========================================================
   CHATBOT - MOBİL KONUM
   ========================================================= */

@media (max-width: 768px) {

    #aykarde-chatbot {
        bottom: 85px !important;
    }

        #aykarde-chatbot .aykarde-chatbot-toggle {
            bottom: 0 !important;
        }
}