
/* FONT IMPORT */

/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Sofia+Sans+Condensed:ital,wght@0,1..1000;1,1..1000&display=swap");

/* Local Font */
/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */

:root {
  --white: #fff;
  --black: #000;
  --primary: #a97f1b;
  --secondary: #0f1313;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
  font-family: "Instrument Sans", sans-serif;
}

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: #828282;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  margin: 0;
  font-family: "Sofia Sans Condensed", sans-serif;
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.img {
  perspective: none;
  overflow: hidden;
  transform-style: preserve-3d;
}

.img img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform, box-shadow;
  display: block;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

figure {
  margin: 0;
}

/* Cursor Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 7px;
  height: 7px;
  z-index: 10000001;
  background-color: var(--primary);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  opacity: 0.3;
}

/* Cursor End */

/* PRELOADER */

body.loading {
  overflow: hidden;
  height: 100vh;
}

.preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: start;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 11113;
}

.preLoader .counter {
  color: var(--white);
  font-size: 15rem;
  font-family: var(--font-heading);
  font-weight: 700;
  position: absolute;
  bottom: 0rem;
  right: 5rem;
}

.preLoader .bar {
  height: 20%;
  width: 100vw;
  background-color: var(--primary);
}

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
  background-color: #a97f1b;
  font-size: 1.125rem;
  color: var(--white);
  text-transform: capitalize;
  font-weight: bold;
  display: inline-block;
  padding: 1rem 2.5rem;
  line-height: normal;
  border-radius: 50px;
  font-family: "Sofia Sans Condensed";
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.themeBtn.borderBtn {
  background: transparent;
  border: 1px solid #fff;
  padding: 1.04em 2em;
}

/* NAV HEADER CSS */

header {
  margin: 0 auto;
  width: 100%;
  padding: 1.55rem 0 1.55rem 0;
  transition: 0.3s ease-in-out;
  border-radius: 40px 0 40px 0;
  background-color: var(--white);
  position: relative;
  margin-top: -2rem;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-nav {
  align-items: center;
  gap: 2.5rem;
}

.navbar-nav .nav-item .nav-link {
  font-size: 22px;
  color: var(--secondary);
  text-transform: capitalize;
  font-weight: 500;
  padding: 0 0;
  display: inline-block;
  font-family: "Sofia Sans Condensed";
}

/* !NAV HEADER CSS */

/* Drop-Down Css Start */

.navbar .nav-item.drop-down {
  position: relative;
  z-index: 1;
}

.quicklist li a:hover {
  color: var(--white);
}

.navbar .drop-down > a:after {
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  padding-left: 0.625rem;
  color: var(--secondary);
}

.navbar .drop-down ul {
  display: block;
  position: absolute;
  left: 0.875rem;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
  transition: 0.3s;
}

.navbar .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .drop-down li {
  min-width: 200px;
  position: relative;
  list-style: none;
}

.navbar .drop-down ul a {
  padding: 6px 1.0625rem;
  font-weight: 500;
  text-transform: none;
  color: #151515;
  display: block;
  text-transform: capitalize;
  font-family: "Sofia Sans Condensed";
  font-size: 22px;
}

.navbar .drop-down ul a:hover {
  background: var(--primary);
  color: var(--white);
}

/* Drop-Down Css End  */

/* SEARCH BAR CSS */

#search {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translate(0px, -100%) scale(0, 0);
  -moz-transform: translate(0px, -100%) scale(0, 0);
  -o-transform: translate(0px, -100%) scale(0, 0);
  -ms-transform: translate(0px, -100%) scale(0, 0);
  transform: translate(0px, -100%) scale(0, 0);
  opacity: 0;
  z-index: 10000;
}

#search.open {
  -webkit-transform: translate(0px, 0px) scale(1, 1);
  -moz-transform: translate(0px, 0px) scale(1, 1);
  -o-transform: translate(0px, 0px) scale(1, 1);
  -ms-transform: translate(0px, 0px) scale(1, 1);
  transform: translate(0px, 0px) scale(1, 1);
  opacity: 1;
}

#search input[type="search"] {
  position: absolute;
  top: 50%;
  width: 100%;
  color: #fff !important;
  background: rgba(0, 0, 0, 0);
  font-size: 55px;
  line-height: 65px;
  text-align: center;
  border: 0px;
  margin: 0px auto;
  margin-top: -51px;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
}

#search .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 61px;
  margin-left: -45px;
  background-color: limegreen;
  border: black;
}

