/* ═══════════════════════════════════════════════════
   NATURAL LIVING OUTDOORS — STORE CSS
   The Orchestra | Cameron R. Cross & Cole Ross
   ═══════════════════════════════════════════════════ */

/* ─── CSS VARIABLES ─────────────────────────────── */
:root {
    --teal:      #00ADB5;
    --teal-dark: #007a80;
    --dark:      #393E46;
    --darker:    #222831;
    --gold:      #EBB02D;
    --cream:     #e5dfd5;
    --white:     #ffffff;
    --text:      #333333;
    --light-bg:  #fafafa;
    --shadow:    rgba(0,0,0,0.1);
}

/* ─── RESET & BASE ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Federo', serif;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 115%;
    text-transform: uppercase;
}

a { color: var(--text); text-decoration: none; transition: all 0.3s ease; }
a:hover { color: var(--gold); }

img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ─── BUTTONS ───────────────────────────────────── */
.button {
    display: inline-block;
    background: var(--teal);
    color: var(--white) !important;
    border: 1px solid var(--teal);
    border-radius: 15px;
    padding: 0 20px;
    font-size: 15px;
    font-weight: 500;
    line-height: 45px;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.button:hover {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.styled-button1, .styled-button2 {
    background: var(--teal);
    color: var(--white) !important;
    border: 2px solid var(--white);
    border-radius: 25px;
    padding: 0 25px;
    font-size: 15px;
    font-weight: 600;
    line-height: 50px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: rgba(0,0,0,0.15) 0px 3px 3px;
    display: inline-block;
}

.styled-button1:hover, .styled-button2:hover {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    transform: rotate(-2deg) scale(1.05);
}

/* ─── TOP NAV ───────────────────────────────────── */
#nav-top {
    background: rgba(57, 62, 70, 0.95);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: sticky;
    top: 0;
    z-index: 9000;
    height: 45px;
}

.nav-top-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-social a {
    color: var(--white);
    font-size: 16px;
    margin-right: 12px;
    transition: color 0.3s;
}

.nav-social a:hover { color: var(--gold); }

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}

.nav-links a:hover { color: var(--gold); }

#cart-count {
    background: var(--teal);
    color: white;
    border-radius: 50%;
    padding: 1px 6px;
    font-size: 11px;
    font-weight: 600;
}

/* ─── MAIN NAV ──────────────────────────────────── */
#nav-main {
    background: rgba(229, 223, 213, 0.95);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    height: 80px;
    position: sticky;
    top: 45px;
    z-index: 8000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-main-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo img { height: 65px; width: auto; }

.nav-search {
    display: flex;
    align-items: center;
    flex: 1;
    max-width: 600px;
    margin: 0 40px;
}

.nav-search form {
    display: flex;
    width: 100%;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-search input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    background: white;
}

.nav-search button {
    background: var(--teal);
    color: white;
    border: none;
    padding: 0 20px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
}

.nav-search button:hover { background: var(--teal-dark); }

/* ─── CATEGORY NAV ──────────────────────────────── */
#nav-categories {
    background: var(--cream);
    border-top: 1px solid rgba(255,255,255,0.3);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 125px;
    z-index: 7000;
}

.nav-cats-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    height: 45px;
}

.cat-links {
    display: flex;
    gap: 0;
    overflow-x: auto;
}

.cat-links a {
    color: var(--dark);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0 15px;
    height: 45px;
    line-height: 45px;
    border-left: 1px solid rgba(255,255,255,0.3);
    border-right: 1px solid rgba(0,0,0,0.1);
    white-space: nowrap;
    transition: all 0.3s;
}

.cat-links a:hover {
    background: rgba(0,0,0,0.08);
    color: var(--dark);
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    margin-right: 15px;
    color: var(--dark);
    display: none;
}

/* ─── HERO ──────────────────────────────────────── */
#hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    border-bottom: 1px solid rgba(0,0,0,0.3);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/static/images/hero.png');
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}
}

#hero:hover .hero-bg { transform: scale(1); }

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background: rgba(0,0,0,0.25);
}

.hero-title {
    color: var(--white);
    font-size: clamp(50px, 8vw, 110px);
    line-height: 1;
    letter-spacing: 10px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.6);
    animation: fadeInUp 1s ease forwards;
}

.hero-sub {
    color: var(--white);
    font-size: clamp(14px, 2vw, 21px);
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.6);
    margin: 15px 0 30px;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    animation: fadeInUp 1s ease 0.6s both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ─── TRUST BAR ─────────────────────────────────── */
#trust-bar {
    background: var(--dark);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.trust-item {
    color: #fbf6f2;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 18px 20px;
    border-right: 1px solid rgba(0,0,0,0.3);
    flex: 1;
    text-align: center;
}

.trust-item:last-child { border-right: none; }
.trust-item i { color: var(--gold); margin-right: 8px; }

/* ─── ABOUT INTRO ───────────────────────────────── */
#about-intro {
    padding: 80px 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

#about-intro h1 {
    font-size: clamp(24px, 3vw, 36px);
    margin-bottom: 25px;
    line-height: 1.3;
}

#about-intro p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

/* ─── SECTION HEADERS ───────────────────────────── */
.section-header {
    text-align: left;
    margin-bottom: 40px;
}

.section-header h3 {
    font-size: clamp(28px, 3vw, 40px);
    letter-spacing: 4px;
}

.section-header h5 {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #666;
    text-transform: none;
    margin-top: 8px;
}

/* ─── FEATURED CATEGORIES ───────────────────────── */
#featured-categories {
    padding: 60px 0;
    background: var(--white);
}

