/* =========================================================
   KANSAS SALSAS · BASE STYLE
   ========================================================= */

:root {
    /* Brand core */
    --ks-black: #0B0A09;
    --ks-charcoal: #171412;
    --ks-brown: #241812;
    --ks-cream: #F5EADB;
    --ks-cream-2: #FFF8EE;

    /* Flavor accents */
    --ks-red: #E73323;
    --ks-deep-red: #A51F19;
    --ks-yellow: #F5B72F;
    --ks-mustard: #D89922;
    --ks-orange: #F27622;
    --ks-green: #657A3E;

    /* Text */
    --ks-text: #F5EADB;
    --ks-text-dark: #0B0A09;
    --ks-muted: #B8A795;
    --ks-muted-dark: #6B5E4E;

    /* UI */
    --ks-line: rgba(245, 234, 219, .16);
    --ks-line-dark: rgba(11, 10, 9, .14);
    --ks-soft: rgba(245, 234, 219, .06);

    /* Layout */
    --ks-container: 1180px;
    --ks-radius-lg: 28px;
    --ks-radius-md: 20px;
    --ks-radius-sm: 14px;
    --ks-shadow: 0 24px 70px rgba(0, 0, 0, .34);

    /* Fonts */
    --font-main: 'Inter', sans-serif;
    --font-accent: 'Playfair Display', serif;
}

/* =========================================================
   GLOBAL
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-main);
    color: var(--ks-text);
    background: var(--ks-black);
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
}

body.ks-dark-bg {
    background:
        radial-gradient(circle at 14% 6%, rgba(245, 183, 47, .16), transparent 30%),
        radial-gradient(circle at 88% 0%, rgba(231, 51, 35, .16), transparent 28%),
        linear-gradient(135deg, #080706 0%, #15120f 52%, #080706 100%);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
    text-decoration: none;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

strong {
    font-weight: 800;
}

.ks-container {
    width: min(var(--ks-container), calc(100% - 40px));
    margin: 0 auto;
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.ks-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ks-yellow);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .18em;
    margin-bottom: 18px;
}

.ks-eyebrow::before {
    content: "";
    width: 42px;
    height: 2px;
    background: currentColor;
    display: inline-block;
}

.ks-title-xl,
.ks-title-lg,
.ks-title-md {
    margin-top: 0;
    font-weight: 900;
    letter-spacing: -.06em;
}

.ks-title-xl {
    font-size: clamp(40px, 5vw, 80px);
    line-height: .9;
}

.ks-title-lg {
    font-size: clamp(36px, 5vw, 60px);
    line-height: .95;
}

.ks-title-md {
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1;
}

.ks-title-xl em,
.ks-title-lg em,
.ks-title-md em {
    font-family: var(--font-accent);
    color: var(--ks-yellow);
    font-style: italic;
    letter-spacing: -.035em;
}

.ks-lead {
    color: var(--ks-muted);
    font-size: clamp(14px, 2vw, 19px);
    line-height: 1.42;
    max-width: 500px;
}

.ks-copy {
    color: var(--ks-muted);
    font-size: 16px;
    line-height: 1.58;
}

.ks-copy-dark {
    color: var(--ks-muted-dark);
}

/* =========================================================
   BUTTONS
   ========================================================= */

.ks-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 0;
    border: 1px solid var(--ks-line);
    background: rgba(255, 255, 255, .045);
    color: var(--ks-text);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
    transition: all .25s ease;
    gap: 8px;
}

.ks-btn:hover {
    transform: translateY(-2px);
}

.ks-btn-red {
    background: var(--ks-red);
    border-color: var(--ks-red);
    color: #fff;
}

.ks-btn-red:hover {
    background: var(--ks-deep-red);
    border-color: var(--ks-deep-red);
    color: #fff;
}

.ks-btn-yellow {
    background: var(--ks-yellow);
    border-color: var(--ks-yellow);
    color: var(--ks-black);
}

.ks-btn-yellow:hover {
    background: var(--ks-mustard);
    border-color: var(--ks-mustard);
    color: var(--ks-black);
}

.ks-btn-outline {
    background: transparent;
    border-color: var(--ks-yellow);
    color: var(--ks-yellow);
}

.ks-btn-outline:hover {
    background: var(--ks-yellow);
    color: var(--ks-black);
}

/* =========================================================
   SECTIONS
   ========================================================= */

.ks-section {
    position: relative;
    padding: 86px 0;
    overflow: hidden;
}

.ks-section-dark {
    background: var(--ks-black);
    color: var(--ks-text);
}

.ks-section-charcoal {
    background: var(--ks-charcoal);
    color: var(--ks-text);
}

.ks-section-light {
    background: var(--ks-cream);
    color: var(--ks-text-dark);
}

.ks-section-red {
    background: var(--ks-red);
    color: #fff;
}

.ks-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 36px;
}

.ks-section-head .ks-copy {
    max-width: 520px;
    margin-bottom: 0;
}

/* =========================================================
   CARDS / BLOCKS
   ========================================================= */

