:root {
    /* Logo uyumu: siyah, yeşil vurgu; dijital ana kırmızı daha tok (crimson) */
    --isot-black: #0a0a0a;
    --isot-black-soft: #161616;
    --isot-red: #af1d2e;
    --isot-red-dark: #761421;
    --isot-red-light: #c43a4d;
    --isot-red-rgb: 175, 29, 46;
    --isot-green: #1b6b3a;
    --isot-green-dark: #124a28;
    --isot-green-bright: #2d9d52;
    --isot-radius: 1rem;
    /* Montserrat: gövde + ana başlıklar; Caveat yalnızca .hero-kicker */
    --font-sans: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
    --bs-body-font-family: var(--font-sans);
    --bs-font-sans-serif: var(--font-sans);
}

html {
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 1.08rem;
    letter-spacing: 0.035em;
    line-height: 1.58;
    background: #f2f5f3;
    color: var(--isot-black);
    overflow-x: hidden;
    padding-left: env(safe-area-inset-left, 0);
    padding-right: env(safe-area-inset-right, 0);
}

/* Header — beyaz zemin, yeşil–kırmızı şerit */
.navbar-isotking {
    position: relative;
    background: #fff;
    box-shadow: 0 2px 20px rgba(10, 10, 10, 0.08);
    font-family: var(--font-sans);
}

.navbar-isotking::after {
    content: "";
    display: block;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--isot-green-bright) 0%,
        var(--isot-green) 22%,
        var(--isot-red) 50%,
        var(--isot-green) 78%,
        var(--isot-green-bright) 100%
    );
}

.navbar-isotking .navbar.py-2 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.navbar-isotking .navbar-nav .nav-link {
    color: var(--isot-black) !important;
}

.navbar-isotking .navbar-brand {
    margin-right: 0.75rem;
}

.navbar-brand-logo {
    height: 2.5rem;
    width: auto;
    max-width: min(42vw, 200px);
    object-fit: contain;
    display: block;
}

@media (min-width: 992px) {
    .navbar-brand-logo {
        height: 2.85rem;
        max-width: 220px;
    }
}

.nav-main .nav-link {
    letter-spacing: 0.1em;
    font-size: 0.92rem;
    padding-left: 0.85rem;
    padding-right: 0.85rem;
}

.nav-main .nav-link:hover,
.nav-main .nav-link:focus {
    color: var(--isot-red) !important;
    opacity: 1;
}

.nav-main .nav-link:hover {
    text-decoration: underline;
    text-decoration-color: var(--isot-green);
    text-decoration-thickness: 2px;
    text-underline-offset: 0.35rem;
}

.dropdown-menu-isotking {
    border: 1px solid rgba(10, 10, 10, 0.08);
    border-radius: 0.5rem;
    margin-top: 0.35rem;
    --bs-dropdown-bg: #fff;
    box-shadow: 0 12px 32px rgba(10, 10, 10, 0.12);
}

.dropdown-menu-isotking .dropdown-item {
    font-size: 0.98rem;
    letter-spacing: 0.04em;
    padding: 0.55rem 1.15rem;
    color: var(--isot-black);
}

.dropdown-menu-isotking .dropdown-item:hover,
.dropdown-menu-isotking .dropdown-item:focus {
    background: linear-gradient(90deg, rgba(27, 107, 58, 0.12), rgba(var(--isot-red-rgb), 0.1));
    color: var(--isot-black);
}

/* Kurumsal: geniş ekranda üzerine gelince alt menü */
@media (min-width: 992px) {
    .navbar-isotking .dropdown-hover-lg {
        position: relative;
    }

    .navbar-isotking .dropdown-hover-lg:hover > .dropdown-menu,
    .navbar-isotking .dropdown-hover-lg:focus-within > .dropdown-menu {
        display: block !important;
    }

    .navbar-isotking .dropdown-hover-lg > .dropdown-menu {
        margin-top: 0;
    }

    .navbar-isotking .dropdown-hover-lg > .dropdown-menu::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: -0.45rem;
        height: 0.45rem;
    }
}

.btn-nav-cta {
    color: var(--isot-black) !important;
    border: 1px solid var(--isot-green);
    background: #fff;
}

.btn-nav-cta:hover,
.btn-nav-cta:focus,
.btn-nav-cta.show {
    color: #fff !important;
    background: var(--isot-green) !important;
    border-color: var(--isot-green-dark) !important;
}

.btn-nav-cta:focus-visible {
    box-shadow: 0 0 0 3px rgba(45, 157, 82, 0.35);
}

.navbar-isotking .btn-nav-cta {
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    text-transform: none;
    padding: 0.5rem 1.15rem;
}

/* Hero carousel */
.hero-carousel {
    position: relative;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
}

.hero-carousel .carousel-item {
    position: relative;
    min-height: 0;
}

/* Metin katmanı — oklar / noktaların altında kalmaması için kontroller üstte */
.hero-carousel .carousel-indicators-isotking,
.hero-carousel .carousel-control-isotking {
    z-index: 4;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 2;
    padding: 1rem 0 2.5rem;
}

.hero-overlay-inner {
    pointer-events: auto;
    width: 100%;
    max-width: min(96vw, 920px);
}

/* Kicker + başlık + CTA dikey, ortalanmış */
.hero-main-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0.35rem, 1.5vw, 0.65rem);
    width: 100%;
    margin-inline: auto;
}

