:root{ --alpha-orange: #FF6F00;
        --deep-black: #000000;
        --pure-white: #FFFFFF;
        --ash-gray: #BEBEBE;
        --charcoal: #2F2F2F;
        --max-width: 1200px;
        --container-pad: 20px;
    }
*{box-sizing:border-box;}
html,body{
    height:100%;
    }
body{
    font-family: "Poppins", system-ui, apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color:var(--charcoal);
    margin:0;
    background:var(--pure white);
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    line-height:1.45;
    padding-top: 80px;
    }

.site-header{
    position: sticky;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 1000;
    background: #fff;
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(30px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
}
/* container */
 .container{
        margin:0 auto;
        padding:24px var(--container-pad);
    }
/* header */
 .site header, .site-footer{
        border-bottom:1px solid #eee;
        background:linear-gradient(0deg, rgba(255,255,255,0.96),rgba(255,255,255,0.96));
        background-color: #FF6F00;
        position:sticky;
        top:0;
        z-index:40;
    }
 .header-inner{
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:16px;
    }
.logo{
    display:flex;
    align-items:center;
    text-decoration:none;
    }
.nav{
    display:flex;
    gap:16px;
    align-items:center;
    gap: 20px;
    list-style: none;
    }
.menu-toggle{
    display: none;
    font-size: 28px;
    cursor: pointer;
}
.nav a{
    color:var(--charcoal);
    text-decoration:none;
    padding:8px 10px;
    font-weight:600;
    }
.nav a:hover{
    background-color: var(--alpha-orange);
    border-radius: 9px;
}
.nav .btn-ghost{
    border:1px solid #eee;
    padding:8px 12px;
    border-radius:8px;
    }
/* mobile nav toggle */
.nav-toggle{
    display:none;
    background:none;
    border:0;
    padding:8px;
    cursor:pointer;
    }
.nav-toggle span{
    display:block;
    width:22px;
    height:2px;
    background:var(--charcoal);
    margin:4px 0;
    border-radius:2px;
    }
/* hero */
.hero{
    position:relative;
    overflow:hidden;
    background: #000;
    }
.hero-slideshow{
    height: 80vh;
    min-height: 500px;
    position:relative;
    }
.slide::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}
.slide{
    position:absolute;
    inset:0;
    background-size:contain;
    background-repeat: no-repeat;
    background-position:center;
    display:flex;
    align-items:center;
    transition:opacity .6s ease;
    opacity:0;
    }
.slide[aria-hidden="false"]
    {
    opacity:1;
    }
.hero-content-container{
    background:linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.02));
    padding:48px;
    position: relative;
    z-index: 2;
    border-radius:8px;
    max-width:680px;
    color:var(--pure-white);
    }
.hero-title{
    font-family:Montserrat, sans-serif;
    font-size:clamp(28px,4vw,44px);
    margin:0 0 8px;
    font-weight:800;
    }
.hero-sub{
    margin:0 0 18px;
    color:rgba(255,255,255,0.92);
    font-weight:400;
    }
/* carousel indicators */
.carousel-indicators{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:18px;
    display:flex;
    gap:8px;
    }
.carousel-indicators button{
    width:10px;
    height:10px;
    border-radius:50%;
    border:0;
    background:rgba(255,255,255,0.5);
    cursor:pointer;
    }
.carousel-indicators button.active{
    background:var(--alpha-orange);
    box-shadow:0 0 6px rgba(0,0,0,0.12);
    }
/* mission and featured */
.mission{
    padding:40px 0;
    }
.mission-grid{
    display:grid;
    grid-template-columns:1fr 220px;
    gap:28px;
    align-items:center;
    }
.lead{
    font-size:1.05rem;
    font-weight:500;
    }
.values{
    list-style:none;
    padding:0;
    margin:0;
    display:flex;
    flex-direction:column;
    gap:8px;
    }
.values li{
    background:#f8f8f8;
    padding:10px;
    border-radius:8px;
    font-weight:600;
    text-align:center;
    }
.values li:hover{
    background-color: var(--alpha-orange);
}
/* product grid */
.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(400px,1fr));
    gap:20px;
    margin-top:20px;
    }