.ks-card {
    border: 1px solid var(--ks-line);
    border-radius: var(--ks-radius-md);
    background: linear-gradient(180deg, rgba(245, 234, 219, .075), rgba(245, 234, 219, .025));
    padding: 26px;
    box-shadow: 0 16px 44px rgba(0, 0, 0, .18);
}

.ks-section-light .ks-card {
    border-color: var(--ks-line-dark);
    background: rgba(255, 255, 255, .56);
    box-shadow: none;
}

.ks-card-title {
    font-size: 24px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -.04em;
    margin-bottom: 10px;
}

.ks-card-text {
    color: var(--ks-muted);
    margin-bottom: 0;
}

.ks-section-light .ks-card-text {
    color: var(--ks-muted-dark);
}

/* =========================================================
   DECORATIVE SYSTEM
   ========================================================= */

.ks-line-title {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: var(--ks-cream);
}

.ks-line-title::before,
.ks-line-title::after {
    content: "";
    width: 52px;
    height: 2px;
    background: var(--ks-yellow);
}

.ks-tag {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--ks-line);
    border-radius: 999px;
    padding: 7px 12px;
    color: var(--ks-muted);
    font-size: 12px;
    font-weight: 750;
}

.ks-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ks-yellow);
    font-size: 28px;
}

/* =========================================================
   IMAGE HELPERS
   ========================================================= */

.ks-img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ks-img-rounded {
    border-radius: var(--ks-radius-md);
}

.ks-shadow {
    box-shadow: var(--ks-shadow);
}

/* =========================================================
   UTILITIES
   ========================================================= */

.text-cream {
    color: var(--ks-cream) !important;
}

.text-yellow {
    color: var(--ks-yellow) !important;
}

.text-red {
    color: var(--ks-red) !important;
}

.bg-kansas-black {
    background-color: var(--ks-black) !important;
}

.bg-kansas-red {
    background-color: var(--ks-red) !important;
}

.bg-kansas-yellow {
    background-color: var(--ks-yellow) !important;
}

.bg-kansas-cream {
    background-color: var(--ks-cream) !important;
}

.no-margin {
    margin: 0 !important;
}

/* =========================================================
   01 HEADER / NAVEGACIÓN
   ========================================================= */

.ks-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(11, 10, 9, .88);
    border-bottom: 1px solid rgba(245, 234, 219, .10);
    backdrop-filter: blur(16px);
    transition: all .28s ease;
}

body.is-scrolled .ks-header {
    background: rgba(11, 10, 9, .96);
    box-shadow: 0 14px 36px rgba(0, 0, 0, .28);
}

.ks-header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.ks-header-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.ks-header-logo img {
    width: 138px;
    height: auto;
    display: block;
}

.ks-header-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex: 1 1 auto;
}

.ks-header-nav a {
    position: relative;
    color: var(--ks-cream);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    line-height: 1;
    opacity: .92;
    transition: all .25s ease;
}

.ks-header-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 0;
    height: 2px;
    background: var(--ks-yellow);
    transition: width .25s ease;
}

.ks-header-nav a:hover {
    color: var(--ks-yellow);
    opacity: 1;
}

.ks-header-nav a:hover::after {
    width: 100%;
}

.ks-header-cta {
    flex: 0 0 auto;
    min-height: 46px;
    padding: 13px 22px;
}

.ks-header-cta i {
    font-size: 18px;
    line-height: 1;
}

.ks-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--ks-line);
    background: rgba(255, 255, 255, .045);
    color: var(--ks-cream);
    font-size: 28px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.ks-menu-toggle:focus {
    outline: none;
}

/* =========================================================
   02 HERO PRINCIPAL
   ========================================================= */

.ks-hero {
    position: relative;
    min-height: 100vh;
    padding-top: 82px;
    background: var(--ks-black);
    overflow: hidden;
}

.ks-hero-bg {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.ks-hero-bg-desktop {
    background-image: url('../img/hero-kansas-desktop.jpg');
    background-position: center right;
}

.ks-hero-bg-mobile {
    display: none;
    background-image: url('../img/hero-kansas-mobile.jpg');
    background-position: center bottom;
}

.ks-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(
            90deg,
            rgba(11, 10, 9, .96) 0%,
            rgba(11, 10, 9, .84) 34%,
            rgba(11, 10, 9, .34) 66%,
            rgba(11, 10, 9, .12) 100%
        ),
        radial-gradient(
            circle at 18% 35%,
            rgba(231, 51, 35, .24),
            transparent 34%
        );
}

.ks-hero .ks-container {
    position: relative;
    z-index: 3;
}

.ks-hero-content {
    max-width: 650px;
    padding: 80px 0 70px;
}

.ks-hero-title {
    margin-bottom: 24px;
}

.ks-hero-lead {
    margin-bottom: 34px;
}

.ks-hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.ks-hero-actions .ks-btn i {
    font-size: 20px;
    line-height: 1;
}

