/* ===========================
   CSS Reset (Cross-browser)
=========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  height: 100%;
}

body {
  min-height: 100%;
  scroll-behavior: smooth;
  font-family: 'Arial', sans-serif;
  font-size: 18px;
  color: #000;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}



/* ===========================
   Root Variables
=========================== */
:root {
    --light-blue: #6EC1E4;
    --dark-grey: #54595F;
    --medium-grey: #7A7A7A;
    --light-gray: #e4e4e4;
    --light-green: #61CE70;
    --dark-orange: #D64304;
    --bright-green: #03A019;
    --dark-black: #393D46;
    --bright-orange: #E76E34;
    --white : #FFFF;
    --black : #000;
    

  --font-family: "Roboto", Sans-serif;
  --font-size-base: 16px;
  --line-height: 1.5;

  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;

  --border-radius: 4px;
  --transition: all 0.3s ease;

   /* ==== global font size variables ====  */
   --fs-xxs: 12px;
   --fs-xs: 14px;
   --fs-sm: 16px;
   --fs-base: 18px;
   --fs-md: 20px;
   --fs-lg: 22px;
   --fs-xl: 27px;
   --fs-2xl: 32px;
   --fs-3xl: 34px;
   --fs-4xl: 40px;
   --fs-5xl: 60px;
   --fs-6xl: 72px;
   /* ======= line height ======== */
   --lh-normal: normal;
   --lh-md: 25px;
   --lh-lg: 40px;
   /* ==== letter speaching ======== */
   --ls-xxs: -2.16px;
   --ls-xs: -1.8px;
   --ls-sm: -1.02px;
   --ls-md: -1.2px;
   --ls-lg: -0.96px;
   --ls-xl: 0.24px;
   --ls-2xl: 0.4px;
}


/* ===========================
   Utility Classes
=========================== */

/* ======== flex box styles =========== */
.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }

.flex_column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }

  .flex_row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
  }

  .flex_center{
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

  .flex_align_center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .flex_align_end{
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}


.flex_justify_center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }

  .flex_justify_between{
    -webkit-box-pack: justify-between;
    -ms-flex-pack: justify-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.flex_grow {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1; 
    flex-grow: 1;
  }

.flex_grow_double {
    -webkit-box-flex: 2;
    -ms-flex-positive: 2; 
    flex-grow: 2;
  }

.flex_shrink {
  -webkit-flex-shrink: 1; 
  -ms-flex: 1 1 auto; 
  flex-shrink: 1;   
}

.flex_shrink_double {
  -webkit-flex-shrink: 2; 
  -ms-flex: 1 2 auto; 
  flex-shrink: 2;   
}

.grid {
    display: -ms-grid;
    display: grid;
  }

/* ======== test utility ======== */
.text-center {
  text-align: center;
}

.text-uppercase {
  text-transform: uppercase;
}
.text-bold {
  font-weight: bold;
}

/*======= font sizes ======== */
.fs-xxs {
  font-size: var(--fs-xxs);
  letter-spacing: var(--ls-xl);
  line-height: var(--lh-normal);
}

.fs-xs {
  font-size: var(--fs-xs);
  line-height: var(--lh-normal);
}

.fs-sm {
  font-size: var(--fs-sm);
  line-height: var(--lh-normal);
}

.fs-base {
  font-size: var(--fs-base);
  line-height: var(--lh-md);
}

.fs-md {
  font-size: var(--fs-md);
  line-height: var(--lh-normal);
  letter-spacing: var(--ls-2xl);
}

.fs-lg-lh-lg {
  font-size: var(--fs-lg);
  line-height: var(--lh-lg);
}

.fs-lg-lh-md {
  font-size: var(--fs-lg);
  line-height: var(--lh-md);
}

.fs-lg-lh-normal {
  font-size: var(--fs-lg);
  line-height: var(--lh-normal);
}

.fs-xl-lh-normal {
  font-size: var(--fs-xl);
  line-height: var(--lh-normal);
}

.fs-xl-lh-lg {
  font-size: var(--fs-xl);
  line-height: var(--lh-lg);
}

.fs-2xl {
  font-size: var(--fs-2xl);
  line-height: var(--lh-normal);
  letter-spacing: var(--ls-lg);
}

.fs-3xl {
  font-size: var(--fs-3xl);
  line-height: var(--lh-normal);
  letter-spacing: var(--ls-sm);
}

.fs-4xl {
  font-size: var(--fs-4xl);
  line-height: var(--lh-normal);
  letter-spacing: var(--ls-md);
}

.fs-5xl {
  font-size: var(--fs-5xl);
  line-height: var(--lh-normal);
  letter-spacing: var(--ls-xs);
}

.fs-6xl {
  font-size: var(--fs-6xl);
  line-height: var(--lh-normal);
  letter-spacing: var(--ls-xxs);
}

/* Button Styles */
.btn{
  display: inline-block;
  border: none;
  padding: 10px 15px;
  font-size: 1rem;
  border-radius: 5px;
}

.btn_primary{
 /* background-color: var(--bright-orange); */
 color: var(--white);
 transition: all 0.3s ease-in-out;
}

.btn_primary:hover{
    background-color: var(--dark-orange);
}

.btn:hover {
}

.btn-secondary {
  background-color: var(--color-secondary);
}
.btn-danger {
  background-color: var(--color-danger);
}

/* ===========================
   Responsive Breakpoints
=========================== */
@media (max-width: 1200px) {
  :root {
    --font-size-base: 15px;
  }
}

@media (max-width: 992px) {
  :root {
    --font-size-base: 14px;
  }
}

@media (max-width: 768px) {
  :root {
    --font-size-base: 13px;
  }
  .d-flex {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  :root {
    --font-size-base: 12px;
  }
}

/* ===========================
   Browser Compatibility
=========================== */
/* Fix for older versions of Internet Explorer */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  html {
    font-family: 'Arial', sans-serif;
  }
}

/* Fix for Safari */
@supports (-webkit-touch-callout: none) {
  input,
  textarea {
    font-size: inherit;
  }
}

/* Fix for older versions of Firefox */
@-moz-document url-prefix() {
  input[type='number'] {
    appearance: textfield;
  }
}



/* common utility */
.bbfy_container{
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    max-width: 1440px;
}

.nowrap{
    white-space: nowrap;
}



/* ======= blog details page ========= */
.main-content h1,
.main-content h2,
.main-content h3,
.main-content h4,
.main-content h5,
.main-content h6,
.main-content p{
	margin:0;
	padding:0
}

/* Astra's parent-theme defaults (700 weight, --ast-global-color-2 for
   h1-h6) bleed through since this file never set its own heading
   weight/color - the old theme's defaults happened to be 500/black. */
.main-content h3,
.main-content h4,
.main-content h5,
.main-content h6 {
	font-weight: 500 !important;
}

/* Broad fix: every h1-h6 in the review template bleeds through Astra's
   --ast-global-color-2 purple by default. The two genuinely-orange
   headings (product card title, category name) get !important below too
   so they still win against this. */
.main-content h1,
.main-content h2,
.main-content h3,
.main-content h4,
.main-content h5,
.main-content h6 {
	color: #000 !important;
}

.learn-more-container h5 {
	color: #54595F !important;
}

.main-content{
    width: 100%;
    margin-top: 70px;
}

.blog-heading-wrap{
    width: 100%;
}
.main-content-inner{
    gap: 20px;
    width: 100%;
}
.main-content-inner .blog-heading{
    padding-bottom: 10px;
    flex-grow: 1;
    z-index: 999;
    position: relative;
}

 .related-categories-nav{
    font-size: 1.3rem;
    gap: 10px;
    font-weight: 600;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
 .related-categories-nav svg{
    width: 0.7rem;
}

.main-content-inner .left-empty-space{
    width: 250px;
    min-width: 250px;
    /* TODO: have to delete this */
    /* background-color: gray; */
}

.main-content-inner .blog-title{
    font-size: 45px;
    font-weight: 700;
	margin-block:10px
}


.main-content-inner .blog-meta-info{
  gap: 10px;
}

.main-content-inner .blog-meta{
  width: 60%;
}

.main-content-inner .blog-author-inner{
  width: 40%;
  padding-left: 10px;
  border-left: 1px solid var(--light-gray);
	gap:10px;
}

.main-content-inner .blog-meta{
    /* font-size: 20px;
    line-height: 130%;
    font-weight: 500; */
    margin-top: 10px;
}

/* blog author */
/* .main-content-inner .blog-author-inner{
width: 100%;
}

.main-content-inner .blog-author-inner{
    gap: 10px;
    margin-top: 20px;
} */


.main-content-inner .blog-author-details{
	position:relative;
}


.main-content-inner .author-info{
     display: none;
     padding: 10px 20px;
     border-radius: 10px;
     position:absolute;
     top: 26px;
     background:white;
     box-shadow:1px 1px 20px -8px #514e4e5e;
     border:1px solid #514e4e24;
     max-width:400px;
     width: 400px;
     transform: translateX(-8%);
     text-align: left;
}

.main-content-inner .author-info.active{
  display: block;
}

.main-content-inner .author-info h6{
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.main-content-inner .author-info a{
  color: var(--bright-orange);
  margin-top: 15px;
  display: block;
}
.main-content-inner .author-info a:hover{
  text-decoration: underline;
}


.main-content-inner .author-info span{
  text-decoration: underline;
  margin-top: 5px;
  display: none;
}

.main-content-inner .author-info h4{
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    text-decoration: none;
}

.main-content-inner .author-info .divider{
  margin: 11px 0;
  border: none;
  height: 1px;
  background-color: var(--light-gray);
}

.main-content-inner .social-links {
  gap: 10px;
}


.main-content-inner .social-links svg{
  width: 20px;
  height: 20px;
  margin-top: 5px;
}

.main-content-inner .blog-author-name.flex{
  gap: 5px;
}
.main-content-inner .author-info-activator h4{
    text-decoration: underline;
    cursor: pointer;
    /* margin-bottom: 10px; */
    font-size: 1.1rem;
}

.main-content-inner .blog-author-inner img{
    width: 90px;
    height: 90px;
    border-radius: 100%;
}

.our-work-process-wrap{
  width: 100%;
  margin-top: 40px;
}
.our-work-process-inner{
  width: 100%;
  gap: 10px;
  padding: 20px 0;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  justify-content: start;
}

.our-work-process-inner .test-process{
  min-width: 350px;
}

.our-work-process-inner .test-process h6{
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
  text-align: center;
}

.our-work-process-inner .test-process a{
  color: var(--dark-orange);  
  text-decoration: underline;
  display: block;
  text-align: center;
  cursor:pointer;
}


.our-work-process-inner .test-process-description{
  flex-grow: 1;
  padding-left: 20px;
  border-left: 1px solid var(--light-gray);
  max-width: 600px;
}

/* blog content */
.main-content-inner{
    width: 100%;
    margin-top: 40px;
}

.main-content-inner{
    gap: 20px;
    align-items: start;
    max-width: 1440px;
    padding: 0 20px;
    margin: 0 auto;
	margin-bottom: 200px;
}

.main-content-inner .jumpto-wrap{
    width: 250px;
    min-width: 316px;
    position: sticky;
    top:100px; 
}

.main-content-inner .jumpto-wrap.small-screens{
  display: none;
}

.main-content-inner .jumpto-inner{
    width: 100%;
}

.main-content-inner .jumpto-inner div{
  width: 100%;
  gap: 20px;
}


.main-content-inner .title-container,
.top-best-products-wrap .section-title-container,
.top-tested-products-inner .section-title-container{
    margin-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
    width: 100%;
}

.main-content-inner .jumpto-wrap h4,
.top-best-products-wrap .section-title-container h4,
.top-tested-products-inner .section-title-container h4{
    font-size: 1.5rem;
    position: relative;
    display: inline;
    padding-bottom: 5px;
}

.month-best-selling-inner .section-title-container{
  font-size: 1.5rem;
  border-top: 2px solid var(--bright-orange);
  padding-top: 25px;
  position: relative;
}

.month-best-selling-inner .section-title-container .price-tag-box{
  width: 40px;
  width: 40px;
background-color: var(--bright-orange);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
position: absolute;
top: 0;
left: 50%;
padding: 7px;
transform: translate(-50%,-50%);

}
.month-best-selling-inner .section-title-container img{
  width: 100%;
  height: 100%;
}



.main-content-inner .jumpto-wrap h4::after{
position: absolute;
bottom: -2px;
left: 0;
width: 100%;
height: 4px;
background-color: var(--bright-orange);
content: "";
}


.top-best-products-wrap .section-title-container h4::after,
.top-tested-products-inner .section-title-container h4::after{position: absolute;bottom: -3px;left: 50%;width: 52%;height: 4px;transform:translateX(-50%);background-color: var(--bright-orange);content: "";}

.top-best-products-wrap .top-best-products{
  gap: 30px;
  margin-top: 40px;
}

.main-content-inner .active-product-content{
 display: none;
}

.main-content-inner .jumpto-inner button{
    border: none;
    padding: 0;
    margin: 0;
    outline: none;
    font-size: 1.1rem;
    text-align: left;
    word-wrap: break-word;
    background-color: transparent;
    transition: 0.1s ease-in-out;
    font-weight: 500;
    color: var(--black);
    white-space: normal;
  overflow-wrap: break-word;
}

.main-content-inner .jumpto-inner button:hover{
  color:var(--black);
}

.main-content-inner .jumpto-inner button.active{
    cursor: pointer;
    color: var(--bright-orange);
}

.blog-details-inner{
  width: 100%;
  gap: 20px;
  align-items: start;
  margin-top: 40px;
  z-index: 99;
}

/* blog content wrapper */
.blog-content-wrap{
  width: 100%;
  max-width: 1084px;
  gap: 20px;

}

.blog-info-wrap{
    flex-grow: 1;
    max-width: 768px;
    /* margin: 0 auto; */
}

.blog-info-inner{
    width: 100%;
    /* margin-top: 32px; */
}

.main-content-inner .advertisement-wrap{
    /* width: 100%; */
    position: sticky;
    top:100px;
    min-width: 200px;
    height: 200px;
    flex-grow: 1;
 /* TODO: have to remove this */
    background-color: var(--light-gray);
}

.main-content-inner .advertisement-hide-btn{
  display: none;
}

.main-content-inner .advertisement-title{
  text-align: center;
}

.top-best-products-wrap{
    margin-top: 80px;
}

.top-best-product-card{
    gap: 25px;
    width:100%;
    justify-content:space-between;
}
.top-best-product-card .thum-and-title{
	gap: 20px;
	flex-grow:1;
	/* max-width:560px; */
	width: 62.43%;
}
.top-best-products-wrap .section-title-container{
  text-align: center;
}


.top-best-product-card .product-thum{
    width: 100px;
    min-width: 90px;
    height: 80px;
    border-radius: 6px;
}

.top-best-product-card .product-thum img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.top-best-product-card .details{
	flex-grow:1;
	gap:10px;
	justify-content:space-between
}

.top-best-product-card .price-details{
	gap:20px;
	flex-grow: 1;
	justify-content: space-between;
	max-width: 280px;
}


.top-best-product-card .price{
	font-weight:600
}
.top-best-product-card .price-details p:last-of-type{
	font-weight:600;
	color:var(--bright-orange);
}

.top-best-product-card .price-details .btn{
	background:var(--bright-orange);
	color:var(--white);
	border-radius:50px;
	padding-inline:30px;
	font-weight:600;
	transition:0.3s;
}

.top-best-product-card .price-details .btn:hover{
	background-color: var(--dark-orange);
}
	
.top-best-product-card .details div{
	flex-grow:1;
}

.top-best-product-card .title{
    font-size: 1.05rem;
    margin-bottom: 2px;
	color: var(--dark-orange) !important;
}

.top-best-product-card h4{
    font-size: 1.1rem;
	font-weight:700;
}

.top-best-product-card .info{
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    flex-grow: 1;
}
/* .top-best-product-card .info .details{
    flex-grow: 1;
} */

.top-best-product-card .jump-to-btn{
	 border: none;
    background-color: transparent;
    flex-wrap: nowrap;
    min-width: max-content;
    gap: 10px;
    margin-top: 10px;
    color: var(--black);
    padding: 0;
    position: relative;
    padding-right: 18px;
	color: var(--black)
}

.top-best-product-card .jump-to-btn:hover,
.top-best-product-card .jump-to-btn:selected
{
	color: var(--black)
}

.top-best-product-card .jump-to-btn::after{
    position: absolute;
    top: 50%;
    right: 0;
    background-image: url('../svgs/down-arrow.svg');
    width: 12px;
    height:15px;
    background-repeat: no-repeat;
    transform: translateY(-50%) ;
    background-size: contain;
    content: '';
}


.top-best-product-card .jump-to-btn:hover::after{
  animation: updown 4s ease-in-out infinite ;
}

@keyframes updown{
    0% { transform: translateY(-50%); }
    10% { transform: translateY(-20%); }
    20% { transform: translateY(-50%); }
    30% { transform: translateY(-50%); }
    40% { transform: translateY(-50%); }
    50% { transform: translateY(-50%); }
    60% { transform: translateY(-20%); }
    70% { transform: translateY(-50%); }
    80% { transform: translateY(-50%); }
    90% { transform: translateY(-50%); }
    100% { transform: translateY(-50%); }
}

.top-best-product-card .price-info{
    /* flex-grow: 1; */
    /* background-color: gray; */
    gap: 10px;
}

.top-best-product-card .price-info p{
  font-weight: 600;
}

.top-best-product-card .price-info p .nowrap{
  font-weight: 400;
}

.top-best-product-card .price-info p:last-child{
    color: var(--dark-orange);
    font-weight: 600;
}

.top-best-product-card .price-info .btn{
  background-color: var(--bright-orange);
  color: var(--white);
  font-weight: 600;
  transition: 0.3s ease-out;
  text-align: center;
  display: block;
}

.top-best-product-card .price-info .btn:hover{
  background-color: var(--dark-orange);
}

.top-best-products hr{
  background: transparent;
}

.top-best-products hr:last-of-type{
  display: none;
}


/* best selling of the month */
.month-best-selling-wrap{
  width: 100%;
  margin-top: 100px;
}
.month-best-selling-inner .section-title-container{
  text-align: center;
}
.month-best-selling-inner .best-sell-products{
  gap: 5px;
  margin-bottom: 20px;
  margin-top: 15px;
  text-align: center;
}
.month-best-selling-inner .name{
  color: var(--bright-orange);
  font-weight: 600;
}

.month-best-selling-inner .price{
  font-weight: 600;
}
.month-best-selling-inner .list-price{
  font-style: italic;
}

.month-best-selling-inner .sells-report-team{
  text-align: center;
  font-style: italic;
  color: var(--medium-grey);
}

.month-best-selling-inner{
  border-bottom: 2px solid var(--bright-orange);
  padding-bottom: 25px;
}

/* top tested picks */
.top-tested-products{
  margin-top: 100px;
  margin-bottom: 100px;
}

.top-tested-products-inner .section-title-container{
  text-align: center;
}

.top-tested-products-inner .related-category{
  margin-top: 30px;
  gap: 20px;
  flex-wrap: wrap;
}
.top-tested-products-inner .category{
  padding: 6px 14px;
  border: 1px solid var(--light-gray);
  border-radius: 20px;
  font-weight: 600;
  box-shadow: 0px 0px 20px 0px rgb(235, 235, 235);
  cursor: pointer;
}

.top-tested-products-inner .products{
  margin-top: 40px;
}

.top-tested-products-inner #top-tested-products{
  gap: 60px;
}

.top-tested-products-inner .product-card{
  padding: 15px ;
  border: 1px solid var(--light-gray);
  border-radius: 10px;
}

.top-tested-products-inner .img-and-category-title{
  gap: 20px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--light-gray);
}

.top-tested-products-inner .product-thum{
  width: 45%;
  min-width: 300px;
  max-height: 300px;
  overflow: hidden;
  /* height: auto; */
  height: 300px;
}

.top-tested-products-inner .ratings{
	flex-wrap:wrap;
}

.top-tested-products-inner .product-thum img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.top-tested-products-inner .category-name{
  font-size: 1.2rem;
  color: var(--bright-orange) !important;
}

.top-tested-products-inner .ratings span{
  margin-left: 15px;
  display: inline-block;
  color: var(--bright-orange);
}

.top-tested-products-inner .title{
  font-size: 2rem;
}

.top-tested-products-inner .accordion{
  padding-bottom: 5px;
  border-bottom: 1px solid var(--light-gray);
  margin-bottom: 20px;
}

.top-tested-products-inner .accordion-label{
font-size: 1.1rem;  
padding-bottom: 5px;
}

.top-tested-products-inner .accordion-label h4{
  width: 100%;
  position: relative;
}

.top-tested-products-inner .accordion-label h4::after{
  position: absolute;
    top: 50%;
    right: 0;
    background-image: url('../svgs/arrow-down.svg');
    width: 30px;
    height: 32px;
    background-repeat: no-repeat;
    transform: translateY(-50%) ;
    background-size: contain;
    content: '';
    transition: all 0.3s ease-in-out;
}

.top-tested-products-inner .active .accordion-content {
padding-bottom: 20px;
}

.top-tested-products-inner .accordion-content-inner {
  display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 30px;
}

.top-tested-products-inner .active .accordion-label h4::after{
 transform: translateY(-50%) rotate(180deg);
}

.top-tested-products-inner .accordion-content .pros,
.top-tested-products-inner .accordion-content .cons
{
  gap: 5px;
}

.top-tested-products-inner .accordion-content .pros p,
.top-tested-products-inner .accordion-content .cons p{
  padding-left: 25px;
  position: relative;
}
.top-tested-products-inner .accordion-content .pros p::before,
.top-tested-products-inner .accordion-content .cons p::before{
  top: -3px;
  left: 0;
  position: absolute;
  content: '+';
  color: var(--bright-green);
  font-size: 1.3rem;
}

.top-tested-products-inner .accordion-content .cons p::before{
  content: "_";
  color: red;
  top: -12px;
  font-weight: 600;
}

.top-tested-products-inner .accordion-content{
  margin-top: 15px;
}

.top-tested-products-inner .accordion-content .specs{
  gap: 4px;
  /* margin-top: 15px; */
}
.top-tested-products-inner .accordion-content .specs li{
  gap: 20px;
}
.top-tested-products-inner .accordion-content .specs li span{
  width: 50%;
}

.top-tested-products-inner .cta-container{
  padding: 30px 0;
  gap: 20px;
  border-bottom: 1px solid var(--light-gray);
  margin-bottom: 30px;
}

.top-tested-products-inner .cta-container h4{
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--dark-grey);
}
.top-tested-products-inner .cta-container a{
  background-color: var(--bright-orange);
  color: var(--white);
  font-weight: 600;
  transition: 0.3s ease-out;
}
.top-tested-products-inner .cta-container a:hover{
  background-color: var(--dark-orange);
}