#search .close {
  position: fixed;
  top: 15px;
  right: 15px;
  color: #fff;
  opacity: 1;
  padding: 10px 17px;
  font-size: 27px;
}

.srch-btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
}

.srch-btn .themeBtn {
  padding: 15px 120px;
  font-size: 20px;
}

/* !SEARCH BAR CSS */

/* Main Banner Css Start */
.mainbanner {
  background: url(https://sad-boy-supplements.myshopify.com/cdn/shop/files/mainBnnr.webp) center/cover no-repeat;
  display: flex;
  height: 800px;
  align-items: center;
}

.top-bar {
  text-align: center;
  background-color: #0f1313;
  padding: 0.625rem 0 3.12rem 0;
  position: relative;
}

.top-bar p {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
}

.main-content h3 {
  font-size: 1;
}

.form-inline .form-control {
  width: 100%;
  border: unset;
  outline: unset;
  box-shadow: unset;
  font-size: 0.875rem;
  font-weight: 500;
  color: #a8a8a8;
  font-family: "Instrument Sans";
}

.form-inline .form-group {
  position: relative;
}

.form-inline .form-group a {
  position: absolute;
  height: fit-content;
  width: fit-content;
  right: 0;
  top: 0;
  color: var(--secondary);
  bottom: 0;
  margin: auto;
  font-size: 1.035rem;
}

.form-inline {
  gap: 3rem;
}

.shopping-bag i {
  height: 3rem;
  width: 3rem;
  display: grid;
  place-items: center;
  border-radius: 50px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 1.125rem;
}

.main-content h3 {
  font-size: 1.125rem;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1.2;
}

.main-content h1 {
  font-size: 6.25rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}

.main-content p {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--white);
  font-family: "Sofia Sans Condensed";
  line-height: 1;
  margin-bottom: 2rem;
}

.main-content .btn-group {
  gap: 1rem;
}

.mainHead {
  font-size: 90px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--secondary);
}

.mainHead span {
  color: #a8a8a8;
}

.main-content .btn-group .themeBtn:last-child {
  background-color: var(--white);
  color: #000;
}

.main-imag {
  margin: 0 -2rem 0 -5rem;
}

/* Main Banner Css End */

/* Brand Sec Css Start */

.brand-img {
  height: 130px;
  width: 140px;
  display: grid;
  place-items: center;
  background-color: #f4f4f4;
  border-radius: 50%;
  margin: 0 auto 1rem;
  overflow: hidden;
}

.brand-main a {
  font-size: 1.25rem;
  font-weight: bold;
  text-transform: capitalize;
  color: var(--secondary);
  font-family: "Sofia Sans Condensed";
  text-align: center;
  display: block;
  white-space: nowrap;
}

/* Brand Sec Css End  */

/* --- Section 7motg6 --- */
.promo-stacks-section {
  padding: 0;
  background-color: #fff;
}

.stack-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 15px;
  padding: 30px 10px 30px 18px;
  overflow: hidden;
  transition: transform 0.3s ease;
  height: 316px;
  width: 530px;
}

.stack-card:hover {
  transform: translateY(-5px);
}

.card-energy {
  background: url(/cdn/shop/files/energybg1_84ff65db-5ce3-4570-b36a-b220467cd0a8.webp?v=1768332533) center/cover no-repeat;
}

.card-energy .price-tag {
  color: #d02f06;
}

.card-strength {
  background: url(/cdn/shop/files/energybg2_301c7670-70b2-419b-a1cd-8d6fa260fd8c.webp?v=1768332533) center/cover no-repeat;
}

.card-strength .price-tag {
  color: #e45b28;
}

.card-mood {
  background: url(/cdn/shop/files/energybg3_f09b8e1f-6229-4f8a-adbf-58fa2c7259af.webp?v=1768332533) center/cover no-repeat;
}

.card-mood .price-tag {
  color: #f30f4f;
}

.stack-content {
  flex: 1;
  margin-right: -70px;
}

.stack-title {
  font-size: 50px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}

.stack-price {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  color: var(--white);
  font-family: "Sofia Sans Condensed";
}

