@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* =========================================
   ROOT VARIABLES
========================================= */
:root {
    --teal:       #1a9e96;
    --teal-dark:  #14827b;
    --teal-light: #e6f9f8;
    --navy:       #0d1b2a;
    --white:      #ffffff;
    --off-white:  #f7f9fc;
    --text:       #1e293b;
    --muted:      #64748b;
    --border:     #e2e8f0;
    --gold:       #f59e0b;
    --red:        #ef4444;

    --font: 'Poppins', sans-serif;
    --ease: all 0.28s ease;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
}

/* =========================================
   RESET & BASE
========================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--text);
    background: #f8f9fa;
    overflow-x: hidden;
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: var(--ease); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

.section-pad { padding: 90px 0; }
.teal { color: var(--teal); }

/* =========================================
   PAGE CARD — raised card wrapping navbar + hero
========================================= */
.page-card {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: 2vh 2vw;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/* =========================================
   BUTTONS
========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 6px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--ease);
    white-space: nowrap;
}

.btn-primary {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
}
.btn-primary:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26,158,150,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--teal);
    border-color: var(--teal);
}
.btn-outline:hover {
    background: var(--teal);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn-dark:hover {
    background: #192540;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13,27,42,0.25);
}

.btn-hero {
    padding: 14px 30px;
    font-size: 1rem;
    border-radius: 8px;
}

/* Section Titles */
.sec-title {
    text-align: center;
    margin-bottom: 52px;
}
.sec-sub {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--teal);
    text-transform: uppercase;
    margin-bottom: 12px;
}
.sec-sub::before, .sec-sub::after {
    content: '';
    width: 36px;
    height: 1.5px;
    background: var(--teal);
    flex-shrink: 0;
}
.sec-title h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
}
.left-sub { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; color: var(--teal); text-transform: uppercase; }
.center-sub { display: flex; align-items: center; gap: 12px; font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; color: var(--teal); text-transform: uppercase; }

/* =========================================
   NAVBAR
========================================= */
.navbar {
    position: relative;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    height: auto;
}

.brand-logo {
    height: 54px;
    width: auto;
    object-fit: contain;
    display: block;
    /* White bg from logo blends out */
    mix-blend-mode: multiply;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-links a {
    font-weight: 600;
    font-size: 0.97rem;
    color: var(--text);
    padding-bottom: 4px;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2.5px;
    background: var(--teal);
    border-radius: 2px;
    transition: var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover,
.nav-links a.active { color: var(--teal); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-actions .btn { padding: 9px 18px; font-size: 0.88rem; }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.7rem;
    color: var(--navy);
    cursor: pointer;
}

/* =========================================
   HERO  — fits viewport below navbar
========================================= */
.hero {
    background: linear-gradient(135deg, #e6fffc 0%, #b3fcf5 100%);
    /* Viewport height minus navbar (~90px) and card margins (~4vh) */
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    width: 100%;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Left column — text */
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 560px;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--teal);
    text-transform: uppercase;
    margin-bottom: 20px;
    white-space: nowrap;
}
.label-line {
    width: 32px;
    height: 2px;
    background: var(--teal);
    flex-shrink: 0;
    display: inline-block;
}

.hero-title {
    font-size: clamp(2.8rem, 4.5vw, 4.8rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 22px;
    letter-spacing: -1px;
}

.hero-text {
    font-size: 1rem;
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 36px;
    line-height: 1.75;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

/* Right column — image */
.hero-img-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 400px;
}

.hero-blob {
    position: absolute;
    width: 88%;
    height: 88%;
    top: 50%;
    left: 50%;
    transform: translate(-48%, -50%);
    background: linear-gradient(135deg, #ffffff 0%, #e6fffc 100%);
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
    z-index: 0;
    animation: blobMorph 8s ease-in-out infinite;
}

@keyframes blobMorph {
    0%, 100% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; }
    33%       { border-radius: 40% 60% 30% 70% / 60% 40% 70% 30%; }
    66%       { border-radius: 70% 30% 50% 50% / 30% 70% 50% 50%; }
}

.hero-shoe {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.25));
    animation: spinInwards 8s linear infinite;
}

@keyframes spinInwards {
    0%   { transform: rotateY(0deg) translateY(0px); }
    50%  { transform: rotateY(180deg) translateY(-20px); }
    100% { transform: rotateY(360deg) translateY(0px); }
}

/* =========================================
   FEATURES BAR (overlaps bottom of hero)
========================================= */
.features-bar {
    position: relative;
    z-index: 10;
    margin-top: -2px;
    background: var(--white);
    padding: 0 0 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    box-shadow: 0 8px 40px rgba(0,0,0,0.09);
    border-radius: var(--radius);
    overflow: hidden;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 28px 24px;
    border-right: 1px solid var(--border);
    transition: var(--ease);
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: var(--teal-light); }

.feat-icon {
    width: 52px;
    height: 52px;
    background: var(--teal-light);
    color: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: var(--ease);
}
.feature-item:hover .feat-icon {
    background: var(--teal);
    color: var(--white);
}
.feat-text h3 { font-size: 0.97rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.feat-text p  { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

/* =========================================
   PRODUCTS
========================================= */
.products { background: var(--off-white); }

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 22px;
    position: relative;
    border: 1px solid transparent;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: var(--ease);
    cursor: pointer;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal);
}

.badge {
    position: absolute;
    top: 18px; left: 18px;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--white);
    z-index: 2;
}
.badge-new  { background: var(--teal); }
.badge-best { background: var(--gold); }

