/* ================================
   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: fixed;
    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-strip {
    background: linear-gradient(135deg, #1a1a1a, #111);
    /* soft gradient instead of solid black */
    color: #fff;
    padding: 60px 0;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

.brand-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 30px 20px;
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: default;
}

.brand-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.1);
}

.brand-card .icon {
    font-size: 2.5rem;
    color: var(--kyra-gold-accent);
    margin-bottom: 15px;
}

.brand-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--kyra-gold-accent);
}

.brand-card p {
    font-size: 0.95rem;
    color: white;
    opacity: 0.85;
    line-height: 1.4;
}

/* Responsive tweak */
@media (max-width: 768px) {
    .brand-strip {
        padding: 40px 0;
    }

    .brand-card {
        padding: 25px 15px;
    }
}

.kyra-footer {
    background: #111;
    color: #eee;
}

.footer-brand {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: .5px;
    color: var(--kyra-pink-primary);
}

.footer-tagline {
    color: #bbb;
    max-width: 320px;
    margin-inline: auto;
}

@media (min-width: 992px) {
    .footer-tagline {
        margin-inline: 0;
    }
}

.footer-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #aaa;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: 0.25s;
}

.footer-links a:hover {
    color: var(--kyra-pink);
}

.footer-social .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eee;
    transition: 0.25s;
}

.footer-social .social-icon:hover {
    background: var(--kyra-pink);
    color: #fff;
    transform: translateY(-2px);
}

.footer-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #eee;
    text-decoration: none;
    font-size: 14px;
    transition: 0.25s;
}

.footer-chip:hover {
    background: var(--kyra-pink);
    color: #fff;
}

.footer-chip.wa i {
    color: #25D366;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
    color: #888;
}

/* IslandWide Section */
.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: 600;
    margin-bottom: 18px;
    color: var(--kyra-black);
}

.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;
}

.islandwide-map svg {
    width: 60%;
    max-width: 220px;
    height: auto;
}

.islandwide-map svg path {
    fill: var(--kyra-pink-primary);
    /* your Kyra pink */
}

.islandwide-map svg * {
    fill: var(--kyra-pink-primary);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: .9;
    }

    50% {
        transform: scale(1.4);
        opacity: .5;
    }

    100% {
        transform: scale(1);
        opacity: .9;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .islandwide-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .islandwide-title {
        font-size: 2rem;
    }

}

@media (max-width: 767px) {
    .islandwide-actions {
        justify-content: center;
    }
}

/* End */
/* NAV BASE */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    z-index: 1000;
    background-color: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

nav.scrolled {
    background-color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 0.7rem 2rem;
}

.logo-scrolled {
    display: none !important;
}

/* 2. Show the default logo only when NOT scrolled */
nav:not(.scrolled) .logo-default {
    display: block !important;
}

/* 3. Swap when scrolled */
nav.scrolled .logo-default {
    display: none !important;
}

nav.scrolled .logo-scrolled {
    display: block !important;
}

/* Left links */
.nav-left {
    display: flex;
    gap: 2rem;
    flex: 1;
    /* Add this */
}

/* Default (Transparent Nav) */
.nav-left a,
.nav-icon {
    color: #ffffff;
}

/* Scrolled (White Nav) */
nav.scrolled .nav-left a,
nav.scrolled .nav-icon {
    color: #333333;
}


.nav-left a {
    text-decoration: none;
}

.nav-left a:hover {
    color: #ff4d9b;
}

/* Center logo */
.nav-center {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
}

.logo img {
    max-height: 50px;
    display: block;
}

/* Right icons */
.nav-right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex: 1;
    /* Add this */
    justify-content: flex-end;
    /* Push icons to the far right */
}

.nav-icon {
    font-size: 1.25rem;
    color: #333;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

.nav-icon:hover {
    color: #ff4d9b;
}

.nav-right a,
.nav-icon {
    color: #ffffff;
}

/* Scrolled (White Nav) */
nav.scrolled .nav-right a,
nav.scrolled .nav-icon {
    color: #333333;
}

.icon-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4444;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.75rem;
}

/* Mobile */
.nav-left-mobile {
    display: none;
}

@media (max-width: 768px) {

    .nav-left,
    .nav-right {
        flex: none;
        /* Reset the flex growth on mobile */
    }

    .nav-left {
        display: none;
    }

    .nav-left-mobile {
        display: flex;
        order: 1;
    }

    .nav-center {
        order: 2;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-right {
        order: 3;
        gap: 1rem;
    }

    .logo img {
        width: 90px;
        height: auto;
    }
}

/* END */

.mini-cart {
    width: 360px;
    padding: 16px;
    background: #fff;
}

.cart-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.cart-item img {
    width: 72px;
    height: 96px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-info h4 {
    font-size: 14px;
    margin: 0 0 6px;
}

.cart-options select {
    margin-bottom: 6px;
}

.color-row {
    display: flex;
    gap: 6px;
}

.color-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
}

.color-dot.active {
    border-color: #000;
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
}

.qty-control input {
    width: 44px;
    text-align: center;
}

.remove {
    background: none;
    color: #999;
    font-size: 12px;
    cursor: pointer;
}

.cart-footer {
    border-top: 1px solid #eee;
    padding-top: 12px;
}

.checkout-btn {
    display: block;
    margin-top: 10px;
    padding: 10px;
    background: #000;
    color: #fff;
    text-align: center;
    border-radius: 8px;
}