.ks-hero-features {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.ks-hero-feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 8px 13px;
    border: 1px solid rgba(245, 234, 219, .18);
    background: rgba(245, 234, 219, .06);
    color: var(--ks-cream);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.ks-hero-feature i {
    color: var(--ks-yellow);
    font-size: 18px;
}

/* =========================================================
   03 MANIFIESTO CORTO
   ========================================================= */

.ks-manifest {
    position: relative;
    padding: 64px 0;
    background:
        radial-gradient(circle at 8% 20%, rgba(245, 183, 47, .09), transparent 26%),
        linear-gradient(90deg, #11100d 0%, #171412 48%, #10100d 100%);
    border-top: 1px solid rgba(245, 234, 219, .10);
    border-bottom: 1px solid rgba(245, 234, 219, .10);
    overflow: hidden;
}

.ks-manifest::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(245, 234, 219, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 234, 219, .025) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: .65;
}

.ks-manifest .ks-container {
    position: relative;
    z-index: 2;
}

.ks-manifest-title-wrap {
    padding-right: 34px;
}

.ks-manifest-title {
    margin: 0;
    color: var(--ks-cream);
    font-size: clamp(38px, 4.4vw, 64px);
    line-height: .92;
    font-weight: 900;
    letter-spacing: -.055em;
}

.ks-manifest-title em {
    display: inline-block;
    color: var(--ks-yellow);
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 900;
    letter-spacing: -.04em;
}

.ks-manifest-content {
    position: relative;
    padding-left: 44px;
    border-left: 1px solid rgba(245, 234, 219, .20);
}

.ks-manifest-lead {
    max-width: 760px;
    margin: 0 0 30px;
    color: var(--ks-muted);
    font-size: 18px;
    line-height: 1.48;
}

.ks-manifest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.ks-manifest-item {
    position: relative;
}

.ks-manifest-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ks-yellow);
    font-size: 38px;
}

.ks-manifest-icon-red {
    color: var(--ks-red);
}

.ks-manifest-icon-green {
    color: var(--ks-green);
}

.ks-manifest-item h3 {
    margin: 0 0 8px;
    color: var(--ks-cream);
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.ks-manifest-item p {
    margin: 0;
    max-width: 230px;
    color: var(--ks-muted);
    font-size: 14px;
    line-height: 1.45;
}

/* =========================================================
   04 SABORES PRINCIPALES
   ========================================================= */

.ks-flavors {
    position: relative;
    background:
        radial-gradient(circle at 8% 12%, rgba(231, 51, 35, .14), transparent 30%),
        radial-gradient(circle at 92% 8%, rgba(245, 183, 47, .12), transparent 28%),
        linear-gradient(180deg, #0B0A09 0%, #171412 100%);
    overflow: hidden;
}

.ks-flavors::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(245, 234, 219, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 234, 219, .025) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: .55;
}

.ks-flavors .ks-container {
    position: relative;
    z-index: 2;
}

.ks-flavors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.ks-flavor-card {
    position: relative;
    min-height: 420px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(245, 234, 219, .16);
    background: var(--ks-charcoal);
    overflow: hidden;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.ks-flavor-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 183, 47, .42);
    box-shadow: 0 26px 70px rgba(0, 0, 0, .34);
}

.ks-flavor-card::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -90px;
    top: -90px;
    border-radius: 50%;
    opacity: .52;
    filter: blur(2px);
    transition: transform .28s ease, opacity .28s ease;
}

.ks-flavor-card:hover::before {
    transform: scale(1.08);
    opacity: .72;
}

.ks-flavor-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(11, 10, 9, .02) 0%, rgba(11, 10, 9, .34) 100%);
    pointer-events: none;
}

.ks-flavor-img {
    position: relative;
    z-index: 2;
    height: 190px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 20px;
}

.ks-flavor-img img {
    max-height: 205px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 22px 26px rgba(0, 0, 0, .34));
    transition: transform .28s ease;
}

.ks-flavor-card:hover .ks-flavor-img img {
    transform: translateY(-5px) scale(1.03);
}

.ks-flavor-content {
    position: relative;
    z-index: 2;
}