.top-tested-products-inner .cta-btns{
  gap: 20px;
}

.top-tested-products-inner .learn-more-container{
  text-align: center;
  margin-bottom: 20px;
}

.top-tested-products-inner .learn-more-container h5{
  margin-bottom: 5px;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--dark-grey);
}

.top-tested-products-inner .learn-more-container p{
  text-decoration: underline;
  color: var(--bright-orange);
  font-size: 1.2rem;
}

.top-tested-products-inner .buying-guide-wrapper{
  width: 100%;
}


/* How we test page */
.how-we-test{
  max-width: 808px;
  margin: 0 auto;
}
.how-we-test .related-categories-nav{
  margin-bottom: 20px;
}


.how-we-test .blog-author-inner{
  border: none;
  padding-left: 0;
  width: 100%;
  margin: 30px 0;
}




/* responsiveness */
@media screen and (max-width: 1200px){

	body{
		font-size: 16px;
	}

	.main-content {
    margin-top: 30px;
}

.main-content-inner{
  max-width: 1024px;
  margin: 0 auto;
}

.top-best-product-card .info{
    flex-wrap: nowrap;
}
.top-best-product-card .details{
	width:68%;
	/* background:gray; */
}

.blog-details-inner{
  align-items: center;
}

.blog-info-wrap{
  margin-inline: auto;
}

  .blog-info-inner{
    margin-top: 18px;
}
  
  .main-content-inner .left-empty-space{
   display: none;
}

.main-content-inner .jumpto-inner div{
  gap: 25px;
}
  
.main-content-inner .blog-title{
  font-size: 35px;
}

.main-content-inner{
 flex-direction: column;
 
}



.main-content-inner .jumpto-wrap{
  width: 100%;
  background-color: white;
  top:75px; 
  z-index: 20;
  border-bottom: 4px solid var(--bright-orange);
   max-width: 812px;
    margin: 0 auto;
}

.main-content-inner .jumpto-wrap.small-screens {
  display: block;
}

.main-content-inner .jumpto-wrap.large-screens{
  display: none;
}


.main-content-inner .jumpto-inner{
  max-height: 100px;
  max-height: 300px;
  overflow-y: auto;
  display: none;
  border-radius: 8px; 
  box-shadow: 0 0 5px 5px rgba(239, 239, 239, 0.59);
  z-index: 20;
  margin-top: 5px;
}

.main-content-inner .jumpto-inner div{
 flex-direction: column;
  min-height: 100%;
  gap: 10px;
  height: 100%;
  padding: 10px 15px;
}

.main-content-inner .jumpto-inner div button{
  width: 100%;
}

.main-content-inner .active-product-content{
  z-index: 30;
  display: block;
}

.main-content-inner .active-product-content button{
  background-color: transparent;
  border: none;
  outline: none;
  font-size: 1.2rem;
  font-weight:  600;
  position: relative;
  padding-right: 25px;
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 0;
  color: var(--bright-orange);
  white-space: normal;
  padding-right: 30px;
}

.main-content-inner .active-product-content button:hover{
  background-color: transparent;
	color: var(--bright-orange);
}

.main-content-inner .active-product-content button:active,
.main-content-inner .active-product-content button:focus{
  color: var(--bright-orange);
}

.main-content-inner .active-product-content button::after{
    position: absolute;
    top: 50%;
    right: 0;
    background-image: url('../svgs/arrow-down.svg');
    width: 25px;
    height: 27px;
    background-repeat: no-repeat;
    transform: translateY(-50%) ;
    background-size: contain;
    content: '';
    transition: all 0.3s ease-in-out;
}

.main-content-inner .active-product-content.active button::after{
  transform: translateY(-50%) rotate(180deg);
}

.main-content-inner .title-container{
 display: none;
}



  .main-content-inner .advertisement-wrap{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(81, 81, 81, 0.358);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    display: flex;
    align-items:center;
    justify-content: center;
    display: none;
  }

  .main-content-inner .advertisement-inner{
    width: 100%;
    max-width: 600px;
    height: auto;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    position: relative;
  }

  .main-content-inner .advertisement-hide-btn{
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border: none;
    padding: 0;
    margin: 0;
    background-color: transparent;
    outline: none;
    display: block;
  }

  .main-content-inner .advertisement-hide-btn svg{
    width: 100%;
    height: 100%;
  }

  .top-tested-products-inner .title{
    font-size: 1.5rem;
    margin: 5px 0;
  }

  .top-tested-products-inner .product-thum{
    width: 45%;
    min-width: 200px;
  }

}




