/* =========================================
   ROOT COLORS
========================================= */

:root{
--mba-orange:#f59e0b;
--mba-orange-dark:#d97706;
--mba-dark:#0f172a;
--mba-light:#fff7ed;
}


/* =========================================
   GLOBAL
========================================= */

body{
margin:0;
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

background:
radial-gradient(circle at 20% 20%, #fff3d6 0%, #fdfaf4 40%, #f8fafc 100%);
}

.container{
width:90%;
max-width:1100px;
margin:30px auto;
}

h2{
color:#0f172a;
border-bottom:3px solid #f97316;
padding-bottom:5px;
}


/* =========================================
   PANEL SECTIONS (RESTORED)
========================================= */

.section{

background:white;

margin:40px auto;

border-radius:18px;

max-width:1100px;

padding:50px 40px;

box-shadow:
0 12px 30px rgba(0,0,0,0.08),
0 0 0 3px rgba(245,158,11,0.08);

}


/* =========================================
   NAVBAR
========================================= */

.navbar{
background:#0b1a33;
padding:14px 24px;
position:sticky;
top:0;
z-index:999;
}

.nav-container{
max-width:1100px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
}

.logo{
display:flex;
align-items:center;
gap:10px;
font-weight:700;
color:white;
}

.logo img{
height:36px;
}

.nav-links{
list-style:none;
display:flex;
gap:30px;
}

.nav-links a{
color:white;
text-decoration:none;
font-weight:600;
}

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

.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
color:white;
}


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

@media(max-width:768px){

.menu-toggle{
display:block;
}

.nav-links{
position:absolute;
top:70px;
left:0;
width:100%;
background:#0b1a33;
flex-direction:column;
text-align:center;
max-height:0;
overflow:hidden;
transition:max-height .35s ease;
}

.nav-links.active{
max-height:700px;
}

.nav-links li{
padding:18px 0;
}

}


/* =========================================
   NAV OVERLAY
========================================= */

.nav-overlay{
position:fixed;
inset:0;
background:rgba(0,0,0,.45);
backdrop-filter:blur(3px);
opacity:0;
pointer-events:none;
transition:.3s;
z-index:5;
}

.nav-overlay.active{
opacity:1;
pointer-events:auto;
}


/* =========================================
   HERO SLIDER SECTION
========================================= */

.hero{

position:relative;

width:100%;
height:65vh;

overflow:hidden;

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

text-align:center;
color:white;

margin:0;
padding:40px;

}

/* SLIDES */

.hero-slide{

position:absolute;

top:0;
left:0;

width:100%;
height:100%;

background-size:cover;
background-position:center;

opacity:0;

transition:opacity 1s ease;

}

/* SLIDE IMAGES */

.hero-slide:nth-child(1){

background-image:
linear-gradient(rgba(15,23,42,.75),rgba(15,23,42,.75)),
url("/static/images/hero1.jpg");

}

.hero-slide:nth-child(2){

background-image:
linear-gradient(rgba(15,23,42,.75),rgba(15,23,42,.75)),
url("/static/images/hero2.jpg");

}

.hero-slide:nth-child(3){

background-image:
linear-gradient(rgba(15,23,42,.75),rgba(15,23,42,.75)),
url("/static/images/hero3.jpg");

}

/* ACTIVE SLIDE */

.hero-slide.active{
opacity:1;
}

/* HERO TEXT CONTENT */

.hero-content{

position:relative;
z-index:2;

max-width:800px;

}

/* HERO TEXT */

.hero h1{

font-size:48px;
margin-bottom:20px;

}

.hero p{

max-width:700px;
margin:auto;
margin-bottom:30px;

}

/* HERO BUTTONS */

.hero-buttons{

display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;

}

/* MOBILE */

@media(max-width:768px){

.hero{
height:55vh;
padding:20px;
}

.hero h1{
font-size:30px;
}

.hero p{
font-size:16px;
}

}

/* =========================================
   BUTTON SYSTEM
========================================= */

.btn-primary,
.btn-secondary,
.btn-outline{

display:inline-block;

padding:12px 22px;

font-size:15px;
font-weight:600;

border-radius:8px;
text-decoration:none;

min-width:180px;
text-align:center;

transition:.25s;

}

/* PRIMARY */