.ks-flavor-label {
    display: inline-block;
    margin-bottom: 10px;
    color: rgba(245, 234, 219, .72);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.ks-flavor-content h3 {
    margin: 0 0 8px;
    color: var(--ks-cream);
    font-size: 34px;
    line-height: .95;
    font-weight: 900;
    letter-spacing: -.055em;
}

.ks-flavor-content p {
    max-width: 270px;
    margin: 0 0 16px;
    color: rgba(245, 234, 219, .78);
    font-size: 15px;
    line-height: 1.42;
}

.ks-flavor-uses {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.ks-flavor-uses span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 9px;
    border: 1px solid rgba(245, 234, 219, .18);
    background: rgba(11, 10, 9, .22);
    color: var(--ks-cream);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

/* Colores por sabor */

.ks-flavor-honey {
    background: linear-gradient(160deg, #201409 0%, #D89922 120%);
}

.ks-flavor-honey::before {
    background: var(--ks-yellow);
}

.ks-flavor-bbq {
    background: linear-gradient(160deg, #160B08 0%, #7B2118 115%);
}

.ks-flavor-bbq::before {
    background: var(--ks-red);
}

.ks-flavor-caesar {
    background: linear-gradient(160deg, #12170D 0%, #657A3E 120%);
}

.ks-flavor-caesar::before {
    background: #B0D4A0;
}

.ks-flavor-cheddar {
    background: linear-gradient(160deg, #201403 0%, #D89922 110%);
}

.ks-flavor-cheddar::before {
    background: #F5C842;
}

.ks-flavor-aioli {
    background: linear-gradient(160deg, #19111A 0%, #8F5C8F 120%);
}

.ks-flavor-aioli::before {
    background: #D4A0D4;
}

.ks-flavor-ketchup {
    background: linear-gradient(160deg, #180907 0%, #E73323 115%);
}

.ks-flavor-ketchup::before {
    background: var(--ks-red);
}

.ks-flavors-action {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.ks-flavors-action .ks-btn i {
    font-size: 20px;
    line-height: 1;
}

/* Badge producto destacado */

.ks-flavor-featured {
    border-color: rgba(245, 183, 47, .58);
}

.ks-flavor-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 30px;
    padding: 7px 11px;
    background: var(--ks-red);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .07em;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .22);
}

.ks-flavor-badge i {
    color: var(--ks-yellow);
    font-size: 15px;
    line-height: 1;
}

/* =========================================================
   MODAL TODOS LOS SABORES · KANSAS
   ========================================================= */

.ks-flavors-action .ks-btn {
    border: 0;
    cursor: pointer;
}

.ks-flavors-modal .modal-dialog {
    max-width: 1120px;
}

.ks-flavors-modal .modal-content {
    position: relative;
    border: 0;
    border-radius: 0;
    background:
        radial-gradient(circle at 10% 10%, rgba(245, 183, 47, .16), transparent 28%),
        radial-gradient(circle at 90% 0%, rgba(231, 51, 35, .16), transparent 30%),
        linear-gradient(135deg, #0B0A09 0%, #171412 62%, #0B0A09 100%);
    color: var(--ks-cream);
    box-shadow: 0 34px 90px rgba(0, 0, 0, .44);
    overflow: hidden;
}

.ks-flavors-modal .modal-content::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(245, 234, 219, .028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 234, 219, .028) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: .55;
}

.ks-flavors-modal .modal-body {
    position: relative;
    z-index: 2;
    padding: 46px;
}

.ks-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 5;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(245, 234, 219, .18);
    background: rgba(245, 234, 219, .08);
    color: var(--ks-cream);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transition: all .25s ease;
}

.ks-modal-close:hover {
    background: var(--ks-red);
    border-color: var(--ks-red);
    color: #fff;
}

.ks-modal-close:focus {
    outline: none;
}

.ks-modal-head {
    max-width: 720px;
    margin-bottom: 34px;
}

.ks-modal-head h2 {
    margin: 0;
    color: var(--ks-cream);
    font-size: clamp(38px, 5vw, 64px);
    line-height: .95;
    font-weight: 900;
    letter-spacing: -.06em;
}

/* Carrusel */

.ks-modal-flavors-carousel {
    position: relative;
    margin: 0 -8px;
}

.ks-modal-flavor-slide {
    padding: 0 8px;
}

.ks-modal-flavor-item {
    position: relative;
    min-height: 230px;
    padding: 20px 14px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(245, 234, 219, .14);
    background: rgba(245, 234, 219, .06);
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.ks-modal-flavor-item:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 183, 47, .44);
    background: rgba(245, 234, 219, .09);
}

.ks-modal-flavor-item::before {
    content: "";
    position: absolute;
    right: -42px;
    top: -42px;
    width: 118px;
    height: 118px;
    border-radius: 50%;
    opacity: .44;
}

.ks-modal-flavor-item img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    max-height: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 18px;
    filter: drop-shadow(0 18px 22px rgba(0, 0, 0, .32));
}

.ks-modal-flavor-item h3 {
    position: relative;
    z-index: 2;
    margin: 0;
    color: var(--ks-cream);
    font-size: 16px;
    line-height: 1.08;
    font-weight: 900;
    text-align: center;
    letter-spacing: -.025em;
}

/* Flechas Slick */

.ks-modal-flavors-carousel .slick-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(245, 234, 219, .18);
    background: rgba(11, 10, 9, .72);
    color: var(--ks-cream);
    transform: translateY(-50%);
    cursor: pointer;
    transition: all .25s ease;
}

.ks-modal-flavors-carousel .slick-arrow:hover {
    background: var(--ks-red);
    border-color: var(--ks-red);
    color: #fff;
}

.ks-modal-flavors-carousel .slick-prev {
    left: -14px;
}

.ks-modal-flavors-carousel .slick-next {
    right: -14px;
}

.ks-modal-flavors-carousel .slick-arrow::before {
    display: none;
}

.ks-modal-flavors-carousel .slick-arrow i {
    font-size: 28px;
    line-height: 1;
}

/* Dots Slick */

.ks-modal-flavors-carousel .slick-dots {
    position: relative;
    bottom: auto;
    margin-top: 26px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ks-modal-flavors-carousel .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.ks-modal-flavors-carousel .slick-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(245, 234, 219, .28);
    font-size: 0;
    cursor: pointer;
}

.ks-modal-flavors-carousel .slick-dots button::before {
    display: none;
}

.ks-modal-flavors-carousel .slick-dots .slick-active button {
    background: var(--ks-yellow);
}

/* Colores identificatorios */

.ks-modal-honey::before {
    background: #F5B72F;
}

.ks-modal-bbq::before {
    background: #7B2118;
}

.ks-modal-caesar::before {
    background: #B0D4A0;
}

.ks-modal-cheddar::before {
    background: #F5C842;
}

.ks-modal-aioli::before {
    background: #D4A0D4;
}

.ks-modal-ketchup::before,
.ks-modal-spicy::before {
    background: #E73323;
}

.ks-modal-curry::before {
    background: #F27622;
}

.ks-modal-golf::before {
    background: #F29A7A;
}

.ks-modal-mayo::before,
.ks-modal-olive::before {
    background: #F5EADB;
}

.ks-modal-chimi::before,
.ks-modal-vinaigrette::before {
    background: #657A3E;
}

/* =========================================================
   05 OCASIONES / RECETAS
   ========================================================= */

.ks-recipes {
    position: relative;
    background:
        radial-gradient(circle at 8% 12%, rgba(231, 51, 35, .10), transparent 30%),
        radial-gradient(circle at 92% 8%, rgba(245, 183, 47, .18), transparent 28%),
        var(--ks-cream);
    color: var(--ks-black);
    overflow: hidden;
}

.ks-recipes::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(11, 10, 9, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 10, 9, .04) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: .55;
}

.ks-recipes .ks-container {
    position: relative;
    z-index: 2;
}

.ks-recipes .ks-eyebrow {
    color: var(--ks-deep-red);
}

.ks-recipes .ks-eyebrow::before {
    background: var(--ks-deep-red);
}

.ks-recipes .ks-title-lg {
    color: var(--ks-black);
}

.ks-recipes .ks-title-lg em {
    color: var(--ks-deep-red);
}

.ks-recipes-grid {
    display: grid;
    grid-template-columns: 1.16fr 1fr 1fr;
    grid-template-rows: repeat(2, 260px);
    gap: 18px;
}

.ks-recipe-card {
    position: relative;
    overflow: hidden;
    background: var(--ks-charcoal);
    border: 1px solid rgba(11, 10, 9, .12);
    box-shadow: 0 18px 44px rgba(11, 10, 9, .12);
    transition: transform .28s ease, box-shadow .28s ease;
}

.ks-recipe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 64px rgba(11, 10, 9, .18);
}

.ks-recipe-featured {
    grid-row: span 2;
}

.ks-recipe-link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
}

