:root {
    --bg: #f6f1e8;
    --bg-soft: #fbf8f3;
    --surface: #ffffff;
    --surface-2: #f2ebe2;
    --surface-3: #ece3d7;
    --text: #1f2937;
    --text-soft: #6b7280;
    --text-muted: #8b8f97;
    --border: #e2d8ca;
    --border-strong: #cdbca6;
    --primary: #243041;
    --primary-hover: #1b2432;
    --primary-contrast: #ffffff;
    --accent: #a67c52;
    --accent-hover: #8f6844;
    --accent-soft: #efe3d3;
    --success: #25D366;
    --danger: #ef4444;
    --shadow-sm: 0 8px 24px rgba(36, 48, 65, 0.06);
    --shadow-md: 0 12px 30px rgba(36, 48, 65, 0.10);
    --shadow-lg: 0 18px 40px rgba(36, 48, 65, 0.14);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem #fff, 0 0 0 0.25rem rgba(166, 124, 82, 0.28);
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    background: var(--bg);
    color: var(--text);
}
.custom-product-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    transition: 0.25s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    height: 100%;
}

.custom-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.product-image-wrapper {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.product-title-overlay {
    position: absolute;
    bottom: 12px;
    left: 12px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

@media (max-width: 768px) {
    .product-image-wrapper {
        height: 180px;
    }
}
.gallery-thumb {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid #e5e7eb;
    transition: 0.2s;
}

.gallery-thumb:hover {
    transform: scale(1.05);
    border-color: #000;
}
/* NAVBAR */
.new-navbar {
    background: rgba(251, 248, 243, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(205, 188, 166, 0.45);
    padding: 16px 0;
    transition: all 0.3s ease;
}

.new-navbar.scrolled {
    padding: 10px 0;
    background: rgba(246, 241, 232, 0.94);
}
.new-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.new-brand img {
    height: 60px;
}

/* MENU */
.new-nav-links {
    gap: 30px;
}

.nav-link {
    color: var(--text-soft);
    text-decoration: none;
    font-weight: 600;
    position: relative;
}
.nav-link.active {
    color: var(--text);
}

.nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
}

/* CTA */
.new-cta {
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--border-strong);
    text-decoration: none;
    color: var(--primary);
    background: var(--surface);
    transition: 0.2s;
}

.new-cta:hover {
    background: var(--primary);
    color: var(--primary-contrast);
    border-color: var(--primary);
}

/* MOBILE BUTTON */
.new-menu-btn {
    font-size: 24px;
    background: none;
    border: none;
    color: var(--primary);
}
/* MOBILE PANEL */
.mobile-menu-panel {
    z-index: 99;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--surface);
    display: none;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid rgba(205, 188, 166, 0.35);
}


.mobile-menu-panel a {
    text-decoration: none;
    color: var(--text);
    font-size: 18px;
    font-weight: 600;
}

.mobile-cta {
    margin-top: 10px;
    background: var(--primary);
    color: var(--primary-contrast);
    padding: 12px;
    text-align: center;
    border-radius: var(--radius-sm);
}
.new-footer {
    background: var(--bg-soft);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(205, 188, 166, 0.45);
}

.footer-title {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text);
}

.footer-links a {
    display: block;
    color: var(--text-soft);
    text-decoration: none;
    margin-bottom: 8px;
}
.footer-links a:hover {
    color: var(--accent);
}


.footer-cta {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--primary);
    color: var(--primary-contrast);
    text-decoration: none;
}


.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(205, 188, 166, 0.45);
    padding-top: 20px;
    font-size: 14px;
    color: var(--text-muted);
}
.footer-bottom a {
    margin-left: 15px;
    color: var(--text-muted);
    text-decoration: none;
}
.footer-bottom a:hover {
    color: var(--accent);
}
.custom-product-card,
.product-showcase-card,
.product-info-block,
.products-intro-stat,
.products-cta-inner,
.custom-faq .accordion-item {
    background: var(--surface);
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
}
/* FLOATING BUTTON */
.floating-whatsapp-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: white;
    text-decoration: none;
    font-size: 27px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
    color: white;
}

