
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap');


:root{
  --bg: #0b0f14;
  --surface: #111826;
  --text: #e7eef7;
  --muted: #a8b3c7;
  --brand: #6aa8ff;
  --border: rgba(255,255,255,.08);
  --radius: 14px;
  --container: 1400px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
 font-family: "IBM Plex Sans", sans-serif;
  line-height:1.6;
  background: radial-gradient(900px 500px at 20% -10%, rgba(106,168,255,.18), transparent 60%),
              radial-gradient(900px 500px at 90% 0%, rgba(255,255,255,.06), transparent 55%),
              var(--bg);
  color: var(--text);
}

a{ color: var(--brand); text-decoration:none; }
a:hover{ text-decoration:underline; }


/* Theme container (renamed to avoid conflict with Bootstrap .container) */
.od-container{
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.site-header{
backdrop-filter: blur(10px);
    background: #000;
    border-bottom: 1px solid var(--border);
    z-index: 999;
    position: relative;
}
/* Sticky state (added by JS) */
.site-header.is-sticky{
position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
}
.site-header.is-sticky .custom-logo-link img{
	max-width: 135px;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 14px 0;
}

.site-title{
  color: var(--text);
  font-weight: 700;
  letter-spacing: .2px;
  font-size: 18px;
}

.site-description{
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.site-nav{
  display:flex;
  align-items:center;
  gap: 10px;
  position: relative;
}

.nav-toggle{
  display:none;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  padding: 8px 10px;
  border-radius: 10px;
  cursor:pointer;
}

.site-nav ul{
  list-style:none;
  display:flex;
  gap: 12px;
  padding:0;
  margin:0;
}
.site-nav li a{
    display: inline-block;
    padding: 8px 15px;
    border-radius: 10px;
    color: var(--text);
    font-size: 18px;
    font-weight: 500;
}
.site-nav li a:hover{
  background: rgba(255,255,255,.06);
  text-decoration:none;
}
.custom-logo-link img{
	max-width: 200px;
    height: auto;
}
.site-nav li.btn-contactus a{
	background-image: linear-gradient(to bottom, #FF0000 0%, #990000 100%);
    border-radius: 40px;
    padding: 8px 30px;
}
.site-nav li.btn-contactus a:hover{
	background-image: linear-gradient(to bottom, #990000 0%, #FF0000 100%);
}
.site-main{ padding: 0px 0 0px; }

.od-layout{
  display:grid;
  grid-template-columns: 1fr 320px;
  gap: 22px;
}

.content{ min-width: 0; }

.entry{
  background: rgba(17,24,38,.72);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  margin: 18px;
  box-shadow: 0 14px 28px rgba(0,0,0,.25);
}

.entry-title{
  margin: 0 0 10px;
  line-height: 1.25;
}
.entry-title a{ color: var(--text); }

.entry-meta{
  color: var(--muted);
  font-size: 13px;
  display:flex;
  gap: 10px;
  margin-bottom: 10px;
}

.entry-thumb img{
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin: 10px 0 0;
}

.entry-content{ color: var(--text); }
.entry-content p{ color: var(--text); }
.entry-content img{ max-width: 100%; height:auto; }

.entry-tax{
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

/* Sidebar widgets */
.sidebar .widget{
  background: rgba(17,24,38,.65);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 18px;
}
.widget-title{ margin: 0 0 10px; font-size: 16px; }

.page-title{ margin: 0 0 10px; }
.archive-description{ color: var(--muted); margin-bottom: 12px; }

/* Theme pagination wrapper (renamed to avoid Bootstrap .pagination component) */
.od-pagination{ margin: 22px 0; }
.od-pagination .nav-links{ display:flex; gap: 10px; flex-wrap: wrap; }
.od-pagination a, .od-pagination span{
  border: 1px solid var(--border);
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  color: var(--text);
}
.od-pagination span.current{ background: rgba(106,168,255,.18); border-color: rgba(106,168,255,.35); }

.site-footer{
  border-top: 1px solid var(--border);
  padding: 22px 0;
  background: rgba(11,15,20,.7);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-meta{ margin: 0; color: var(--muted); font-size: 13px; }

/* Comments */
.comments-area{
  background: rgba(17,24,38,.65);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-top: 18px;
}
.comment-list{ padding-left: 18px; }
.comment-reply-link{ font-size: 13px; }



 /* ===== Overdrive Homepage ===== */
  /* ===== hero===== */
.od-hero {
	position: relative;
	min-height: 520px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
}
.od-hero h1{
	font-weight: 500 !important;
}
.od-hero::before{
	content:"";
	position:absolute;
	inset:0;
	background: rgba(0,0,0,.55);
}
.od-hero > .container{
	position: relative;
	z-index: 2;
}
.od-hero .od-hero__desc{
	max-width: 600px;
    margin-inline: auto;
    font-size: 22px;
    line-height: 30px;
}
.od-hero .od-hero__desc p:last-child{ margin-bottom: 0; }
 /* ===== brands===== */
.od-brands{
	background: #000;
    color: #fff;
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}
.od-brands h2{
	font-size: 40px;
	font-weight: 500 !important;
}
.od-brands .od-brand-logo{
	width: auto;
	display: block;
	margin: 0 auto;
}
 /* ===== about===== */
.od-about{
	background: #fff;
}
.od-about h2{
	color:#000;
	font-weight: 500 !important;
}
.od-about .od-about__desc{
	max-width: 900px;
	margin-inline: auto;
		font-size: 22px;
}
.od-about .od-about__desc p:last-child{
	margin-bottom: 0; 
	color:#000;
}
.od-about .about-item .bg-gray{
	background: linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,0));
}
.od-about .about-item h3{
    text-align: left;
    font-weight: 500 !important;
}
.od-about .about-item img{
	height: 240px;
    object-fit: cover;
}
 /* ===== od-featured-products===== */
.od-featured-products{
	background: #fff;
    padding-top: 80px !important;
	padding-bottom: 80px !important;
}
.od-featured-products h2{
	color:#000;
	font-weight: 500 !important;
}
.od-featured-products__title p { 
	margin: 0;
    font-size: 20px;
    line-height: 25px;
    color: #000;
}
.od-featured-products__title{
    max-width: 260px;
    margin: 0 auto;
    text-align: left;;
}
.od-featured-products__title strong { 
	font-weight: 600; 
}
.od-featured-products .products-item img{
	max-height: 300px; 
	width: auto;
}
.od-featured-products a.btn{
background-image: linear-gradient(to bottom, #FF0000 0%, #990000 100%);
    border-radius: 40px;
    padding: 8px 30px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    border: 0px;
    text-decoration: none;
}
.od-featured-products a.btn:hover{
	background-image: linear-gradient(to bottom, #990000 0%, #FF0000 100%);
}
/* footer*/
.site-footer .menu a:hover span,
.site-footer .menu a:hover{
	text-decoration:none;
}
.sm-icon i{
	font-size: 24px;
}

/* Hide toggle on desktop */
.nav-toggle{
  display: none;
  background: transparent;
  border: 0;
  padding: 10px;
  cursor: pointer;
}

/* Mobile: show toggle */
@media (max-width: 991px){
  .nav-toggle{ display: inline-flex; align-items: center; }
}

/* Hamburger icon (3 lines) */
.nav-toggle__icon{
  position: relative;
  width: 30px;
  height: 3px;
  background: currentColor;
  display: inline-block;
  transition: background .2s ease;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after{
  content: "";
  position: absolute;
  left: 0;
  width: 30px;
  height: 3px;
  background: currentColor;
  transition: transform .2s ease, top .2s ease, opacity .2s ease;
}

.nav-toggle__icon::before{ top: -7px; }
.nav-toggle__icon::after{ top: 7px; }

/* When menu is open (aria-expanded=true) => turn into X */
.nav-toggle[aria-expanded="true"] .nav-toggle__icon{
  background: transparent;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__icon::before{
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__icon::after{
  top: 0;
  transform: rotate(-45deg);
}
.site-nav ul.is-open li{
	padding: 5px 0px;
}
/* Mobile menu show/hide */
@media (max-width: 991px){
  #primary-menu{
    display: none;
    margin-top: 10px;
  }
  #primary-menu.is-open{
    display: block;
  }
}

/* Mobile */
@media (max-width: 900px){
  .od-layout{ grid-template-columns: 1fr; }
  .nav-toggle{ display:inline-flex; align-items:center; gap:8px; }
  .site-nav ul{
    display:none;
    position:absolute;
    right: 0;
    top: 52px;
    background: rgba(11,15,20,.95);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 10px;
    width: min(360px, calc(100vw - 32px));
    flex-direction: column;
  }
  .site-nav ul.is-open{ display:flex; }
}

/* =========================================
   Fix for Full Width Template (No Sidebar)
   ========================================= */
body.page-template-page-fullwidth-php .od-layout {
    grid-template-columns: 1fr !important;
    gap: 0;
}