.ks-recipe-link:hover {
    color: inherit;
}

.ks-recipe-img {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.ks-recipe-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
    transition: transform .36s ease;
}

.ks-recipe-card:hover .ks-recipe-img img {
    transform: scale(1.06);
}

.ks-recipe-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(11, 10, 9, .08) 0%,
            rgba(11, 10, 9, .38) 48%,
            rgba(11, 10, 9, .86) 100%
        );
    z-index: 2;
}

.ks-recipe-featured .ks-recipe-img::after {
    background:
        linear-gradient(
            180deg,
            rgba(11, 10, 9, .04) 0%,
            rgba(11, 10, 9, .28) 42%,
            rgba(11, 10, 9, .88) 100%
        );
}

.ks-recipe-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 3;
    padding: 24px;
}

.ks-recipe-tag {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    margin-bottom: 12px;
    padding: 6px 10px;
    background: var(--ks-yellow);
    color: var(--ks-black);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    line-height: 1;
}

.ks-recipe-content h3 {
    margin: 0 0 8px;
    max-width: 520px;
    color: var(--ks-cream);
    font-size: 28px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.045em;
}

.ks-recipe-featured .ks-recipe-content h3 {
    font-size: clamp(36px, 4vw, 54px);
    letter-spacing: -.06em;
}

.ks-recipe-content p {
    max-width: 430px;
    margin: 0;
    color: rgba(245, 234, 219, .84);
    font-size: 15px;
    line-height: 1.42;
}

.ks-recipe-featured .ks-recipe-content p {
    font-size: 17px;
}