.stack-price span {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.stack-image {
  /* flex-shrink: 0; */
}

.stack-image img {
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
}

@media (max-width: 768px) {
  .stack-title {
    font-size: 1.4rem;
  }

  .stack-card {
    padding: 20px;
  }

  .stack-image {
    flex: 0 0 110px;
  }
}

/* --- Section ipqqws --- */
/* Scoped Styles for Redefine Section */
.rs-section {
  background-color: #fff;
  padding: 60px 0;
  overflow: hidden;
}

.rs-heading {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: #111;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.rs-heading .text-gold {
  color: #cfa32b;
}

.rs-desc {
  font-size: 1.125rem;
  color: #5b5b5b;
  line-height: 1.4;
  margin: 1rem 0 2rem;
}

.rs-btn {
  background-color: #cfa32b;
  color: #fff;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  border: none;
  text-transform: capitalize;
  transition: background 0.3s ease;
}

.rs-btn:hover {
  background-color: #b08922;
  color: #fff;
  text-decoration: none;
}

/* Image Styling */
.rs-img-container {
  position: relative;
  border-radius: 20px;
}

.rs-main-img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.rs-product-img {
  position: absolute;
  bottom: 40px;
  left: -20px;
  width: 35%;
  max-width: 220px;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
  transform: rotate(-5deg);
}

/* Stats List Styling */
.rs-stats-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.rs-stat-item {
  display: flex;
  align-items: center;
  padding: 20px;
  border-radius: 4px;
  background-color: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  border-right: 2px solid #ddd;
  /* Matches the faint line seen on inactive items */
}

.rs-stat-item:last-child {
  border-right: 2px solid #ddd;
}

/* Hover & Active States */
.rs-stat-item.active,
.rs-stat-item:hover {
  background-color: #be9420;
  border-right-color: #be9420;
}

.rs-stat-num {
  font-size: 18px;
  font-weight: bold;
  color: #cfa32b;
  margin-right: 45px;
  /* opacity: 0.8; */
  font-family: "Sofia Sans Condensed";
}

.rs-stat-icon {
  margin-right: 25px;
  /* color: #cfa32b; */
  /* width: 50px; */
  text-align: center;
}

.rs-stat-text {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  line-height: 1.2;
}

.rs-stat-val {
  font-size: 56px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px #cfa32b;
  color: #fff;
  -webkit-text-stroke: 0;
  color: transparent;
  -webkit-text-stroke: 1px #888;
}

.rs-stat-item .rs-stat-val {
  color: transparent;
  -webkit-text-stroke: 1px #aaa;
}

.rs-stat-item .rs-stat-label {
  font-size: 24px;
  font-weight: 900;
  color: #0f1313;
  text-transform: uppercase;
  font-family: "Sofia Sans Condensed" !important;
}

.rs-stat-item.active .rs-stat-num,
.rs-stat-item:hover .rs-stat-num,
.rs-stat-item.active .rs-stat-icon,
.rs-stat-item:hover .rs-stat-icon {
  color: #fff;
}

.rs-stat-item.active .rs-stat-val,
.rs-stat-item:hover .rs-stat-val {
  -webkit-text-stroke: 1px #fff;
  color: transparent;
  color: rgba(255, 255, 255, 0.2);
}

.rs-stat-item.active .rs-stat-label,
.rs-stat-item:hover .rs-stat-label {
  color: #fff;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .rs-product-img {
    width: 30%;
    left: 0;
    bottom: 20px;
  }

  .rs-heading {
    font-size: 2.5rem;
    margin-top: 30px;
  }

  .rs-stat-item {
    border-right: none;
    border-bottom: 1px solid #ddd;
  }
}

/* --- Section caw32p --- */
.mens-health-promo {
  padding: 60px 0 110px;
  overflow: visible;
}

