:root {
    --brand-green: #214842;
    --brand-red: #e02b20;
    --muted: #6c757d;
    --bg-soft: #f7f8f5;
    --card-border: rgba(0, 0, 0, 0.07);
}

body {
    background: #fff;
}
.navbar-brand img {
    height: 70px;
    width: auto;
}

/* Hero */
.hero {
    background: var(--bg-soft);
    position: relative;
    overflow: hidden;
}
.hero .hero-img {
    width: 100%;
    object-fit: cover;
    border-radius: 18px;
}
.badge-pill {
    border: 1px solid var(--card-border);
    background: #fff;
    border-radius: 999px;
    padding: 0.55rem 0.75rem;
    display: inline-flex;
    gap: 0.55rem;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

/* Sections */
.section-pad {
    padding: 64px 0;
}
.section-title {
    letter-spacing: -0.02em;
}
.section-lead {
    color: var(--muted);
}

/* Gov bands */
.band {
    color: #fff;
    padding: 22px 0;
}
.band--red {
    background: var(--brand-red);
}
.band--green {
    background: var(--brand-green);
}
.band img {
    max-width: 220px;
    width: 100%;
    height: auto;
}

/* Product cards */
.p-card {
    border: 1px solid var(--card-border);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    height: 100%;
}
.p-card .p-img {
    background: #fff;
    padding: 14px;
    border-bottom: 1px solid var(--card-border);
}
.p-card .p-img img {
    width: 100%;
    object-fit: contain;
}
.p-price {
    font-weight: 700;
    font-size: 1.05rem;
}
.btn-brand {
    background: var(--brand-green) !important;
    color: #fff !important;
    border: 1px solid var(--brand-green) !important;
    transition:
        background-color 0.15s ease,
        opacity 0.15s ease,
        transform 0.15s ease;
}
.btn-brand:hover,
.btn-brand:focus,
.btn-brand:active {
    background: #193a35 !important; /* biraz koyu hover */
    color: #fff !important;
    opacity: 1 !important;
    transform: translateY(-1px);
}
.btn-brand:active {
    transform: translateY(0);
}
.btn-outline-brand {
    border: 1px solid var(--brand-green);
    color: var(--brand-green);
    background: transparent;
}
.btn-outline-brand:hover {
    background: var(--brand-green);
    color: #fff;
}

/* Reviews */
.review {
    border: 1px solid var(--card-border);
    border-radius: 18px;
    background: #fff;
    padding: 22px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    height: 100%;
}
.review .name {
    font-weight: 700;
    margin: 0;
}
.review .meta {
    color: var(--muted);
    font-size: 0.9rem;
}

/* Gallery */
.gallery-card {
    border: 1px solid var(--card-border);
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}
.gallery-grid img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--card-border);
}

/* Footer */
footer {
    background: #0f2d28;
    color: #d9e7e5;
}
footer a {
    color: #d9e7e5;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
.footer-muted {
    color: rgba(217, 231, 229, 0.8);
}

/* WhatsApp fixed button (no JS) */
.wa-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9999;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    text-decoration: none;
    font-weight: 600;
}
.wa-float i {
    font-size: 1.2rem;
}
.wa-float small {
    font-weight: 500;
    opacity: 0.9;
}
@media (max-width: 576px) {
    .wa-float span {
        display: none;
    } /* mobilde sadece icon */
    .wa-float {
        padding: 12px 14px;
    }
}
.feature-icon {
    font-size: 2rem;
    color: var(--brand-green);
    margin-right: 15px;
}

/* Reviews slider */
.reviews-wrap {
    position: relative;
}
.reviews-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 8px 2px;
    -webkit-overflow-scrolling: touch;
}
.reviews-track::-webkit-scrollbar {
    height: 8px;
}
.reviews-track::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.12);
    border-radius: 999px;
}
.review-slide {
    flex: 0 0 calc((100% - 48px) / 3);
    scroll-snap-align: start;
}
@media (max-width: 992px) {
    .review-slide {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}
@media (max-width: 576px) {
    .review-slide {
        flex: 0 0 90%;
    }
}

.review-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid var(--card-border);
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}
.review-nav:hover {
    transform: translateY(-50%) translateY(-1px);
}
.review-nav:active {
    transform: translateY(-50%);
}
.review-nav.prev {
    left: -12px;
}
.review-nav.next {
    right: -12px;
}
@media (max-width: 576px) {
    .review-nav.prev {
        left: 6px;
    }
    .review-nav.next {
        right: 6px;
    }
}