.hero-main-grid > .hero-kicker-wrap {
    width: 100%;
}

.hero-main-grid > .hero-headline {
    width: 100%;
}

.hero-main-grid > .hero-cta-row {
    width: 100%;
    margin-top: clamp(0.35rem, 1.2vw, 0.5rem);
}

.hero-kicker-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.5rem, 3vw, 1.25rem);
}

.hero-kicker-line {
    flex: 1 1 0;
    max-width: min(28vw, 140px);
    border-bottom: 2px dotted rgba(255, 255, 255, 0.9);
    min-width: 2rem;
}

.hero-kicker {
    flex: 0 0 auto;
    margin: 0;
    font-family: "Caveat", cursive;
    font-size: clamp(1.05rem, 3.2vw, 1.65rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #fff;
    text-transform: none;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.hero-headline {
    font-family: var(--font-sans);
    font-size: clamp(1.35rem, 5.2vw, 3.15rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0.03em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.8);
    text-align: center;
    max-width: min(100%, 14em);
    margin-inline: auto;
}

.hero-cta-btn {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--isot-red);
    --bs-btn-border-color: var(--isot-red);
    --bs-btn-hover-bg: var(--isot-red-dark);
    --bs-btn-hover-border-color: var(--isot-red-dark);
    --bs-btn-hover-color: #fff;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 500;
    font-size: clamp(0.8rem, 2vw, 0.95rem);
    letter-spacing: 0.02em;
    text-transform: none;
    line-height: 1.25;
    padding: 0.55rem 1.35rem;
    border-radius: 999px;
    box-shadow: 0 4px 18px rgba(var(--isot-red-rgb), 0.42);
}

/* hero1.png 1916×679 — tam genişlikte aynı en-boy oranı (yükseklik otomatik) */
.hero-slide {
    width: 100%;
    aspect-ratio: 1916 / 679;
    background-size: cover;
    background-position: center;
}

.hero-slide-1 {
    background-image: radial-gradient(ellipse 85% 70% at 50% 45%, rgba(0, 0, 0, 0.35) 0%, transparent 55%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.22) 0%, transparent 45%),
        url("../img/hero1.png");
}

.hero-slide-2 {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, transparent 50%),
        url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1920&q=80");
}

.hero-slide-3 {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.35) 0%, transparent 45%),
        url("https://images.unsplash.com/photo-1540189549336-e6e99c3679fe?auto=format&fit=crop&w=1920&q=80");
}

.carousel-indicators-isotking {
    margin-bottom: 1.25rem;
    gap: 0.45rem;
}

.carousel-indicators-isotking [data-bs-target] {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-color: transparent;
    opacity: 1;
    transition: width 0.25s ease, border-radius 0.25s ease, background-color 0.25s ease;
}

.carousel-indicators-isotking .active {
    width: 32px;
    height: 7px;
    border-radius: 4px;
    background-color: var(--isot-red);
    border-color: #fff;
    box-shadow: none;
}

.carousel-control-isotking {
    width: 3rem;
    height: 3rem;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.65);
    border: 2px solid rgba(45, 157, 82, 0.35);
    opacity: 1;
}

.carousel-control-isotking:hover {
    background: rgba(var(--isot-red-rgb), 0.88);
    border-color: var(--isot-green-bright);
}

.carousel-control-prev.carousel-control-isotking {
    left: 1rem;
}

.carousel-control-next.carousel-control-isotking {
    right: 1rem;
}

.carousel-control-isotking .carousel-control-prev-icon,
.carousel-control-isotking .carousel-control-next-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Promo grid */
.promo-grid-section {
    background: linear-gradient(180deg, #eef2ef 0%, #e8ece9 100%);
}

.promo-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.promo-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

.promo-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.promo-card:hover .promo-bg {
    transform: scale(1.06);
}

.promo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.55) 100%);
    z-index: 0;
}

.promo-overlay-strong {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 100%);
}

.min-promo-h {
    min-height: 340px;
}

@media (min-width: 992px) {
    .min-promo-h {
        min-height: 420px;
    }
}

.min-promo-small {
    min-height: 200px;
}

@media (min-width: 992px) {
    .min-promo-small {
        min-height: 220px;
    }
}

.min-promo-wide {
    min-height: 160px;
}

@media (min-width: 992px) {
    .min-promo-wide {
        min-height: 180px;
    }
}

.promo-bg-franchise {
    background-image: url("https://images.unsplash.com/photo-1556910103-1c02745aae4d?auto=format&fit=crop&w=1200&q=80");
}

.promo-bg-store {
    background-image: url("../img/isotking-nerede.png");
    background-size: cover;
    background-position: center;
}

.promo-bg-history {
    background-image: url("../img/cigkofte-tarihii.jpg");
    background-size: cover;
    background-position: center;
}

.promo-bg-products {
    background-image: linear-gradient(145deg, rgba(10, 10, 10, 0.35) 0%, transparent 50%),
        url("../img/cigkofte11.jpg");
    background-size: cover;
    background-position: center;
}

.promo-card-green {
    /* Yeşil blok yerine foto + overlay (diğer bento kartlarıyla bütünlük) */
    background: var(--isot-black-soft);
}