.product-card{
    border:1px solid #eee;
    border-radius:10px;
    overflow:hidden;
    background:#fff;
    display:flex;
    flex-direction:column;
    max-width: 320px;
    margin: auto;
    }
.product-card img{
    width:100%;
    height:400px;
    object-fit:cover;
    aspect-ratio: 1/1;
    transition: transform .3s ease;
    }
.product-card:hover{
transform:translateY(-5px);
box-shadow:0 10px 20px rgba(0,0,0,0.15);
}
.product-card:hover img{
    transition: scale(1.05);
}
.product-meta{
    padding:12px;
    display:flex;
    flex-direction:column;
    gap:8px;
    }
.price{
    font-weight:700;
    color:var(--alpha-orange);
    }
.card-actions{
    display:flex;
    gap:8px;
    align-items:center;
    }
.shop-controls{
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
#no-result{
    text-align: center;
    font-size: 18px;
    margin-top: 40px;
    color: #777;
    display: none;
}
/* buttons */
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 14px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
    }
.btn-primary{
    background:var(--alpha-orange);
    color:#fff;
    border:0;
    }
.btn-outline{
    background:transparent;
    background: var(--alpha-orange);
    border:2px solid rgba(255,255,255,0.18);
    color:#fff;
    padding:8px 12px;
    }
.btn-ghost{
    background:transparent;
    border:1px solid #eee;
    padding:8px 12px;
    background-color: #FF6F00;
    }
.btn-sm{
    padding:8px 10px;
    font-size:.9rem;
    }
.large{
    padding:14px 20px;
    }
/* footer */
.site-footer{
    border-top:1px solid #eee;
    padding:30px 0;
    background: #fafafa;
    margin-top:40px;
    }
.footer-inner{
    display:flex;
    justify-content:space-between;
    gap:20px;
    align-items:center;
    }
/* utility */
.muted{
    color:#666;
    font-size:.95rem;
    }
.founder-quote{
    border-left:4px solid var(--alpha-orange);
    padding-left:12px;
    color:#333;
    margin:18px 0;
    font-style:italic;
    }
.socials{
    display: flex;
    gap: 14px;
}
.socials a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f2f2f2;
    color: #333;
    font-size: 18px;
    transition: 0.3s;
    text-decoration: none;
}
.socials a:hover{
    background: var(--alpha-orange);
    color: white;
}
.search-section{
    display: flex;
    justify-content: center;
    margin: 30px 0;
}
.search-bar{
    width: 100%;
    max-width: 500px;
    padding: 12px 16px;
    border-radius: 30px;
    border: 1px solid #ddd;
    font-size: 16px;
    outline: none;
}
.search-bar:focus{
    border-color: var(--alpha-orange);
    box-shadow: 0 0 6px rgba(255,111,0,0.2);
}
/* forms */
input,select,textarea{
    border:1px solid #e6e6e6;
    padding:10px;
    border-radius:8px;
    width:100%;
    font-family:inherit;
    }
label{
    display:block;
    margin:8px 0 6px;
    font-weight:600;
    }
.menu-toggle span{
    height: 3px;
    width: 25px;
    background: #000;
    margin: 4px 0;
    display: block;
}
/* responsiveness */
@media (max-width:900px){
    .mission-grid{grid-template-columns:1fr;gap:18px;}
    .product-grid{grid-template-columns:repeat(2,1fr);}
    .hero-content{padding:28px;}
    .nav{display:none; position: absolute;top: 70px;left: 0;width: 100%;background: white;flex-direction: column;align-items: center;padding: 20px 0;}
    .nav a{margin: 10px 0;}
    .nav.active{display: flex;}
    .nav-toggle{display:block;}
    }
@media (max-width:520px){
    .product-grid{grid-template-columns:1fr;}
    .hero-slideshow{height:56vh;min-height:380px;}
    .hero-content{max-width:95%;}
    .menu-toggle{display: block;}
    .nav{display:none; position: absolute;top: 70px;left: 0;width: 100%;background: white;flex-direction: column;align-items: center;padding: 20px 0;}
    .nav a{margin: 10px 0;}
    .nav.active{display: flex;}
    .nav-toggle{display:block;}
    }