/* Read more */
.review-text {
    margin-bottom: 14px;
}
.review-text.is-clamped {
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.review-more {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    border: 1px solid var(--card-border);
    background: #fff;
    border-radius: 999px;
    padding: 6px 10px;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--brand-green);
}
.review-more:hover {
    background: var(--bg-soft);
    text-decoration: none;
}
/* Cart offcanvas (right side drawer) */
.cart-offcanvas {
    width: 420px;
    max-width: 92vw;
}
.cart-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.cart-item:last-child {
    border-bottom: 0;
}
.cart-thumb {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    object-fit: cover;
    background: #fff;
}
.cart-title {
    font-weight: 700;
    line-height: 1.2;
}
.cart-meta {
    color: var(--muted);
    font-size: 0.9rem;
}
.cart-price {
    font-weight: 800;
}
.cart-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    padding-top: 12px;
}
.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 800;
    font-size: 1.05rem;
}
.cart-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 12px;
}
/* WhatsApp float should not cover the cart drawer */
.wa-float {
    z-index: 1030;
}
body.cart-open .wa-float {
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
}

/* Cart controls */
.cart-qty {
    display: flex;
    align-items: center;
    gap: 6px;
}
.cart-qty .btn {
    padding: 0.25rem 0.5rem;
    line-height: 1;
}
.cart-qty .qty-badge {
    min-width: 34px;
    text-align: center;
    font-weight: 800;
}
.cart-remove {
    padding: 0.25rem 0.5rem;
    line-height: 1;
}

/* Navbar cart count badge */
.nav-cart-btn {
    position: relative;
}
.nav-cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    z-index: 5;
    min-width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    background: #dc3545;
    color: #fff;
}

/* Product detail */
.pd-wrap {
    padding: 32px 0 64px;
}
.breadcrumb {
    --bs-breadcrumb-divider: "›";
}
.pd-card {
    border: 1px solid var(--card-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}
.pd-gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pd-main {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    border: 1px solid var(--card-border);
    background: #fff;
    object-fit: contain;
    padding: 14px;
}
.pd-thumbs {
    display: flex;
    gap: 10px;
    overflow: auto;
    padding-bottom: 4px;
}
.pd-thumb {
    width: 74px;
    height: 74px;
    flex: 0 0 auto;
    border-radius: 14px;
    border: 1px solid var(--card-border);
    background: #fff;
    object-fit: cover;
    cursor: pointer;
    padding: 6px;
    opacity: 0.9;
    transition:
        transform 0.15s ease,
        opacity 0.15s ease,
        box-shadow 0.15s ease;
}
.pd-thumb:hover {
    opacity: 1;
    transform: translateY(-1px);
}
.pd-thumb.is-active {
    opacity: 1;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.pd-title {
    letter-spacing: -0.02em;
}
.pd-price {
    font-weight: 900;
    font-size: 1.6rem;
}
.pd-muted {
    color: var(--muted);
}
.pd-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.pd-badge {
    border: 1px solid var(--card-border);
    background: #fff;
    border-radius: 999px;
    padding: 0.5rem 0.75rem;
    display: inline-flex;
    gap: 0.55rem;
    align-items: center;
    font-weight: 700;
}
.pd-badge i {
    color: var(--brand-green);
}

.pd-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}
.pd-qty .btn {
    padding: 0.45rem 0.7rem;
}
.pd-qty input {
    width: 64px;
    text-align: center;
    font-weight: 800;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    padding: 0.45rem 0.5rem;
}

.pd-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
@media (min-width: 992px) {
    .pd-actions {
        grid-template-columns: 1fr 1fr;
    }
}

.pd-tabs .nav-link {
    border: 1px solid transparent;
    color: var(--brand-green);
    font-weight: 800;
    border-radius: 999px;
    padding: 0.55rem 0.9rem;
}
.pd-tabs .nav-link.active {
    background: var(--brand-green);
    color: #fff;
}

.pd-soft {
    background: var(--bg-soft);
}
.pd-list li {
    margin-bottom: 0.35rem;
}

/* Small helper cards */
.mini-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
@media (min-width: 576px) {
    .mini-info {
        grid-template-columns: 1fr 1fr;
    }
}
.mini-card {
    border: 1px solid var(--card-border);
    border-radius: 18px;
    background: #fff;
    padding: 14px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.mini-card i {
    font-size: 1.25rem;
    color: var(--brand-green);
    margin-top: 2px;
}
.mini-card .t {
    font-weight: 900;
    margin: 0 0 4px;
}
.mini-card .d {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

/* Related */
.related-title {
    letter-spacing: -0.02em;
}

/* Sticky buy box on large screens */
@media (min-width: 992px) {
    .pd-sticky {
        position: sticky;
        top: 18px;
    }
}
.page-title-band {
    background: #d9d9d9;
    padding: 48px 0;
    margin: 0;
}
.page-title-band .title {
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--brand-green);
    text-align: center;
    margin: 0;
    line-height: 1.2;
}
@media (max-width: 576px) {
    .page-title-band {
        padding: 34px 0;
    }
    .page-title-band .title {
        font-size: 1.35rem;
    }
}
/* === Sayfa / Blog detay yan menü (widgets) === */
.widgets {
    display: grid;
    gap: 16px;
}
@media (min-width: 992px) {
    .widgets {
        position: sticky;
        top: 16px;
    }
}

.widgets-item {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.widgets-item_header {
    margin: 0;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 700;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.widgets-item .list {
    list-style: none;
    margin: 0;
    padding: 8px;
}
.widgets-item .list-item {
    margin: 0;
}

.widgets-item .list-item > a {
    gap: 12px;
    padding: 10px 10px;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}
.widgets-item .list-item > a:hover {
    background: rgba(0, 0, 0, 0.04);
    transform: translateY(-1px);
}

.widgets-item .media {
    width: 64px;
    min-width: 64px;
    height: 64px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.04);
}
.widgets-item .media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.widgets-item .wrapper {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.widgets-item .title {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.widgets-item .metadata {
    margin-top: 6px;
    font-size: 12px;
    opacity: 0.75;
}

/* === Paylaşım butonları === */
.socials {
    list-style: none;
    margin: 0;
    padding: 0;
}
.socials .list-item {
    margin: 0;
}
.socials .link {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    color: inherit;
    transition:
        transform 0.15s ease,
        background 0.15s ease,
        border-color 0.15s ease;
}
.socials .link:hover {
    transform: translateY(-1px);
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.18);
}

/* === İçerik alanı ufak tipografi iyileştirme === */
.page-content {
    line-height: 1.8;
}
.page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}
.page-content h2,
.page-content h3,
.page-content h4 {
    margin-top: 20px;
    margin-bottom: 10px;
}
.page-content p {
    margin-bottom: 14px;
}

.image-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.image-wrapper .zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.image-wrapper:hover .zoom-icon {
    opacity: 1;
    pointer-events: auto;
}
.image-wrapper img {
    transition: opacity 0.3s ease;
}
.image-wrapper:hover img {
    opacity: 0.8;
}
.gallery-separator {
    margin: 2rem auto;
    width: 80%;
    border-top: 2px solid #ccc;
    opacity: 0.5;
}
.dropzone {
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    margin-bottom: 1rem;
}
.dz-hint {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.25rem;
}
.preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 0.5rem;
}
.preview-grid .item {
    position: relative;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    overflow: hidden;
    background: #fafafa;
    padding: 4px;
}
.preview-grid img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}
.preview-grid .remove {
    position: absolute;
    top: 6px;
    right: 6px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: 0;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.modal-form .form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}
.modal-form .form-row > * {
    flex: 1;
}
.modal-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 10px;
}
.text-danger-small {
    color: #c53030;
    font-size: 0.85rem;
}
/* --- basicLightbox modal fixes (z-index, layout, readable inputs) --- */
.basicLightbox {
    z-index: 30050 !important;
    background: rgba(0, 0, 0, 0.65) !important;
}
.basicLightbox__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.basicLightbox .modal-form.container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 860px;
}