.prod-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
    background: #f8f8f8;
}
.prod-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.product-card:hover .prod-img img { transform: scale(1.07); }

.prod-info h3    { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.prod-cat        { font-size: 0.82rem; color: var(--muted); margin-bottom: 10px; }
.prod-sizes      { font-size: 0.84rem; font-weight: 500; color: var(--text); margin-bottom: 14px; }

.prod-colors { display: flex; gap: 8px; margin-bottom: 18px; }
.dot {
    width: 16px; height: 16px;
    border-radius: 50%;
    border: 1.5px solid #ddd;
    cursor: pointer;
    transition: var(--ease);
}
.dot:hover { transform: scale(1.2); }
.dot-black { background: #1e293b; }
.dot-teal  { background: var(--teal); }
.dot-grey  { background: #94a3b8; }
.dot-white { background: #fff; }
.dot-red   { background: var(--red); }

.prod-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}
.prod-price { font-weight: 800; font-size: 1.15rem; color: var(--navy); }
.view-btn {
    background: var(--teal-light);
    color: var(--teal);
    padding: 7px 16px;
    border-radius: 6px;
    font-size: 0.84rem;
    font-weight: 600;
    transition: var(--ease);
}
.view-btn:hover { background: var(--teal); color: var(--white); }

.view-all-wrap {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
.view-all-wrap .btn { min-width: 220px; justify-content: center; gap: 10px; }

/* =========================================
   WHY CHOOSE US
========================================= */
.why { background: var(--white); }

.why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    background: var(--teal-light);
    border-radius: 24px;
    padding: 60px;
}

.why-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.why-img img { width: 100%; height: 420px; object-fit: cover; }

.why-content h2 { font-size: 2.5rem; font-weight: 800; color: var(--navy); margin-bottom: 18px; line-height: 1.2; }
.why-desc { font-size: 1.05rem; color: var(--muted); margin-bottom: 36px; }

.why-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 20px;
}
.why-list li i { color: var(--teal); font-size: 1.3rem; flex-shrink: 0; }

/* =========================================
   TESTIMONIALS
========================================= */
.testimonials { background: var(--off-white); }

.testi-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.slider-controls { display: flex; gap: 12px; }
.slider-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--navy);
    font-size: 1rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--ease);
}
.slider-btn:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testi-card {
    background: var(--white);
    padding: 38px;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid var(--border);
    transition: var(--ease);
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--teal); }