.promo-product-visual {
    height: 100px;
    margin-right: -12%;
    margin-bottom: -18%;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 16px rgba(10, 10, 10, 0.2);
    align-self: flex-end;
    aspect-ratio: 1;
    max-width: 140px;
    overflow: hidden;
}

.promo-product-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (min-width: 992px) {
    .promo-product-visual {
        height: 120px;
        max-width: 160px;
    }
}

.btn-isotking {
    background: linear-gradient(135deg, var(--isot-red) 0%, var(--isot-red-dark) 100%);
    color: #fff !important;
    border: none;
    box-shadow: 0 4px 14px rgba(var(--isot-red-rgb), 0.32);
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none;
}

.btn-isotking:hover {
    background: linear-gradient(135deg, var(--isot-red-dark) 0%, #4a1018 100%);
    color: #fff !important;
    box-shadow: 0 6px 18px rgba(var(--isot-red-rgb), 0.4);
}

.btn-isotking:focus-visible {
    box-shadow: 0 0 0 3px rgba(45, 157, 82, 0.5);
}

/* İç sayfa üst şeridi (Hakkımızda, S.S.S. vb.) */
.page-banner {
    background: linear-gradient(
        135deg,
        rgba(var(--isot-red-rgb), 0.09) 0%,
        rgba(250, 251, 251, 1) 42%,
        #fff 100%
    );
    border-bottom: 1px solid rgba(10, 10, 10, 0.06);
}

.page-banner__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--isot-red);
    margin-bottom: 0.4rem;
}

.page-banner__title {
    font-family: var(--font-sans);
    font-size: clamp(1.65rem, 4.5vw, 2.4rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--isot-black);
    line-height: 1.2;
    margin: 0;
    scroll-margin-top: 5.5rem;
}

/* Kurumsal içerik sayfaları (Hakkımızda vb.) */
.content-page {
    background: #fff;
    border-top: 1px solid rgba(10, 10, 10, 0.06);
}

main > .page-banner + .content-page {
    border-top: none;
}

.content-page-inner {
    max-width: min(100%, 60rem);
    font-size: 1.05rem;
    line-height: 1.7;
    color: #2a2a2a;
}

.content-page-inner--wide {
    max-width: min(100%, 76rem);
}

.content-page-title {
    font-family: var(--font-sans);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--isot-black);
    line-height: 1.25;
    margin-bottom: 1.5rem;
    scroll-margin-top: 5.5rem;
}

.content-page-lead {
    font-size: 1.08rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 1.25rem;
}

.content-page-inner > p {
    margin-bottom: 1.15rem;
}

.content-page-h2 {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--isot-red);
    margin-top: 2.25rem;
    margin-bottom: 0.85rem;
    scroll-margin-top: 5.5rem;
}

.franchise-section-heading {
    font-family: var(--font-sans);
    font-size: clamp(1.25rem, 3.5vw, 1.65rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--isot-black);
    line-height: 1.3;
    margin-bottom: 1.25rem;
    scroll-margin-top: 6rem;
    text-transform: uppercase;
}

.franchise-alert ul {
    margin-bottom: 0;
}

.franchise-form .form-label {
    font-weight: 600;
    font-size: 0.92rem;
    color: #333;
}

.franchise-form .form-control {
    border-radius: 0.45rem;
    border-color: rgba(10, 10, 10, 0.12);
}

.franchise-form .form-control:focus {
    border-color: rgba(var(--isot-red-rgb), 0.45);
    box-shadow: 0 0 0 0.2rem rgba(var(--isot-red-rgb), 0.15);
}

.franchise-consent {
    border: 1px solid rgba(10, 10, 10, 0.08);
    border-radius: 0.5rem;
    padding: 1.15rem 1.15rem 1.25rem;
    background: #fafbfb;
}