.mens-health-promo .promo-card {
  background-color: #bf941e;
  border-radius: 15px;
  min-height: 180px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.mens-health-promo .offer-number {
  font-size: 140px;
  line-height: 0.8;
  color: #0f1313;
  font-weight: 900;
  font-family: "Sofia Sans Condensed";
}

.mens-health-promo .offer-details {
  line-height: 1;
}

.mens-health-promo .offer-symbol {
  font-size: 4rem;
  font-weight: 900;
  color: #0f1313;
  line-height: 0.8;
  font-family: "Sofia Sans Condensed";
}

.mens-health-promo .offer-text {
  font-size: 4rem;
  font-weight: 900;
  color: #0f1313;
  text-transform: uppercase;
  line-height: 0.9;
  font-family: "Sofia Sans Condensed";
}

.mens-health-promo .info-card {
  overflow: visible;
}

.mens-health-promo .info-text h3 {
  font-weight: 900;
  color: #0f1313;
  font-size: 4rem;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -1px;
}

.mens-health-promo .product-image-container {
  position: absolute;
  right: -20px;
  bottom: -5rem;
  z-index: 10;
}

.mens-health-promo .floating-product {
  transform: rotate(0deg);
  filter: drop-shadow(5px 10px 15px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s ease;
}

.mens-health-promo .info-card:hover .floating-product {
  transform: rotate(0deg) scale(1.05) translateY(-10px);
}

@media (max-width: 991px) {
  .mens-health-promo .info-text h3 {
    font-size: 1.5rem;
    max-width: 70%;
  }

  .mens-health-promo .product-image-container {
    width: 160px;
    right: -10px;
    bottom: -30px;
  }
}

@media (max-width: 767px) {
  .mens-health-promo .promo-card {
    margin-bottom: 20px;
  }

  .mens-health-promo .product-image-container {
    position: relative;
    right: auto;
    bottom: auto;
    width: 150px;
    margin: -40px auto -40px auto;
    transform: none;
  }

  .mens-health-promo .info-card {
    flex-direction: column;
    text-align: center;
    padding-bottom: 50px;
  }

  .mens-health-promo .info-text {
    padding-left: 15px !important;
    padding-right: 15px;
  }

  .mens-health-promo .info-text h3 {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

/* --- Section 9ptcuo --- */
.sale-specials-section {
  background-color: #fff;
  overflow: hidden;
}

/* Swiper Config */
.sale-specials-section .sale-swiper {
  padding-bottom: 20px;
  overflow: visible;
}

.sale-specials-section .swiper-slide {
  height: auto;
  width: 300px;
  /* Base width */
}

/* Promo Banner Card */
.sale-specials-section .ss-promo-card {
  background-color: #0f1313;
  border-radius: 12px;
  padding: 40px 30px 40px 60px;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.sale-specials-section .ss-title {
  font-size: 3rem;
  line-height: 0.9;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.sale-specials-section .ss-subtitle {
  font-size: 22px;
  letter-spacing: 2px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "Sofia Sans Condensed";
  margin-bottom: 1.25rem;
}

.sale-specials-section .ss-btn-primary {
  background-color: #bf9b30;
  border: none;
  border-radius: 50px;
  color: #fff;
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.sale-specials-section .ss-btn-primary:hover {
  background-color: #dcb33b;
  color: #fff;
  transform: translateY(-2px);
}

/* Product Cards */
.sale-specials-section .ss-product-card {
  background-color: #fff;
  border: 1px solid #a4a4a4;
  border-radius: 12px;
  padding: 25px;
  transition: box-shadow 0.3s ease;
}

.sale-specials-section .ss-product-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.sale-specials-section .ss-product-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0f1313;
  text-transform: capitalize;
}

.sale-specials-section .ss-meta-text {
  font-size: 0.875rem;
  color: #a8a8a8;
  font-weight: 600;
}

.sale-specials-section .ss-card-img-wrapper {
  padding: 20px 0;
  background-color: #fafafa;
  border-radius: 8px;
  margin-top: 10px;
}

.sale-specials-section .ss-price {
  font-size: 1.125rem;
  color: #0f1313;
  font-weight: 600;
}

.sale-specials-section .ss-btn-outline {
  background-color: transparent;
  border: 1px solid #bf9b30;
  border-radius: 50px;
  padding: 6px 21px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
  color: #be9420;
}

.sale-specials-section .ss-btn-outline:hover {
  background-color: #bf9b30;
  color: #fff;
}

/* --- Section ihxu6p --- */
.supplement-benefits-section {
  background-color: #f6f6f6;
  padding: 6rem 0 4rem 0;
}

/* Header Styling */
.sb-title {
  text-transform: uppercase;
  font-size: 2.5rem;
  margin-bottom: 0;
}

.sb-title-light {
  color: #adadad;
  font-weight: 700;
}

.sb-title-bold {
  color: #000000;
  font-weight: 900;
}

/* Card Container */
.sb-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  /* Fixed height for uniformity */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.875rem;
}

/* Image Styling */
.sb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sb-card:hover .sb-img {
  transform: scale(1.05);
}

/* Overlay for Text Legibility */

/* Card Text */
.sb-card-text {
  color: #fff;
  font-weight: 900;
  font-size: 44px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: absolute;
  inset: 0;
  height: fit-content;
  width: fit-content;
  margin: auto;
  font-family: "Sofia Sans Condensed";
}

@media (max-width: 768px) {
  .sb-card {
    height: 250px;
  }

  .sb-title {
    font-size: 2rem;
  }
}

/* --- Section o0nv98 --- */
/* Scoped styles for Top Selling Section */
.top-selling-section {
  background-color: #fff;
}

/* Heading Styling */
.ts-heading {
  font-size: 3.5rem;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -1px;
}

.ts-text-gray {
  color: #b0b0b0;
}

.ts-text-black {
  color: #000000;
}

/* View All Link */
.ts-view-all {
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  color: #000 !important;
}

.ts-icon-circle {
  width: 30px;
  height: 30px;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all 0.3s ease;
}

.ts-view-all:hover .ts-icon-circle {
  background-color: #000;
  color: #fff;
  border-color: #000;
}

/* Product Card */
.ts-card {
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  padding: 25px;
  background: #fff;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.ts-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.ts-product-name {
  font-weight: bold;
  font-size: 1.5rem;
  color: #0f1313;
}

.ts-product-sub {
  font-size: 0.875rem;
  color: #a8a8a8 !important;
  margin: 0;
  font-weight: 600;
}

/* Product Images */
/* Price & Badges */
.ts-price {
  font-size: 1.125rem;
  color: #0f1313;
  font-weight: 600;
}

.ts-badge {
  border: 1px solid #d4af37;
  color: #be9420;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  background-color: transparent;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Active/Hover yellow effect based on user instructions */
.ts-badge:hover,
.ts-card:hover .ts-badge {
  background-color: #d4af37;
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .ts-heading {
    font-size: 2.5rem;
    text-align: center;
  }

  .ts-view-all {
    justify-content: center;
  }
}

/* Client Sec Css Start */

.client-sec {
  background: url(/cdn/shop/files/clinetbg_a4de646f-f9df-4960-bd63-360a6c07388e.webp?v=1768507289) center/cover no-repeat;
  padding: 0;
  margin: 3rem 0 0 0;
}

.client-stars {
  display: flex;
  align-items: center;
  gap: 0.325rem;
}

.client-stars li a i {
  color: var(--primary);
}

.client-content p {
  font-size: 2rem;
  font-family: "Sofia Sans Condensed";
  line-height: 1.2;
  color: var(--white);
  margin: 1.125rem 0 2rem 0;
  width: 79%;
}

.client-main {
  padding: 0 0 0 2rem;
}

.client-imag {
  display: flex;
  align-items: center;
  gap: 1.125rem;
}

.client-imag h5 {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--primary);
}

.client-imag h5 span {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--white);
  margin: 0.275rem 0 0 0;
}

.client-img {
  margin: -3rem 0 1.9875rem 0;
}

/* Client Sec Css End */

/* --- Section ijiszv --- */
.learning-partners-section {
  background-color: #fff;
  padding: 6rem 0 5rem 0;
  border-radius: 0 40px 0 40px;
  margin-bottom: -2.5rem;
}

/* Header Styles */
.lc-main-title {
  font-size: 3rem;
  letter-spacing: -1px;
  line-height: 1;
}

.text-secondary-custom {
  color: #a9a9a9;
  font-weight: 700;
}

.text-black-custom {
  color: #000000;
  font-weight: 800;
}

.lc-view-all {
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.lc-view-all:hover {
  color: #555;
  text-decoration: none;
}

/* Card Styles */
.lc-img-wrapper img {
  border-radius: 20px;
}

.lc-badge {
  background: transparent;
  font-weight: 600;
  font-size: 0.875rem;
  border: 1px solid #0f1313;
  padding: 7px 1.5rem;
}

.lc-card-title {
  font-size: 44px;
  line-height: 1.1;
  color: var(--secondary);
  font-weight: 900;
  text-transform: uppercase;
}

.lc-desc {
  color: #5b5b5b;
  line-height: 1.6;
  margin: 1rem 0 3rem;
}

.lc-link {
  color: #0f1313;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid #0f1313;
  padding-bottom: 2px;
  transition: all 0.3s ease;
  font-size: 1.125rem;
}

.lc-link:hover {
  border-bottom-color: #000;
  color: #000;
  text-decoration: none;
}

/* Partners Section */
.partners-header {
  font-size: 1.5rem;
  letter-spacing: 0.5px;
  color: var(--secondary);
  font-weight: 900;
  text-transform: uppercase;
  font-family: "Sofia Sans Condensed";
  margin: 6rem 0 0 0;
}

.partner-box {
  border: 1px solid #e9e9e9;
  border-radius: 12px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 250px;
}

.partner-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.partner-box img {
  filter: grayscale(100%);
  opacity: 0.4;
  transition: all 0.3s ease;
  max-height: 50px;
  max-width: 45%;
  height: auto;

}

.partner-box:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .lc-main-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
  }

  .lc-img-wrapper {
    margin-bottom: 20px;
    text-align: center;
  }

  .lc-img-wrapper img {
    max-width: 100%;
  }
}

/* --- Section sm0cno --- */
.sadboy-footer {
  background-color: #0f1012;
  padding: 95px 0 0 0;
}

.text-gold {
  color: #d4af37;
}

/* Top Bar */
.footer-top .contact-item {
  display: flex;
  align-items: center;
  font-size: 22px;
  color: #fff;
}

.footer-top .social-icons a {
  color: #666;
  margin-left: 1rem;
  font-size: 17px;
  transition: color 0.3s ease;
  border-left: 1px solid #272a2a;
  padding-left: 1rem;
}

.footer-top .social-icons a:hover {
  color: #d4af37;
}

.footer-hr {
  border-top: 1px solid #2a2a2a;
  margin: 0;
}

/* Main Links */
.footer-heading {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #a8a8a8;
  font-size: 1rem;
  font-weight: 600;
  text-transform: capitalize;
  font-family: "Instrument Sans";
}

.footer-links a:hover {
  color: #d4af37;
}

/* Vertical Divider */
.vertical-divider {
  width: 1px;
  height: 100%;
  background-color: #2a2a2a;
}

/* Newsletter */
.newsletter-title {
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 1px;
  font-weight: 900;
  color: #a97f1b;
}

.newsletter-desc {
  color: var(--white);
}

.dark-input {
  background-color: #1a1b1e;
  border: 1px solid #1a1b1e;
  border-radius: 8px;
  color: #fff;
  height: 48px;
  padding: 0 20px;
  border-radius: 50px;
  text-align: center;
}

.dark-input:focus {
  background-color: #222;
  border-color: #333;
  color: #fff;
  box-shadow: none;
}

.btn-white {
  background-color: #fff;
  color: #000;
  border-radius: 25px;
  height: 48px;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease, transform 0.2s;
}

.btn-white:hover {
  background-color: #d4af37;
  color: #fff;
  transform: translateY(-2px);
}

/* Bottom Bar */
.footer-bottom small {
  color: #a8a8a8;
  font-size: 0.875rem;
  font-weight: 500;
}

.payment-icons img {
  opacity: 0.6;
  border-radius: 2px;
  transition: opacity 0.3s;
}

.payment-icons img:hover {
  opacity: 1;
}

.stack-content .themeBtn {
  padding: 1rem 3.75rem;
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
  margin: 1.975rem 0 0 0;
}

.strong-content {
  padding: 0 0 0 1rem;
}

.strong-content .themeBtn {
  padding: 1rem 3.75rem;
  background-color: #be9420;
  margin: 0 0 2rem 0;
}

.info-text {
  padding: 3rem 0 3rem 5rem;
}

.ss-promo-content .mainHead {
  color: var(--white);
}

.ss-promo-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 1rem 1rem 1rem 1rem;
}

.sale-content {
  height: 100%;
}

.ss-promo-content .themeBtn {
  width: fit-content;
  padding: 1rem 142px;
}

.sale-specials-section::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 6%;
  background-color: var(--white);
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 111;
}

.ts-card-img-wrapper {
  background-color: #fafafa;
  height: 343px;
  width: 330px;
  display: grid;
  place-items: center;
}

.clientslider .swiper-pagination {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  bottom: 0;
  margin: auto;
  align-items: center;
  right: 0;
  left: unset;
  width: fit-content;
  height: fit-content;
  top: 0;
}

.clientslider .swiper-pagination-bullet {
  height: 10px;
  background-color: #ada1a1;
  width: 10px;
  transition: 0.5s ease;
}

.clientslider .swiper-pagination-bullet-active {
  background: transparent;
  border: 2px solid #be9420;
  height: 12px;
  width: 12px;
}

.rs-stat-item:hover .rs-stat-icon img {
  filter: brightness(0) invert(1);
}

.partners-header span:nth-child(2) {
  color: #0f1313;
}

.partners-header span {
  color: #a8a8a8;
}

.footer-top .contact-item span {
  font-size: 1rem;
  font-weight: 600;
}

.footer-top .social-icons a:first-child {
  border: unset;
}

.footer-top {
  padding-bottom: 3rem;
}

.sb-card-text:hover {
  color: var(--primary);
}

.themeBtn::before {
  position: absolute;
  content: "";
  height: 0%;
  width: 100%;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  transition: 0.6s ease;
  background-color: var(--secondary);
  z-index: -2;
}

.themeBtn:hover::before {
  height: 100%;
}

.themeBtn:hover {
  color: var(--white);
}

.main-content .btn-group .themeBtn:last-child:hover {
  color: var(--white);
}

.brand-sec .mainHead {
  margin: 0 0 2rem 0;
}

.stack-content .themeBtn:hover {
  border-color: var(--secondary);
}

.strong-content .mainHead span {
  color: var(--primary);
}

.navbar-nav .nav-item .nav-link:hover {
  color: var(--primary);
}

.brand-img img {
  transition: 0.6s ease;
}

.brand-img:hover img {
  transform: scale(1.2);
}
.client-imag img {
  width: 10%;
  height: auto;
}
.ss-promo-content a.themeBtn:hover {
  color: #000;
}

.ss-promo-content .themeBtn::before {
  background: #fff;
}

/* Inner Pages Css Start */

.about-bottom p + p {
  margin: 0;
}
section.rs-section.about-page .rs-desc {
  font-size: 1rem;
}
.innerbanner {
  background: url(https://sad-boy-supplements.myshopify.com/cdn/shop/files/mainBnnr.webp) center/cover no-repeat;
}

.innerbanner h2 {
  font-size: 6.25rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -1px;
}

.rs-section.about-page {
  padding: 6rem 0 2rem 0;
}
.community-sec {
  padding: 5rem 0 1.5rem 0;
}

.community-sec .mainHead {
  margin: 0 0 1.75rem 0;
}

.community-main {
  background-color: #ede8ea;
  border-radius: 20px;
  margin: 0 0 2rem 0;
}

.community-content h2 {
  font-size: 44px;
  font-weight: 900;
  text-transform: uppercase;
  color: #0f1313;
  line-height: 1.2;
  margin: 0 0 0.5rem 0;
}

.community-content p {
  color: #5b5b5b;
  line-height: 1.6;
}

.community-content {
  padding: 2.5rem 2.5rem 3.5rem 2.5rem;
}

section.top-selling-section.shop-page
  .row.align-items-center.mb-5.aos-init.aos-animate {
  margin: 0 0 1rem !important;
}

section.community-sec.learn-page .community-main {
  background-color: var(--white);
  border: 1px solid #888888;
}

section.community-sec.learn-page .community-content {
  padding: 1.25rem 2.5rem 2.5rem 2.5rem;
}

.community-content a {
  font-size: 1.125rem;
  font-weight: bold;
  color: #0f1313;
  margin: 1.25rem 0 0 0;
  border-bottom: 2px solid #0f1313;
}

.learn-page .community-content p {
  margin-bottom: 1.25rem;
}

.learn-page .community-main img {
  border-radius: 14px;
}

section.learn-logo .partners-header {
  margin: 0;
}

.learn-logo {
  padding: 0 0 6rem 0;
}

/* Faq Sec Css Start */
.faq-sec #accordion {
  border: 0;
  border-radius: 0;
}

.faqt-top .subHead {
  color: var(--black);
  margin-bottom: 0.4rem;
}

.faq-sec #accordion .card {
  background: #fff;
  border: 1px solid #cfcfcf;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.6s ease;
}