.testi-quote { font-size: 2.5rem; color: var(--teal); opacity: 0.25; margin-bottom: 20px; }
.testi-text { font-size: 1rem; color: var(--text); margin-bottom: 28px; min-height: 78px; line-height: 1.75; font-weight: 500; }
.testi-foot { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; border-top: 1px solid var(--border); }
.stars { color: var(--gold); font-size: 0.95rem; }
.testi-author { font-weight: 700; font-size: 0.9rem; color: var(--navy); }

/* =========================================
   FOOTER
========================================= */
.footer {
    background: #0d1b2a;
    color: #e2e8f0;
    padding-top: 88px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.4fr 1.5fr;
    gap: 48px;
    padding-bottom: 64px;
    border-bottom: 1px solid #1e3a5f;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 22px;
    /* Invert to white on dark background */
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.93rem;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 28px;
}

.social-row { display: flex; gap: 14px; }
.social-link {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1.5px solid #2a4d6e;
    display: flex; align-items: center; justify-content: center;
    color: #94a3b8;
    font-size: 1.05rem;
    transition: var(--ease);
}
.social-link:hover { background: var(--teal); border-color: var(--teal); color: var(--white); transform: translateY(-3px); }

.footer-col h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 28px; letter-spacing: 0.5px; }

.footer-col ul li { margin-bottom: 14px; }
.footer-col ul li a { color: #94a3b8; font-size: 0.93rem; }
.footer-col ul li a:hover { color: var(--teal); padding-left: 6px; }

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: #94a3b8;
    font-size: 0.92rem;
    line-height: 1.6;
}
.contact-list li i { color: var(--teal); font-size: 1.05rem; margin-top: 2px; flex-shrink: 0; }

.newsletter-desc { font-size: 0.92rem; color: #94a3b8; line-height: 1.7; margin-bottom: 22px; }

.newsletter-form { display: flex; flex-direction: column; gap: 14px; }
.email-input-wrap { position: relative; }
.email-input-wrap i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: #64748b; font-size: 1rem; }
.email-input-wrap input {
    width: 100%;
    padding: 13px 14px 13px 42px;
    border-radius: 7px;
    border: 1.5px solid #2a4d6e;
    background: rgba(255,255,255,0.04);
    color: var(--white);
    font-family: var(--font);
    font-size: 0.93rem;
    outline: none;
    transition: var(--ease);
}
.email-input-wrap input:focus { border-color: var(--teal); }
.newsletter-form .btn { width: 100%; justify-content: center; padding: 13px; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 0;
    font-size: 0.88rem;
    color: #64748b;
}
.teal-heart { color: var(--teal); margin-left: 4px; }

/* =========================================
   PRODUCTS VIEW (SPA)
========================================= */

/* Products Hero Banner */
.products-hero {
    background: linear-gradient(135deg, #e0fcfb 0%, #a8ece8 100%);
    padding: 3rem 0;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border);
}
.prod-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.prod-hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
    letter-spacing: -1px;
}
.prod-hero-line {
    width: 60px;
    height: 4px;
    background: var(--teal);
    margin-bottom: 20px;
}
.prod-hero-text p {
    color: var(--navy);
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.85;
}
.prod-hero-image {
    max-width: 500px;
    flex-shrink: 0;
}
.prod-hero-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
    transform: translateY(-10px);
}

/* Products Main Layout */
.products-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 3rem;
    align-items: start;
}