.franchise-consent legend {
    float: none;
    width: auto;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.franchise-consent-text {
    line-height: 1.55;
}

.franchise-system-list {
    padding-left: 1.15rem;
    margin-bottom: 0;
}

.franchise-system-list li {
    margin-bottom: 0.75rem;
    line-height: 1.65;
}

.franchise-system-list li:last-child {
    margin-bottom: 0;
}

.franchise-strategy-tabs {
    border-bottom-color: rgba(10, 10, 10, 0.1);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.franchise-strategy-tabs .nav-link {
    color: #444;
    font-weight: 600;
    border-color: transparent;
}

.franchise-strategy-tabs .nav-link:hover {
    color: var(--isot-red);
    border-color: rgba(var(--isot-red-rgb), 0.25);
}

.franchise-strategy-tabs .nav-link.active {
    color: var(--isot-red);
    font-weight: 700;
    border-color: rgba(10, 10, 10, 0.1) rgba(10, 10, 10, 0.1) #fff;
    background-color: #fff;
}

.franchise-strategy-tab-content {
    background: #fff;
    border-color: rgba(10, 10, 10, 0.1) !important;
}

.franchise-strategy-tab-title {
    color: var(--isot-red);
    letter-spacing: 0.01em;
}

.franchise-strategy-list {
    padding-left: 1.15rem;
    margin-bottom: 0;
}

.franchise-strategy-list li {
    margin-bottom: 0.7rem;
    line-height: 1.65;
    color: #2a2a2a;
}

.franchise-strategy-list li:last-child {
    margin-bottom: 0;
}

.franchise-strategy-paragraph {
    line-height: 1.7;
    color: #2a2a2a;
    margin-bottom: 0;
}

.contact-card {
    border: 1px solid rgba(10, 10, 10, 0.08);
    border-radius: 0.75rem;
    padding: 1.35rem 1.35rem 1.5rem;
    background: #fafbfb;
}

.contact-card__title {
    font-family: var(--font-sans);
    letter-spacing: 0.06em;
    color: var(--isot-black);
}

.contact-card__icon {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.45rem;
    background: rgba(var(--isot-red-rgb), 0.08);
    color: var(--isot-red);
}

.contact-card__value {
    font-weight: 500;
    color: #2a2a2a;
    line-height: 1.5;
}

.contact-split-panel {
    background: #fff;
    border: 1px solid rgba(10, 10, 10, 0.1);
    border-radius: 0.75rem;
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.07);
    overflow: hidden;
}

.contact-split-aside {
    border-bottom: 1px solid rgba(10, 10, 10, 0.1);
}

@media (min-width: 992px) {
    .contact-split-aside {
        border-bottom: none;
        border-right: 1px solid rgba(10, 10, 10, 0.1);
    }
}

.contact-split-aside-inner {
    padding: 1.75rem 1.5rem 2rem;
}

@media (min-width: 992px) {
    .contact-split-aside-inner {
        padding: 2.25rem 1.85rem 2.5rem;
    }
}

.contact-split-main-inner {
    padding: 1.75rem 1.5rem 2rem;
}

@media (min-width: 992px) {
    .contact-split-main-inner {
        padding: 2.25rem 2.25rem 2.5rem;
    }
}

.contact-split-block {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.75rem;
}

.contact-split-block__body {
    min-width: 0;
    flex: 1;
}

.contact-split-block__title {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--isot-black);
}

.contact-split-block__text {
    font-size: 0.98rem;
    line-height: 1.55;
    color: #444;
}

.contact-split-block__link {
    color: var(--isot-red);
    text-decoration: none;
}

.contact-split-block__link:hover {
    text-decoration: underline;
}

.contact-split-aside .contact-email-link {
    max-width: 100%;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.contact-split-icon-round {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--isot-red);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}

/* Saat simgesi diğerlerine göre optik olarak daha büyük göründüğü için hafif küçültülür */
.contact-split-icon-round .fa-clock {
    font-size: 0.88em;
    line-height: 1;
}

.contact-split-block--compact {
    margin-bottom: 0;
}

.contact-split-inner-divider {
    border-top: 1px solid rgba(10, 10, 10, 0.08);
}

.contact-split-social__eyebrow {
    letter-spacing: 0.08em;
}

.contact-split-social-row {
    row-gap: 0.5rem;
}

.contact-split-social-btn {
    width: 2.65rem;
    height: 2.65rem;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex-shrink: 0;
}

.contact-split-social-btn .fab {
    font-size: 1.05rem;
    line-height: 1;
}

.contact-label-required {
    color: var(--isot-red);
    text-decoration: none;
}

.contact-form-label {
    font-weight: 600;
    font-size: 0.92rem;
    color: #333;
}

.contact-form-control {
    border-radius: 0.5rem;
    border-color: rgba(10, 10, 10, 0.14);
    padding: 0.6rem 0.9rem;
}

.contact-form-control:focus {
    border-color: rgba(var(--isot-red-rgb), 0.45);
    box-shadow: 0 0 0 0.2rem rgba(var(--isot-red-rgb), 0.15);
}

.contact-page-form--split {
    width: 100%;
    max-width: none;
}

.contact-page-form .form-check-label {
    line-height: 1.5;
}

.contact-map {
    position: relative;
    width: 100%;
    min-height: 320px;
    aspect-ratio: 4 / 3;
    background: #e8e8e8;
}

.contact-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.contact-map-fullbleed {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-top: 1px solid rgba(10, 10, 10, 0.08);
}

.contact-map.contact-map--full {
    border-radius: 0;
    box-shadow: none;
    aspect-ratio: auto;
    width: 100%;
    min-height: min(52vh, 640px);
}

@media (min-width: 992px) {
    .contact-map {
        min-height: 420px;
        aspect-ratio: 16 / 11;
    }

    .contact-map.contact-map--full {
        min-height: min(50vh, 720px);
    }
}

.sss-accordion.accordion {
    --bs-accordion-border-color: rgba(10, 10, 10, 0.1);
    --bs-accordion-btn-focus-border-color: rgba(var(--isot-red-rgb), 0.35);
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.2rem rgba(var(--isot-red-rgb), 0.18);
}

.sss-accordion .accordion-item {
    background: #fff;
    border-radius: 0.5rem !important;
    margin-bottom: 0.65rem;
    overflow: hidden;
    border: 1px solid rgba(10, 10, 10, 0.08);
}

.sss-accordion .accordion-button {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.02em;
    color: var(--isot-black);
    padding: 1rem 1.15rem;
    background: #fafbfb;
}

.sss-accordion .accordion-button:not(.collapsed) {
    color: var(--isot-red);
    background: rgba(var(--isot-red-rgb), 0.06);
    box-shadow: none;
}

.sss-accordion .accordion-button::after {
    filter: opacity(0.65);
}

