/*
Theme Name: GE Plugin Store
Theme URI: https://loanjunction.org/
Author: Gangotri Enterprises
Author URI: https://loanjunction.org/
Description: SaaS-style digital product WordPress theme compatible with WooCommerce, Elementor, and plugin sales websites.
Version: 1.0.0
Text Domain: ge-plugin-store
*/

:root{
  --bg:#0B1020;
  --surface:#121A2F;
  --card:#18233D;
  --border:#2A3658;
  --primary:#3B82F6;
  --cyan:#22D3EE;
  --violet:#8B5CF6;
  --success:#22C55E;
  --text:#F8FAFC;
  --text2:#CBD5E1;
  --muted:#94A3B8;
  --radius:18px;
  --container:1240px;
  --shadow:0 10px 30px rgba(0,0,0,.22);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}
h1,h2,h3,h4,h5,h6{
  font-family:Poppins, Arial, sans-serif;
  line-height:1.2;
  margin:0 0 16px;
}
a{color:var(--text); text-decoration:none}
img{max-width:100%; height:auto; display:block}

.container{
  width:min(100% - 32px, var(--container));
  margin-inline:auto;
}

.section{
  padding:80px 0;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 22px;
  border-radius:12px;
  border:1px solid transparent;
  font-weight:600;
  transition:.25s ease;
}
.btn-primary{
  background:linear-gradient(135deg,var(--primary),var(--cyan),var(--violet));
  color:#fff;
}
.btn-primary:hover{transform:translateY(-1px)}
.btn-outline{
  border-color:var(--border);
  background:transparent;
  color:var(--text);
}
.btn-outline:hover{
  background:rgba(255,255,255,.04);
}

.topbar{
  background:#09101d;
  border-bottom:1px solid rgba(255,255,255,.06);
  font-size:14px;
}
.topbar-wrap{
  display:flex;
  justify-content:space-between;
  align-items:center;
  min-height:42px;
  gap:16px;
}
.social-links{
  display:flex;
  gap:12px;
  align-items:center;
}
.social-links a{
  color:var(--text2);
  font-size:14px;
}

.site-header{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(11,16,32,.88);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.header-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:76px;
  gap:24px;
}
.site-branding{
  display:flex;
  align-items:center;
  gap:12px;
}
.site-title{
  font-size:20px;
  font-weight:700;
}
.main-nav ul{
  display:flex;
  gap:20px;
  list-style:none;
  padding:0;
  margin:0;
}
.header-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.hero{
  padding:96px 0 80px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:36px;
  align-items:center;
}
.hero-badge{
  display:inline-flex;
  padding:8px 14px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:999px;
  background:rgba(255,255,255,.04);
  color:var(--text2);
  margin-bottom:16px;
}
.hero h1{
  font-size:48px;
  max-width:760px;
}
.hero p{
  color:var(--text2);
  font-size:18px;
  max-width:680px;
}
.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:24px;
}
.hero-trust{
  margin-top:18px;
  color:var(--muted);
  font-size:14px;
}

.card-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.card{
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  padding:24px;
  box-shadow:var(--shadow);
}
.section-title{
  text-align:center;
  max-width:760px;
  margin:0 auto 14px;
  font-size:34px;
}
.section-subtitle{
  text-align:center;
  max-width:760px;
  margin:0 auto 42px;
  color:var(--text2);
}

.product-card{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.price{
  font-size:22px;
  font-weight:700;
}
.card-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.footer{
  background:#09101d;
  border-top:1px solid rgba(255,255,255,.06);
  padding:60px 0 24px;
}
.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:24px;
}
.footer small{
  color:var(--muted);
}

.woocommerce div.product{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}
.woocommerce div.product .summary{
  background:var(--surface);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:24px;
}