.faq-sec #accordion .card .btn-link {
  width: 100%;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;
  background-color: transparent;
  font-size: 22px;
  font-weight: 600;
  text-align: left;
  padding: 1rem 1.25rem;
  border: none;
  outline: none;
  transition: all 0.3s ease;
  font-family: "Instrument Sans";
}

.faq-sec #accordion .card .btn-link i {
  transition: transform 0.3s ease;
  color: #a97f1b;
  font-weight: 400;
  font-size: 1.5rem;
}

.faq-sec #accordion .card .btn-link i::before {
  content: "\f068";
}

.faq-sec #accordion .card .btn-link.collapsed i::before {
  content: "\f067";
}

.faq-sec #accordion .card .btn-link.collapsed {
  background-color: #fff;
  color: #000;
}

.faq-sec #accordion .card .collapse.show,
.faq-sec #accordion .card[aria-expanded="true"],
.faq-sec #accordion .card .btn-link[aria-expanded="true"] {
  background-color: unset;
  color: #000;
  border-radius: 0;
  border-bottom: unset;
  padding-bottom: 0;
}

.faq-sec #accordion .card .btn-link[aria-expanded="true"] i {
  color: #fff;
}

.faq-sec #accordion .card .card-body {
  padding: 0 28px 30px 28px;
  font-size: 14px;
  color: #000;
  background-color: transparent;
  transition: all 0.3s ease;
  border-radius: 0;
}