.sss-accordion .accordion-body {
    font-size: 1.02rem;
    line-height: 1.65;
    color: #333;
    padding: 1rem 1.15rem 1.15rem;
    background: #fff;
}

.footer-isotking {
    background: #1e1e1e;
}

.footer-isotking-inner {
    font-family: var(--font-sans);
    color: #fff;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    line-height: 1.55;
}

.footer-social-link {
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: rgba(255, 255, 255, 0.92);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.footer-social-link:hover {
    border-color: var(--isot-red-light);
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.footer-social-link .fab {
    font-size: 1.05rem;
    line-height: 1;
}

.footer-brand-logo {
    height: clamp(2.5rem, 8vw, 3.25rem);
    width: auto;
    max-width: min(280px, 85vw);
    object-fit: contain;
}

.footer-contact-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.35rem 0.65rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-contact-part a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-contact-part a:hover {
    color: var(--isot-red-light);
    border-bottom-color: rgba(var(--isot-red-rgb), 0.5);
}

.footer-contact-divider {
    color: var(--isot-red);
    font-weight: 400;
    user-select: none;
}

.footer-hours {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 0;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.82rem;
    margin-bottom: 0;
}

.footer-credit {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.78rem;
    margin-bottom: 0;
}

.footer-credit a {
    color: var(--isot-red);
    text-decoration: none;
    border-bottom: 1px solid rgba(var(--isot-red-rgb), 0.45);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-credit a:hover {
    color: var(--isot-red-light);
    border-bottom-color: rgba(var(--isot-red-rgb), 0.65);
}

.footer-cta-btn {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--isot-red);
    --bs-btn-border-color: var(--isot-red);
    --bs-btn-hover-bg: var(--isot-red-dark);
    --bs-btn-hover-border-color: var(--isot-red-dark);
    --bs-btn-hover-color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    text-transform: none;
    box-shadow: 0 6px 20px rgba(var(--isot-red-rgb), 0.35);
}

.footer-cta-btn:hover {
    box-shadow: 0 8px 26px rgba(var(--isot-red-rgb), 0.45);
}

@media (max-width: 575.98px) {
    .footer-contact-row {
        flex-direction: column;
        gap: 0.65rem;
    }

    .footer-contact-divider {
        display: none;
    }

    .footer-cta-btn {
        width: 100%;
        max-width: 22rem;
        justify-content: center;
    }
}

/* Bento / promo: başlıklar tek tip Montserrat + gölge */
.promo-card .promo-content :is(h2, h3) {
    font-family: var(--font-sans);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: none;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.65);
}

.promo-card-large .display-6 {
    font-size: clamp(2rem, 4.2vw, 2.85rem);
    line-height: 1.15;
}

.promo-card-large .fs-5 {
    font-family: var(--font-sans);
    font-size: 1.2rem !important;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45), 0 1px 2px rgba(0, 0, 0, 0.55);
}

.promo-card .btn-isotking.small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.92rem !important;
    letter-spacing: 0.02em;
    padding: 0.55rem 1.25rem !important;
    line-height: 1.2;
}

.promo-card-green .h4 {
    font-size: 1.35rem;
    line-height: 1.2;
}

.promo-card-store .h6 {
    font-size: 1.05rem;
    line-height: 1.35;
}

.promo-card-wide .h5 {
    font-size: 1.25rem;
    line-height: 1.35;
}

/* Hikâye şeridi — nötr zemin, ince üst/alt çizgi, kırmızı tipografi */
.stories-strip-section {
    background: transparent;
    border-top: 1px solid rgba(10, 10, 10, 0.12);
    border-bottom: 1px solid rgba(10, 10, 10, 0.12);
}

.stories-heading {
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--isot-red);
    font-size: 1rem;
    letter-spacing: 0.12em;
}

.stories-strip {
    padding-right: 2.5rem;
}

.stories-track {
    justify-content: space-evenly;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: rgba(10, 10, 10, 0.2) transparent;
    -webkit-overflow-scrolling: touch;
}

.stories-track::-webkit-scrollbar {
    height: 4px;
}

.stories-track::-webkit-scrollbar-thumb {
    background: rgba(10, 10, 10, 0.22);
    border-radius: 4px;
}

.story-bubble {
    scroll-snap-align: start;
    flex: 0 0 auto;
    width: 118px;
    color: var(--isot-red);
}

.story-bubble:focus-visible {
    outline: 2px solid var(--isot-green-bright);
    outline-offset: 4px;
    border-radius: 0.5rem;
}

.story-ring {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    padding: 3px;
    box-sizing: border-box;
    /* Instagram tarzı “görülmemiş” gökkuşağı halka */
    background: conic-gradient(
        from 200deg,
        #ffd600 0deg,
        #ff9800 55deg,
        #ff1744 115deg,
        #e91e8c 175deg,
        #9c27b0 235deg,
        #673ab7 295deg,
        #ffd600 360deg
    );
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.story-bubble.is-story-viewed .story-ring {
    background: #4a4d52;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.story-thumb-wrap {
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    align-items: center;
    justify-content: center;
}

.story-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-bubble--no-label .story-ring {
    margin-bottom: 0;
}

.story-viewer-title-row--empty .story-viewer-close {
    margin-left: auto;
}

.story-label {
    max-width: 112px;
    font-size: 1rem;
    line-height: 1.25;
    letter-spacing: 0.05em;
    color: var(--isot-red);
    font-weight: 600;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    hyphens: auto;
    word-break: break-word;
}

.stories-scroll-hint {
    position: absolute;
    right: 0;
    top: 36px;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    color: var(--isot-black);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.stories-scroll-hint:hover {
    background: #fff;
    color: var(--isot-red);
}

.story-viewer-modal .modal-content {
    min-height: 70vh;
    border-radius: 0;
}

@media (min-width: 576px) {
    .story-viewer-modal .modal-content {
        border-radius: 0.75rem;
        min-height: auto;
    }
}

.story-progress {
    min-height: 3px;
}

.story-progress-seg {
    position: relative;
    flex: 1 1 0;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.28);
    overflow: hidden;
}

.story-progress-fill {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.95);
}

