/**
 * layout.css — Structure only: positioning, flow, sizing, breakpoints.
 * No colors, typography, borders, shadows, or decorative radii.
 */

/* --- Reset-ish structural defaults --- */

*{
  font-family: var(--font-sans);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Utility: visually hidden (structure for a11y) --- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* --- Container --- */
.container {
  width: min(100% - 2rem, 80rem);
  margin-inline: auto;
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
}

/* Promo bar above the header */
.promo-bar-wrap {
  position: relative;
}

.promo-bar {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-main {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  min-height: 3.4rem;
  padding-block: 0.80rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  flex: 0 0 auto;
}

.header-search {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
  max-width: 43rem;
}

.header-search input {
  flex: 1 1 auto;
  min-width: 0;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: 0 0 auto;
}

.dropdown{
    position: relative;
}

li.dropdown ul {
    list-style: none;
    background: #fff;
    padding: 15px 20px;
    position: absolute;
    bottom: -200px;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
    border: 1px solid #ccc;
    visibility: hidden;
    opacity: 0;
    transform: scale(1, 0);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    li.dropdown:hover>ul{
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }

li.dropdown > ul > li > ul{
	top: 10px;
    height: fit-content;
    left: 140px;
}

.support-block {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.support-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
}

.support-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.quick-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.promo-account-btn,
.mobile-cart-actions {
  display: none;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -0.4rem;
  right: -0.35rem;
}

.category-nav {
  width: 100%;
}

.category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

@media (min-width: 48rem) {
  .category-list {
    flex-wrap: nowrap;
    overflow-x: auto;
  }
}

@media (min-width: 48rem) and (max-width: 63.99rem) {
  .header-search {
    max-width: 26rem;
  }
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.nav-toggle-bars {
  display: block;
  width: 1.5rem;
  height: 0.125rem;
}

.site-nav {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem 1.5rem;
	overflow: unset !important
}

.nav-list a {
  display: inline-block;
  text-decoration: none;
}

/* --- Hero --- */
.hero {
  overflow: hidden;
  padding-block: 1.1rem 0.9rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 2.5rem 3rem;
  padding-block: clamp(3rem, 8vw, 5.5rem);
}

.hero-copy {
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1.75rem;
}

.hero-stats {
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem 1.5rem;
}

.hero-stats > div {
  margin: 0;
}

.hero-stats dt,
.hero-stats dd {
  margin: 0;
}

.hero-visual {
  display: flex;
  justify-content: end;
}

.hero-figure {
  margin: 0;
  width: min(100%, 35rem);
}

.hero-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 1.25rem;
  overflow: hidden;
}

.hero-offer {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.hero-benefits {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.benefit-copy {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
}

.site-section {
  padding-block: 60px;
}

.site-section--no-bg {
  background: transparent;
}

.section-title {
  margin: 0 0 2rem;
  text-align: left;
}

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

.categories-swiper {
  width: 100%;
}

.categories-track {
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.category-media {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.category-name {
  text-align: center;
}

/* --- Sections --- */
.section {
  padding-block: clamp(3.5rem, 9vw, 6rem);
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

/* Services card grid */
.card-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

/* --- Buttons/links structure --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  padding: 0.65rem 1.25rem;
}

.btn-lg {
  padding: 0.85rem 1.5rem;
}

.card {
  margin: 0;
}

.card h3 {
  margin: 0 0 0.5rem;
}

.card p {
  margin: 0;
}

/* --- Breakpoints: tablet --- */
@media (min-width: 48rem) {
  .hero-banner {
    grid-template-columns: minmax(16rem, 1fr) minmax(18rem, 1.25fr);
    gap: 1.5rem;
  }

  .hero-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem 0.8rem;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- Breakpoints: desktop --- */
@media (min-width: 64rem) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .hero-banner {
    grid-template-columns: minmax(18rem, 1fr) minmax(22rem, 1.3fr);
    min-height: 20rem;
  }

  .hero-benefits {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.6rem 1rem;
  }
}

/* --- Mobile nav (structural) --- */
@media (max-width: 47.99rem) {
  .nav-toggle {
    display: inline-flex;
  }

  .header-main {
    gap: 0.75rem;
    padding-block: 0.4rem;
  }

  .header-right {
    display: flex;
  }

  .header-search {
    display: none;
  }

  .support-block {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .mobile-cart-actions {
    display: flex;
    margin-left: auto;
    gap: 0.5rem;
  }

  .promo-account-btn {
    display: inline-flex;
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .site-nav {
    position: fixed;
    top: var(--header-h, 4.25rem);
    right: 0;
    z-index: 60;
    width: min(20rem, 85vw);
    height: calc(100vh - var(--header-h, 4.25rem));
    overflow: auto;
    padding: 1rem;
    justify-content: flex-start;
    align-items: flex-start;
    transform: translateX(110%);
    visibility: hidden;
    pointer-events: none;
    /* Layout only: the slide transition is defined in style.css */
  }

  .site-nav .category-row {
    width: 100%;
    margin-inline: 0;
  }

  .site-nav.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav-backdrop {
    position: fixed;
    top: var(--header-h, 4.25rem);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 45;
    visibility: hidden;
    pointer-events: none;
  }

  .nav-backdrop.is-open {
    visibility: visible;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
	  width: 100%;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-list a {
    display: block;
	  width: 100%;
    padding: 0.75rem 0;
  }
}




/* karan css */

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row>* {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.row-gap {
  row-gap: 25px;
}

.w-100 {
  width: 100%;
}

.mt-2 {
  margin-top: 15px;
}

.mt-5 {
  margin-top: 50px;
}

.mb-5 {
  margin-bottom: 50px;
}

.items-center{
	align-items: center;
}

.justify-center{
	justify-content: center
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

@media (min-width: 768px) {

  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media (min-width: 992px) {

  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
	
	.col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
	
	    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
	
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
    }

  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

.yoast-breadcrumbs>span,
.woocommerce-breadcrumb,
.rating-wrap {
  display: flex;
  align-items: center;
  gap: 10px !important;
}

.woocommerce-breadcrumb{
	gap:30px !important
}

.sp_details {
  display: flex;
  flex-direction: column;
  gap: 15px;
	margin-bottom:0 !important;
}

ul.sp-hero__rating {
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
}

.rating-wrap .rating-wrap__text {
  margin-left: 10px;
}

.qty-data-form {
  display: flex;
  align-items: center;
  width: fit-content;
  padding: 5px;
  gap: 10px;
}

.qty-data-form button {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-data-form input {
  width: 40px;
  padding: 0;
  text-align: center;
  border: none;
  outline: none;
}

.sp_btn_card {
  padding: 30px 20px;
  display: flex;
  flex-flow: column;
  gap: 10px;
}

.sp_btn_card .product-btn-primary {
  margin-top: 10px;
}

.sp_btn_card .off-bdg {
  padding: 5px 10px;
  width: fit-content;
}

.flex-col-trust-card {
  gap: 10px;
  padding: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flex-col-trust-card .flex-trust-icon {
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp_pay_con {
  width: fit-content;
  padding: 25px 15px 15px;
  position: relative;
}

.sp_pay_con .badgesContainer {
  display: flex;
  align-items: center;
  gap: 10px 20px;
  flex-wrap: wrap;
}

.sp_pay_con .badgesContainer img {
  width: 55px;
}

.tabsCon .tabcontent {
  display: none;
}

.sp_summary .site-tabs {
  display: flex;
  flex-direction: column;
}

.sticky-card {
  position: sticky !important;
  top: 200px;
}

.table-container {
  width: 100%;
  overflow: hidden;
  margin-top: 25px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  font-size: 16px;
  padding: 15px 0;
  text-align: left;
}

thead th,
tbody tr td {
  padding: 12px 20px;
}

th {
  white-space: nowrap;
  font-size: 16px !important;
}

.table-container table tbody {
  max-width: 95%;
  display: table;
  width: 100%;
  margin: auto;
}

@media (max-width: 1023px) {
		
	header .header-right{
		display: none !important;
	}
	
	.contact-form-section form{
		padding: 0 !important
	}
	
	.dropdown svg{
		    float: right;
    margin-top: -30px;
	}
	
	li.dropdown ul{
		position: relative !important;
        width: 100%;
        bottom: 0 !important;
		visibility: visible !important;
    opacity: 1 !important;
    transform: unset !important;
    display: none !important;
	}
	
	li.dropdown ul.showDropdownMenu{
		display: block !important;
		left: 0 !important;
        margin-bottom: 10px !important;
	}
	
	.author-strip .ath-col:not(:first-child):after{
		content: unset !important;
	}

  .table-container {
    overflow-x: auto;
  }

  th,
  td {
    padding: 12px 20px;
    white-space: nowrap;
  }

  .share-exp-form {
    padding: 20px !important;
  }

  .row-gap {
    row-gap: 15px;
  }
	
	.yoast-breadcrumbs>span, .woocommerce-breadcrumb, .rating-wrap,
.author-strip{
    flex-wrap: wrap; 
}

.author-strip .ath-col:not(:first-child){
    padding-left: unset !important;
    border-left: unset !important;
    margin-left: unset !important; 
}

}

.review-ttl-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.tab_review_card {
  border: 0;
  padding: 20px;
  border-radius: 12px;
}

.tab_review_card p {
  margin: 0;
}

.tab_review_card img {
  height: 36px;
  width: 36px;
}

.tech-comment-stars-inputs {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.tech-comment-stars-inputs input {
  position: absolute;
  opacity: 0;
}

.tech-comment-stars-inputs label svg {
  width: 25px;
  height: 25px;
}

.tech-comment-stars-inputs label svg path {
  fill: none;
  stroke: #F56800;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: fill 0.2s ease, stroke 0.2s ease;
}

form :is(input, select, textarea) {
  width: 100%;
  padding: 10px 15px;
}

form textarea {
  height: 100px;
  resize: none;
}

form .wc-block-components-checkbox label {
	align-items:center !important;
}

form input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.check_agree {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pg-hero .content-wrap .pg-hero-title{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #DBDBDB;
}

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

/* ----------------------Single-blog-start---------------- */

body.single-blog .pg-hero-title{
    align-items: start !important;
	text-align: left !important;
}

:is(body.author, body.single-blog, body.page) main :is(ul, ol) li {
    padding-left: 10px;
    margin-bottom: 12px;
    position: relative;
}

:is(body.author, body.single-blog, body.page) > ul{
	padding-left: 20px !important
}

:is(body.author, body.single-blog, body.page) ul li > ul{
	margin-top: 12px
}

/* :is(body.author, body.single-blog, body.page) :is(.wp-block-image , .wp-post-image){
    margin: 1em 0 !important;
} */

body.single-blog .content-wrap .col-lg-9 .wp-post-image{
    margin: 1em 0 !important;
}

body.single-blog .content-wrap p{
	margin-block:0 20px
}

.sidebar_post_wrap .blog-card{
	border:0 !important
}

.sidebar_post_wrap .blog-card .blog-card__body{
	padding-inline: 0 !important;
	padding-bottom: 0 !important;
}

.sidebar_post_wrap .blog-card .blog-card__body .blog-card__title{
	font-size:16px !important
}

.sidebar_post_wrap .blog-card .blog-card__body .blog-card__date{
	font-weight:normal !important
}

.sidebar_post_wrap .blog-card{
    overflow: unset !important;
}

.grid-blog-card{
	display: grid !important;
    grid-template-columns: 36% auto;
    gap: 10px;
    align-items: center;
}

:is(.blog-card__media, .blog-card__media img){
	border-radius:4px !important
}

.sidebar_post_wrap .grid-blog-card .blog-card__body{
	padding: 0 !important
}

.sidebar_post_wrap .grid-blog-card .blog-card__body .blog-card__title{
	font-size:14px !important;
	-webkit-line-clamp: 3 !important; 
}

/* -----------------Accordians-start-------------------- */

.wp-block-create-block-bwe-addons-faq .wp-block-create-block-bwe-addons-details details {
    margin-top: 20px;
    user-select: none;
}

.wp-block-create-block-bwe-addons-faq .wp-block-create-block-bwe-addons-details details :is(summary, .content){
	padding: 12px 20px;
}

.mb-2{
	margin-bottom: 20px;
}

.product-title-link{
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
	-webkit-line-clamp: 3;
}

:is(.product-card, .product-card .product-body){
	display: flex;
	flex-direction: column;
}

.product-card .product-body{
    flex: 1;
}

@media (600px <=width <=1024px) {
	.grid.columns-4{
		grid-template-columns:repeat(2, 1fr) !important;
	}
}

@media (width <=600px) {
		.grid.columns-4{
			grid-template-columns:repeat(1, 1fr) !important;
		}
	}