/* MOBILE */
@media (min-width: 992px) {
    .editorial-menu-toggle {
        display: none;
    }

    .editorial-nav-panel {
        display: block !important;
        width: auto;
    }
}

@media (max-width: 991.98px) {
    body {
        padding-top: 86px;
    }

    .editorial-navbar-inner {
        min-height: 70px;
    }

    .editorial-logo {
        height: 40px;
    }

    .editorial-nav-panel {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        z-index: 30;
    }

    .editorial-nav-inner {
        background: #ffffff;
        border: 1px solid rgba(17, 24, 39, 0.06);
        border-radius: 22px;
        padding: 18px;
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
    }

    .editorial-nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .editorial-nav-link {
        padding: 10px 2px;
        color: #111827;
    }

    .editorial-nav-link::after {
        display: none;
    }

    .editorial-nav-link.active {
        opacity: 0.65;
    }

    .editorial-nav-cta {
        width: 100%;
    }

    .editorial-footer {
        margin-top: 64px;
    }

    .editorial-footer-logo {
        height: 46px;
    }

    .editorial-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .floating-whatsapp-btn {
        width: 54px;
        height: 54px;
        font-size: 24px;
    }
}

/*ürün sayfası*/
.products-intro-panel {
    background: #f6f6f3;
    border: 1px solid rgba(17, 24, 39, 0.06);
    border-radius: 24px;
    padding: 24px;
}

.products-intro-stats {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    flex-wrap: wrap;
}

.products-intro-stat {
    min-width: 88px;
    padding: 14px 16px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.06);
    text-align: center;
}

.products-intro-stat strong {
    display: block;
    font-size: 1.05rem;
    color: #111827;
}

.products-intro-stat span {
    font-size: 0.82rem;
    color: #6b7280;
}

.product-showcase-card {
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.06);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.product-showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.product-showcase-link {
    color: inherit;
    display: block;
}

.product-showcase-link:hover {
    color: inherit;
}

.product-showcase-image-wrap {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #f3f4f6;
}

.product-showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-showcase-overlay {
    position: absolute;
    inset: auto 0 0 0;
    height: 90px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.40), transparent);
}

.product-showcase-category {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.9);
    color: #111827;
    font-size: 0.82rem;
    font-weight: 600;
    backdrop-filter: blur(6px);
}

.product-showcase-body {
    padding: 20px 20px 12px 20px;
    flex: 1;
}

.product-showcase-title {
    font-size: 1.28rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-showcase-desc {
    color: #6b7280;
    font-size: 0.96rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.product-showcase-meta {
    display: grid;
    gap: 12px;
}

.product-showcase-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-meta-label {
    font-size: 0.82rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.product-meta-value {
    color: #374151;
    font-weight: 500;
}

.product-meta-price {
    color: #111827;
    font-weight: 700;
    font-size: 1.12rem;
}

.product-showcase-actions {
    padding: 0 20px 20px 20px;
    display: grid;
    gap: 10px;
}

.product-info-block {
    padding: 24px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.06);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.03);
}

.products-cta-section {
    background: #f6f6f3;
    border: 1px solid rgba(17, 24, 39, 0.06);
    border-radius: 26px;
    padding: 10px;
}

.products-cta-inner {
    background: #ffffff;
    border-radius: 20px;
    padding: 42px 24px;
}

@media (max-width: 991.98px) {
    .products-intro-stats {
        justify-content: flex-start;
    }

    .product-showcase-image-wrap {
        height: 220px;
    }

    .product-showcase-title {
        font-size: 1.16rem;
    }
}

@media (max-width: 767.98px) {
    .products-intro-panel {
        padding: 18px;
    }

    .products-intro-stat {
        min-width: 82px;
        padding: 12px 14px;
    }

    .product-showcase-image-wrap {
        height: 210px;
    }

    .product-showcase-body {
        padding: 18px 18px 10px 18px;
    }

    .product-showcase-actions {
        padding: 0 18px 18px 18px;
    }

    .product-info-block {
        padding: 20px;
    }

    .products-cta-inner {
        padding: 32px 20px;
    }
}
/*sorular sıkca*/
.custom-faq .accordion-item {
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #fff;
}

.custom-faq .accordion-button {
    background: #fff;
    color: #111827;
    font-weight: 600;
    box-shadow: none !important;
    padding: 18px 20px;
}

.custom-faq .accordion-button:not(.collapsed) {
    background: #f8f8f6;
    color: #111827;
}

.custom-faq .accordion-button:focus {
    box-shadow: none;
}

.custom-faq .accordion-body {
    color: var(--text-soft);
    line-height: 1.7;
    padding: 0 20px 18px 20px;
    background: var(--surface);
}

.faq-cta {
    padding: 24px;
    border-radius: 22px;
    background: #f6f6f3;
    border: 1px solid rgba(17, 24, 39, 0.06);
}
.products-kicker {
    letter-spacing: .14em;
}

.products-intro-panel {
    background: #f6f6f3;
    border: 1px solid rgba(17, 24, 39, 0.06);
    border-radius: 24px;
    padding: 24px;
}

.products-intro-stats {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    flex-wrap: wrap;
}

.products-intro-stat {
    min-width: 88px;
    padding: 14px 16px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.06);
    text-align: center;
}