.btn-primary{

background:linear-gradient(135deg,#ff8c00,#ff5e00);
color:white;

box-shadow:0 8px 18px rgba(255,120,0,.35);

}

.btn-primary:hover{

transform:translateY(-2px);
box-shadow:0 14px 30px rgba(255,120,0,.55);

}

/* SECONDARY */

.btn-secondary{
background:#1e293b;
color:white;
}

.btn-secondary:hover{
background:#0f172a;
}

/* OUTLINE */

.btn-outline{

border:2px solid #f97316;
color:#f97316;
background:transparent;

}

.btn-outline:hover{

background:#f97316;
color:white;

}


/* =========================================
   ABOUT SECTION
========================================= */

.about-section{
padding:80px 20px;
}

.about-container{
display:flex;
gap:40px;
max-width:1100px;
margin:auto;
align-items:center;
flex-wrap:wrap;
}

.about-image img{
width:100%;
height:350px;
object-fit:cover;
border-radius:10px;
}
.about-container{
display:flex;
align-items:center;
gap:40px;
}

.about-image{
flex:1;
}

.about-text{
flex:1.2;
}

.about-image img{
width:100%;
height:320px;
object-fit:cover;
border-radius:10px;
}

/* mobile layout */
@media(max-width:768px){

.about-container{
flex-direction:column;
}

.about-image img{
height:250px;
}

}

/* =========================================
   MISSION & VISION
========================================= */

.mission-vision{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;

max-width:1000px;
margin:auto;

}

.mv-card{

background:white;
padding:35px;

border-radius:14px;

box-shadow:0 10px 30px rgba(0,0,0,0.08);

text-align:center;

transition:0.3s;

position:relative;

border-top:5px solid #f97316;

}

.mv-card:hover{

transform:translateY(-6px);
box-shadow:0 18px 40px rgba(0,0,0,0.15);

}

.mv-icon{

font-size:40px;
margin-bottom:10px;

}

.mv-card h2{

margin-bottom:10px;
color:#0f172a;

}

.mv-card p{

color:#475569;
line-height:1.6;

}

/* =========================================
   PROGRAMS (FINAL CLEAN VERSION)
========================================= */

.programs{
padding:70px 20px 90px;
background:linear-gradient(180deg, #f8fafc 0%, #fff7ed 100%);
border-radius:28px;
margin:50px auto;
max-width:1200px;
box-shadow:0 12px 35px rgba(15,23,42,.06);
}

/* SECTION HEADER */

.section-intro{
max-width:720px;
margin:0 auto 40px;
text-align:center;
}

.section-kicker{
display:inline-block;
font-size:13px;
font-weight:700;
letter-spacing:.08em;
text-transform:uppercase;
color:#f97316;
background:#ffedd5;
padding:8px 14px;
border-radius:999px;
margin-bottom:14px;
}

.section-intro h2{
font-size:38px;
margin:0 0 10px;
color:#0f172a;
}

.section-intro p{
font-size:16px;
line-height:1.6;
color:#475569;
margin:0;
}

/* GRID */

.program-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:22px;
max-width:1080px;
margin:0 auto;
}

/* CARD */

.program-card{
background:white;
padding:26px 22px;
border-radius:20px;
box-shadow:0 10px 24px rgba(15,23,42,.08);
transition:.3s ease;
text-align:center;
display:flex;
flex-direction:column;
justify-content:space-between;
min-height:300px;
border:1px solid rgba(249,115,22,.08);
}

/* HOVER EFFECT */

.program-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 38px rgba(15,23,42,.12);
border-color:rgba(249,115,22,.25);
}

/* ICON */

.program-icon{
width:60px;
height:60px;
margin:0 auto 16px;
border-radius:16px;
display:flex;
align-items:center;
justify-content:center;
font-size:26px;
background:linear-gradient(135deg,#fff7ed,#ffedd5);
box-shadow:inset 0 0 0 1px rgba(249,115,22,.08);
}

/* TITLE */

.program-card h3{
font-size:24px;
margin:0 0 12px;
color:#0f172a;
line-height:1.25;
}

/* TEXT */

.program-card p{
font-size:15px;
line-height:1.6;
color:#475569;
margin:0 0 18px;
flex-grow:1;
}

/* BUTTON */

.program-card a{
display:inline-block;
width:100%;
margin-top:auto;
}

/* MOBILE */

@media(max-width:768px){

.programs{
padding:50px 16px 70px;
border-radius:20px;
margin:30px auto;
}

.section-intro h2{
font-size:30px;
}

.section-intro p{
font-size:14px;
}

.program-card{
padding:22px 18px;
min-height:auto;
}

.program-card h3{
font-size:22px;
}

.program-icon{
width:52px;
height:52px;
font-size:22px;
}

}

/* =========================================
   SHOP PREVIEW
========================================= */

.shop-preview{
background:linear-gradient(135deg,#0f172a,#1e293b);
color:white;
text-align:center;
padding:80px 20px;
}

.shop-preview h2{
color:white;
font-size:36px;
margin-bottom:10px;
}

.shop-preview p{
color:#e2e8f0;
margin-bottom:25px;
}

.merch-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
max-width:1000px;
margin:40px auto;
}

.merch-card{
background:white;
border-radius:10px;
overflow:hidden;
box-shadow:0 5px 20px rgba(0,0,0,0.15);
text-align:center;
transition:.3s;
}

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

.merch-card h3{
padding:15px;
color:#0f172a;
}

.merch-card:hover{
transform:translateY(-6px);
}

/* =========================================
   SHOP HERO
========================================= */

.shop-hero{

height:45vh;

background:
linear-gradient(rgba(15,23,42,.75),rgba(15,23,42,.75)),
url("/static/images/hero.jpg");

background-size:cover;
background-position:center;

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

text-align:center;
color:white;

}


/* =========================================
   SHOP GRID
========================================= */

.shop-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:25px;

margin-top:30px;

}


