/* ================================
   KYRA RETAIL THEME – CORE COLORS
   ================================ */
:root {
    /* Brand Core */
    --kyra-pink-primary: #F7B6C2;
    --kyra-pink-accent: #E58A9B;
    --kyra-pink-soft: #FDECEF;

    --kyra-gold-accent: #F5CBA7;

    --kyra-black: #0E0E0E;
    --kyra-white: #FFFFFF;

    /* Neutrals */
    --kyra-text-dark: #1A1A1A;
    --kyra-text-muted: #6F6F6F;
    --kyra-border: #E6E6E6;
    --kyra-bg-soft: #FAFAFA;

    /* UI States */
    --kyra-cta-primary: #E58A9B;
    --kyra-cta-primary-hover: #D67286;
    --kyra-cta-secondary: #0E0E0E;

    --kyra-success: #5FA89D;
    --kyra-error: #D64550;

    /* Shadows */
    --kyra-shadow-soft: 0 8px 20px rgba(0, 0, 0, 0.08);
    --kyra-shadow-card: 0 12px 30px rgba(0, 0, 0, 0.12);

    /* Typography & spacing */
    --font-base: 'Inter', sans-serif;
    --font-heading: 'Inter', sans-serif;
    --radius: 12px;
    --gap: 20px;
    --transition-fast: 0.2s ease;
}

/* --------------------------
   GLOBAL RESET & BASE
   -------------------------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background:
        linear-gradient(to bottom,
            rgba(247, 182, 194, 0.9) 0%,
            rgba(253, 236, 239, 0.6) 25%,
            rgba(253, 236, 239, 0.3) 45%,
            #ffffff 70%);
    background-attachment: scroll;
    color: #222;
}

/*body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
}*/

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--kyra-black);
    line-height: 1.2;
    margin-bottom: 0.5em;
}

p {
    color: var(--kyra-text-muted);
}

/* --------------------------
   BUTTONS
   -------------------------- */
.btn-kyra {
    background-color: #f5aeb7;
    color: white;
    border: none;
}

.btn-primary {
    background-color: var(--kyra-cta-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    padding: 10px 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-primary:hover {
    background-color: var(--kyra-cta-primary-hover);
}

.btn-secondary {
    background-color: var(--kyra-cta-secondary);
    color: #fff;
    border-radius: var(--radius);
    padding: 10px 16px;
    cursor: pointer;
}

/* ================================
   CARDS / PRODUCT TILES
   ================================ */

.card {
    background-color: var(--kyra-white);
    border-radius: 16px;
    box-shadow: var(--kyra-shadow-soft);
    border: 1px solid var(--kyra-border);
}

/* ================================
   HEADINGS
   ================================ */

h1,
h2,
h3 {
    color: var(--kyra-black);
}

/* ================================
   LINKS
   ================================ */

a {
    color: var(--kyra-pink-accent);
}

a:hover {
    color: var(--kyra-cta-primary-hover);
}

/* ================================
   BADGES / TAGS
   ================================ */

.badge-new {
    background-color: var(--kyra-pink-soft);
    color: var(--kyra-pink-accent);
}

.badge-premium {
    background-color: var(--kyra-gold-accent);
    color: var(--kyra-black);
}

/* =========================
           SECTION BASE
           ========================= */

section {
    padding: 80px 20px;
    max-width: 1920px;
    margin: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.4rem;
}

.section-title p {
    color: var(--kyra-text-muted);
    margin-top: 10px;
}

/* =========================
       BRAND STRIP
========================= */

.brand-banner {
    position: relative;
    overflow: hidden;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* align content to left */
    padding: 80px 60px;
    border-radius: 24px;
    margin: 0 20px 60px;
}

.brand-banner-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 40px;
}

.brand-banner-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 480px;
}

.brand-banner-cta {
    display: flex;
    align-items: flex-end;
    /* pin button to the bottom */
    justify-content: center;
    flex-shrink: 0;
    padding-bottom: 4px;
}

.brand-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    border-radius: 999px;
    background: #fff;
    color: #111;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.banner-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.banner-btn:hover i {
    transform: translateX(5px);
}

.brand-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(0, 0, 0, 0.70),
            rgba(0, 0, 0, 0.45));
}

.brand-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* left-align everything */
    gap: 32px;
    width: auto;
    max-width: 480px;
    /* keep cards from stretching too wide */
}