.products-intro-stat strong {
    display: block;
    font-size: 1.05rem;
    color: #111827;
}

.products-intro-stat span {
    font-size: 0.82rem;
    color: #6b7280;
}

.product-showcase-card {
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.06);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.product-showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.product-showcase-link {
    color: inherit;
    display: block;
}

.product-showcase-link:hover {
    color: inherit;
}

.product-showcase-image-wrap {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #f3f4f6;
}

.product-showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-showcase-overlay {
    position: absolute;
    inset: auto 0 0 0;
    height: 90px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.40), transparent);
}

.product-showcase-category {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.9);
    color: #111827;
    font-size: 0.82rem;
    font-weight: 600;
    backdrop-filter: blur(6px);
}

.product-showcase-body {
    padding: 20px 20px 12px 20px;
    flex: 1;
}

.product-showcase-title {
    font-size: 1.28rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-showcase-desc {
    color: #6b7280;
    font-size: 0.96rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.product-showcase-meta {
    display: grid;
    gap: 12px;
}

.product-showcase-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-meta-label {
    font-size: 0.82rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.product-meta-value {
    color: #374151;
    font-weight: 500;
}

.product-meta-price {
    color: #111827;
    font-weight: 700;
    font-size: 1.12rem;
}

.product-showcase-actions {
    padding: 0 20px 20px 20px;
    display: grid;
    gap: 10px;
}

.product-info-block {
    padding: 24px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.06);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.03);
}

.custom-faq .accordion-item {
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 12px;
    background: var(--surface);
}

.custom-faq .accordion-button {
    background: var(--surface);
    color: var(--text);
    font-weight: 600;
    box-shadow: none !important;
    padding: 18px 20px;
}

.custom-faq .accordion-button:not(.collapsed) {
    background: var(--surface-2);
    color: var(--text);
}

.custom-faq .accordion-button:focus {
    box-shadow: none;
}

.custom-faq .accordion-body {
    color: #6b7280;
    line-height: 1.7;
    padding: 0 20px 18px 20px;
    background: #fff;
}

.faq-cta {
    padding: 24px;
    border-radius: 22px;
    background: #f6f6f3;
    border: 1px solid rgba(17, 24, 39, 0.06);
}

.products-cta-section {
    background: #f6f6f3;
    border: 1px solid rgba(17, 24, 39, 0.06);
    border-radius: 26px;
    padding: 10px;
}

.products-cta-inner {
    background: #ffffff;
    border-radius: 20px;
    padding: 42px 24px;
}

@media (max-width: 991.98px) {
    .products-intro-stats {
        justify-content: flex-start;
    }

    .product-showcase-image-wrap {
        height: 220px;
    }

    .product-showcase-title {
        font-size: 1.16rem;
    }
}

@media (max-width: 767.98px) {
    .products-intro-panel {
        padding: 18px;
    }

    .products-intro-stat {
        min-width: 82px;
        padding: 12px 14px;
    }

    .product-showcase-image-wrap {
        height: 210px;
    }

    .product-showcase-body {
        padding: 18px 18px 10px 18px;
    }

    .product-showcase-actions {
        padding: 0 18px 18px 18px;
    }

    .product-info-block {
        padding: 20px;
    }

    .products-cta-inner {
        padding: 32px 20px;
    }
}
.products-intro-panel,
.products-cta-section,
.faq-cta {
    background: var(--surface-2);
    border: 1px solid var(--border);
}

.product-showcase-image-wrap {
    background: var(--surface-3);
}

.product-showcase-title,
.products-intro-stat strong,
.legal-page-content h4,
.footer-title {
    color: var(--text);
}

.product-showcase-desc,
.products-intro-stat span,
.product-meta-value,
.custom-faq .accordion-body,
.legal-page-content p,
.home-product-title-link,
.footer-links a {
    color: var(--text-soft);
}

.product-meta-label {
    color: var(--text-muted);
}

.product-meta-price {
    color: var(--accent);
}
/*politikalar*/
.legal-page-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 10px;
    color: #111827;
}