/* PRODUCT CARD */

.shop-card{

background:white;

padding:25px;

border-radius:12px;

box-shadow:0 6px 18px rgba(0,0,0,.08);

text-align:center;

transition:.25s;

}

.shop-card:hover{

transform:translateY(-6px);

}

.shop-card h3{

margin-bottom:5px;

}

.variant{

color:#64748b;

font-size:14px;

}

.price{

font-weight:700;

margin:10px 0;

color:#f97316;

}

.shop-card input{

width:80px;

text-align:center;

margin-top:10px;

}


/* CHECKOUT */

.checkout{

margin-top:40px;

text-align:center;

}

.checkout select{

padding:10px;

border-radius:8px;

margin-right:10px;

}

/* =========================================
   SHOP HERO
========================================= */

.shop-hero{

height:45vh;

background:
linear-gradient(rgba(15,23,42,.75),rgba(15,23,42,.75)),
url("/static/images/hero2.jpg");

background-size:cover;
background-position:center;

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

text-align:center;
color:white;

}


/* =========================================
   SHOP TABLE
========================================= */

.shop-table{

width:100%;

border-collapse:collapse;

margin-top:30px;

background:white;

border-radius:10px;

overflow:hidden;

box-shadow:0 6px 18px rgba(0,0,0,0.08);

}

.shop-table th{

background:#0f172a;

color:white;

padding:14px;

text-align:left;

}

.shop-table td{

padding:12px;

border-bottom:1px solid #e2e8f0;

}

.shop-table input{

width:70px;

padding:6px;

text-align:center;

border-radius:6px;

border:1px solid #cbd5e1;

}


/* SHOP SUMMARY */

.shop-summary{

margin-top:30px;

text-align:center;

}

.shop-summary select{

padding:10px;

border-radius:8px;

margin-top:10px;

}

/* =========================================
   CTA SECTION
========================================= */

.cta{
padding:80px 20px;
text-align:center;
background:#f97316;
color:white;
}

.cta a{
background:white;
color:#f97316;
padding:12px 25px;
border-radius:6px;
text-decoration:none;
}


/* =========================================
   ADMIN DASHBOARD
========================================= */

.stats-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:15px;
margin-bottom:20px;
}

.stat{
padding:18px;
border-radius:14px;
background:#111827;
color:white;
text-align:center;
}

.stat p{
font-size:28px;
font-weight:bold;
margin-top:8px;
}