.faq-sec #accordion .card .card-body p {
  margin: 0;
  color: #5b5b5b;
  line-height: 1.9;
  font-weight: 500;
  letter-spacing: -0.5px;
  width: 87%;
}

.faq-sec #accordion .card + .card {
  margin-top: 1rem;
}

.faq-sec #accordion .collapse {
  transition: height 0.4s ease;
  overflow: hidden;
}

.faq-sec .card h5 {
  margin: 0;
}

/* Faq Sec Css End */

.support-main {
  text-align: center;
  border-radius: 20px;
  border: 1px solid #a4a4a4;
  padding: 66px 0px 54px 0px;
  height: 100%;
}

.support-imag figure {
  height: 144px;
  background-color: #a97f1b;
  width: 144px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin: 0 auto 1rem;
  transition: 0.6s ease;
}

.support-imag span {
  display: block;
  font-size: 44px;
  font-weight: 900;
  text-transform: uppercase;
  color: #0f1313;
  font-family: "Sofia Sans Condensed";
  line-height: 1;
  margin: 0 0 0.5rem 0;
}

.support-main p {
  color: #5b5b5b;
  line-height: 1.6;
}

.info-btn {
  display: block;
  margin: 1rem 0;
  font-size: 1.5rem;
  font-weight: bold;
  color: #0f1313;
  font-family: "Sofia Sans Condensed";
}