@media (max-width: 991px){
  .hero-grid,
  .card-grid,
  .footer-grid,
  .woocommerce div.product{
    grid-template-columns:1fr;
  }
  .main-nav{display:none;}
  .hero h1{font-size:38px}
}
@media (max-width: 640px){
  .section{padding:42px 0}
  .hero{padding:72px 0 42px}
  .hero h1{font-size:30px}
}

.ge-product-hero{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
margin-top:30px;
}

.ge-product-summary{
background:#121A2F;
padding:28px;
border-radius:18px;
border:1px solid #2A3658;
}

.ge-product-title{
font-size:34px;
}

.ge-product-price{
font-size:28px;
font-weight:700;
margin:12px 0;
}

.ge-demo-btn{
display:block;
margin-top:12px;
padding:12px;
text-align:center;
border-radius:12px;
background:#18233D;
border:1px solid #2A3658;
}

.ge-trust{
margin-top:14px;
font-size:14px;
color:#94A3B8;
}

@media(max-width:900px){
.ge-product-hero{
grid-template-columns:1fr;
}
}

/* ===== NORMAL GLOBAL CSS BELOW (not inside media) ===== */

.ge-feature-strip{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:16px;
margin:40px 0;
}

.ge-feature{
background:#18233D;
padding:14px;
text-align:center;
border-radius:12px;
border:1px solid #2A3658;
font-size:14px;
}

.ge-pricing-box{
background:linear-gradient(180deg,#18233D,#121A2F);
border:1px solid #2A3658;
padding:22px;
border-radius:16px;
margin-top:18px;
position:relative;
}

.ge-badge{
position:absolute;
top:-10px;
right:20px;
background:#3B82F6;
padding:4px 10px;
border-radius:999px;
font-size:12px;
}

.ge-price-main{
font-size:30px;
font-weight:700;
margin:8px 0;
}

.ge-sticky-buy{
position:fixed;
bottom:0;
left:0;
width:100%;
background:#0B1020;
border-top:1px solid #2A3658;
padding:10px 0;
z-index:9999;
}

.ge-tabs{
  margin:60px 0;
  background:#121A2F;
  padding:30px;
  border-radius:18px;
  border:1px solid #2A3658;
}

.ge-tab-buttons{
  display:flex;
  gap:10px;
  margin-bottom:20px;
  flex-wrap:wrap;
}

.ge-tab-btn{
  padding:10px 18px;
  border-radius:10px;
  border:1px solid #2A3658;
  background:#18233D;
  color:#F8FAFC;
  cursor:pointer;
}

.ge-tab-btn.active{
  background:#3B82F6;
}

.ge-tab-content{
  display:none;
  color:#CBD5E1;
}

.ge-tab-content.active{
  display:block;
}

.ge-product-content{
  margin:40px 0;
}

.ge-section-heading{
  font-size:28px;
  margin-bottom:20px;
}

.ge-faq-box,
.ge-related-box,
.ge-final-cta{
  margin:50px 0;
  background:#121A2F;
  padding:30px;
  border-radius:18px;
  border:1px solid #2A3658;
}

.ge-faq-item{
  border:1px solid #2A3658;
  border-radius:12px;
  margin-bottom:14px;
  background:#18233D;
  overflow:hidden;
}

.ge-faq-item summary{
  cursor:pointer;
  padding:16px 18px;
  font-weight:600;
  list-style:none;
}

.ge-faq-item summary::-webkit-details-marker{
  display:none;
}

.ge-faq-answer{
  padding:0 18px 18px;
  color:#CBD5E1;
}

.ge-final-cta{
  text-align:center;
}

.ge-final-cta p{
  color:#CBD5E1;
  max-width:700px;
  margin:0 auto 20px;
}

.ge-final-cta-actions{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

.ge-related-box ul.products{
  margin-top:20px;
}

@media(max-width:900px){
  .ge-tab-buttons{
    flex-direction:column;
  }

  .ge-faq-box,
  .ge-related-box,
  .ge-final-cta,
  .ge-tabs{
    padding:20px;
  }
}