/* Sidebar */
.products-sidebar {
    background: #fdfdfd;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
}
.filter-group {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}
.filter-group:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.filter-group h3 {
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.filter-group h3 i { color: var(--teal); }

.filter-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: var(--muted);
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--ease);
}
.filter-list li:hover, .filter-list li.active { color: var(--teal); font-weight: 600; }
.filter-list .count { font-size: 0.8rem; background: #f0fdfb; color: var(--teal); padding: 2px 8px; border-radius: 10px; }

/* Custom Checkboxes */
.checkbox-group label {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--muted);
    position: relative;
    padding-left: 28px;
}
.checkbox-group input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; }
.checkmark { position: absolute; top: 0; left: 0; height: 18px; width: 18px; background-color: var(--white); border: 2px solid var(--border); border-radius: 4px; transition: var(--ease); }
.checkbox-group label:hover input ~ .checkmark { border-color: var(--teal); }
.checkbox-group input:checked ~ .checkmark { background-color: var(--teal); border-color: var(--teal); }
.checkmark:after { content: ""; position: absolute; display: none; left: 5px; top: 2px; width: 4px; height: 8px; border: solid white; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.checkbox-group input:checked ~ .checkmark:after { display: block; }
.checkbox-group .cb-label { flex-grow: 1; }
.checkbox-group .count { font-size: 0.8rem; color: #94a3b8; }

/* Range Slider */
.range-slider { position: relative; width: 100%; height: 6px; background: var(--border); border-radius: 3px; margin: 20px 0 15px; }
.slider-track { position: absolute; height: 100%; background: var(--teal); border-radius: 3px; left: 15%; right: 0%; }
.range-slider input[type=range] { position: absolute; width: 100%; height: 6px; background: none; pointer-events: none; -webkit-appearance: none; appearance: none; outline: none; }
.range-slider input[type=range]::-webkit-slider-thumb { height: 16px; width: 16px; border-radius: 50%; background: var(--teal); border: 2px solid var(--white); box-shadow: 0 2px 5px rgba(0,0,0,0.2); pointer-events: auto; -webkit-appearance: none; appearance: none; cursor: pointer; }
.range-values { display: flex; justify-content: space-between; font-size: 0.85rem; font-weight: 600; color: var(--navy); }

/* Products Topbar */
.products-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 2rem;
}
.results-count { font-size: 0.95rem; color: var(--muted); font-weight: 500; }
.results-count .icon { color: var(--teal); margin-right: 6px; }
.topbar-actions { display: flex; align-items: center; gap: 20px; }
.sort-by label { font-size: 0.9rem; color: var(--muted); margin-right: 8px; }
.sort-by select { padding: 6px 12px; border: 1px solid var(--border); border-radius: 6px; outline: none; color: var(--navy); font-size: 0.9rem; cursor: pointer; }
.view-toggles { display: flex; gap: 8px; }
.view-btn-toggle { background: var(--white); border: 1px solid var(--border); border-radius: 6px; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--muted); transition: var(--ease); }
.view-btn-toggle.active, .view-btn-toggle:hover { background: #f0fdfb; color: var(--teal); border-color: var(--teal); }

/* Grid adjustments for products page */
.products-page-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* In Stock Status */
.stock-status { font-size: 0.85rem; color: #10b981; font-weight: 600; }

/* =========================================
   CONTACT VIEW
========================================= */
.contact-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 80px;
    position: relative;
    background: var(--white);
}
.hero-text {
    max-width: 500px;
    z-index: 2;
}
.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
}
.hero-divider {
    width: 50px;
    height: 4px;
    background: #fbbf24;
    margin-bottom: 25px;
    border-radius: 2px;
}
.hero-text p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

.hero-visual {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    background: var(--teal-light);
    border-bottom-left-radius: 50% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.hero-visual .hero-shoe {
    max-width: 500px;
    width: 90%;
    transform: rotate(-10deg);
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.3));
    margin-right: 50px;
}

.contact-main-container {
    padding: 0 80px 80px;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
    margin-top: -20px;
    position: relative;
    z-index: 10;
}

.info-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}
.info-card .card-title, .form-card .card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 30px;
}
.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.info-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 25px;
}
.info-list li:last-child { border-bottom: none; padding-bottom: 0; }

.info-list .icon-box {
    width: 45px;
    height: 45px;
    background: var(--teal-light);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.info-list .info-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.4;
}