.ks-recipes-action {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.ks-recipes-action .ks-btn i {
    font-size: 20px;
    line-height: 1;
}

/* =========================================================
   06 ORIGINAL RECIPE
   ========================================================= */

.ks-original {
    position: relative;
    background:
        radial-gradient(circle at 10% 20%, rgba(101, 122, 62, .18), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(245, 183, 47, .10), transparent 30%),
        linear-gradient(135deg, #0B0A09 0%, #171412 54%, #0B0A09 100%);
    border-top: 1px solid rgba(245, 234, 219, .10);
    border-bottom: 1px solid rgba(245, 234, 219, .10);
    overflow: hidden;
}

.ks-original::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(245, 234, 219, .026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 234, 219, .026) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: .58;
}

.ks-original::after {
    content: "ORIGINAL";
    position: absolute;
    left: -20px;
    bottom: -42px;
    color: rgba(245, 234, 219, .035);
    font-size: clamp(90px, 14vw, 210px);
    line-height: .8;
    font-weight: 900;
    letter-spacing: -.08em;
    pointer-events: none;
}

.ks-original .ks-container {
    position: relative;
    z-index: 2;
}

.ks-original-head {
    max-width: 520px;
    padding-right: 30px;
}

.ks-original-head .ks-title-lg {
    margin-bottom: 24px;
}

.ks-original-head .ks-copy {
    max-width: 460px;
    margin-bottom: 0;
}

.ks-original-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.ks-original-item {
    position: relative;
    display: grid;
    grid-template-columns: 72px 66px 1fr;
    grid-template-rows: auto auto;
    gap: 6px 20px;
    align-items: center;
    padding: 24px;
    border: 1px solid rgba(245, 234, 219, .14);
    background:
        linear-gradient(90deg, rgba(245, 234, 219, .075), rgba(245, 234, 219, .025));
    box-shadow: 0 18px 48px rgba(0, 0, 0, .20);
    overflow: hidden;
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}


.ks-original-item:hover {
    transform: translateX(6px);
    border-color: rgba(245, 183, 47, .42);
    box-shadow: 0 26px 68px rgba(0, 0, 0, .28);
}

.ks-original-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 96% 50%, rgba(245, 183, 47, .10), transparent 30%);
    pointer-events: none;
}

.ks-original-number {
    position: relative;
    z-index: 2;
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: flex-start;
    color: rgba(245, 234, 219, .26);
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.06em;
}

.ks-original-icon {
    position: relative;
    z-index: 2;
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: flex-start;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ks-yellow);
    border: 1px solid rgba(245, 183, 47, .28);
    background: rgba(245, 183, 47, .08);
    font-size: 32px;
}

.ks-original-icon-red {
    color: var(--ks-red);
    border-color: rgba(231, 51, 35, .30);
    background: rgba(231, 51, 35, .08);
}

.ks-original-icon-green {
    color: var(--ks-green);
    border-color: rgba(101, 122, 62, .36);
    background: rgba(101, 122, 62, .12);
}

.ks-original-item h3 {
    position: relative;
    z-index: 2;
    grid-column: 3;
    grid-row: 1;
    margin: 0;
    color: var(--ks-cream);
    font-size: 23px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -.035em;
}


.ks-original-item p {
    position: relative;
    z-index: 2;
    grid-column: 3;
    grid-row: 2;
    margin: 0;
    max-width: 560px;
    color: var(--ks-muted);
    font-size: 15px;
    line-height: 1.48;
}

/* =========================================================
   07 DIFERENCIALES
   ========================================================= */

.ks-differentials {
    position: relative;
    padding: 78px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(245, 183, 47, .24), transparent 30%),
        radial-gradient(circle at 88% 0%, rgba(11, 10, 9, .28), transparent 34%),
        linear-gradient(135deg, #E73323 0%, #B3261D 54%, #E73323 100%);
    color: var(--ks-cream);
    overflow: hidden;
}

.ks-differentials::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(245, 234, 219, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 234, 219, .07) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: .32;
}

.ks-differentials::after {
    content: "CARÁCTER";
    position: absolute;
    right: -18px;
    bottom: -36px;
    color: rgba(245, 234, 219, .10);
    font-size: clamp(76px, 12vw, 180px);
    line-height: .8;
    font-weight: 900;
    letter-spacing: -.08em;
    pointer-events: none;
}

.ks-differentials .ks-container {
    position: relative;
    z-index: 2;
}

.ks-differentials-head {
    max-width: 880px;
    margin-bottom: 36px;
}

.ks-differentials .ks-eyebrow {
    color: var(--ks-yellow);
}

.ks-differentials .ks-eyebrow::before {
    background: var(--ks-yellow);
}

.ks-differentials .ks-title-lg {
    margin-bottom: 20px;
    color: var(--ks-cream);
}

.ks-differentials .ks-title-lg em {
    color: var(--ks-yellow);
}

.ks-differentials-head p {
    max-width: 680px;
    margin: 0;
    color: rgba(245, 234, 219, .82);
    font-size: 18px;
    line-height: 1.48;
}

.ks-differentials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.ks-differential-card {
    position: relative;
    min-height: 230px;
    padding: 24px;
    border: 1px solid rgba(245, 234, 219, .18);
    background:
        linear-gradient(180deg, rgba(11, 10, 9, .88), rgba(23, 20, 18, .82));
    box-shadow: 0 20px 54px rgba(11, 10, 9, .22);
    overflow: hidden;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.ks-differential-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 183, 47, .55);
    box-shadow: 0 28px 72px rgba(11, 10, 9, .34);
}

