/*
Theme Name: Draftspot Theme
Theme URI: http://example.com/draftspot-theme
Description: Custom theme based on Figma design for HQD Shop
Author: Gemini
Author URI: http://example.com
Version: 1.2
Text Domain: draftspot-theme
*/
:root {
  --bg-color: #0a0a1d;
  --text-color: #ffffff;
  --primary-color: #266bf2;
  --font-body: Poppins, Helvetica, Arial, sans-serif;
}

/*
Theme Name: Draftspot Theme
Theme URI: http://example.com/draftspot-theme
Description: Custom theme based on Figma design for HQD Shop
Author: Gemini
Author URI: http://example.com
Version: 1.2
Text Domain: draftspot-theme
*/
body {
  background-color: #0a0a1d; /* Fallback SCSS */
  background-color: var(--bg-color); /* CSS Var */
  color: #ffffff;
  color: var(--text-color);
  font-family: "Poppins", Helvetica, Arial, sans-serif; /* Force Poppins everywhere */
  font-family: var(--font-body);
  margin: 0;
  overflow-x: hidden;
}

/* Force override for potential Bootstrap leaks */
p, h1, h2, h3, h4, h5, h6, span, div, a, button, input {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  color: var(--primary-color);
}

/*
Theme Name: Draftspot Theme
Theme URI: http://example.com/draftspot-theme
Description: Custom theme based on Figma design for HQD Shop
Author: Gemini
Author URI: http://example.com
Version: 1.2
Text Domain: draftspot-theme
*/
h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
}

h1 {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
}
@media (min-width: 992px) {
  h1 {
    font-size: 65px;
    line-height: 80px;
  }
}

h2 {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 1rem;
}

h3 {
  font-weight: 600;
  font-size: 24px;
}