#featured-categories .container { max-width: 1400px; margin: 0 auto; padding: 0 20px; }

.quick-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.quick-links.three-col { grid-template-columns: repeat(3, 1fr); }

.quick-link {
    position: relative;
    height: 350px;
    overflow: hidden;
    border-radius: 5px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 70px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.quick-link:hover {
    box-shadow: rgba(0,0,0,0.35) 0px 5px 15px;
    transform: translateY(-3px);
}

.quick-link h3 {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--text);
    font-size: 18px;
    letter-spacing: 2px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(5px);
    padding: 10px;
    width: 60%;
    margin: 0 auto;
    left: 20%;
    border: 1px solid rgba(255,255,255,0.3);
    transition: opacity 0.3s;
}

.quick-link h4 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--text);
    font-size: 15px;
    letter-spacing: 2px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(5px);
    padding: 10px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.quick-link:hover h4 { opacity: 1; }
.quick-link:hover h3 { opacity: 0; }

/* ─── PRODUCTS GRID ─────────────────────────────── */
#featured-products {
    padding: 60px 0;
    background: var(--light-bg);
    border-top: 1px solid rgba(255,255,255,0.4);
    border-bottom: none;
}

#featured-products .container { max-width: 1400px; margin: 0 auto; padding: 0 20px; }

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: rgba(0,0,0,0.05) 0px 6px 24px, rgba(0,0,0,0.08) 0px 0px 0px 1px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: rgba(0,0,0,0.25) 0px 20px 40px;
    transform: translateY(-4px);
}

.product-card a { flex: 1; }

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-no-image {
    width: 100%;
    height: 200px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: var(--teal);
}

.product-info { padding: 15px; }

.product-name {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    text-transform: none;
    letter-spacing: 0;
    height: 44px;
    overflow: hidden;
    line-height: 1.4;
    margin-bottom: 8px;
}

.product-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--teal);
}

.add-to-cart {
    margin: 10px 15px 15px;
    width: calc(100% - 30px);
    border-radius: 10px;
    line-height: 40px;
    font-size: 13px;
    border: none;
}

.empty-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: #999;
}

.empty-products h3 {
    text-transform: none;
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--dark);
}

/* ─── CTA BANNER ────────────────────────────────── */
#cta-banner, #get-in-touch {
    padding: 120px 20px;
    text-align: center;
    background-size: cover !important;
    background-position: center !important;
}

.cta-content h3 {
    color: var(--white);
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    margin-bottom: 15px;
}

.cta-content h4 {
    color: var(--white);
    font-size: clamp(14px, 2vw, 20px);
    font-weight: 400;
    line-height: 1.6;
    text-transform: none;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

/* ─── MORE CATEGORIES ───────────────────────────── */
#more-categories {
    padding: 60px 0;
    background: var(--white);
}

#more-categories .container { max-width: 1400px; margin: 0 auto; padding: 0 20px; }

/* ─── EMAIL SIGNUP ──────────────────────────────── */
#email-signup {
    background: var(--dark);
    padding: 0;
    position: relative;
}

.signup-bg {
    background: linear-gradient(to left, #8f94fb22, #4e54c822);
    padding: 60px 20px;
    text-align: center;
}

#email-signup h1 {
    color: var(--white);
    margin-bottom: 10px;
}

#email-signup h6 {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.signup-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 0;
}

.signup-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.signup-form .button {
    border-radius: 0 5px 5px 0;
    padding: 0 25px;
}

/* ─── SEARCH SECTION ────────────────────────────── */
#search-section {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(rgba(57,62,70,0.9), rgba(57,62,70,0.9)), url('/static/images/hero.png') center/cover;
}

#search-section h3 {
    color: var(--white);
    font-size: clamp(20px, 3vw, 36px);
    letter-spacing: 4px;
    margin-bottom: 30px;
}

.search-big {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.search-big input {
    flex: 1;
    padding: 0 25px;
    height: 60px;
    border: none;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    background: rgba(255,255,255,0.9);
    outline: none;
}

.search-big .button {
    border-radius: 0;
    padding: 0 25px;
    height: 60px;
    line-height: 60px;
    font-size: 20px;
}

/* ─── FOOTER ────────────────────────────────────── */
#footer { background: var(--dark); }

.footer-top {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px 30px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
    color: var(--teal);
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-col a:hover { color: var(--gold); }

.footer-col p { color: rgba(255,255,255,0.6); font-size: 14px; }

.footer-logo-col { text-align: center; }
.footer-logo-col img { max-width: 120px; margin: 0 auto; }

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: var(--darker);
}

.footer-bottom p { color: rgba(255,255,255,0.6); font-size: 13px; letter-spacing: 1px; }
.footer-bottom a { color: var(--teal); }
.footer-bottom a:hover { color: var(--gold); }

/* ─── RESPONSIVE ────────────────────────────────── */
@media (max-width: 1024px) {
    .quick-links { grid-template-columns: repeat(2, 1fr); }
    .footer-top  { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .cat-links { display: none; }
    .cat-links.open { display: flex; flex-direction: column; position: absolute; top: 45px; left: 0; right: 0; background: var(--cream); z-index: 100; }
    .menu-toggle { display: block; }
    .quick-links { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: repeat(2, 1fr); }
    .hero-buttons { flex-direction: column; align-items: center; }
    .trust-item { font-size: 11px; padding: 15px 8px; }
    #nav-categories { position: relative; }
}

@media (max-width: 480px) {
    .quick-links { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .signup-form { flex-direction: column; }
    .signup-form input, .signup-form .button { border-radius: 5px; }
}