.support-content .themeBtn {
  padding: 12px 130px;
}

.support-main:hover figure {
  background-color: #a4a4a4;
}

.support-main:hover .themeBtn {
  background-color: #0f1313;
}

.support-main:hover figure img {
  filter: brightness(0.9) invert(1);
}

.support-main figure img {
  transition: 0.6s ease;
}
.faq-sec .mainHead {
  margin-bottom: 2rem;
}
.support-sec {
  padding: 6rem 0 2rem 0;
}

.contact-main p {
  color: #5b5b5b;
  margin: 0 0 1rem 0;
}

.contact-main form .form-control {
  height: 74px;
  border: 1px solid #cfcfcf;
  outline: unset;
  box-shadow: unset;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 400;
  color: #999999;
  font-family: "Instrument Sans";
}

.contact-main form label {
  font-size: 1rem;
  font-weight: 500;
  text-transform: capitalize;
  color: #545454;
}

.contact-main form button {
  width: 100%;
  border: unset;
  background-color: #be9420;
}

.contact-main ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
  margin: 1.825rem 0 0 0;
}

.contact-main ul li a i {
  font-size: 1.55rem;
  color: #a8a8a8;
}

.contact-form {
  padding: 6rem 0 6rem;
  border-radius: 0 0 40px 40px;
  margin: 0 0 -30px 0;
  background-color: var(--white);
}