.green{background:#065f46;}
.red{background:#7f1d1d;}
.blue{background:#1e3a8a;}
.purple{background:#4c1d95;}


/* =========================================
   PAYMENT BUTTONS
========================================= */

.pay-btn{
background:#f59e0b;
color:white;
padding:6px 10px;
border-radius:6px;
text-decoration:none;
font-weight:600;
}

.pay-btn:hover{
background:#d97706;
}

.paid-badge{
background:#16a34a;
color:white;
padding:5px 10px;
border-radius:20px;
font-weight:600;
}

.receipt-btn{
background:#2563eb;
color:white;
padding:5px 10px;
border-radius:6px;
text-decoration:none;
font-weight:600;
}

.receipt-btn:hover{
background:#1d4ed8;
}

.paid-area{
display:flex;
align-items:center;
gap:6px;
}


/* =========================================
   FORMS
========================================= */

.form-grid{
display:grid;
grid-template-columns:repeat(2,minmax(0,1fr));
gap:22px;
}

@media(max-width:768px){
.form-grid{
grid-template-columns:1fr;
}
}

input,select,textarea{
width:100%;
box-sizing:border-box;
padding:12px 14px;
border-radius:10px;
border:1px solid #d1d5db;
background:#fff;
font-size:15px;
}

label{
font-weight:600;
display:block;
margin-bottom:6px;
}

button{
margin-top:25px;
padding:14px;
background:#f97316;
border:none;
color:white;
font-weight:700;
border-radius:8px;
cursor:pointer;
}

button:hover{
background:#ea580c;
}

.program-icon{

font-size:38px;
margin-bottom:10px;

}

.program-card h2{

margin-bottom:10px;
color:#0f172a;

}

.program-card p{

margin-bottom:10px;

}

.program-card ul{

text-align:left;
margin-left:20px;

}

/* =========================================
   TEAMS PAGE
========================================= */

.team-container{
display:flex;
align-items:center;
gap:40px;
}

.team-image{
flex:1;
}

.team-text{
flex:1.2;
}

.team-image img{
width:100%;
height:320px;
object-fit:cover;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.team-block{
margin-bottom:40px;
}

/* mobile layout */

@media(max-width:768px){

.team-container{
flex-direction:column;
}

.team-image img{
height:240px;
}

}

/* TEAM LAYOUT */

.team-layout{

display:grid;

grid-template-columns:1fr 1fr;

gap:40px;

align-items:center;

}

.team-layout.reverse .team-image{
order:2;
}

.team-layout.reverse .team-text{
order:1;
}

.team-image img{

width:100%;

border-radius:10px;

}

.team-text h2{
margin-bottom:15px;
}

@media(max-width:768px){

.team-layout{
grid-template-columns:1fr;
}

.team-layout.reverse .team-image{
order:1;
}

}

/* =========================================
   IMPACT PAGE
========================================= */

.impact-container{
display:flex;
align-items:center;
gap:40px;
}

.impact-container.reverse{
flex-direction:row-reverse;
}

.impact-image{
flex:1;
}

.impact-text{
flex:1.2;
}

.impact-image img{
width:100%;
height:320px;
object-fit:cover;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.impact-stats{
text-align:center;
}

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

.leader-card{
background:#f1f5f9;
padding:25px;
border-radius:10px;
text-align:center;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

/* mobile */

@media(max-width:768px){

.impact-container{
flex-direction:column;
}

.impact-container.reverse{
flex-direction:column;
}

}

/* =========================================
   IMPACT HERO
========================================= */

.impact-hero{

height:45vh;

background:
linear-gradient(rgba(15,23,42,.75),rgba(15,23,42,.75)),
url("/static/images/hero3.jpg");

background-size:cover;
background-position:center;

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

text-align:center;
color:white;

}

/* =========================================
   GALLERY
========================================= */

.gallery-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:18px;

margin-top:20px;

}

.gallery-grid img{

width:100%;
height:220px;

object-fit:cover;

border-radius:10px;

cursor:pointer;

transition:0.3s;

box-shadow:0 5px 18px rgba(0,0,0,0.15);

}

.gallery-grid img:hover{

transform:scale(1.05);

box-shadow:0 12px 30px rgba(0,0,0,0.25);

}


/* LIGHTBOX */

#lightbox{

display:none;

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,0.9);

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

z-index:1000;

}

#lightbox img{

max-width:90%;
max-height:85%;

border-radius:10px;

box-shadow:0 20px 60px rgba(0,0,0,0.5);

}

/* =========================================
   GALLERY FILTER BUTTONS
========================================= */

.gallery-filters{
text-align:center;
margin-bottom:30px;
}

.gallery-filters button{

background:#e2e8f0;
color:#0f172a;

border:none;

padding:10px 20px;

margin:5px;

border-radius:8px;

font-weight:600;

cursor:pointer;

transition:0.25s;

}

/* hover */

.gallery-filters button:hover{

background:#f97316;
color:white;

}

/* active */

.gallery-filters button.active{

background:#f97316;
color:white;

box-shadow:0 6px 14px rgba(249,115,22,0.4);

}


/* =========================================
   GALLERY GRID
========================================= */

.gallery-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:18px;

}

.gallery-grid img{

width:100%;
height:220px;

object-fit:cover;

border-radius:10px;

cursor:pointer;

transition:0.3s;

box-shadow:0 5px 18px rgba(0,0,0,0.15);

}

.gallery-grid img:hover{

transform:scale(1.05);

box-shadow:0 12px 30px rgba(0,0,0,0.25);

}


/* =========================================
   LIGHTBOX
========================================= */

#lightbox{

display:none;

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,0.9);

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

z-index:1000;

}

#lightbox img{

max-width:90%;
max-height:85%;

border-radius:10px;

}

.gallery-item{

animation:fadeIn .4s ease;

}

@keyframes fadeIn{

from{
opacity:0;
transform:scale(.95);
}

to{
opacity:1;
transform:scale(1);
}

}

/* =========================================
   GALLERY HERO
========================================= */

.gallery-hero{

height:45vh;

background:
linear-gradient(rgba(15,23,42,.75),rgba(15,23,42,.75)),
url("/static/images/hero1.jpg");

background-size:cover;
background-position:center;

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

text-align:center;
color:white;

}

/* =========================================
   JOIN PAGE
========================================= */

.join-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

gap:25px;