.story-progress-seg.is-done .story-progress-fill {
    width: 100%;
}

.story-progress-seg.is-active .story-progress-fill.is-animating {
    animation: story-progress-fill var(--story-duration, 5s) linear forwards;
}

@keyframes story-progress-fill {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .story-progress-seg.is-active .story-progress-fill.is-animating {
        animation: none;
        width: 100%;
        transition: width var(--story-duration, 5s) linear;
    }
}

.story-viewer-body {
    min-height: 280px;
}

.story-media-wrap {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
}

/* Tam ekran hikâye oranı 1080×1920 (9:16) */
.story-viewer-media {
    width: auto;
    max-width: min(100%, 1080px);
    aspect-ratio: 1080 / 1920;
    max-height: min(92vh, 1920px);
    height: auto;
    object-fit: contain;
    background: #0a0a0a;
}

.story-tap-prev,
.story-tap-next {
    cursor: pointer;
}

.story-viewer-close {
    opacity: 0.9;
}

#storyViewerTitle {
    font-size: 1.05rem;
    letter-spacing: 0.06em;
}

.story-viewer-caption {
    font-size: 1.02rem !important;
    letter-spacing: 0.04em;
    line-height: 1.5;
}

/* ========== Mobil uyum ========== */
.navbar-isotking .container-fluid {
    padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
}

.navbar-isotking .navbar-toggler {
    min-width: 2.75rem;
    min-height: 2.75rem;
    padding: 0.45rem 0.55rem;
}

@media (max-width: 991.98px) {
    .nav-main .nav-link {
        font-size: 1rem;
        padding-top: 0.55rem;
        padding-bottom: 0.55rem;
    }

    .navbar-isotking .btn-nav-cta {
        width: 100%;
        max-width: 20rem;
    }

    .dropdown-menu-isotking {
        text-align: center;
    }
}

/* Hero: telefonda daha yüksek kutu + metin taşmasını önle */
@media (max-width: 767.98px) {
    .hero-slide {
        aspect-ratio: 4 / 5;
        background-position: center center;
        min-height: 280px;
    }

    .hero-overlay {
        align-items: center;
        justify-content: center;
        /* Üst/alt benzer boşluk: içerik hero’da dikeyde daha dengeli; göstergeler z-index ile üstte */
        padding: max(1.75rem, env(safe-area-inset-top, 0px)) 0.75rem max(1.75rem, calc(2.25rem + env(safe-area-inset-bottom, 0px)));
    }

    .hero-overlay-inner {
        max-width: 100%;
    }

    .hero-main-grid {
        gap: 0.65rem;
    }

    .hero-main-grid > .hero-cta-row {
        margin-top: 0;
    }

    .hero-kicker-line {
        max-width: 12vw;
        min-width: 1rem;
    }

    .hero-kicker {
        font-size: clamp(0.95rem, 4.2vw, 1.35rem);
        letter-spacing: 0.03em;
    }

    .hero-headline {
        font-size: clamp(1.05rem, 5.5vw, 1.65rem);
        line-height: 1.1;
        letter-spacing: 0.02em;
    }

    .hero-cta-row {
        max-width: 100%;
    }

    .hero-cta-btn {
        min-height: 2.75rem;
        font-size: clamp(0.72rem, 3.2vw, 0.85rem);
        padding: 0 0.9rem;
        line-height: 1.15;
    }

    .carousel-indicators-isotking {
        margin-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
    }

    .carousel-control-isotking {
        width: 2.5rem;
        height: 2.5rem;
    }

    .carousel-control-prev.carousel-control-isotking {
        left: max(0.35rem, env(safe-area-inset-left, 0px));
    }

    .carousel-control-next.carousel-control-isotking {
        right: max(0.35rem, env(safe-area-inset-right, 0px));
    }
}

@media (min-width: 768px) {
    .hero-slide {
        aspect-ratio: 1916 / 679;
        min-height: 0;
    }
}

/* Hikâyeler: küçük ekranda kaydır, ortalamayı kaldır */
@media (max-width: 767.98px) {
    .stories-track {
        justify-content: flex-start;
        gap: 0.65rem;
        padding-bottom: 0.35rem;
    }

    .stories-strip {
        padding-right: 2.75rem;
    }

    .stories-scroll-hint {
        top: 50%;
        right: max(0.15rem, env(safe-area-inset-right, 0px));
    }
}

@media (min-width: 768px) {
    .stories-track {
        justify-content: space-evenly;
    }
}