.about-bottom {
  margin: 2.25rem 0 0 0;
}
/* Inner Pages Css End */


#shopify-section-sections--19282472665286__header_section .menu-list__link-title {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  padding: 0 20px;
}
#shopify-section-sections--19282472665286__header_section .header-menu__inner {
  margin-left:170px;
 
}
#shopify-section-sections--19282472665286__header_section .menu-list {
  gap: 10px;
}

.footer-logo.footer-logo .img-fluid {
width: 60% !important;

}



#shopify-section-template--19575022026950__section_KJrNmc .line {
  max-width: 100% !important;
  margin: 0 auto;
}

#shopify-section-template--19575022026950__section_KJrNmc .border-style.custom-section-content {
    width: 1720px !important;
}
#shopify-section-template--19575022026950__section_KJrNmc .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column {
  margin-left: -85px !important;
}
 #shopify-section-template--19575022026950__section_KJrNmc {
  margin-bottom: 39px;
}


@media only screen and (max-width: 1920px) and (min-width: 1500px) {
  .container {
    max-width: 1640px !important;
  }
}

@media only screen and (max-width: 1600px) {
}

@media only screen and (max-width: 1445px) {
}

@media only screen and (max-width: 1366px) {
  html {
    font-size: 15px;
  }
}

@media (max-width: 1199.98px) {
  html {
    font-size: 14px;
  }
}

@media (max-width: 991.98px) {
  html {
    font-size: 13px;
  }
}

@media (max-width: 767.98px) {
  html {
    font-size: 12px;
  }
}

@media (max-width: 575.98px) {
}

@media (max-width: 320.98px) {
}