margin-top:30px;

}

.join-card{

background:#f1f5f9;

padding:30px;

border-radius:12px;

text-align:center;

box-shadow:0 5px 18px rgba(0,0,0,0.08);

transition:0.3s;

}

.join-card:hover{

transform:translateY(-6px);

box-shadow:0 12px 30px rgba(0,0,0,0.15);

}

.join-icon{

font-size:36px;

margin-bottom:10px;

}

.join-card.highlight{

border-top:5px solid #f97316;

background:white;

}

.join-card h3{

margin-bottom:10px;

}

.join-card p{

margin-bottom:15px;

}

/* =========================================
   JOIN HERO
========================================= */

.join-hero{

height:45vh;

background:
linear-gradient(rgba(15,23,42,.75),rgba(15,23,42,.75)),
url("/static/images/hero1.jpg");

background-size:cover;
background-position:center;

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

text-align:center;
color:white;

}

/* =========================================
   GENERIC SECTIONS
========================================= */

.section{
padding:80px 20px;
}

.section.light{
background:#f1f5f9;
}

.section h2{
text-align:center;
margin-bottom:40px;
}


/* ABOUT LAYOUT */

.about-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.about-image img{
width:100%;
border-radius:10px;
}

@media(max-width:768px){

.about-container{
grid-template-columns:1fr;
}

}

.section{
padding:80px 20px;
}

.section.light{
background:#f1f5f9;
}

.about-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.about-image img{
width:100%;
border-radius:10px;
}

@media(max-width:768px){

.about-container{
grid-template-columns:1fr;
}

}

/* =========================================
   ABOUT PAGE HERO
========================================= */

.about-hero{

height:45vh;

background:
linear-gradient(rgba(15,23,42,.75),rgba(15,23,42,.75)),
url("/static/images/hero2.jpg");

background-size:cover;
background-position:center;

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

text-align:center;
color:white;

}

.about-hero h1{
font-size:42px;
margin-bottom:10px;
}

.about-hero p{
max-width:600px;
margin:auto;
opacity:.9;
}

/* =========================================
   PROGRAMS HERO
========================================= */

.programs-hero{

height:45vh;

background:
linear-gradient(rgba(15,23,42,.75),rgba(15,23,42,.75)),
url("/static/images/hero.jpg");

background-size:cover;
background-position:center;

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

text-align:center;
color:white;

}

/* =========================================
   TEAMS HERO
========================================= */

.teams-hero{

height:45vh;

background:
linear-gradient(rgba(15,23,42,.75),rgba(15,23,42,.75)),
url("/static/images/hero3.jpg");

background-size:cover;
background-position:center;

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

text-align:center;
color:white;

}

/* =========================================
   REGISTER HERO
========================================= */

.register-hero{

height:45vh;

background:
linear-gradient(rgba(15,23,42,.75),rgba(15,23,42,.75)),
url("/static/images/hero.jpg");

background-size:cover;
background-position:center;

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

text-align:center;
color:white;

}


/* REGISTER PAGE */

.register-container{

max-width:900px;

}


/* FORM SECTIONS */

.form-section{

background:white;

padding:30px;

margin-bottom:30px;

border-radius:12px;

box-shadow:0 6px 18px rgba(0,0,0,0.08);

}


/* SECTION HEADINGS */

.form-section h2{

margin-bottom:20px;

border-bottom:2px solid #f97316;

padding-bottom:6px;

}


/* FORM GRID */

.form-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:20px;

}


/* FORM INPUTS */

.form-group input,
.form-group select,
.form-group textarea{

width:100%;

padding:12px;

border-radius:8px;

border:1px solid #d1d5db;

}
.form-section{

background:white;

padding:30px;

margin-bottom:30px;

border-radius:12px;

box-shadow:0 6px 18px rgba(0,0,0,0.08);

}

/* MULTI STEP FORM */

.form-step{

display:none;

background:white;

padding:30px;

border-radius:12px;

box-shadow:0 6px 18px rgba(0,0,0,0.08);

margin-bottom:30px;

}

.form-step.active{

display:block;

}

/* =========================================
   ADMIN LOGIN HERO
========================================= */

.admin-hero{

min-height:80vh;

display:flex;

align-items:center;

justify-content:center;

background:
linear-gradient(rgba(15,23,42,.85),rgba(15,23,42,.85)),
url("/static/images/hero.jpg");

background-size:cover;

background-position:center;

}


/* LOGIN WRAPPER */

.admin-login-wrapper{

width:100%;

display:flex;

justify-content:center;

padding:40px 20px;

}


/* LOGIN CARD */