/*
Theme Name: Draftspot Theme
Theme URI: http://example.com/draftspot-theme
Description: Custom theme based on Figma design for HQD Shop
Author: Gemini
Author URI: http://example.com
Version: 1.2
Text Domain: draftspot-theme
*/
.ds_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3.25em;
  padding: 0 1.875em;
  border-radius: 6.25em;
  background: linear-gradient(90deg, #266bf2 0%, #1919bf 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 1em;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
  text-decoration: none;
  gap: 0.625em;
}
.ds_btn:hover {
  color: #ffffff;
  transform: scale(1.02);
}
.ds_btn.secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.ds_btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}
.ds_btn span {
  position: relative;
  top: 1px;
}
.ds_btn svg {
  width: 1.5em;
  height: 1.5em;
  fill: currentColor;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

/*
Theme Name: Draftspot Theme
Theme URI: http://example.com/draftspot-theme
Description: Custom theme based on Figma design for HQD Shop
Author: Gemini
Author URI: http://example.com
Version: 1.2
Text Domain: draftspot-theme
*/
.ds_hero-section {
  position: relative;
  padding-top: 150px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ds_bg-blob-1 {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(50% 50% at 50% 50%, rgba(33, 75, 222, 0.4) 0%, rgba(11, 11, 23, 0) 70%);
  filter: blur(100px);
  z-index: -1;
  border-radius: 50%;
}

.ds_bg-blob-2 {
  position: absolute;
  top: 20%;
  right: -20%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(50% 50% at 50% 50%, rgba(33, 75, 222, 0.3) 0%, rgba(11, 11, 23, 0) 70%);
  filter: blur(100px);
  z-index: -1;
  border-radius: 50%;
}

.ds_hero-subtitle {
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
  display: block;
  font-weight: 400;
}

.ds_hero-badges {
  font-size: 24px;
  font-weight: 600;
  opacity: 0.8;
  margin-bottom: 40px;
  color: #fff;
}

.ds_hero-image-container {
  position: relative;
}
.ds_hero-image-container > img {
  max-width: 120%;
  width: auto;
  margin-right: -10%;
  animation: float 6s ease-in-out infinite;
}

.ds_price-bubble-container {
  position: absolute;
  bottom: 20%;
  left: 10%;
  z-index: 10;
}
.ds_price-bubble-container .price-main {
  position: relative;
  background: #fff;
  width: 120px;
  height: 120px;
  background: radial-gradient(116.18% 116.18% at 50% 50%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ds_price-bubble-container .price-main span {
  font-family: "Poppins", Helvetica;
  font-weight: 700;
  font-size: 32px;
  color: #fff;
}
.ds_price-bubble-container .price-old {
  position: absolute;
  top: -20px;
  right: -20px;
}
.ds_price-bubble-container .price-old span {
  font-family: "Poppins", Helvetica;
  font-weight: 600;
  color: #fff;
  font-size: 20px;
}
.ds_price-bubble-container .price-old .strike-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  transform: translateY(-50%);
  animation: none !important;
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-20px);
  }
  100% {
    transform: translatey(0px);
  }
}
/*
Theme Name: Draftspot Theme
Theme URI: http://example.com/draftspot-theme
Description: Custom theme based on Figma design for HQD Shop
Author: Gemini
Author URI: http://example.com
Version: 1.2
Text Domain: draftspot-theme
*/
.ds_image-text-block {
  padding: 6.25em 0;
  position: relative;
}
.ds_image-text-block .block-subtitle {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-size: 0.9375em;
  color: #fff;
  margin-bottom: 0.5em;
  display: block;
}
.ds_image-text-block .block-title {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 4.0625em;
  line-height: 1.23;
  color: #fff;
  margin-bottom: 1em;
}
@media (max-width: 992px) {
  .ds_image-text-block .block-title {
    font-size: 2.5em;
    line-height: 1.2;
  }
}
.ds_image-text-block .block-text-intro {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 0.9375em;
  line-height: 1.73;
  color: #ffffff;
  margin-bottom: 1.5em;
}
.ds_image-text-block .block-text-content {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 0.9375em;
  line-height: 1.73;
  color: #ffffff;
  margin-bottom: 3em;
  opacity: 0.8;
}
.ds_image-text-block .block-image-wrapper {
  position: relative;
}
.ds_image-text-block .block-image-wrapper img.main-img {
  width: 100%;
  height: auto;
  border-radius: 1.25em;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.ds_image-text-block .block-image-wrapper .logo-overlay {
  position: absolute;
  top: 30%;
  right: -10%;
  text-align: center;
}
.ds_image-text-block .block-image-wrapper .logo-overlay .logo-text-main {
  font-family: "Audiowide", cursive;
  font-size: 2.8em;
  color: #fff;
  display: block;
  line-height: 1;
  margin-bottom: 0.2em;
}
.ds_image-text-block .block-image-wrapper .logo-overlay .logo-text-sub {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 1.5em;
  color: #fff;
}
@media (max-width: 1200px) {
  .ds_image-text-block .block-image-wrapper .logo-overlay {
    right: 5%;
  }
  .ds_image-text-block .block-image-wrapper .logo-overlay .logo-text-main {
    font-size: 2em;
  }
  .ds_image-text-block .block-image-wrapper .logo-overlay .logo-text-sub {
    font-size: 1em;
  }
}

/*
Theme Name: Draftspot Theme
Theme URI: http://example.com/draftspot-theme
Description: Custom theme based on Figma design for HQD Shop
Author: Gemini
Author URI: http://example.com
Version: 1.2
Text Domain: draftspot-theme
*/
.ds_features-section {
  padding: 60px 0;
  position: relative;
  z-index: 2;
}

.ds_feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0; /* Removed padding */
  background: transparent; /* Removed background */
  border: none; /* Removed border */
  border-radius: 0;
  height: auto;
  transition: none; /* Removed hover effect */
}
.ds_feature-item:hover {
  transform: none;
  background: transparent;
}
.ds_feature-item img {
  width: 51px; /* Exact size from CSS */
  height: 51px;
  object-fit: contain;
}
.ds_feature-item .feature-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ds_feature-item .feature-text h3 {
  font-family: "Poppins", Helvetica;
  font-weight: 800; /* Exact weight */
  color: #ffffff;
  font-size: 20px; /* Exact size */
  letter-spacing: 0;
  line-height: 20px;
  margin: 0;
  white-space: nowrap;
}
.ds_feature-item .feature-text p {
  font-family: "Poppins", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 15px; /* Exact size */
  opacity: 0.6;
  letter-spacing: 0;
  line-height: 15px;
  margin: 0;
  white-space: nowrap;
}

/*
Theme Name: Draftspot Theme
Theme URI: http://example.com/draftspot-theme
Description: Custom theme based on Figma design for HQD Shop
Author: Gemini
Author URI: http://example.com
Version: 1.2
Text Domain: draftspot-theme
*/
.ds_contact-hero {
  padding: 100px 0;
  position: relative;
}
.ds_contact-hero .company-name {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: #fff;
  margin-bottom: 20px;
}
.ds_contact-hero .company-details {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  color: #fff;
  font-size: 15px;
  line-height: 26px;
  opacity: 0.8;
}
.ds_contact-hero .company-details .label {
  font-weight: 700;
  margin-right: 5px;
}
.ds_contact-hero .company-details p {
  margin-bottom: 15px;
}
.ds_contact-hero .contact-info-box {
  background-color: #121224;
  border-radius: 15px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  margin-top: 40px;
}
.ds_contact-hero .contact-info-box a {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  text-decoration: underline;
  margin-bottom: 15px;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
}
.ds_contact-hero .contact-info-box a:last-child {
  margin-bottom: 0;
}
.ds_contact-hero .contact-info-box a:hover {
  text-decoration: none;
  opacity: 0.8;
}
.ds_contact-hero .contact-form-wrapper {
  background: linear-gradient(90deg, #266bf2 0%, #1919bf 100%);
  border-radius: 15px;
  padding: 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}
.ds_contact-hero .contact-form-wrapper h3 {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 25px;
  margin-bottom: 30px;
  text-align: center;
}
.ds_contact-hero .contact-form-wrapper .form-group {
  margin-bottom: 20px;
}
.ds_contact-hero .contact-form-wrapper input[type=text], .ds_contact-hero .contact-form-wrapper input[type=email], .ds_contact-hero .contact-form-wrapper input[type=tel], .ds_contact-hero .contact-form-wrapper textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 10px;
  padding: 15px;
  color: #fff;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
}
.ds_contact-hero .contact-form-wrapper input[type=text]:focus, .ds_contact-hero .contact-form-wrapper input[type=email]:focus, .ds_contact-hero .contact-form-wrapper input[type=tel]:focus, .ds_contact-hero .contact-form-wrapper textarea:focus {
  outline: none;
  border-color: #fff !important;
  background: rgba(255, 255, 255, 0.1);
}
.ds_contact-hero .contact-form-wrapper input[type=text]::placeholder, .ds_contact-hero .contact-form-wrapper input[type=email]::placeholder, .ds_contact-hero .contact-form-wrapper input[type=tel]::placeholder, .ds_contact-hero .contact-form-wrapper textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.ds_contact-hero .contact-form-wrapper label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 14px;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
}
.ds_contact-hero .contact-form-wrapper label span.required {
  color: #ff0000;
}
.ds_contact-hero .contact-form-wrapper .submit-btn, .ds_contact-hero .contact-form-wrapper input[type=submit] {
  background: #fff;
  color: #000;
  font-weight: 700;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-size: 16px;
  border-radius: 100px;
  padding: 15px 40px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.2s;
  width: auto;
  min-width: 150px;
}
.ds_contact-hero .contact-form-wrapper .submit-btn:hover, .ds_contact-hero .contact-form-wrapper input[type=submit]:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.ds_contact-hero .contact-form-wrapper .checkbox-row {
  margin-bottom: 30px;
}
.ds_contact-hero .contact-form-wrapper .checkbox-row .custom-checkbox-container {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 13px;
  user-select: none;
}
.ds_contact-hero .contact-form-wrapper .checkbox-row .custom-checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.ds_contact-hero .contact-form-wrapper .checkbox-row .custom-checkbox-container input:checked ~ .checkmark:after {
  display: block;
}
.ds_contact-hero .contact-form-wrapper .checkbox-row .custom-checkbox-container .checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 23px;
  width: 23px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1.15px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.ds_contact-hero .contact-form-wrapper .checkbox-row .custom-checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}