.legal-page-content p {
    color: #6b7280;
    line-height: 1.85;
    margin-bottom: 0;
}
.home-product-title-link {
    transition: color 0.2s ease;
}

.home-product-title-link:hover {
    color: #111827;
}
.product-image-wrapper {
    overflow: hidden;
}

.product-image {
    transition: transform 0.25s ease;
}

.custom-product-card:hover .product-image {
    transform: scale(1.03);
}
[data-aos] {
    will-change: transform, opacity;
}

/*ai chat*/
.chat-assistant {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1200;
}

.chat-toggle-btn {
    position: relative;
    width: 62px;
    height: 62px;
    border: none;
    border-radius: 50%;
    background: var(--primary);
    color: var(--primary-contrast);
    font-size: 24px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}



.chat-panel {
    position: absolute;
    right: 0;
    bottom: 76px;
    width: 360px;
    max-width: calc(100vw - 24px);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.chat-panel-header {
    padding: 16px 16px 14px 16px;
    border-bottom: 1px solid rgba(205, 188, 166, 0.35);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    background: var(--bg-soft);
}

.chat-panel-title {
    font-weight: 700;
    color: var(--text);
}

.chat-panel-subtitle {
    font-size: .9rem;
    color: var(--text-soft);
    margin-top: 2px;
}


.chat-close-btn {
    border: none;
    background: transparent;
    font-size: 22px;
    line-height: 1;
    color: #6b7280;
}

.chat-messages {
    padding: 16px;
    max-height: 280px;
    overflow-y: auto;
    background: var(--surface);
}

.chat-bubble {
    max-width: 90%;
    padding: 12px 14px;
    border-radius: 16px;
    line-height: 1.5;
    font-size: .95rem;
    margin-bottom: 10px;
}

.chat-bubble.bot {
    background: var(--surface-2);
    color: var(--text);
}

.chat-bubble.user {
    background: var(--primary);
    color: var(--primary-contrast);
    margin-left: auto;
}

.chat-options {
    padding: 0 16px 16px 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chat-option-btn {
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    border-radius: 999px;
    padding: 10px 14px;
    font-size: .92rem;
    transition: all .2s ease;
}

.chat-option-btn:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.chat-free-text-wrap,
.chat-result-wrap {
    padding: 0 16px 16px 16px;
}

.chat-result-text {
    margin-top: 12px;
    padding: 14px;
    border-radius: 16px;
    background: var(--surface-2);
    color: var(--text-soft);
    line-height: 1.6;
    white-space: pre-wrap;
    border: 1px solid var(--border);
}

@media (max-width: 576px) {
    .chat-assistant {
        right: 12px;
        bottom: 12px;
    }

    .chat-toggle-btn {
        width: 58px;
        height: 58px;
        font-size: 22px;
    }

    .chat-panel {
        width: min(360px, calc(100vw - 24px));
        bottom: 70px;
    }
}
.chat-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.chat-hint-bubble {
    position: absolute;
    right: 0;
    bottom: 78px;
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.chat-hint-bubble.show {
    display: block !important;
    animation: chatHintFadeUp .35s ease;
}

@keyframes chatHintFadeUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 576px) {
    .chat-hint-bubble {
        bottom: 72px;
        font-size: 0.86rem;
        padding: 9px 12px;
    }
}
.chat-toggle-btn.pulse {
    animation: chatPulse 1.8s ease-in-out infinite;
}

@keyframes chatPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.04); }
    100% { transform: scale(1); }
}
.chat-toggle-btn {
    position: relative;
    width: 62px;
    height: 62px;
    border: none;
    border-radius: 50%;
    background: #111827;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.chat-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(36, 48, 65, 0.18);
    background: var(--primary-hover);
}