.form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    display: flex;
    gap: 40px;
    position: relative;
    overflow: hidden;
}
.form-content { flex: 1; }

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-input-group { position: relative; }
.contact-input-group i {
    position: absolute;
    left: 15px;
    top: 15px;
    color: var(--muted);
}
.contact-input-group input, .contact-input-group textarea {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font);
    font-size: 0.9rem;
    outline: none;
    transition: var(--ease);
}
.contact-input-group textarea { resize: vertical; min-height: 120px; }
.contact-input-group input:focus, .contact-input-group textarea:focus { border-color: var(--teal); }

.contact-send-btn {
    background: var(--teal);
    color: var(--white);
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--ease);
}
.contact-send-btn:hover { background: #359f8c; transform: translateY(-2px); }

/* Envelope Illustration */
.illustration-area {
    width: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.illustration-bg {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--teal-light);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    opacity: 0.4;
    z-index: 0;
    right: -50px;
    bottom: -50px;
}
.envelope-container {
    width: 220px;
    height: 160px;
    background: var(--teal);
    position: relative;
    border-radius: 10px;
    z-index: 1;
    margin-top: 80px;
}
.envelope-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-left: 110px solid transparent;
    border-right: 110px solid transparent;
    border-top: 80px solid #57c7b6;
    transform-origin: top;
    transform: rotateX(180deg);
    z-index: 1;
}
.envelope-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    border-left: 110px solid #57c7b6;
    border-right: 110px solid #57c7b6;
    border-bottom: 80px solid #6ed1c3;
    border-top: 80px solid transparent;
    border-radius: 0 0 10px 10px;
    z-index: 3;
}
.letter-card {
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 180px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 2;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.letter-card p {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.4;
    margin-bottom: 15px;
}
.letter-card i {
    font-size: 1.8rem;
    color: var(--teal);
}

/* Contact Mini Footer (Specific to Contact View) */
.contact-mini-footer {
    background: var(--navy);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    margin: 0;
}
.contact-mini-footer .footer-logo-mini img { height: 35px; filter: brightness(0) invert(1); }
.contact-mini-footer .footer-copy { font-size: 0.85rem; color: #cbd5e1; }
.contact-mini-footer .footer-slogan { font-size: 0.85rem; font-weight: 500; }
.contact-mini-footer .footer-slogan i { color: #fbbf24; margin-left: 5px; }

@media(max-width: 1100px) {
    .contact-hero { padding: 40px; }
    .contact-main-container { padding: 0 40px 60px; grid-template-columns: 1fr; }
    .illustration-area { display: none; }
}
@media(max-width: 768px) {
    .contact-form-grid { grid-template-columns: 1fr; }
    .hero-visual { width: 100%; border-radius: 0 0 50% 50%; top: -50px; }
    .hero-text { margin-top: 250px; text-align: center; margin-inline: auto; }
    .hero-divider { margin-inline: auto; }
    .contact-hero { flex-direction: column; }
    .contact-mini-footer { flex-direction: column; gap: 10px; text-align: center; padding: 20px; }
}
/* =========================================
   RESPONSIVE
========================================= */

/* 992px — stack hero, keep card wrapper */
@media (max-width: 992px) {
    .page-card { margin: 1.5vh 1.5vw; border-radius: 16px; }
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 2rem; padding: 2.5rem 0; }
    .hero-content { max-width: 100%; align-items: center; }
    .hero-label, .hero-btns { justify-content: center; }
    .hero-img-wrap { min-height: 320px; order: -1; }
    .hero-shoe { max-width: 480px; }
    .hero { min-height: auto; padding: 2rem 0 3rem; }
    
    /* Products view 992px adjustments */
    .products-layout { grid-template-columns: 1fr; gap: 2rem; }
    .products-sidebar { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; }
    .filter-group { margin: 0; padding: 0; border: none; flex: 1; min-width: 200px; }
    .prod-hero-inner { flex-direction: column; text-align: center; }
    .prod-hero-line { margin: 0 auto 20px; }
}

@media (max-width: 1100px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .products-page-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid   { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .why-inner     { gap: 50px; padding: 48px; }
    .why-inner     { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
    .nav-links, .nav-actions { display: none; }
    .mobile-menu-btn { display: block; }
    .nav-container { padding: 1rem 1.5rem; }

    .page-card { margin: 1vh 1vw; border-radius: 12px; }
    .hero { min-height: auto; padding: 30px 0 50px; }
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-content { align-items: center; }
    .hero-label, .hero-btns { justify-content: center; }
    .hero-img-wrap { min-height: 280px; }
    .hero-shoe { max-width: 380px; }

    .testi-grid  { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .why-inner { padding: 32px; }
    .sec-title h2 { font-size: 2rem; }
    
    /* Products view 780px */
    .products-page-grid { grid-template-columns: repeat(2, 1fr); }
    .products-sidebar { flex-direction: column; }
    .products-topbar { flex-direction: column; gap: 15px; align-items: flex-start; }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.5rem; }
    .hero-btns .btn { width: 100%; justify-content: center; }
    .why-img img { height: 260px; }
    .page-card { margin: 0; border-radius: 0; }
}

/* =========================================
   PUBLIC CART STYLES
========================================= */
.floating-cart-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--teal);
    color: white;
    border-radius: 50%;
    border: none;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0,210,211,0.4);
    cursor: pointer;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}
.floating-cart-btn:hover {
    transform: scale(1.1);
}
.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--red);
    color: white;
    font-size: 12px;
    font-weight: bold;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid white;
}
.cart-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.cart-panel {
    position: fixed;
    top: 0; right: -400px;
    width: 400px; max-width: 100%;
    height: 100%;
    background: white;
    z-index: 1001;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
}
.cart-panel.open {
    right: 0;
}
.cart-overlay.open {
    display: block;
    opacity: 1;
}
.cart-header {
    padding: 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-close-btn {
    background: none; border: none; font-size: 20px; cursor: pointer; color: var(--navy);
}
.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}
.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--bg);
    padding-bottom: 15px;
}
.cart-item img {
    width: 80px; height: 80px; object-fit: cover; border-radius: 8px; background: var(--bg);
}
.cart-item-info h4 { margin: 0 0 5px 0; font-size: 14px; }
.cart-item-info p { margin: 0; color: var(--text-light); font-size: 13px; }
.cart-item-price { font-weight: bold; color: var(--teal); margin-top: 5px; }
.cart-item-actions {
    display: flex; align-items: center; gap: 10px; margin-top: 10px;
}
.cart-qty-btn {
    background: var(--bg); border: none; width: 25px; height: 25px; border-radius: 4px; cursor: pointer;
}
.cart-remove-btn {
    color: var(--red); background: none; border: none; cursor: pointer; font-size: 13px; margin-left: auto;
}
.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--border);
    background: var(--bg);
}
.cart-total-row {
    display: flex; justify-content: space-between; font-size: 18px; font-weight: bold; margin-bottom: 15px;
}
.cart-checkout-btn {
    width: 100%; padding: 15px; background: #25D366; color: white; border: none; border-radius: 8px;
    font-size: 16px; font-weight: bold; cursor: pointer; display: flex; justify-content: center; align-items: center; gap: 10px;
}
.cart-checkout-btn:hover { background: #128C7E; }

/* Product Card Action Buttons */
.prod-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}
.btn-add-cart, .btn-order-whatsapp {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s;
}
.btn-add-cart {
    background: var(--teal);
    color: white;
}
.btn-add-cart:hover {
    background: var(--navy);
}
.btn-order-whatsapp {
    background: #25D366;
    color: white;
    display: flex; justify-content: center; align-items: center; gap: 5px;
}
.btn-order-whatsapp:hover {
    background: #128C7E;
}

/* Button Interaction Effects */
button:active, .btn:active, .btn-action:active, .btn-primary:active, .btn-secondary:active, .btn-small:active, .slider-btn:active, .btn-add-cart:active, .btn-order-whatsapp:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