.admin-login-card{

width:100%;

max-width:420px;

padding:40px;

border-radius:14px;

background:rgba(255,255,255,0.08);

backdrop-filter:blur(10px);

border:1px solid rgba(255,255,255,0.15);

box-shadow:0 10px 35px rgba(0,0,0,0.4);

color:white;

text-align:center;

}


/* TITLE */

.admin-login-card h2{

margin-bottom:5px;

font-size:28px;

}

.admin-subtitle{

font-size:14px;

margin-bottom:25px;

opacity:0.85;

}


/* INPUT GROUP */

.admin-login-card .form-group{

text-align:left;

margin-bottom:18px;

}

.admin-login-card label{

font-size:14px;

margin-bottom:5px;

display:block;

}


/* INPUT */

.admin-login-card input{

width:100%;

padding:12px;

border-radius:8px;

border:none;

background:rgba(255,255,255,0.9);

font-size:15px;

transition:.2s;

}

.admin-login-card input:focus{

outline:none;

box-shadow:0 0 0 2px #f97316;

}


/* BUTTON */

.admin-login-btn{

width:100%;

margin-top:10px;

padding:12px;

font-weight:600;

}
/* =========================================
   ADMIN DASHBOARD
========================================= */

.admin-dashboard{

display:flex;

min-height:80vh;

}


/* SIDEBAR */

.admin-sidebar{

width:240px;

background:#0f172a;

color:white;

padding:30px 20px;

}

.admin-sidebar h2{

margin-bottom:30px;

}

.admin-sidebar ul{

list-style:none;

padding:0;

}

.admin-sidebar li{

margin-bottom:15px;

}

.admin-sidebar a{

color:white;

text-decoration:none;

font-weight:500;

}

.admin-sidebar a:hover{

color:#f97316;

}


/* CONTENT */

.admin-content{

flex:1;

padding:30px;

}


/* TABLE CARD */

.table-card{

background:white;

padding:20px;

border-radius:12px;

box-shadow:0 6px 18px rgba(0,0,0,0.08);

overflow-x:auto;

}


/* TABLE */

.admin-table{

width:100%;

border-collapse:collapse;

}

.admin-table th{

background:#0f172a;

color:white;

padding:10px;

}

.admin-table td{

padding:10px;

border-bottom:1px solid #e2e8f0;

}

.admin-table{
width:100%;
border-collapse:collapse;
background:white;
border-radius:12px;
overflow:hidden;
box-shadow:0 4px 20px rgba(0,0,0,0.06);
}

.admin-table th,
.admin-table td{
padding:14px;
border-bottom:1px solid #e5e7eb;
text-align:left;
}

.admin-table th{
background:#0f172a;
color:white;
}

.admin-table input[type="number"]{
max-width:80px;
}

/* =========================================
   CART + CHECKOUT PREMIUM UI
========================================= */

.cart-hero,
.checkout-hero{
position:relative;
min-height:340px;
display:flex;
align-items:center;
justify-content:center;
padding:80px 20px 70px;
overflow:hidden;
margin:0 0 30px 0;
border-radius:0;
max-width:none;
width:100%;
}

.cart-hero{
background:
linear-gradient(rgba(15,23,42,.72), rgba(15,23,42,.72)),
url("/static/images/cart-hero.jpg");
background-size:cover;
background-position:center;
}

.checkout-hero{
background:
linear-gradient(rgba(15,23,42,.72), rgba(15,23,42,.72)),
url("/static/images/checkout-hero.jpg");
background-size:cover;
background-position:center;
}

.inner-hero-overlay{
position:absolute;
inset:0;
background:linear-gradient(to right, rgba(15,23,42,.28), rgba(15,23,42,.18));
z-index:1;
}

.inner-hero-content{
position:relative;
z-index:2;
width:100%;
max-width:900px;
margin:0 auto;
text-align:center;
color:white;
}

.container-narrow{
max-width:900px;
margin:0 auto;
}

.hero-kicker{
display:inline-block;
font-size:14px;
font-weight:700;
letter-spacing:.08em;
text-transform:uppercase;
color:#fdba74;
margin-bottom:14px;
}

.cart-hero h1,
.checkout-hero h1{
margin:0 0 14px;
font-size:48px;
color:white;
}

.cart-hero p,
.checkout-hero p{
max-width:700px;
margin:0 auto 28px;
font-size:18px;
color:#e2e8f0;
line-height:1.7;
}

.hero-buttons{
display:flex;
gap:14px;
flex-wrap:wrap;
align-items:center;
}

.hero-buttons-center{
justify-content:center;
}

.light-outline{
border:2px solid rgba(255,255,255,.85);
color:white;
background:transparent;
}

.light-outline:hover{
background:white;
color:#0f172a;
}

.checkout-shell{
width:90%;
max-width:1180px;
margin:0 auto 40px;
}

.section-shell{
width:90%;
max-width:1180px;
margin:0 auto 50px;
}