/* Inputs & labels inside modal should be visible regardless of global resets */
.modal-form label {
    display: block;
    font-weight: 700;
    color: #214842;
    margin-bottom: 6px;
}
.modal-form .form-control {
    background: #fff;
    color: #214842;
    border: 1px solid #c8c8c8;
    border-radius: 8px;
    height: 44px;
    padding: 0 12px;
    width: 100%;
}
.modal-form textarea.form-control {
    min-height: 110px;
    height: auto;
    padding: 10px 12px;
}

/* Improve dropzone contrast on dark overlay */
.modal-form .dropzone {
    background: #fff;
    border-color: #c8c8c8;
}
.modal-form .dropzone.drag {
    border-color: #258f67;
    box-shadow: 0 0 0 3px rgba(37, 143, 103, 0.15);
}

/* Buttons area spacing on small screens */
.modal-actions {
    padding-top: 8px;
}
/* === Galeri: loading toast (infinite scroll) === */
.loading-toast {
    position: fixed;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    z-index: 9999;
}
.loading-toast__inner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.78);
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    font-size: 13px;
    line-height: 1;
}
.loading-toast__text {
    white-space: nowrap;
}
/* Blog list (new theme) */
.blog-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.blog-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 16px;
    border: 1px solid var(--card-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.blog-thumb {
    display: block;
    background: #fff;
    border-right: 1px solid var(--card-border);
}

.blog-thumb-img {
    width: 100%;
    height: 100%;
    min-height: 160px;
    object-fit: cover;
    display: block;
}

.blog-body {
    padding: 16px 16px 16px 0;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 8px;
}

.blog-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 0.92rem;
}