.ks-differential-card::before {
    content: "";
    position: absolute;
    right: -48px;
    top: -48px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(245, 183, 47, .14);
    transition: transform .28s ease, opacity .28s ease;
}

.ks-differential-card:hover::before {
    transform: scale(1.18);
    opacity: .8;
}

.ks-differential-icon {
    position: relative;
    z-index: 2;
    width: 54px;
    height: 54px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(245, 183, 47, .32);
    background: rgba(245, 183, 47, .10);
    color: var(--ks-yellow);
    font-size: 32px;
}

.ks-differential-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 10px;
    color: var(--ks-cream);
    font-size: 22px;
    line-height: 1.03;
    font-weight: 900;
    letter-spacing: -.035em;
}

.ks-differential-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: rgba(245, 234, 219, .76);
    font-size: 14px;
    line-height: 1.46;
}

.ks-differentials-action {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.ks-differentials-action .ks-btn i {
    font-size: 20px;
    line-height: 1;
}

/* =========================================================
   08 DÓNDE COMPRAR
   ========================================================= */

.ks-where {
    position: relative;
    background:
        radial-gradient(circle at 10% 12%, rgba(231, 51, 35, .09), transparent 30%),
        radial-gradient(circle at 90% 4%, rgba(245, 183, 47, .16), transparent 30%),
        var(--ks-cream);
    color: var(--ks-black);
    overflow: hidden;
}

.ks-where::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(11, 10, 9, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 10, 9, .045) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: .5;
}

.ks-where .ks-container {
    position: relative;
    z-index: 2;
}

.ks-where .ks-eyebrow {
    color: var(--ks-deep-red);
}

.ks-where .ks-eyebrow::before {
    background: var(--ks-deep-red);
}

.ks-where .ks-title-lg {
    color: var(--ks-black);
}

.ks-where .ks-title-lg em {
    color: var(--ks-deep-red);
}

.ks-market-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.ks-market-item {
    min-height: 90px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(11, 10, 9, .10);
    background: rgba(255, 255, 255, .64);
    box-shadow: 0 16px 38px rgba(11, 10, 9, .07);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.ks-market-item:hover {
    transform: translateY(-4px);
    border-color: rgba(231, 51, 35, .28);
    box-shadow: 0 22px 52px rgba(11, 10, 9, .11);
}

.ks-market-item img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100px;
    max-height: 48px;
    object-fit: contain;
}

.ks-where-action {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.ks-where-action .ks-btn i {
    font-size: 20px;
    line-height: 1;
}

/* =========================================================
   09 FAQ
   ========================================================= */

.ks-faq {
    position: relative;
    background:
        radial-gradient(circle at 12% 12%, rgba(245, 183, 47, .12), transparent 30%),
        radial-gradient(circle at 88% 8%, rgba(231, 51, 35, .12), transparent 28%),
        linear-gradient(135deg, #0B0A09 0%, #171412 58%, #0B0A09 100%);
    border-top: 1px solid rgba(245, 234, 219, .10);
    border-bottom: 1px solid rgba(245, 234, 219, .10);
    overflow: hidden;
}

.ks-faq::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(245, 234, 219, .026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 234, 219, .026) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: .58;
}

.ks-faq::after {
    content: "FAQ";
    position: absolute;
    right: -16px;
    bottom: -38px;
    color: rgba(245, 234, 219, .045);
    font-size: clamp(100px, 15vw, 230px);
    line-height: .8;
    font-weight: 900;
    letter-spacing: -.08em;
    pointer-events: none;
}

.ks-faq .ks-container {
    position: relative;
    z-index: 2;
}

.ks-faq-layout {
    display: grid;
    grid-template-columns: .42fr .58fr;
    gap: 32px;
    align-items: flex-start;
}

.ks-faq-side {
    position: sticky;
    top: 112px;
    padding: 32px;
    border: 1px solid rgba(245, 234, 219, .14);
    background:
        linear-gradient(180deg, rgba(245, 234, 219, .075), rgba(245, 234, 219, .025));
    box-shadow: 0 18px 48px rgba(0, 0, 0, .22);
}

.ks-faq-side h3 {
    margin: 0 0 14px;
    color: var(--ks-cream);
    font-size: 34px;
    line-height: .96;
    font-weight: 900;
    letter-spacing: -.055em;
}

.ks-faq-side p {
    margin: 0 0 24px;
    color: var(--ks-muted);
    font-size: 16px;
    line-height: 1.5;
}

.ks-faq-side .ks-btn i {
    font-size: 20px;
    line-height: 1;
}

.ks-faq-accordion {
    display: grid;
    gap: 12px;
}

.ks-faq-item {
    border: 1px solid rgba(245, 234, 219, .14);
    background:
        linear-gradient(180deg, rgba(245, 234, 219, .065), rgba(245, 234, 219, .025));
    overflow: hidden;
    transition: border-color .25s ease, background .25s ease;
}

.ks-faq-item.active {
    border-color: rgba(245, 183, 47, .42);
    background:
        linear-gradient(180deg, rgba(245, 183, 47, .09), rgba(245, 234, 219, .03));
}

.ks-faq-question {
    width: 100%;
    min-height: 72px;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 0;
    background: transparent;
    color: var(--ks-cream);
    text-align: left;
    cursor: pointer;
}

.ks-faq-question:focus {
    outline: none;
}

.ks-faq-question span {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -.025em;
}

.ks-faq-question i {
    flex: 0 0 auto;
    color: var(--ks-yellow);
    font-size: 26px;
    line-height: 1;
}

.ks-faq-answer {
    display: none;
    padding: 0 24px 24px;
}

.ks-faq-item.active .ks-faq-answer {
    display: block;
}

.ks-faq-answer p {
    max-width: 760px;
    margin: 0;
    color: var(--ks-muted);
    font-size: 15px;
    line-height: 1.55;
}

/* =========================================================
   10 CTA FINAL / CONTACTO
   ========================================================= */

.ks-contact {
    position: relative;
    background:
        radial-gradient(circle at 12% 8%, rgba(231, 51, 35, .10), transparent 30%),
        radial-gradient(circle at 88% 0%, rgba(245, 183, 47, .18), transparent 30%),
        var(--ks-cream);
    color: var(--ks-black);
    overflow: hidden;
}

.ks-contact::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(11, 10, 9, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 10, 9, .045) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: .5;
}