.ds_contact-hero .contact-form-wrapper .checkbox-row .custom-checkbox-container .text {
  font-weight: 400;
  color: #fff;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
}

.ds_locations-section {
  padding: 80px 0;
  text-align: center;
  position: relative;
}
.ds_locations-section .section-subtitle {
  color: #b2593e;
  font-weight: 600;
  font-size: 15px;
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
}
.ds_locations-section .section-title {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 45px;
  color: #fff;
  margin-bottom: 60px;
}
.ds_locations-section .map-placeholder {
  background: #1e1e2d;
  border-radius: 15px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  height: 465px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-family: "Poppins", Helvetica, Arial, sans-serif;
}

/*
Theme Name: Draftspot Theme
Theme URI: http://example.com/draftspot-theme
Description: Custom theme based on Figma design for HQD Shop
Author: Gemini
Author URI: http://example.com
Version: 1.2
Text Domain: draftspot-theme
*/
.ds_battle-pass-page {
  background-color: var(--bg-color);
  padding: 150px 0 100px;
  position: relative;
  overflow-x: hidden;
  color: #fff;
  min-height: 100vh;
}
.ds_battle-pass-page .ds_container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}
.ds_battle-pass-page .ds_bp-header {
  text-align: center;
  margin-bottom: 50px;
}
.ds_battle-pass-page .ds_bp-header .ds_subtitle {
  display: block;
  background: linear-gradient(90deg, #7ac961 0%, #1d8817 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ds_battle-pass-page .ds_bp-header .ds_title {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 10px;
}
.ds_battle-pass-page .ds_bp-header .ds_desc {
  font-size: 15px;
  opacity: 0.8;
}
.ds_battle-pass-page .ds_bp-controls {
  position: absolute;
  top: 150px;
  right: 10%;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
}
@media (max-width: 992px) {
  .ds_battle-pass-page .ds_bp-controls {
    position: relative;
    top: 0;
    right: 0;
    justify-content: center;
    margin-bottom: 30px;
  }
}
.ds_battle-pass-page .ds_bp-controls .ds_nav-arrow {
  background: none;
  border: none;
  cursor: pointer;
  width: 50px;
  height: 50px;
  transition: opacity 0.3s;
}
.ds_battle-pass-page .ds_bp-controls .ds_nav-arrow:hover {
  opacity: 0.7;
}
.ds_battle-pass-page .ds_bp-controls .ds_nav-arrow img {
  width: 100%;
  height: 100%;
}
.ds_battle-pass-page .ds_bp-controls .ds_counter {
  font-size: 18px;
  font-weight: 800;
  min-width: 40px;
  text-align: center;
}
.ds_battle-pass-page .ds_bp-swiper {
  width: 100%;
  padding-bottom: 50px;
  overflow: visible;
}
.ds_battle-pass-page .ds_bp-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 350px;
}
.ds_battle-pass-page .ds_bp-card {
  width: 336px;
  height: 446px;
  position: relative;
  border-radius: 25px;
  transition: opacity 0.3s;
}
.ds_battle-pass-page .ds_bp-card.ds_card-top {
  margin-bottom: 0;
}
.ds_battle-pass-page .ds_bp-card.ds_card-bottom {
  margin-top: 0;
}
.ds_battle-pass-page .ds_bp-card.ds_locked .ds_card-bg {
  opacity: 0.2;
}
.ds_battle-pass-page .ds_bp-card.ds_locked .ds_card-title, .ds_battle-pass-page .ds_bp-card.ds_locked .ds_card-points {
  opacity: 0.2;
}
.ds_battle-pass-page .ds_bp-card.ds_locked .ds_card-img {
  filter: grayscale(1);
  opacity: 0.5;
}
.ds_battle-pass-page .ds_bp-card.ds_claimed .ds_card-bg {
  background: #2d422b;
  opacity: 1;
}
.ds_battle-pass-page .ds_bp-card .ds_card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ds_battle-pass-page .ds_bp-card .ds_card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #202037;
  border-radius: 25px;
  z-index: 0;
}
.ds_battle-pass-page .ds_bp-card .ds_lock-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 24px;
}
.ds_battle-pass-page .ds_bp-card .ds_card-title {
  position: relative;
  z-index: 1;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  margin-top: 40px;
  text-transform: uppercase;
}
.ds_battle-pass-page .ds_bp-card .ds_card-points {
  position: relative;
  z-index: 1;
  font-weight: 800;
  font-size: 24px;
  background: linear-gradient(90deg, #e2a530 0%, #8c5908 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 10px;
}
.ds_battle-pass-page .ds_bp-card .ds_card-status {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  font-size: 13px;
}
.ds_battle-pass-page .ds_bp-card .ds_card-status .text-orange {
  color: #e2a530;
}
.ds_battle-pass-page .ds_bp-card .ds_card-status .text-green {
  color: #7ac961;
}
.ds_battle-pass-page .ds_bp-card .ds_card-img {
  position: absolute;
  z-index: 1;
  top: -40px;
  width: 180px;
  height: auto;
}
.ds_battle-pass-page .ds_bp-card .ds_btn {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: none;
  border: none;
  z-index: 2;
  cursor: pointer;
}
.ds_battle-pass-page .ds_bp-card .ds_btn:disabled {
  cursor: default;
  opacity: 0.5;
}
.ds_battle-pass-page .ds_bp-card .ds_btn .ds_btn-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #e2a530 0%, #8c5908 100%);
  border-radius: 0 0 25px 25px;
  border-radius: 100px;
  height: 52px;
  bottom: 20px;
  top: auto;
  width: 200px;
  left: 50%;
  transform: translateX(-50%);
}
.ds_battle-pass-page .ds_bp-card .ds_btn .ds_btn-text {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
}
.ds_battle-pass-page .ds_bp-card .ds_btn .ds_btn-icon-bg {
  position: absolute;
  bottom: 26px;
  right: 75px;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ds_battle-pass-page .ds_bp-card .ds_btn .ds_btn-icon-bg img {
  width: 20px;
}
.ds_battle-pass-page .ds_bp-connector {
  position: relative;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ds_battle-pass-page .ds_bp-connector .ds_number-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #202037;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 24px;
  z-index: 2;
  position: relative;
}
.ds_battle-pass-page .ds_bp-connector .ds_number-circle.ds_active {
  background: linear-gradient(90deg, #7ac961 0%, #1d8817 100%);
}
.ds_battle-pass-page .ds_bp-connector .ds_line {
  position: absolute;
  top: 50%;
  height: 4px;
  transform: translateY(-50%);
  z-index: 1;
}
.ds_battle-pass-page .ds_bp-connector .ds_line.ds_line-left {
  left: 0;
  right: 50%;
}
.ds_battle-pass-page .ds_bp-connector .ds_line.ds_line-right {
  left: 50%;
  right: 0;
}
.ds_battle-pass-page .ds_bp-connector .ds_line.ds_line-dark {
  background-color: rgba(255, 255, 255, 0.2);
}
.ds_battle-pass-page .ds_bp-connector .ds_line.ds_line-green {
  background-color: #7ac961;
}
.ds_battle-pass-page .ds_bp-connector .ds_line.ds_line-orange {
  background: none;
  background-image: linear-gradient(to right, #e2a530 50%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 20px 4px;
  background-repeat: repeat-x;
  height: 4px;
}

/*
Theme Name: Draftspot Theme
Theme URI: http://example.com/draftspot-theme
Description: Custom theme based on Figma design for HQD Shop
Author: Gemini
Author URI: http://example.com
Version: 1.2
Text Domain: draftspot-theme
*/
.ds_categories-section {
  padding: 3.75em 0;
}

.ds_category-card {
  position: relative;
  border-radius: 1.5625em;
  overflow: hidden;
  height: 20.4375em;
  padding: 0;
  display: block;
  transition: transform 0.3s;
  box-shadow: 0 0 1.25em rgba(0, 0, 0, 0.15);
  margin-bottom: 1.875em;
  text-decoration: none;
  background: #266bf2;
}
.ds_category-card:hover {
  transform: translateY(-5px);
}
.ds_category-card:hover .category-link-text {
  opacity: 1;
  transform: translateY(0);
}
.ds_category-card.card-puky {
  background: linear-gradient(90deg, rgb(178, 89, 62) 0%, rgb(140, 35, 25) 100%);
}
.ds_category-card.card-puky:hover {
  background: linear-gradient(-90deg, rgb(178, 89, 62) 0%, rgb(140, 35, 25) 100%);
}
.ds_category-card.card-eos {
  background: linear-gradient(90deg, rgb(38, 107, 242) 0%, rgb(25, 25, 191) 100%);
}
.ds_category-card.card-eos:hover {
  background: linear-gradient(-90deg, rgb(38, 107, 242) 0%, rgb(25, 25, 191) 100%);
}
.ds_category-card.card-eos2 {
  background: linear-gradient(90deg, rgb(174, 52, 245) 0%, rgb(101, 22, 162) 100%);
}
.ds_category-card.card-eos2:hover {
  background: linear-gradient(-90deg, rgb(174, 52, 245) 0%, rgb(101, 22, 162) 100%);
}
.ds_category-card.card-rewards {
  background: linear-gradient(90deg, rgb(122, 201, 97) 0%, rgb(29, 136, 23) 100%);
}
.ds_category-card.card-rewards:hover {
  background: linear-gradient(-90deg, rgb(122, 201, 97) 0%, rgb(29, 136, 23) 100%);
}
.ds_category-card h3 {
  position: absolute;
  top: 14.8125em;
  left: 0;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #ffffff;
  font-size: 1.875em;
  line-height: 1.3;
  white-space: nowrap;
  margin: 0;
  z-index: 5;
}
.ds_category-card img.product-img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 12.9375em;
  width: auto;
  object-fit: cover;
  z-index: 1;
}
.ds_category-card .rewards-img-single {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  max-width: 80%;
}
.ds_category-card .category-link-text {
  position: absolute;
  bottom: 1.875em;
  width: 100%;
  text-align: center;
  color: #fff;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 1em;
  text-decoration: underline;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 5;
}

/*
Theme Name: Draftspot Theme
Theme URI: http://example.com/draftspot-theme
Description: Custom theme based on Figma design for HQD Shop
Author: Gemini
Author URI: http://example.com
Version: 1.2
Text Domain: draftspot-theme
*/
.ds_why-us-section {
  position: relative;
  padding-top: 9.375em;
  padding-bottom: 6.25em;
  overflow: hidden;
}

/* Glows */
.ds_glow-bottom-left {
  position: absolute;
  top: 50%;
  left: -20%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(50% 50% at 50% 50%, rgba(33, 75, 222, 0.4) 0%, rgba(11, 11, 23, 0) 70%);
  filter: blur(5em);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.ds_glow-top-right {
  position: absolute;
  top: 0;
  right: -20%;
  width: 35vw;
  height: 35vw;
  background: radial-gradient(50% 50% at 50% 50%, rgba(33, 75, 222, 0.4) 0%, rgba(11, 11, 23, 0) 70%);
  filter: blur(3.75em);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.ds_why-us-content {
  position: relative;
  z-index: 1;
}

.ds_gradient-text {
  display: block;
  text-align: center;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 0.9375em;
  background: linear-gradient(90deg, #266bf2 0%, #1919bf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.625em;
  text-transform: uppercase;
}

.ds_why-us-heading {
  text-align: center;
  margin-bottom: 0.625em;
}
.ds_why-us-heading h2 {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 2.8125em;
  color: #ffffff;
  margin: 0;
}

.ds_why-us-subheading {
  text-align: center;
  margin-bottom: 3.75em;
}
.ds_why-us-subheading p {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 0.9375em;
  color: #ffffff;
  margin: 0;
}

.ds_feature-pill {
  position: relative;
  height: 4em;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 6.25em;
  border: 0.108em solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  padding: 0;
  margin-bottom: 1.875em;
  width: fit-content;
  min-width: 20em;
}
.ds_feature-pill .pill-text {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 600;
  color: #ffffff;
  font-size: 1.156em;
  white-space: nowrap;
}
.ds_feature-pill .pill-icon {
  width: 4em;
  height: 4em;
  border-radius: 50%;
  background: linear-gradient(90deg, #266bf2 0%, #1919bf 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ds_feature-pill .pill-icon img {
  width: auto;
  max-width: 60%;
  max-height: 60%;
  object-fit: contain;
}

.ds_column-left {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.ds_column-left .ds_feature-pill {
  justify-content: flex-end;
  padding-left: 1.875em;
}
.ds_column-left .ds_feature-pill .pill-icon {
  margin-right: -1px;
}
.ds_column-left .ds_feature-pill .pill-text {
  padding-right: 1.25em;
}
.ds_column-left .ds_feature-pill:nth-child(2) {
  margin-right: 2.5em;
}

.ds_column-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.ds_column-right .ds_feature-pill {
  justify-content: flex-start;
  padding-right: 1.875em;
}
.ds_column-right .ds_feature-pill .pill-icon {
  margin-left: -1px;
}
.ds_column-right .ds_feature-pill .pill-text {
  padding-left: 1.25em;
}
.ds_column-right .ds_feature-pill:nth-child(2) {
  margin-left: 2.5em;
}

.ds_why-us-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.ds_why-us-image img {
  max-width: 140%;
  width: auto;
  object-fit: contain;
}

/*
Theme Name: Draftspot Theme
Theme URI: http://example.com/draftspot-theme
Description: Custom theme based on Figma design for HQD Shop
Author: Gemini
Author URI: http://example.com
Version: 1.2
Text Domain: draftspot-theme
*/
.ds_product-section {
  padding: 6.25em 0;
  position: relative;
}
.ds_product-section.ds_bestsellers-section {
  background-color: transparent;
}
.ds_product-section.ds_on-sale-section {
  background-color: #121224;
  width: 100%;
  overflow-x: clip;
}
.ds_product-section .ds_section-header .ds_section-subtitle {
  display: block;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 0.9375em;
  background: linear-gradient(90deg, #266bf2 0%, #1919bf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.9375em;
  text-transform: uppercase;
}
.ds_product-section .ds_section-header .ds_section-subtitle.sale-gradient {
  background: linear-gradient(90deg, #ff6731 0%, #ff6731 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.ds_product-section .ds_section-header .ds_section-title {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 2.8125em;
  color: #ffffff;
}
.ds_product-section .ds_section-header .ds_sale-icon {
  width: 2.625em;
  height: 2.625em;
}
.ds_product-section .ds_section-header .ds_section-description {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: #ffffff;
  font-size: 0.9375em;
  line-height: 1.625em;
  max-width: 37.5em;
}
.ds_product-section .on-sale-swiper {
  padding-bottom: 2em;
  width: 100%;
  overflow: hidden;
}
.ds_product-section .on-sale-swiper .swiper-slide {
  width: 16em;
  height: auto;
  display: flex;
  justify-content: center;
}
.ds_product-section .ds_navigation-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  width: calc(100% + 6.875em);
  left: -3.4375em;
  top: 55%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 10;
}
.ds_product-section .ds_navigation-buttons .ds_nav-btn {
  width: 3.125em;
  height: 3.125em;
  background: none;
  border: none;
  cursor: pointer;
  pointer-events: all;
  transition: transform 0.2s ease;
}
.ds_product-section .ds_navigation-buttons .ds_nav-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ds_product-section .ds_navigation-buttons .ds_nav-btn:hover {
  transform: scale(1.1);
}
.ds_product-section .ds_navigation-buttons .ds_nav-btn:active {
  transform: scale(0.95);
}
.ds_product-section .ds_navigation-buttons .ds_nav-btn.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
@media (max-width: 88.75em) {
  .ds_product-section .ds_navigation-buttons {
    width: 100%;
    left: 0;
    padding: 0 10px;
  }
}
@media (max-width: 48em) {
  .ds_product-section .ds_navigation-buttons {
    position: static;
    transform: none;
    margin-top: 2.5em;
    justify-content: center;
    gap: 2.5em;
  }
}

/*
Theme Name: Draftspot Theme
Theme URI: http://example.com/draftspot-theme
Description: Custom theme based on Figma design for HQD Shop
Author: Gemini
Author URI: http://example.com
Version: 1.2
Text Domain: draftspot-theme
*/
.ds_product-card {
  position: relative;
  width: 100%;
  max-width: 256px;
  height: 452px;
  border-radius: 25px;
  background: linear-gradient(180deg, var(--grad-start, #ccc), var(--grad-end, #333));
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 30px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.ds_product-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(0deg, var(--grad-start, #ccc), var(--grad-end, #333));
}
.ds_product-card .product-image {
  width: 184px;
  height: 200px;
  object-fit: contain;
  margin-top: -30px;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}
.ds_product-card .product-name {
  width: 220px;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #ffffff;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0;
  line-height: 22px;
  margin-bottom: 15px;
  padding: 0 18px;
}
.ds_product-card .rating-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 15px;
  height: 17px;
  align-items: center;
  justify-content: center;
}
.ds_product-card .rating-stars .ds_star-grey {
  filter: grayscale(100%) brightness(200%);
  opacity: 0.4;
}
.ds_product-card .product-price {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 800;
  color: #ffffff;
  font-size: 25px;
  text-align: center;
  letter-spacing: 0;
  line-height: 25px;
  white-space: nowrap;
  margin-bottom: 10px;
}
.ds_product-card .product-old-price {
  opacity: 0.7;
  font-size: 17.4px;
  line-height: 17.4px;
  white-space: nowrap;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0;
  margin-bottom: 15px;
}
.ds_product-card .product-points {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.ds_product-card .product-points .points-icon {
  width: 16px;
  height: 16px;
}
.ds_product-card .product-points .points-text {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0;
  line-height: 13px;
  white-space: nowrap;
}
.ds_product-card .card-actions {
  margin-top: auto;
  margin-bottom: 16px;
  width: 224px;
  height: 52px;
  position: relative;
}
.ds_product-card .add-to-cart-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 10;
}
.ds_product-card .add-to-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
}
.ds_product-card .add-to-cart-btn.hidden {
  opacity: 0;
  pointer-events: none;
}
.ds_product-card .add-to-cart-btn .btn-text {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 16px;
  margin-right: 50px;
}
.ds_product-card .add-to-cart-btn .btn-icon-circle {
  position: absolute;
  right: 6px;
  width: 40px;
  height: 40px;
  background-color: #000000;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ds_product-card .add-to-cart-btn .btn-icon-circle .btn-icon {
  width: 21px;
  height: 21px;
}
.ds_product-card .add-to-cart-btn.loading {
  cursor: wait;
}
.ds_product-card .add-to-cart-btn.loading .btn-text, .ds_product-card .add-to-cart-btn.loading .btn-icon-circle {
  opacity: 0;
}
.ds_product-card .quantity-selector {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 5;
}
.ds_product-card .quantity-selector.visible {
  opacity: 1;
  pointer-events: auto;
  z-index: 20;
}
.ds_product-card .quantity-selector .quantity-btn {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.ds_product-card .quantity-selector .quantity-btn:hover {
  transform: scale(1.05);
}
.ds_product-card .quantity-selector .quantity-btn.minus {
  background-color: #000000;
}
.ds_product-card .quantity-selector .quantity-btn.minus img {
  width: 14px;
  height: auto;
}
.ds_product-card .quantity-selector .quantity-btn.plus {
  background-color: #4ba83c;
}
.ds_product-card .quantity-selector .quantity-btn.plus img {
  width: 14px;
  height: auto;
}
.ds_product-card .quantity-selector .quantity-value {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 16px;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
.ds_product-card .btn-loader svg, .ds_product-card .qty-loader svg {
  animation: spin 1s linear infinite;
}

/*
Theme Name: Draftspot Theme
Theme URI: http://example.com/draftspot-theme
Description: Custom theme based on Figma design for HQD Shop
Author: Gemini
Author URI: http://example.com
Version: 1.2
Text Domain: draftspot-theme
*/
.ds_subscription-section {
  padding-bottom: 6.25em;
  position: relative;
}

.ds_sub-banner {
  position: relative;
  width: 100%;
  min-height: 30.875em;
  margin-bottom: 6.25em;
  border-radius: 1.5625em;
  overflow: hidden;
}
.ds_sub-banner .sub-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.ds_sub-banner .sub-content {
  position: relative;
  z-index: 2;
  padding: 4em 5em;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.ds_sub-banner .sub-subtitle {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 0.9375em;
  color: #fff;
  margin-bottom: 0.5em;
  display: block;
}
.ds_sub-banner .sub-title {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 2.8125em;
  color: #fff;
  margin-bottom: 1em;
  line-height: 1.2;
  max-width: 60%;
}
.ds_sub-banner .sub-desc {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-size: 0.9375em;
  color: #fff;
  max-width: 50%;
  line-height: 1.7;
  margin-bottom: 2em;
}
.ds_sub-banner .sub-desc strong {
  font-weight: 800;
}
.ds_sub-banner .sub-cta-btn {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 6.25em;
  padding: 0.5em 0.5em 0.5em 2em;
  text-decoration: none;
  transition: transform 0.2s;
  width: fit-content;
  margin-top: auto;
}
.ds_sub-banner .sub-cta-btn:hover {
  transform: scale(1.05);
}
.ds_sub-banner .sub-cta-btn .btn-text {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #000;
  font-size: 1em;
  margin-right: 1em;
}
.ds_sub-banner .sub-cta-btn .btn-icon {
  width: 3.25em;
  height: 3.25em;
  border-radius: 50%;
  background: linear-gradient(90deg, #266bf2 0%, #1919bf 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ds_sub-banner .sub-cta-btn .btn-icon img {
  width: 1.5em;
}
.ds_sub-banner .sub-benefits {
  margin-top: 3em;
  display: flex;
  gap: 4em;
  margin-bottom: 2em;
}
.ds_sub-banner .sub-benefits .benefit-item {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.ds_sub-banner .sub-benefits .benefit-item img {
  height: 2em;
  width: auto;
  align-self: flex-start;
}
.ds_sub-banner .sub-benefits .benefit-item span {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 0.875em;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ds_sub-banner .decor-img {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.ds_sub-banner .decor-img.d-1 {
  top: 0;
  left: 36%;
  width: 6%;
}
.ds_sub-banner .decor-img.d-2 {
  top: 180px;
  left: 52%;
  width: 8%;
}
.ds_sub-banner .decor-img.d-3 {
  bottom: 0;
  left: 30%;
  width: 7%;
}
.ds_sub-banner .decor-img.d-4 {
  top: 375px;
  left: 47%;
  width: 7%;
}

.ds_info-columns {
  padding-top: 3em;
}
.ds_info-columns .info-col {
  position: relative;
  height: 42.6875em;
  border-radius: 1.5625em;
  padding: 3.125em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
}
.ds_info-columns .info-col.ds_about-block {
  background: linear-gradient(180deg, rgb(169, 50, 239) 0%, rgb(78, 19, 129) 100%);
}
.ds_info-columns .info-col.ds_wholesale-block {
  background: linear-gradient(180deg, rgb(38, 107, 242) 0%, rgb(25, 25, 191) 100%);
}
.ds_info-columns .info-col.ds_wholesale-block .info-svg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}
.ds_info-columns .info-col.ds_wholesale-block .info-svg-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ds_info-columns .info-gradient-title {
  display: block;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 0.9375em;
  color: #fff;
  margin-bottom: 0.625em;
  text-transform: uppercase;
}
.ds_info-columns h2 {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 2.8125em;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1em;
  position: relative;
  z-index: 1;
}
.ds_info-columns h2 br {
  display: none;
}
@media (min-width: 992px) {
  .ds_info-columns h2 br {
    display: block;
  }
}
.ds_info-columns p {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-size: 0.9375em;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 2em;
  opacity: 0.8;
  position: relative;
  z-index: 1;
}
.ds_info-columns p strong {
  font-weight: 700;
  color: #fff;
  opacity: 1;
}
.ds_info-columns .info-rating-block {
  margin-bottom: 2em;
  position: relative;
  z-index: 1;
}
.ds_info-columns .info-rating-block .rating-row {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 0.5em;
}
.ds_info-columns .info-rating-block .rating-row .rating-number {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 900;
  font-size: 1.68em;
  color: #fff;
}
.ds_info-columns .info-rating-block .rating-row .rating-stars {
  height: 1.25em;
  width: auto;
}
.ds_info-columns .info-rating-block .rating-title {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25em;
  color: #fff;
  margin-bottom: 0;
}
.ds_info-columns .info-rating-block .rating-desc {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-size: 0.875em;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
.ds_info-columns .info-features-list {
  margin-bottom: 2em;
  position: relative;
  z-index: 1;
}
.ds_info-columns .info-features-list h3 {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 0.875em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0.5em;
}
.ds_info-columns .info-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3.25em;
  padding: 0 2em;
  border-radius: 6.25em;
  background: #fff;
  color: #000;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1em;
  text-decoration: none;
  gap: 1em;
  transition: transform 0.2s;
  position: relative;
  z-index: 1;
  margin-top: auto;
  width: fit-content;
}
.ds_info-columns .info-btn:hover {
  transform: scale(1.05);
}
.ds_info-columns .info-btn .btn-icon {
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  background: linear-gradient(90deg, #266bf2 0%, #1919bf 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ds_info-columns .info-btn .btn-icon img {
  width: 1em;
}

/*
Theme Name: Draftspot Theme
Theme URI: http://example.com/draftspot-theme
Description: Custom theme based on Figma design for HQD Shop
Author: Gemini
Author URI: http://example.com
Version: 1.2
Text Domain: draftspot-theme
*/
.ds_category-hero {
  position: relative;
  padding-top: 6em;
  padding-bottom: 6em;
  min-height: 40em;
  display: flex;
  align-items: center;
  border-radius: 1.5625em;
  margin: 9.375em auto 0;
  max-width: 88.75em;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 2rem);
  max-width: 88.75em;
}
.ds_category-hero .cat-hero-subtitle {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-size: 0.9375em;
  color: #fff;
  display: block;
  margin-bottom: 1em;
}
.ds_category-hero .cat-hero-title {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 4.0625em;
  line-height: 1.23;
  color: #fff;
  margin-bottom: 0.5em;
}
.ds_category-hero .cat-hero-img {
  max-width: 100%;
  height: auto;
  max-height: 25em;
  object-fit: contain;
}

.ds_category-intro {
  padding-top: 5em;
  padding-bottom: 3em;
}

.ds_pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5em 1em;
  margin: 0 0.25em;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
}
.ds_pagination .page-numbers.current, .ds_pagination .page-numbers:hover {
  background: #266bf2;
}

/*
Theme Name: Draftspot Theme
Theme URI: http://example.com/draftspot-theme
Description: Custom theme based on Figma design for HQD Shop
Author: Gemini
Author URI: http://example.com
Version: 1.2
Text Domain: draftspot-theme
*/
.ds_site-header {
  background-color: transparent;
  padding-top: 30px;
  padding-bottom: 30px;
  position: absolute;
  width: 100%;
  z-index: 1000;
}

.ds_logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.ds_logo-text-main {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px;
  color: #fff;
}

.ds_logo-text-sub {
  font-size: 12px;
  opacity: 0.8;
  margin-left: 15px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: 15px;
  font-weight: 400;
  color: #fff;
  display: flex;
  align-items: center;
  height: 20px;
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 400;
  font-size: 16px;
  margin-left: 15px;
  margin-right: 15px;
}

.ds_header-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}
.ds_header-icons img {
  width: 24px;
  height: auto;
  cursor: pointer;
}

/*
Theme Name: Draftspot Theme
Theme URI: http://example.com/draftspot-theme
Description: Custom theme based on Figma design for HQD Shop
Author: Gemini
Author URI: http://example.com
Version: 1.2
Text Domain: draftspot-theme
*/
.ds_site-footer {
  background-color: #121224;
  padding-top: 5em;
  padding-bottom: 2.5em;
  position: relative;
  overflow: hidden;
}
.ds_site-footer h4 {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 1.25em;
  color: #fff;
  margin-bottom: 1.5em;
}
.ds_site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ds_site-footer ul li {
  margin-bottom: 0.8em;
}
.ds_site-footer ul li a {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 0.9375em;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.ds_site-footer ul li a:hover {
  color: #266bf2;
}
.ds_site-footer .footer-col-center {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.ds_site-footer .footer-col-center .footer-logo-wrapper {
  position: relative;
  padding: 2em;
}
.ds_site-footer .footer-col-center .logo-box {
  text-align: center;
}
.ds_site-footer .footer-col-center .logo-icon {
  width: 3em;
  height: auto;
}
.ds_site-footer .footer-col-center .logo-text-main {
  font-family: "Audiowide", cursive;
  font-size: 1.95em;
  color: #fff;
  letter-spacing: 1.56px;
  margin-bottom: 0.5em;
}
.ds_site-footer .footer-col-center .logo-text-sub {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 1.05em;
  color: #fff;
  letter-spacing: 0.84px;
}
.ds_site-footer .footer-col-right .contact-list {
  font-size: 0.9375em;
}
.ds_site-footer .footer-col-right .contact-list a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.ds_site-footer .footer-col-right .contact-list a:hover {
  color: #266bf2;
}
.ds_site-footer .footer-col-right .contact-list .company-info {
  font-weight: 400;
}
.ds_site-footer .footer-col-right .social-links {
  display: flex;
  gap: 1.5em;
}
.ds_site-footer .footer-col-right .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s;
}
.ds_site-footer .footer-col-right .social-links a:hover {
  background: #266bf2;
}
.ds_site-footer .footer-col-right .social-links a img {
  width: 1.2em;
  height: 1.2em;
}
.ds_site-footer .footer-payments-row {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3em;
}
.ds_site-footer .footer-payments-row .payments-label h4 {
  margin-bottom: 0;
}
.ds_site-footer .footer-payments-row .payment-icons img {
  background: #fff;
  padding: 2px;
  border-radius: 4px;
  height: 2em;
  width: auto;
}
.ds_site-footer .copyright {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
}

/*# sourceMappingURL=style.css.map */