@media screen and (max-width: 1023px) {
  
}

@media screen and (max-width: 767px) {
  .blog-info-inner{
    margin-top: 16px;
}

  .related-categories-nav svg{
  width: .5rem;
}

  .main-content-inner .blog-title{
    font-size: 25px;
    line-height: 130%;
  }




.main-content-inner .blog-author-inner{
 flex-direction: column;
 align-items:revert;
 padding-left: 20px;
}


.main-content-inner .blog-author-inner img{
  width: 80px;
  height: 80px;
}

.main-content-inner .blog-author-name{
  font-size: 1rem;
}

 .related-categories-nav{
  font-size: 1rem;
  gap: 10px;
  row-gap: 5px;
}

.our-work-process-inner .test-process{
  min-width: 250px;
}

	.top-tested-products-inner .accordion-label h4::after {
    width: 22px;
    height:22px;
}


.month-best-selling-inner .section-title-container .price-tag-box{
  width: 30px;
  width: 30px;
padding: 5px;

}

	.top-best-product-card{
    gap: 25px;
    width:100%;
  flex-direction:column;
}

	.top-tested-products-inner .accordion-label h4 {
    font-size:1.1rem;
}

	.top-best-product-card .thum-and-title {
    gap: 20px;
    flex-grow: 1;
    max-width: 100%;
    width:100%;
    flex-direction:row-reverse;
}

	.top-best-product-card .price-details {
    gap: 20px;
    flex-grow: 1;
    width:100%;
    justify-content: space-between;
    max-width: 100%;
}

}