.ks-contact .ks-container {
    position: relative;
    z-index: 2;
}

.ks-contact-head {
    max-width: 880px;
    margin-bottom: 36px;
}

.ks-contact .ks-eyebrow {
    color: var(--ks-deep-red);
}

.ks-contact .ks-eyebrow::before {
    background: var(--ks-deep-red);
}

.ks-contact .ks-title-lg {
    margin-bottom: 20px;
    color: var(--ks-black);
}

.ks-contact .ks-title-lg em {
    color: var(--ks-deep-red);
}

.ks-contact-head p {
    max-width: 700px;
    margin: 0;
    color: var(--ks-muted-dark);
    font-size: 18px;
    line-height: 1.48;
}

.ks-contact-form {
    position: relative;
    padding: 34px;
    border: 1px solid rgba(11, 10, 9, .12);
    background: rgba(255, 255, 255, .58);
    box-shadow: 0 22px 58px rgba(11, 10, 9, .10);
}

.ks-form-group {
    position: relative;
    margin-bottom: 28px;
}

.ks-form-group label {
    position: relative!important;
    display: inline-flex!important;
    align-items: center!important;
    min-height: 28px!important;
    margin: 0 0 -1px!important;
    padding: 5px 10px!important;
    background: var(--ks-orange)!important;
    color: #fff!important;
    font-size: 14px!important;
    font-weight: 800!important;
    line-height: 1!important;
    z-index: 2!important;
    transform: none!important;
    left: 0!important;
    border-radius: 0!important;
}

.ks-form-group .form-control {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid rgba(11, 10, 9, .18);
    border-radius: 0;
    background: rgba(255, 255, 255, .82);
    color: var(--ks-black);
    font-size: 16px;
    line-height: 1.4;
    box-shadow: none;
    transition: border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.ks-form-group textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.ks-form-group .form-control:focus {
    border-color: var(--ks-red);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(231, 51, 35, .12);
    outline: none;
}

.ks-form-group select.form-control {
    cursor: pointer;
}

.ks-contact-submit {
    display: flex;
    justify-content: flex-end;
    margin-top: 4px;
}

.ks-contact-submit .ks-btn i {
    font-size: 20px;
    line-height: 1;
}

/* =========================================================
   11 FOOTER
   ========================================================= */

.ks-footer {
    position: relative;
    padding: 72px 0 34px;
    background: var(--ks-deep-red);
    color: #fff;
    overflow: hidden;
}

.ks-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 12%, rgba(245, 183, 47, .14), transparent 28%),
        radial-gradient(circle at 86% 4%, rgba(11, 10, 9, .16), transparent 32%);
    opacity: .85;
}

.ks-footer .ks-container {
    position: relative;
    z-index: 2;
}

.ks-footer-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 90px;
    margin-bottom: 58px;
}

.ks-footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ks-footer-logo img {
    display: block;
    width: auto;
    height: auto;
    max-width: 130px;
    max-height: 90px;
    object-fit: contain;
}

.ks-footer-contact {
    display: grid;
    gap: 10px;
}

.ks-footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 16px;
    line-height: 1.1;
    font-weight: 600;
    transition: opacity .25s ease, transform .25s ease;
}

.ks-footer-contact a:hover {
    color: #fff;
    opacity: .78;
    transform: translateX(4px);
}

.ks-footer-contact i {
    width: 24px;
    display: inline-flex;
    justify-content: center;
    color: #fff;
    font-size: 25px;
    line-height: 1;
}

.ks-footer-bottom {
    text-align: center;
}

.ks-footer-bottom a {
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
    text-decoration: none;
    transition: opacity .25s ease;
}

.ks-footer-bottom a:hover {
    color: #fff;
    opacity: .78;
}