.chat-toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.chat-alert-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(166, 124, 82, 0.35);
}

.chat-alert-badge.show {
    display: inline-flex !important;
    animation: chatAlertPop .35s ease;
}

@keyframes chatAlertPop {
    0% {
        opacity: 0;
        transform: scale(0.7);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
@media (max-width: 576px) {
    .chat-toggle-btn {
        width: 58px;
        height: 58px;
    }

    .chat-alert-badge {
        min-width: 20px;
        height: 20px;
        font-size: 0.72rem;
    }
}
.btn-dark,
.btn-admin,
.product-showcase-actions .btn-dark {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--primary-contrast) !important;
}

.btn-dark:hover,
.btn-admin:hover,
.product-showcase-actions .btn-dark:hover {
    background: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
}

.btn-outline-dark {
    border-color: var(--border-strong) !important;
    color: var(--primary) !important;
    background: var(--surface) !important;
}

.btn-outline-dark:hover {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--primary-contrast) !important;
}
.new-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
}

.mobile-site-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.new-menu-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.new-menu-btn span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--primary);
    border-radius: 999px;
    transition: all 0.25s ease;
}

.new-menu-btn:hover {
    background: var(--surface-2);
    border-color: var(--border-strong);
}

.new-menu-btn.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.new-menu-btn.is-open span:nth-child(2) {
    opacity: 0;
}

.new-menu-btn.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 991.98px) {
    .new-navbar {
        padding: 12px 0;
    }

    .new-navbar-inner {
        min-height: 56px;
    }

    .new-brand img {
        height: 38px;
        width: auto;
    }

    .mobile-site-title {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        max-width: calc(100% - 120px);
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mobile-menu-panel {
        top: 76px;
        background: var(--surface);
        border-top: 1px solid rgba(205, 188, 166, 0.35);
    }
}
@media (min-width: 992px) {
    .mobile-site-title {
        display: none !important;
    }
}
/*ürün detay*/
.related-product-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.related-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.related-product-image-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.related-product-image-wrap {
    position: relative;
    height: 190px;
    overflow: hidden;
    background: var(--surface-3);
}

.related-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease;
}

.related-product-card:hover .related-product-image {
    transform: scale(1.04);
}

.related-product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.92);
    color: var(--text);
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(0,0,0,0.04);
}

.related-product-body {
    padding: 18px;
}

.related-product-title {
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.35;
}

.related-product-title-link {
    color: var(--text);
    text-decoration: none;
}

.related-product-title-link:hover {
    color: var(--accent);
}

.related-product-desc {
    color: var(--text-soft);
    font-size: 0.94rem;
    line-height: 1.7;
    margin-bottom: 14px;
}

.related-product-meta {
    display: grid;
    gap: 10px;
}

.related-product-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.related-meta-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.related-meta-value {
    color: var(--text-soft);
    font-weight: 500;
}

.related-meta-price {
    color: var(--accent);
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .related-product-image-wrap {
        height: 175px;
    }

    .related-product-body {
        padding: 16px;
    }

    .related-product-title {
        font-size: 1rem;
    }
}