@media screen and (max-width: 600px) {
  
  .top-tested-products-inner .img-and-category-title{
    flex-direction: column;
    }

    .top-tested-products-inner .product-thum {
      width: 100%;
      min-width: 100%;
  }

  .top-tested-products-inner .title-rating {
    width: 100%;
  }

.top-tested-products-inner .product-thum img {
	max-width:300px;
	margin:0 auto;
	margin-block:20px;
}
    
}


@media screen and (max-width: 540px) {

  .related-categories-nav{
    font-size: 1rem;
  }

  .main-content-inner .jumpto-wrap.small-screens {
    min-width: 200px;
  }

  .main-content-inner .blog-title{
    font-size: 22px;
    margin-top: 20px;
  }

  .our-work-process-inner{
    width: 100%;
    gap: 10px;
    flex-direction: column;
  }

  .our-work-process-inner .test-process-description{
    padding-left: 0px;
    border-left: none;
    padding-left: 0px;
    border-left: none;
  }

  .blog-details-inner {
    margin-top: 32px;
}

	

.top-best-product-card .info{
    flex-wrap: nowrap;
}
.top-best-product-card .details{
	width:68%;
}




.main-content-inner .blog-meta-info{
 flex-direction: column;
 align-items: start;
}



.main-content-inner .blog-author-inner{
  border-left: none;
  padding-left: 0px;
  width: 100%;
  max-width: 100%;
  flex-direction: row;
  align-items: center;
  gap: 10px;
 }

 
 .main-content-inner .blog-meta{
  width: 100%;
  margin-top: 10px;
}


 .our-work-process-wrap{
  margin-top:30px;
}


.main-content-inner .jumpto-wrap h4,
.top-best-products-wrap .section-title-container h4,
.month-best-selling-inner .section-title-container h4,
.top-tested-products-inner .section-title-container h4{
    font-size: 1.2rem;
}

.top-tested-products-inner .related-category{
  /* gap: 10px; */
}

.top-tested-products-inner .img-and-category-title{
flex-direction: column;
}


.top-tested-products-inner .product-thum{
  width: 100%;
  min-width: 100%;
}

.top-tested-products-inner .category-name{
  font-size: 1rem;
}

.top-tested-products-inner .accordion-label{
  font-size: 1rem;  
  }

  .top-tested-products-inner .title{
    font-size: 1.2rem;
  }

  .top-tested-products-inner .ratings {
    flex-wrap: wrap;
    gap: 4px;
    }
  .top-tested-products-inner .ratings span{
    margin-left: 0;
  }

  .top-tested-products-inner .cta-btns{
    gap: 10px;
    flex-direction: column;
  }
  
  .top-tested-products-inner .accordion-content-inner {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

.top-tested-products-inner .accordion-content .specs li{
   flex-direction:column;
	gap:3px;
	border-bottom:1px solid var(--light-gray);
	padding-bottom:5px;
	margin-bottom:10px;
	
}

	.top-tested-products-inner .accordion-content .specs li span{
   width:100%;

}

/* ==========================================================================
   Phase 3: AEO Quick Answer / Article FAQ / Sources & Update Notes.
   ========================================================================== */

.quick-answer-wrap {
	background-color: #FAFAFA;
	border-left: 4px solid var(--bright-orange);
	padding: 16px 20px;
	margin-bottom: 30px;
}

.quick-answer-label {
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--bright-orange);
	margin: 0 0 8px;
}

.quick-answer-wrap .blog-des {
	margin: 0;
}

.article-faq-wrap,
.sources-and-updates-wrap {
	margin-top: 60px;
}

.article-faq-wrap .section-title-container,
.sources-and-updates-wrap .section-title-container {
	margin-bottom: 20px;
	border-bottom: 1px solid var(--light-gray);
	width: 100%;
}

.article-faq-wrap .section-title-container h4,
.sources-and-updates-wrap .section-title-container h4 {
	font-size: 1.5rem;
	position: relative;
	display: inline;
	padding-bottom: 5px;
}

.article-faq .accordion-label h4 {
	font-size: 1.1rem;
}

.sources-and-updates__verified {
	color: var(--dark-gray, #666);
	font-size: 0.95rem;
}

.sources-and-updates__list {
	list-style: disc;
	padding-left: 20px;
	margin-top: 10px;
}

.sources-and-updates__list a {
	color: var(--bright-orange);
}

/* Composite/aggregate rating on per-product cards (Stage 2c, 2026-09-18) -
   reuses the design-system .bbfy-star-rating component's own styling;
   only the label + spacing are specific to this context. */
.product-composite-rating {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-left: 8px;
}

.product-composite-rating__label {
	font-size: 12px;
	color: var(--dark-gray, #666);
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

}