/* Promo: mobil yükseklikler */
@media (max-width: 991.98px) {
    .min-promo-h {
        min-height: 300px;
    }

    .min-promo-small {
        min-height: 180px;
    }

    .min-promo-wide {
        min-height: 140px;
    }

    .promo-card-large .display-6 {
        font-size: clamp(1.55rem, 6vw, 2.25rem);
    }

    .promo-card-large .fs-5 {
        font-size: 1.05rem !important;
    }
}

@media (hover: none) and (pointer: coarse) {
    .promo-card:hover {
        transform: none;
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    }

    .promo-card:active {
        transform: scale(0.99);
    }
}

/* Taahhüt kartları — katkısız, helal, sağlıklı */
.promise-section {
    background: linear-gradient(180deg, #f2f5f3 0%, #fff 45%, #fff 100%);
    border-top: 1px solid rgba(10, 10, 10, 0.05);
}

.promise-section-title-text {
    font-family: var(--font-sans);
    font-size: clamp(1.4rem, 4.2vw, 2.35rem);
    font-weight: 700;
    letter-spacing: 0.03em;
    white-space: normal;
    text-align: center;
}

.promise-card {
    background: #fff;
    border: 1px solid rgba(10, 10, 10, 0.07);
    border-radius: 1.25rem;
    padding: 1.65rem 1.35rem;
    box-shadow: 0 6px 24px rgba(10, 10, 10, 0.06);
    text-align: center;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.promise-card:hover {
    border-color: rgba(var(--isot-red-rgb), 0.25);
    box-shadow: 0 10px 32px rgba(var(--isot-red-rgb), 0.12);
    transform: translateY(-3px);
}

.promise-icon-wrap {
    width: 3.75rem;
    height: 3.75rem;
    margin: 0 auto 1.15rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 14px rgba(10, 10, 10, 0.12);
}

.promise-icon-wrap--green {
    background: linear-gradient(145deg, var(--isot-green-bright) 0%, var(--isot-green) 55%, var(--isot-green-dark) 100%);
}

.promise-icon-wrap--red {
    background: linear-gradient(145deg, var(--isot-red-light) 0%, var(--isot-red) 50%, var(--isot-red-dark) 100%);
}

.promise-icon {
    flex-shrink: 0;
}

.promise-card-title {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--isot-red);
    margin-bottom: 0.85rem;
}

.promise-card-text {
    font-size: 0.98rem;
    line-height: 1.62;
    color: #3a3a3a;
    letter-spacing: 0.02em;
}

@media (hover: none) and (pointer: coarse) {
    .promise-card:hover {
        transform: none;
    }

    .promise-card:active {
        transform: scale(0.99);
    }
}

/* Ürün kategorileri (Komagene tarzı ızgara) */
.product-categories-section {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-top: 1px solid rgba(10, 10, 10, 0.06);
}

.categories-bg-decor {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.categories-bg-decor__piece {
    position: absolute;
    width: min(32vw, 200px);
    height: auto;
    max-width: 220px;
    object-fit: contain;
    user-select: none;
    will-change: transform;
    /* Beyaz çizim + siyah zemin: ters çevirerek açık zeminde koyu çizgiler */
    filter: invert(1);
    opacity: 0.18;
}

.categories-bg-decor__piece--1 {
    top: 2%;
    left: max(-4%, env(safe-area-inset-left, 0px));
    transform: translate3d(0, 0, 0) rotate(-12deg);
}

.categories-bg-decor__piece--2 {
    top: 8%;
    right: max(-2%, env(safe-area-inset-right, 0px));
    width: min(26vw, 160px);
    transform: translate3d(0, 0, 0) rotate(18deg);
}

.categories-bg-decor__piece--3 {
    bottom: 18%;
    left: max(-3%, env(safe-area-inset-left, 0px));
    width: min(30vw, 175px);
    transform: translate3d(0, 0, 0) rotate(6deg);
}

.categories-bg-decor__piece--4 {
    bottom: 6%;
    right: max(-4%, env(safe-area-inset-right, 0px));
    width: min(34vw, 195px);
    transform: translate3d(0, 0, 0) rotate(-10deg);
}

@media (min-width: 992px) {
    .categories-bg-decor__piece {
        opacity: 0.15;
    }

    .categories-bg-decor__piece--1 {
        top: 4%;
        left: 2%;
    }

    .categories-bg-decor__piece--2 {
        top: 12%;
        right: 4%;
    }

    .categories-bg-decor__piece--3 {
        bottom: 22%;
        left: 3%;
    }

    .categories-bg-decor__piece--4 {
        bottom: 10%;
        right: 2%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .categories-bg-decor__piece {
        will-change: auto;
    }
}

.product-categories-section .container.position-relative {
    z-index: 1;
}

.categories-section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.75rem, 4vw, 2rem);
    margin-bottom: 2rem;
    flex-wrap: nowrap;
    font-family: var(--font-sans);
    text-align: center;
}

.categories-title-line {
    flex: 1 1 0;
    max-width: min(28vw, 180px);
    min-width: 2rem;
    height: 0;
    border-bottom: 2px solid rgba(var(--isot-red-rgb), 0.55);
}

.categories-title-text {
    flex: 0 1 auto;
    white-space: nowrap;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: clamp(1.35rem, 4vw, 2.1rem);
    letter-spacing: 0.03em;
    color: var(--isot-red);
    line-height: 1.15;
}

@media (max-width: 575.98px) {
    .categories-section-title {
        gap: 0.5rem;
    }

    .categories-title-line {
        max-width: 15vw;
        min-width: 1rem;
    }

    .product-categories-section .categories-title-text {
        white-space: normal;
        max-width: min(100%, 18rem);
    }
}

.category-card-inner {
    position: relative;
    --category-card-radius: 1.35rem;
    aspect-ratio: 1 / 1;
    background: #f4f4f4;
    border: 2px solid rgba(var(--isot-red-rgb), 0.35);
    border-radius: var(--category-card-radius);
    padding: 0;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(10, 10, 10, 0.06);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.category-card:hover .category-card-inner,
.category-card:focus-visible .category-card-inner {
    border-color: var(--isot-red);
    box-shadow: 0 8px 28px rgba(var(--isot-red-rgb), 0.18);
    transform: translateY(-2px);
}

.category-card:focus-visible {
    outline: 2px solid var(--isot-green-bright);
    outline-offset: 4px;
    border-radius: 1.5rem;
}

.category-card-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.category-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    z-index: 1;
    background: linear-gradient(135deg, var(--isot-red-light) 0%, var(--isot-red) 100%);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.category-label {
    font-family: var(--font-sans);
    font-size: clamp(0.68rem, 2.4vw, 0.88rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.25;
    color: var(--isot-red);
}

.category-card-desc {
    font-family: var(--font-sans);
    font-size: clamp(0.62rem, 2vw, 0.78rem);
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.35;
    color: #555;
    margin-top: 0.35rem;
    padding: 0 0.2rem;
}

.categories-cta-btn {
    --bs-btn-color: var(--isot-red);
    --bs-btn-border-color: var(--isot-red);
    --bs-btn-bg: transparent;
    --bs-btn-hover-bg: var(--isot-red);
    --bs-btn-hover-border-color: var(--isot-red);
    --bs-btn-hover-color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.25;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    letter-spacing: 0.02em;
    text-transform: none;
    padding: 0.65rem 1.75rem;
    border-radius: 999px;
    border-width: 2px;
}

@media (hover: none) and (pointer: coarse) {
    .category-card:hover .category-card-inner {
        transform: none;
    }

    .category-card:active .category-card-inner {
        transform: scale(0.98);
    }
}

/* Franchise / bayilik alanı */
.franchise-showcase {
    background: linear-gradient(180deg, #f2f5f3 0%, #e8ece9 100%);
}

.franchise-showcase-card {
    background: #fff;
    border: 1px solid rgba(10, 10, 10, 0.06);
}

.franchise-showcase-visual {
    min-height: 320px;
    background-image: linear-gradient(135deg, rgba(27, 107, 58, 0.45) 0%, rgba(10, 10, 10, 0.55) 100%),
        url("https://images.unsplash.com/photo-1556910103-1c02745aae4d?auto=format&fit=crop&w=900&q=80");
    background-size: cover;
    background-position: center;
}

.franchise-showcase-hero-img {
    min-height: 200px;
    background-image: linear-gradient(135deg, rgba(27, 107, 58, 0.4) 0%, rgba(10, 10, 10, 0.5) 100%),
        url("https://images.unsplash.com/photo-1556910103-1c02745aae4d?auto=format&fit=crop&w=900&q=80");
    background-size: cover;
    background-position: center;
}

.franchise-showcase-body {
    background: linear-gradient(165deg, #fafafa 0%, #fff 100%);
}

.franchise-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--isot-green);
}

.franchise-title {
    font-family: var(--font-sans);
    font-size: clamp(1.35rem, 3.8vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.03em;
    color: var(--isot-black);
}

.franchise-lead {
    font-size: clamp(0.98rem, 2.4vw, 1.08rem);
    line-height: 1.65;
    color: #333;
    margin-bottom: 0;
}

.franchise-list li {
    position: relative;
    padding-left: 1.35rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #2a2a2a;
}

.franchise-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--isot-green);
    box-shadow: 0 0 0 2px rgba(45, 157, 82, 0.35);
}

.franchise-btn-primary {
    --bs-btn-bg: var(--isot-red);
    --bs-btn-border-color: var(--isot-red);
    --bs-btn-color: #fff;
    --bs-btn-hover-bg: var(--isot-red-dark);
    --bs-btn-hover-border-color: var(--isot-red-dark);
    --bs-btn-hover-color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    box-sizing: border-box;
    font-family: var(--font-sans);
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none;
    padding: 0.65rem 1.35rem;
    border-radius: 999px;
    box-shadow: 0 4px 16px rgba(var(--isot-red-rgb), 0.28);
}

.franchise-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    box-sizing: border-box;
    font-family: var(--font-sans);
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--isot-red) !important;
    border: 2px solid var(--isot-red);
    background: transparent;
    border-radius: 999px;
    padding: 0.6rem 1.25rem;
}

.franchise-btn-outline:hover {
    background: var(--isot-red);
    color: #fff !important;
}

@media (max-width: 575.98px) {
    .franchise-btn-primary,
    .franchise-btn-outline {
        width: 100%;
        justify-content: center;
        min-height: 2.75rem;
        padding-top: 0.55rem;
        padding-bottom: 0.55rem;
    }
}