.section-card{
background:#ffffff;
border-radius:24px;
padding:34px;
box-shadow:0 12px 40px rgba(15,23,42,.08);
border:1px solid #f1e4c7;
}

.cart-header-row{
display:flex;
align-items:center;
justify-content:space-between;
gap:16px;
margin-bottom:24px;
flex-wrap:wrap;
}

.cart-total-pill{
padding:12px 18px;
border-radius:999px;
background:#f97316;
color:white;
font-weight:800;
box-shadow:0 10px 24px rgba(249,115,22,.22);
}

.cart-list-premium{
display:flex;
flex-direction:column;
gap:18px;
}

.cart-item-premium{
display:grid;
grid-template-columns:120px 1.6fr 140px 160px 120px;
gap:18px;
align-items:center;
padding:18px;
border:1px solid #e2e8f0;
border-radius:18px;
background:#fff;
}

.cart-item-image{
width:120px;
height:120px;
border-radius:16px;
overflow:hidden;
background:#e2e8f0;
}

.cart-item-image img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

.cart-item-details h3{
margin:0 0 8px;
font-size:21px;
color:#0f172a;
}

.cart-item-details p{
margin:6px 0;
color:#475569;
}

.cart-item-actions{
display:flex;
flex-direction:column;
gap:8px;
}

.cart-item-actions label{
font-weight:700;
color:#0f172a;
}

.cart-item-actions input{
width:100%;
box-sizing:border-box;
padding:12px 14px;
border:1px solid #cbd5e1;
border-radius:12px;
font-size:15px;
}

.cart-item-subtotal{
display:flex;
flex-direction:column;
gap:6px;
color:#64748b;
}

.cart-item-subtotal strong{
font-size:18px;
color:#0f172a;
}

.cart-item-remove{
display:flex;
justify-content:flex-end;
}

.cart-footer-actions{
display:flex;
justify-content:flex-end;
gap:14px;
flex-wrap:wrap;
margin-top:26px;
}

.danger-outline{
border:2px solid #dc2626;
color:#dc2626;
background:transparent;
}

.danger-outline:hover{
background:#dc2626;
color:white;
}

.empty-shop-state{
text-align:center;
padding:70px 30px;
}

.empty-shop-state h3{
font-size:32px;
margin-bottom:14px;
color:#0f172a;
}

.empty-shop-state p{
font-size:17px;
color:#64748b;
margin-bottom:28px;
}

.checkout-grid{
display:grid;
grid-template-columns:1.2fr .9fr;
gap:24px;
}

.checkout-summary-list{
display:flex;
flex-direction:column;
gap:14px;
margin-top:18px;
}

.checkout-summary-item{
display:flex;
justify-content:space-between;
align-items:center;
gap:14px;
padding:16px 0;
border-bottom:1px solid #e2e8f0;
}

.checkout-summary-item h4{
margin:0 0 4px;
font-size:18px;
color:#0f172a;
}

.checkout-summary-item p{
margin:0;
color:#64748b;
}

.checkout-total-box{
margin-top:22px;
padding:18px 20px;
border-radius:18px;
background:linear-gradient(135deg, #fff7ed, #ffedd5);
display:flex;
justify-content:space-between;
align-items:center;
font-size:18px;
font-weight:700;
color:#9a3412;
}

.checkout-form{
display:flex;
flex-direction:column;
gap:18px;
margin-top:18px;
}

.checkout-form select{
width:100%;
box-sizing:border-box;
padding:12px 14px;
border:1px solid #cbd5e1;
border-radius:12px;
font-size:15px;
background:white;
}

@media (max-width: 980px){
.checkout-grid{
grid-template-columns:1fr;
}

.cart-item-premium{
grid-template-columns:1fr;
}

.cart-item-image{
width:100%;
height:220px;
}

.cart-item-remove{
justify-content:flex-start;
}
}

@media (max-width: 768px){
.cart-hero,
.checkout-hero{
min-height:280px;
padding:70px 20px 55px;
}

.cart-hero h1,
.checkout-hero h1{
font-size:34px;
}

.cart-hero p,
.checkout-hero p{
font-size:16px;
}

.section-card{
padding:24px;
}

.empty-shop-state{
padding:50px 20px;
}

.empty-shop-state h3{
font-size:26px;
}
}

/* =========================================
   PREMIUM SHOP
========================================= */

.shop-hero{
background:
linear-gradient(rgba(15,23,42,.70), rgba(15,23,42,.70)),
url("/static/images/shop-hero.jpg");
background-size:cover;
background-position:center;
}

.section-shell{
width:min(1200px, 92%);
margin:28px auto;
}

.section-card{
background:white;
border-radius:22px;
padding:26px;
box-shadow:0 12px 34px rgba(15,23,42,0.08);
border:1px solid rgba(148,163,184,0.14);
}

.section-title{
margin:0 0 6px;
font-size:30px;
color:#0f172a;
}

.section-subtitle{
margin:0;
color:#64748b;
font-size:15px;
line-height:1.6;
}

.shop-toolbar{
display:flex;
align-items:center;
justify-content:space-between;
gap:16px;
}

.shop-toolbar-right{
display:flex;
align-items:center;
gap:12px;
}

.shop-cart-link{
display:inline-flex;
align-items:center;
justify-content:center;
padding:12px 18px;
border-radius:999px;
background:#0f172a;
color:white;
text-decoration:none;
font-weight:700;
box-shadow:0 8px 18px rgba(15,23,42,.18);
}

.shop-cart-link:hover{
background:#1e293b;
}

.shop-grid-premium{
width:min(1200px, 92%);
margin:0 auto 40px;
display:grid;
grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
gap:26px;
}

.shop-card-premium{
background:white;
border-radius:22px;
overflow:hidden;
box-shadow:0 14px 34px rgba(15,23,42,0.10);
border:1px solid rgba(148,163,184,0.14);
transition:transform .25s ease, box-shadow .25s ease;
}

.shop-card-premium:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(15,23,42,0.14);
}

