/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --saffron: #FF9933;
  --saffron-dark: #e07700;
  --white: #ffffff;
  --green: #138808;
  --green-light: #1ab80a;
  --navy: #000080;
  --bg: #0d0d0f;
  --bg2: #141418;
  --bg3: #1a1a22;
  --bg4: #202030;
  --border: #2a2a40;
  --text: #e0e0e0;
  --text-muted: #888;
  --gold: #FFD700;
  --purple: #7c3aed;
  --red: #e53e3e;
  --discord: #5865F2;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
}
html { scroll-behavior: smooth; }
body { font-family: 'Exo 2', sans-serif; background: var(--bg); color: var(--text); min-height: 100vh; }

/* ===================== TIRANGA BAR ===================== */
.tiranga-bar { display: flex; height: 6px; width: 100%; position: sticky; top: 0; z-index: 1000; }
.tiranga-saffron { flex: 1; background: var(--saffron); }
.tiranga-white { flex: 1; background: var(--white); display: flex; align-items: center; justify-content: center; }
.tiranga-green { flex: 1; background: var(--green); }
.ashoka-chakra { color: var(--navy); font-size: 8px; line-height: 1; }

/* ===================== HEADER ===================== */
.site-header { background: linear-gradient(135deg, #0d0d14 0%, #12121e 50%, #0d0d14 100%); border-bottom: 2px solid var(--border); position: sticky; top: 6px; z-index: 999; box-shadow: 0 2px 20px rgba(0,0,0,0.6); }
.header-inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 10px 20px; gap: 16px; }
.header-left, .header-right { display: flex; align-items: center; gap: 12px; flex: 1; }
.header-right { justify-content: flex-end; }
.header-center { flex: 0 0 auto; text-align: center; }

/* Logo */
.logo-placeholder { cursor: pointer; }
.logo-text { display: flex; align-items: baseline; gap: 4px; }
.logo-nation { font-family: 'Orbitron', sans-serif; font-size: 26px; font-weight: 900; color: var(--saffron); text-shadow: 0 0 20px rgba(255,153,51,0.5); letter-spacing: 2px; }
.logo-mc { font-family: 'Orbitron', sans-serif; font-size: 26px; font-weight: 900; background: linear-gradient(135deg, var(--green), #1db80a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.logo-tagline { font-size: 9px; color: var(--text-muted); letter-spacing: 3px; text-transform: uppercase; margin-top: 2px; }

/* Widgets */
.server-widget, .discord-widget, .cart-info { display: flex; align-items: center; gap: 8px; background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 8px 12px; cursor: pointer; transition: all .25s; }
.server-widget:hover, .discord-widget:hover, .cart-info:hover { border-color: var(--saffron); background: var(--bg4); transform: translateY(-1px); }
.server-widget-icon { font-size: 20px; }
.discord-icon { color: var(--discord); }
.server-widget-text { display: flex; flex-direction: column; }
.server-widget-label { font-size: 9px; color: var(--text-muted); letter-spacing: 1.5px; text-transform: uppercase; }
.server-widget-ip { font-family: 'Orbitron', sans-serif; font-size: 12px; font-weight: 700; color: var(--saffron); }
.widget-badge { font-size: 10px; font-weight: 700; border-radius: 20px; padding: 2px 8px; }
.online-badge { background: rgba(19,136,8,0.2); color: var(--green-light); border: 1px solid var(--green); }
.discord-badge { background: rgba(88,101,242,0.2); color: var(--discord); border: 1px solid var(--discord); }
.cart-icon { font-size: 20px; }
.cart-text { display: flex; flex-direction: column; }
.cart-name { font-size: 10px; color: var(--text-muted); }
.cart-status { font-size: 11px; font-weight: 700; color: var(--gold); }

/* ===================== NAV ===================== */
.main-nav { background: var(--bg2); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1400px; margin: 0 auto; display: flex; gap: 4px; padding: 0 20px; overflow-x: auto; }
.nav-link { color: var(--text-muted); text-decoration: none; font-size: 13px; font-weight: 600; padding: 12px 16px; border-bottom: 3px solid transparent; transition: all .2s; white-space: nowrap; text-transform: uppercase; letter-spacing: .5px; }
.nav-link:hover, .nav-link.active { color: var(--saffron); border-bottom-color: var(--saffron); background: rgba(255,153,51,0.05); }

/* ===================== LAYOUT ===================== */
.main-container { max-width: 1400px; margin: 0 auto; display: flex; gap: 0; min-height: calc(100vh - 200px); }

/* ===================== SIDEBAR ===================== */
.sidebar { width: 260px; min-width: 240px; background: var(--bg2); border-right: 1px solid var(--border); padding: 0 0 20px 0; }
.sidebar-header { font-family: 'Rajdhani', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 2px; color: var(--saffron); padding: 18px 20px 10px; border-bottom: 1px solid var(--border); }
.category-list { list-style: none; }
.category-item { display: flex; align-items: center; gap: 10px; padding: 14px 20px; cursor: pointer; border-left: 3px solid transparent; transition: all .2s; border-bottom: 1px solid rgba(255,255,255,0.03); }
.category-item:hover { background: rgba(255,153,51,0.08); border-left-color: var(--saffron); }
.category-item.active { background: rgba(255,153,51,0.12); border-left-color: var(--saffron); }
.cat-icon { width: 36px; height: 36px; object-fit: contain; border-radius: 6px; }
.cat-icon-emoji { font-size: 28px; width: 36px; text-align: center; }
.cat-name { flex: 1; font-size: 14px; font-weight: 600; color: var(--text); }
.category-item.active .cat-name { color: var(--saffron); }
.cat-arrow { color: var(--text-muted); font-size: 18px; font-weight: 300; }
.sidebar-deco { text-align: center; padding: 24px 20px 0; color: var(--text-muted); font-size: 12px; }
.deco-chakra { font-size: 40px; color: var(--navy); filter: drop-shadow(0 0 8px rgba(0,0,128,0.5)); margin-bottom: 6px; color: #3b5bdb; }
.deco-sub { font-size: 10px; margin-top: 2px; }

/* ===================== CONTENT ===================== */
.content-area { flex: 1; padding: 24px; overflow: hidden; }
.content-view { display: none; }
.content-view.active { display: block; animation: fadeIn .3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.section-title { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.section-title h2 { font-family: 'Rajdhani', sans-serif; font-size: 20px; font-weight: 700; color: var(--saffron); white-space: nowrap; letter-spacing: 1px; }
.section-title-line { flex: 1; height: 1px; background: linear-gradient(90deg, var(--saffron), transparent); }
.section-title-line:last-child { background: linear-gradient(270deg, var(--saffron), transparent); }

/* ===================== FEATURED GRID ===================== */
.featured-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px; margin-bottom: 28px; }
.featured-card { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); display: flex; align-items: center; gap: 12px; padding: 14px; cursor: pointer; transition: all .25s; position: relative; overflow: hidden; }
.featured-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 60%, rgba(255,153,51,0.06)); pointer-events: none; }
.featured-card:hover { border-color: var(--saffron); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(255,153,51,0.15); }
.featured-card.green-accent:hover { border-color: var(--green); box-shadow: 0 8px 30px rgba(19,136,8,0.2); }
.feat-img { width: 64px; height: 64px; border-radius: 8px; object-fit: cover; flex-shrink: 0; background: var(--bg4); display: flex; align-items: center; justify-content: center; font-size: 32px; }
.feat-info { flex: 1; }
.feat-name { font-weight: 700; font-size: 14px; color: var(--saffron); margin-bottom: 4px; line-height: 1.3; }
.featured-card.green-accent .feat-name { color: var(--green-light); }
.feat-price { font-family: 'Orbitron', sans-serif; font-size: 13px; font-weight: 700; color: var(--white); }
.feat-badge { position: absolute; top: 8px; right: 8px; background: var(--saffron); color: #000; font-size: 9px; font-weight: 800; padding: 2px 6px; border-radius: 4px; letter-spacing: 1px; }

/* ===================== PRODUCTS GRID ===================== */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
.product-card { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: all .25s; position: relative; }
.product-card:hover { border-color: var(--saffron); transform: translateY(-4px); box-shadow: 0 10px 40px rgba(255,153,51,0.15); }
.product-card-img { width: 100%; height: 140px; background: var(--bg4); display: flex; align-items: center; justify-content: center; font-size: 60px; position: relative; overflow: hidden; }
.product-card-img::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40px; background: linear-gradient(transparent, var(--bg3)); }
.product-card-body { padding: 14px; }
.product-card-name { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.product-card-desc { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; line-height: 1.5; }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: 'Orbitron', sans-serif; font-size: 14px; font-weight: 700; color: var(--saffron); }
.product-btn { font-size: 11px; font-weight: 700; background: var(--saffron); color: #000; border: none; border-radius: 6px; padding: 6px 12px; cursor: pointer; transition: .2s; text-transform: uppercase; letter-spacing: .5px; }
.product-btn:hover { background: var(--saffron-dark); }
.product-ribbon { position: absolute; top: 12px; right: -8px; background: linear-gradient(135deg, var(--green), #0f6600); color: #fff; font-size: 10px; font-weight: 800; padding: 3px 14px; letter-spacing: 1px; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
.product-ribbon.saffron { background: linear-gradient(135deg, var(--saffron), #cc7700); color: #000; }
.placeholder-card { border: 2px dashed var(--border); background: transparent; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 200px; color: var(--text-muted); gap: 8px; border-radius: var(--radius); }
.placeholder-card .placeholder-icon { font-size: 40px; opacity: 0.4; }
.placeholder-card .placeholder-text { font-size: 13px; font-style: italic; opacity: 0.5; }
.category-desc { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; line-height: 1.6; }

/* ===================== WELCOME BLOCK ===================== */
.welcome-block { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; margin-bottom: 18px; }
.welcome-sub { font-size: 11px; letter-spacing: 3px; color: var(--text-muted); text-transform: uppercase; margin-bottom: 6px; }
.welcome-title { font-family: 'Orbitron', sans-serif; font-size: 28px; font-weight: 900; background: linear-gradient(135deg, var(--saffron), var(--gold), var(--green)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 16px; }
.tiranga-divider { display: flex; align-items: center; gap: 12px; margin: 14px 0; }
.td-saffron, .td-green { flex: 1; height: 3px; border-radius: 2px; }
.td-saffron { background: var(--saffron); }
.td-green { background: var(--green); }
.td-white { color: var(--navy); font-size: 18px; color: #3b5bdb; }
.welcome-desc { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin-bottom: 10px; }
.info-cards-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 20px; }
.info-card { background: var(--bg4); border: 1px solid var(--border); border-radius: 8px; padding: 16px; text-align: center; }
.info-card-icon { font-size: 28px; margin-bottom: 8px; }
.info-card-title { font-size: 13px; font-weight: 700; color: var(--saffron); margin-bottom: 4px; }
.info-card-desc { font-size: 11px; color: var(--text-muted); line-height: 1.5; }

/* ===================== INFO BLOCKS ===================== */
.support-block, .refund-block, .giftcard-block { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 16px; }
.block-heading { font-family: 'Rajdhani', sans-serif; font-size: 18px; font-weight: 700; letter-spacing: 1.5px; margin-bottom: 12px; }
.block-heading.orange { color: var(--saffron); }
.block-heading.red { color: var(--red); }
.block-heading.green { color: var(--green-light); }
.support-block p, .refund-block p, .giftcard-block p { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin-bottom: 10px; }
.policy-links { display: flex; gap: 10px; margin-top: 14px; }

/* ===================== GIFT CARD ===================== */
.giftcard-form { display: flex; gap: 10px; margin-top: 12px; }
.gift-input { flex: 1; background: var(--bg4); border: 1px solid var(--border); border-radius: 8px; color: var(--text); padding: 10px 14px; font-size: 14px; font-family: 'Exo 2', sans-serif; outline: none; transition: .2s; }
.gift-input:focus { border-color: var(--green); }

/* ===================== BUTTONS ===================== */
.btn { display: inline-flex; align-items: center; justify-content: center; border: none; border-radius: 8px; font-size: 13px; font-weight: 700; cursor: pointer; padding: 10px 20px; text-decoration: none; transition: all .2s; letter-spacing: .5px; font-family: 'Exo 2', sans-serif; }
.btn-discord { background: var(--discord); color: #fff; }
.btn-discord:hover { background: #4752c4; transform: translateY(-2px); }
.btn-orange { background: var(--saffron); color: #000; }
.btn-orange:hover { background: var(--saffron-dark); transform: translateY(-2px); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-light); transform: translateY(-2px); }
.btn-purple { background: var(--purple); color: #fff; }
.btn-purple:hover { background: #6d28d9; transform: translateY(-2px); }
.btn-outline-red { background: transparent; color: var(--red); border: 1px solid var(--red); }
.btn-outline-red:hover { background: rgba(229,62,62,0.1); }

/* ===================== MODAL ===================== */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.75); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .25s; backdrop-filter: blur(4px); }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box { background: var(--bg2); border: 1px solid var(--border); border-radius: 14px; width: 90%; max-width: 700px; display: flex; gap: 0; overflow: hidden; animation: slideUp .3s ease; max-height: 90vh; overflow-y: auto; }
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-close { position: absolute; top: 16px; right: 20px; background: var(--bg4); border: 1px solid var(--border); color: var(--text); font-size: 16px; cursor: pointer; border-radius: 50%; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; z-index: 10; }
.modal-box { position: relative; }
.modal-left { background: var(--bg3); padding: 28px 24px; display: flex; flex-direction: column; align-items: center; gap: 14px; min-width: 220px; }
.modal-product-img { font-size: 80px; text-align: center; }
.modal-product-name { font-size: 17px; font-weight: 700; text-align: center; color: var(--saffron); }
.modal-product-price { font-family: 'Orbitron', sans-serif; font-size: 20px; font-weight: 700; color: var(--white); }
.modal-cart-btn, .modal-gift-btn { width: 100%; }
.modal-right { padding: 28px 24px; flex: 1; }
.modal-right h3 { font-family: 'Rajdhani', sans-serif; color: var(--saffron); font-size: 16px; letter-spacing: 1px; margin-bottom: 12px; }
.modal-right ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.modal-right ul li { color: var(--text-muted); font-size: 13px; padding-left: 18px; position: relative; line-height: 1.5; }
.modal-right ul li::before { content: '✦'; position: absolute; left: 0; color: var(--saffron); font-size: 10px; top: 2px; }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--bg2); border-top: 1px solid var(--border); margin-top: 0; }
.footer-tiranga { display: flex; height: 4px; }
.ft-saffron, .ft-white, .ft-green { flex: 1; }
.ft-saffron { background: var(--saffron); }
.ft-white { background: #fff; }
.ft-green { background: var(--green); }
.footer-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding: 36px 20px 24px; }
.footer-logo { font-family: 'Orbitron', sans-serif; font-size: 22px; font-weight: 900; color: var(--saffron); margin-bottom: 10px; }
.footer-copy { font-size: 12px; color: var(--text-muted); line-height: 1.7; }
.footer-center h4, .footer-right h4 { font-family: 'Rajdhani', sans-serif; color: var(--saffron); letter-spacing: 1.5px; font-size: 14px; margin-bottom: 14px; }
.footer-center a, .footer-right a { display: block; color: var(--text-muted); text-decoration: none; font-size: 13px; margin-bottom: 8px; transition: .2s; }
.footer-center a:hover, .footer-right a:hover { color: var(--saffron); }
.footer-tebex { font-size: 11px; color: var(--text-muted); margin-top: 14px; line-height: 1.6; }

/* ===================== RANK CARDS ===================== */
.rank-card { border-color: var(--border); transition: all .25s; }
.rank-card:hover { border-color: var(--rank-color, var(--saffron)); transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 20px color-mix(in srgb, var(--rank-color, #FF9933) 20%, transparent); }
.rank-card-header { padding: 20px 16px 14px; text-align: center; border-bottom: 1px solid var(--border); }
.rank-emoji { font-size: 52px; margin-bottom: 8px; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5)); display: flex; align-items: center; justify-content: center; }
.rank-img { width: 100px; height: auto; max-height: 100px; object-fit: contain; filter: drop-shadow(0 4px 16px rgba(0,0,0,0.6)); transition: transform .3s; }
.rank-card:hover .rank-img { transform: scale(1.08); }
.rank-emoji-fallback { font-size: 52px; }
.feat-img-real { width: 52px; height: 52px; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); border-radius: 6px; }
.rank-name-big { font-family: 'Orbitron', sans-serif; font-size: 17px; font-weight: 900; letter-spacing: 2px; margin-bottom: 8px; text-shadow: 0 0 20px currentColor; }
.rank-validity-tag { display: inline-block; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; font-size: 11px; padding: 3px 10px; color: var(--text-muted); }
.tier-label { font-size: 10px; letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; }
.tier-bar { background: var(--bg4); border-radius: 20px; height: 6px; overflow: hidden; }
.tier-fill { height: 100%; border-radius: 20px; transition: width .6s ease; }
.product-price.inr { font-size: 18px; }
.feat-validity { font-size: 10px; color: var(--text-muted); margin-top: 3px; }

/* ===================== CART BADGE ===================== */
.cart-icon { position: relative; }
.cart-count { position: absolute; top: -6px; right: -10px; background: var(--saffron); color: #000; font-size: 10px; font-weight: 800; min-width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Exo 2', sans-serif; }
.cart-count.has-items { animation: cartPulse .4s ease; background: var(--green); color: #fff; }
@keyframes cartPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.3)} }

/* ===================== CART MODAL ===================== */
.cart-modal-box { background: var(--bg2); border: 1px solid var(--border); border-radius: 14px; width: 90%; max-width: 500px; max-height: 85vh; overflow-y: auto; animation: slideUp .3s ease; position: relative; }
.cart-modal-header { display: flex; justify-content: space-between; align-items: center; padding: 18px 24px; border-bottom: 1px solid var(--border); position: relative; }
.cart-modal-header h2 { font-family: 'Rajdhani', sans-serif; font-size: 18px; color: var(--saffron); letter-spacing: 1px; }
.cart-modal-header .modal-close { position: static; }
.cart-modal-body { padding: 20px 24px; }
.cart-empty { text-align: center; padding: 40px 0; color: var(--text-muted); }
.cart-items { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.cart-item { display: flex; align-items: center; gap: 12px; background: var(--bg3); border: 1px solid var(--border); border-radius: 8px; padding: 10px 14px; }
.cart-item-img { width: 40px; height: 40px; object-fit: contain; border-radius: 6px; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 14px; font-weight: 700; color: var(--white); }
.cart-item-price { font-size: 12px; color: var(--text-muted); }
.cart-item-total { font-family: 'Orbitron', sans-serif; font-size: 14px; font-weight: 700; color: var(--saffron); }
.cart-item-remove { background: none; border: none; color: var(--red); cursor: pointer; font-size: 16px; padding: 4px 8px; }
.cart-summary { border-top: 1px solid var(--border); padding-top: 14px; }
.cart-summary-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--text-muted); margin-bottom: 8px; }
.cart-summary-row.total { font-size: 18px; font-weight: 700; color: var(--saffron); font-family: 'Orbitron', sans-serif; padding-top: 8px; border-top: 1px solid var(--border); }
.cart-checkout-btn { width: 100%; margin-top: 14px; padding: 14px; font-size: 15px; }

/* ===================== CHECKOUT MODAL ===================== */
.checkout-modal-box { background: var(--bg2); border: 1px solid var(--border); border-radius: 14px; width: 95%; max-width: 800px; max-height: 90vh; overflow-y: auto; animation: slideUp .3s ease; position: relative; }
.checkout-modal-body { padding: 20px 24px; }
.checkout-content { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.checkout-heading { font-family: 'Rajdhani', sans-serif; color: var(--saffron); font-size: 16px; letter-spacing: 1px; margin-bottom: 14px; }
.checkout-items { list-style: none; margin-bottom: 14px; }
.checkout-items li { color: var(--text-muted); font-size: 13px; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.checkout-total-row { display: flex; justify-content: space-between; font-size: 16px; font-weight: 700; padding: 10px 0; border-top: 1px solid var(--border); margin-bottom: 16px; }
.checkout-total-price { font-family: 'Orbitron', sans-serif; color: var(--saffron); }
.checkout-field { margin-bottom: 14px; }
.checkout-field label { display: block; font-size: 12px; color: var(--text-muted); margin-bottom: 6px; letter-spacing: .5px; }
.checkout-input { width: 100%; background: var(--bg4); border: 1px solid var(--border); border-radius: 8px; color: var(--text); padding: 10px 14px; font-size: 14px; font-family: 'Exo 2', sans-serif; outline: none; }
.checkout-input:focus { border-color: var(--saffron); }
.checkout-pay-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }
.qr-wrapper { text-align: center; margin: 14px 0; }
.qr-img { width: 180px; height: 180px; border-radius: 12px; border: 3px solid var(--saffron); box-shadow: 0 0 20px rgba(255,153,51,0.2); }
.checkout-steps { display: flex; flex-direction: column; gap: 8px; }
.pay-step { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.pay-step-num { flex-shrink: 0; width: 24px; height: 24px; background: var(--saffron); color: #000; font-weight: 800; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; }
.checkout-actions { border-top: 1px solid var(--border); padding-top: 16px; margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.checkout-agree { font-size: 12px; color: var(--text-muted); display: flex; align-items: flex-start; gap: 8px; }
.checkout-agree input { margin-top: 2px; accent-color: var(--saffron); }
.checkout-agree a { color: var(--saffron); }
.checkout-submit { width: 100%; padding: 14px; font-size: 16px; }

/* UPI Remark Box */
.upi-remark-box { background: rgba(255,153,51,0.08); border: 2px dashed var(--saffron); border-radius: 10px; padding: 14px; margin: 14px 0; text-align: center; }
.upi-remark-title { font-size: 12px; font-weight: 700; color: var(--saffron); letter-spacing: 1px; margin-bottom: 8px; }
.upi-remark-code { font-family: 'Orbitron', sans-serif; font-size: 18px; font-weight: 900; color: var(--text-muted); background: var(--bg); border-radius: 8px; padding: 10px 16px; margin: 8px 0; letter-spacing: 2px; user-select: all; cursor: pointer; transition: all .3s; }
.upi-remark-code.active { color: var(--green-light); text-shadow: 0 0 10px rgba(19,136,8,0.4); border: 1px solid var(--green); }
.upi-remark-help { font-size: 11px; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ===================== TOAST ===================== */
.toast-notification { position: fixed; bottom: 24px; right: 24px; background: var(--bg3); border: 1px solid var(--green); border-radius: 10px; padding: 14px 24px; color: var(--white); font-size: 14px; font-weight: 600; z-index: 99999; transform: translateY(80px); opacity: 0; transition: all .3s ease; box-shadow: 0 8px 30px rgba(0,0,0,0.4); }
.toast-notification.show { transform: translateY(0); opacity: 1; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .main-container { flex-direction: column; }
  .sidebar { width: 100%; border-right: none; border-bottom: 1px solid var(--border); }
  .category-list { display: flex; overflow-x: auto; gap: 4px; padding: 8px; }
  .category-item { min-width: 140px; flex-direction: column; text-align: center; border-left: none; border-bottom: 3px solid transparent; gap: 4px; }
  .category-item.active { border-left: none; border-bottom-color: var(--saffron); }
  .cat-arrow { display: none; }
  .header-inner { flex-wrap: wrap; }
  .info-cards-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .modal-box { flex-direction: column; }
  .featured-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .logo-nation, .logo-mc { font-size: 18px; }
  .header-left, .header-right { display: none; }
  .products-grid { grid-template-columns: 1fr 1fr; }
}