/* ========================================
   CARDS GRID
======================================== */
.section-title-brand-strip {
    text-align: center;
    margin: 60px 20px 30px;
}

.section-title-brand-strip h4 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #222;
    margin: 0;
}

.section-title-brand-strip i {
    color: #ff5f7a;
}

.brand-grid {
    display: flex;
    flex-direction: column;
    /* stacked vertically */
    gap: 20px;
    width: 100%;
}

.brand-card {
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 28px 28px;
    color: #fff;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* left-align card content */
}

.brand-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.25);
}

.brand-card .icon {
    width: 60px;
    height: 60px;
    margin: 0 0 16px 0;
    /* remove auto centering */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.20);
}

.brand-card .icon i {
    font-size: 26px;
    color: #fff;
}

.brand-card h3 {
    font-size: 1rem;
    color: #f5adb8;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.brand-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 991px) {

    .brand-banner {
        min-height: auto;
        padding: 60px 40px;
    }

    .brand-banner-content {
        max-width: 400px;
    }

}

/* ========================================
   MOBILE
======================================== */

@media (max-width: 768px) {

    .brand-banner {
        margin: 0 12px 40px;
        border-radius: 18px;
        padding: 50px 16px;
        justify-content: center;
        /* center on mobile */
    }

    .brand-banner-inner {
        flex-direction: column;
        align-items: center;
    }

    .brand-banner-content {
        align-items: center;
        max-width: 100%;
    }

    .brand-card {
        align-items: center;
        /* center card content on mobile */
        text-align: center;
        padding: 28px 22px;
    }

    .brand-card .icon {
        margin: 0 auto 16px;
        width: 70px;
        height: 70px;
    }

    .brand-card .icon i {
        font-size: 28px;
    }

    .banner-btn {
        width: 100%;
        max-width: 320px;
    }

}

/* ====================================
   FOOTER
==================================== */

.kyra-footer {
    margin-top: 60px;
    padding: 60px 0 25px;
    background: linear-gradient(135deg,
            var(--kyra-pink-primary),
            var(--kyra-text-muted));
    color: #fff;
}

.footer-row {
    row-gap: 20px;
}

/* ====================================
   COLUMNS
==================================== */

.footer-col {
    position: relative;
}

/* Fixed-height divider */
.footer-divider-col::after {
    content: "";
    position: absolute;

    right: 0;
    top: 50%;
    transform: translateY(-50%);

    width: 1px;
    height: 120px;
    /* change this value */

    background: rgba(255, 255, 255, .15);
}

@media (max-width: 991.98px) {
    .footer-divider-col {
        border-right: none;
    }
}

/* ====================================
   HEADINGS
==================================== */

.footer-brand {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.footer-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, .85);
    min-height: 20px;
}

/* ====================================
   TEXT
==================================== */

.footer-tagline {
    color: rgba(255, 255, 255, .85);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ====================================
   LINKS
==================================== */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, .9);
    text-decoration: none;
    transition: .25s;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}

/* ====================================
   SOCIAL
==================================== */

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    text-decoration: none;

    background: rgba(255, 255, 255, .12);
    color: #fff;

    transition: .25s;
}

.social-icon:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, .22);
}

/* ====================================
   SUBSCRIBE
==================================== */

.subscribe-form {
    display: flex;
    width: 100%;
    max-width: 320px;
}

.subscribe-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 14px;
    border-radius: 50px 0 0 50px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.subscribe-input::placeholder {
    color: rgba(255, 255, 255, .65);
}

.subscribe-btn {
    border: none;
    padding: 0 18px;
    border-radius: 0 50px 50px 0;
    background: #fff;
    color: #111;
    font-weight: 600;
    cursor: pointer;
}

.subscribe-btn:hover {
    opacity: .9;
}

/* ====================================
   FOOTER DIVIDER
==================================== */

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, .12);
    margin: 40px 0 20px;
}

/* ====================================
   BOTTOM
==================================== */

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
}

/* IslandWide Section */
.islandwide-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.islandwide-benefits li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;

    color: var(--kyra-text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* custom check icon */
.islandwide-benefits li::before {
    content: "✓";

    position: absolute;
    left: 0;
    top: 0;

    width: 20px;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;
    font-weight: 200;

    color: #fff;
    background: var(--kyra-pink-accent);

    border-radius: 50%;
}

.islandwide-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff 0%, #fff6f8 100%);
    overflow: hidden;
}