.shop-image-wrap{
position:relative;
height:260px;
overflow:hidden;
background:#e2e8f0;
}

.shop-image-wrap img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

.shop-badge{
position:absolute;
top:14px;
left:14px;
display:inline-block;
padding:8px 12px;
border-radius:999px;
background:rgba(15,23,42,.88);
color:white;
font-size:12px;
font-weight:700;
letter-spacing:.02em;
}

.shop-card-body{
padding:22px;
}

.shop-card-body h3{
margin:0 0 14px;
font-size:22px;
color:#0f172a;
}

.shop-meta{
display:flex;
flex-direction:column;
gap:8px;
margin-bottom:16px;
color:#475569;
font-size:15px;
}

.shop-price{
font-size:26px;
font-weight:800;
color:#f97316;
margin-bottom:18px;
}

.shop-form{
display:flex;
flex-direction:column;
gap:14px;
}

.shop-form-row{
display:flex;
flex-direction:column;
gap:8px;
}

.shop-form-row label{
font-weight:700;
color:#0f172a;
}

.shop-form-row input{
width:100%;
box-sizing:border-box;
padding:12px 14px;
border:1px solid #cbd5e1;
border-radius:12px;
font-size:15px;
}

.shop-btn-full{
width:100%;
text-align:center;
margin-top:0;
}

.empty-shop-state{
text-align:center;
padding:40px 24px;
}

.light-outline{
border-color:white;
color:white;
}

.light-outline:hover{
background:white;
color:#0f172a;
}

@media (max-width: 768px){
.shop-toolbar{
flex-direction:column;
align-items:flex-start;
}

.shop-grid-premium{
grid-template-columns:1fr;
}

.shop-image-wrap{
height:220px;
}

.section-title{
font-size:24px;
}
}

/* FORM PAGE LAYOUT */

.form-page-section{
padding:60px 20px;
}

.form-shell{
max-width:1000px;
margin:auto;
background:white;
padding:40px;
border-radius:14px;
box-shadow:0 8px 30px rgba(0,0,0,0.08);
}

.section-intro{
text-align:center;
margin-bottom:30px;
}

.section-kicker{
background:#fff7ed;
color:#f97316;
padding:6px 14px;
border-radius:20px;
font-weight:600;
font-size:13px;
}

.modern-form .form-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.form-group{
display:flex;
flex-direction:column;
}

.form-group label{
font-weight:600;
margin-bottom:6px;
}

.form-submit-btn{
margin-top:20px;
width:100%;
}

@media(max-width:768px){
.modern-form .form-grid{
grid-template-columns:1fr;
}
}

/* HERO FOR INNER PAGES */

.page-hero{
height:40vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.page-hero-content{
max-width:800px;
padding:20px;
}

.hero-kicker{
background:#f97316;
color:white;
padding:6px 14px;
border-radius:20px;
font-size:13px;
font-weight:600;
display:inline-block;
margin-bottom:10px;
}

.page-hero h1{
font-size:42px;
margin-bottom:10px;
}

.page-hero p{
color:#e2e8f0;
}

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

.footer{
text-align:center;
padding:20px;
background:#0f172a;
color:white;
margin-top:40px;
}
.page-section{

background:white;

margin:40px auto;

border-radius:18px;

max-width:1100px;

padding:40px 35px;

box-shadow:
0 10px 30px rgba(0,0,0,0.08),
0 0 0 3px rgba(245,158,11,0.08);

}