.blog-meta-item i {
    color: var(--brand-green);
}

.blog-title {
    margin: 0 0 10px 0;
    letter-spacing: -0.02em;
    font-weight: 900;
    line-height: 1.2;
}

.blog-title a {
    color: inherit;
    text-decoration: none;
}

.blog-title a:hover {
    color: var(--brand-green);
}

.blog-excerpt {
    margin: 0 0 12px 0;
    color: var(--muted);
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-readmore {
    border-radius: 999px;
    font-weight: 800;
}

/* Responsive */
@media (max-width: 992px) {
    .blog-card {
        grid-template-columns: 180px 1fr;
    }
    .blog-body {
        padding: 14px;
    }
    .blog-thumb {
        border-right: 0;
        border-bottom: 1px solid var(--card-border);
    }
}

@media (max-width: 576px) {
    .blog-card {
        grid-template-columns: 1fr;
    }
    .blog-thumb-img {
        min-height: 190px;
    }
}

/* Müşteri yorumları – masonry benzeri 2 kolon, mobilde 1 kolon */
.musteri-grid {
    column-count: 1;
    column-gap: 24px;
}
@media (min-width: 992px) {
    .musteri-grid {
        column-count: 2;
    }
}
.musteri-card {
    break-inside: avoid;
    display: inline-block;
    width: 100%;
    margin: 0 0 24px;
}
.musteri-card__inner {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    padding: 22px 18px;
    text-align: center;
}
.musteri-card__text {
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 12px;
}
.musteri-card__name {
    font-weight: 600;
    margin-top: 6px;
}
.musteri-card__title {
    font-size: 12px;
    color: #6c757d;
}
/* Modal form cosmetics (keeps theme look & feel) */
.blx-modal-wrap {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 720px;
    padding: 18px;
}
.blx-modal-title {
    margin: 0 0 12px;
    font-weight: 800;
    color: #214842;
}
.blx-form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}
.blx-form-row > * {
    flex: 1;
}
.blx-label {
    display: block;
    font-weight: 700;
    color: #214842;
    margin-bottom: 6px;
}
.blx-input,
.blx-textarea {
    background: #fff;
    color: #214842;
    border: 1px solid #c8c8c8;
    border-radius: 8px;
    height: 44px;
    padding: 0 12px;
    width: 100%;
}
.blx-textarea {
    min-height: 120px;
    height: auto;
    padding: 10px 12px;
}
.blx-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 12px;
}
/* Contact page */
.contact-wrap{padding:24px 0 8px}
.contact-card{border:1px solid var(--card-border);border-radius:18px;background:#fff;box-shadow:0 10px 25px rgba(0,0,0,.04)}
.contact-card .head{padding:18px 18px 0}
.contact-card .body{padding:18px}
.contact-card .title{font-weight:900;letter-spacing:-.02em;margin:0 0 6px}
.contact-card .lead{color:var(--muted);margin:0}
.contact-list{display:flex;flex-direction:column;gap:12px;margin:14px 0 0}
.contact-item{display:flex;gap:12px;align-items:flex-start;padding:12px;border:1px solid var(--card-border);border-radius:16px;background:#fff}
.contact-item i{font-size:1.15rem;color:var(--brand-green);margin-top:2px}
.contact-item .k{font-weight:900;margin:0 0 2px}
.contact-item .v{margin:0;color:var(--muted)}
.contact-item a{color:inherit;text-decoration:none}
.contact-item a:hover{text-decoration:underline}

/* Form */
.contacts_form-form{gap:12px}
.contacts_form-form_field.field{width:100%;border:1px solid var(--card-border);border-radius:14px;padding:.8rem .9rem;outline:none;transition:border-color .15s ease, box-shadow .15s ease}
.contacts_form-form_field.field:focus{border-color:rgba(33,72,66,.45);box-shadow:0 0 0 .2rem rgba(33,72,66,.12)}
.contacts_form-form_field.field::placeholder{color:rgba(108,117,125,.85)}
textarea.contacts_form-form_field{min-height:140px;resize:vertical}
.contacts_form-form_btn{border-radius:14px;font-weight:800;padding:.75rem 1rem}

/* Small helper row under title */
.contact-chips{display:flex;flex-wrap:wrap;gap:8px;margin-top:12px}
.contact-chip{display:inline-flex;gap:8px;align-items:center;border:1px solid var(--card-border);background:#fff;border-radius:999px;padding:8px 10px;font-weight:700}
.contact-chip i{color:var(--brand-green)}

@media (max-width:576px){
.contact-wrap{padding-top:14px}
}