.islandwide-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* TEXT */
.islandwide-title {
    font-size: 2.4rem;
    font-weight: 400;
    margin-bottom: 18px;
    color: var(--kyra-text-muted);
}

.islandwide-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 14px;
}

.islandwide-actions {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
    /* default for desktops */
}

/* MAP */
.islandwide-map {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.islandwide-map svg {
    width: 60%;
    max-width: 220px;
    height: auto;
}

.islandwide-map svg path {
    fill: none;
    stroke: var(--kyra-pink-primary);
    stroke-width: 2.5;
}

.map-dot {
    position: absolute;

    width: 10px;
    height: 10px;

    background: var(--kyra-pink-primary);
    border: 2px solid #fff;

    border-radius: 50%;

    box-shadow: 0 0 10px rgba(229, 138, 155, 0.6);

    transform: translate(-50%, -50%);
}

/* positions (adjust based on your map) */
.d1 {
    top: 35%;
    left: 45%;
}

.d2 {
    top: 55%;
    left: 60%;
}

.d3 {
    top: 70%;
    left: 40%;
}

.map-dot {
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    70% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0.3;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}


/* Responsive */
@media (max-width: 992px) {
    .islandwide-content {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .islandwide-title {
        font-size: 2rem;
    }

}

@media (max-width: 767px) {
    .container {
        padding: 0 20px;
    }

    .islandwide-actions {
        justify-content: center;
    }
}

/* End */
/* =========================
   MAIN NAV
========================= */

#mainNav {
    position: sticky;
    top: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background-color: #ffffff !important;
    border-bottom: 1px solid #f1f1f1;
}

/* HAMBURGER — desktop hidden */
.nav-hamburger {
    display: none;
    align-items: center;
}

.hamburger-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 20px;
    color: var(--kyra-pink-accent);
    display: flex;
    align-items: center;
}

/* LOGO — truly centered via absolute */
.nav-left {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    pointer-events: none;
    /* let clicks pass through to links below */
}

.nav-left a {
    pointer-events: all;
    /* re-enable clicks on the anchor itself */
}

.logo img {
    height: 52px;
    width: auto;
    display: block;
}

/* CENTER MENU */
.nav-center {
    display: flex;
    align-items: center;
    gap: 28px;
}

/* RIGHT ICONS */
.nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
}

/* LINKS */
.nav-item,
.nav-link {
    font-size: 16px;
    font-weight: 300;
    color: var(--kyra-pink-accent) !important;
    position: relative;
    transition: color 0.25s ease;
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* ← add this */
    line-height: 1;
    /* ← add this, kills any inherited line-height pushing text down */
}

.nav-item::before,
.nav-link::before {
    content: attr(data-text);
    font-weight: 600;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
    display: block;
    /* ← add this, ensures it collapses properly */
    line-height: 0;
    /* ← add this, fully collapses the pseudo-element */
}

.nav-item:hover,
.nav-link:hover {
    color: var(--kyra-pink-accent) !important;
    font-weight: 600;
}

.nav-item::after,
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: var(--kyra-pink-accent);
    transition: width 0.25s ease;
}

.nav-item:hover::after,
.nav-link:hover::after {
    width: 100%;
}

/* ICONS */
.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--kyra-pink-accent);
    cursor: pointer;
}

/* =========================
   DROPDOWN
========================= */

.nav-dropdown {
    position: relative;
}

.dropdown-menu-custom {
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid #f3f3f3;
    border-radius: 14px;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    display: none;
    z-index: 999;
}

.nav-dropdown:hover .dropdown-menu-custom {
    display: block;
}

.dropdown-menu-custom a {
    display: block;
    padding: 12px 18px;
    color: var(--kyra-black);
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s ease;
}

.dropdown-menu-custom a:hover {
    background: #fff5f7;
    color: var(--kyra-black);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    #mainNav {
        padding: 15px 16px;
        justify-content: space-between;
    }

    /* show hamburger */
    .nav-hamburger {
        display: flex;
        z-index: 1;
        /* sits above absolute logo */
    }

    /* hide desktop menu */
    .nav-center {
        display: none !important;
    }

    /* logo stays absolutely centered */
    .nav-left {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .logo img {
        height: 42px;
    }

    /* right icons */
    .nav-right {
        margin-left: 0;
        gap: 14px;
        z-index: 1;
    }

}