/**
 * Theme Name: Tackle Lounge
 * Author: Dipto Dhar and Team
 * Author URI: https://diptodhar.com
 * Version: 1.0
 */

:root {
  --tackle-lounge-primary-color: #6fb750;
  --tackle-lounge-footer-bg: #5fae3c;
  --tackle-lounge-secondary-color: #24282b;
  --tackle-lounge-secondary-bg: #eff7eb;
  --tackle-lounge-text-color: #060606;
  --tackle-lounge-text-dark: #000;
  --tackle-lounge-text-white: #fff;
  --tackle-lounge-golden-color: #e3b959;
  --tackle-lounge-secondary-bg-golden: #f0dcab;
  --tackle-lounge-secondary-bg-green: #c7d2bf;

  --tackle-lounge-hero-heading-primary: #2e3337;
  --tackle-lounge-hero-cta-bg: #345534;
  --tackle-lounge-hero-h2-color: #354b37;
  --tackle-lounge-texture-color-primary: #0000006f;
  --tackle-lounge-texture-color-secondary: #2a25258d;

  --tackle-lounge-container-width: 1160px;
  --tackle-lounge-secondary-container-width: 860px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

p,
h2 {
  word-break: break-word;
}

/** Utilities **/
.tackle-lounge-texture-bg {
  background-color: #6b6b6b;
  background-image: repeating-linear-gradient(
      0deg,
      var(--tackle-lounge-texture-color-primary) 0px,
      transparent 1px,
      transparent 2px,
      var(--tackle-lounge-texture-color-secondary) 3px,
      var(--tackle-lounge-texture-color-primary) 4px
    ),
    repeating-linear-gradient(
      90deg,
      var(--tackle-lounge-texture-color-primary) 0px,
      transparent 1px,
      transparent 2px,
      var(--tackle-lounge-texture-color-secondary) 3px,
      var(--tackle-lounge-texture-color-primary) 4px
    ),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 3px,
      var(--tackle-lounge-texture-color-primary) 3px,
      var(--tackle-lounge-texture-color-primary) 5px
    );
  background-size: 2px 2px, 2px 2px, 4px 4px;
}

.tackle-lounge-fabric-bg-light {
  background-color: #e5ffda;
  background-image: repeating-linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.02) 0px,
      transparent 1px,
      transparent 2px,
      rgba(255, 255, 255, 0.015) 3px,
      rgba(0, 0, 0, 0.02) 4px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.02) 0px,
      transparent 1px,
      transparent 2px,
      rgba(255, 255, 255, 0.015) 3px,
      rgba(0, 0, 0, 0.02) 4px
    );
  background-size: 3px 3px, 3px 3px;
}

/** Utilities End **/

/** Header **/
body {
  margin: 0;
  font-family: serif;
  /* overflow-y: auto;
  overflow-x: hidden; */
}

html,
body {
  overflow-x: hidden !important;
  touch-action: pan-y !important;
}

html {
  scroll-behavior: smooth;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

.animation-cta {
  animation: bounce 1s infinite ease-in-out;
  box-shadow: 0 0 15px 2px #345534;
}

header {
  position: fixed;
  width: 100%;
}

header {
  margin: 0;
  padding: 0;
  color: #000;
  margin-bottom: -64px;
  background: #ffffffb5;
  z-index: 1;
  position: relative;
}

.toggle-mobile-menu {
  font-size: 20px;
  cursor: pointer;
  display: none;
}

header .navbar-brand {
  padding-block: 4px;
}

header .navbar-brand img {
  width: 210px;
}

header .first-line {
  max-inline-size: var(--tackle-lounge-container-width);
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 4rem;
  padding-inline: 40px;
}

header .first-line .navbar-nav {
  display: flex;
  list-style: none;
  padding: 8px 16px;
}

header .first-line .navbar-nav li {
  padding-inline: 16px;
  position: relative;
}

header .first-line .navbar-nav li a {
  font-size: 14px;
  line-height: 20px;
  color: #000 !important;
  text-decoration: none !important;
}

header .first-line .navbar-nav li:first-child::before {
  content: revert;
}

header .first-line .navbar-nav li::before {
  content: "";
  width: 1px;
  height: 20px;
  background: #ffffff;
  position: absolute;
  left: 0;
}

header .first-line .navbar-nav.simple-nav li::before {
  content: none;
}

header .first-line .navbar-nav .header-contact-button {
  border: 1px solid #5fae3c;
  border-radius: 4px;
  padding: 6px 16px;
  color: #5fae3c !important;
  font-weight: 600;
}

header .first-line .navbar-nav .header-contact-button:hover {
  background-color: #5fae3c;
  color: #fff !important;
}

header .css-mobile-menu {
  display: none;
}

header .container {
  max-inline-size: var(--tackle-lounge-container-width);
  margin-inline: auto;
}

header .fa-line {
  color: #00b900;
}

/** Header **/

/** Hero Section **/

.tackle-lounge-lures-hero-img {
  width: 100%;
  margin-bottom: 0;
  min-height: 700px;
  object-fit: cover;
  object-position: left;
}

.tackle-lounge-lures-hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  background-image: url("assets/images/hero-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.tackle-lounge-lures-hero .hero-text-contents {
  max-inline-size: var(--tackle-lounge-container-width);
  width: 100%;
  padding-inline: 40px;
  margin-inline: auto;
  padding-block: 50px;
  margin-top: 100px;
}

.tackle-lounge-lures-hero .main-headings h3 {
  font-size: 50px;
  font-family: curve;
  font-weight: bolder !important;
  line-height: 1.3;
  color: var(--tackle-lounge-hero-heading-primary);
  margin: 0;
}

.tackle-lounge-lures-hero .main-headings h2 {
  font-size: 74px;
  font-family: curve;
  font-weight: bolder !important;
  line-height: 1;
  margin: 0;
  margin-bottom: 8px;
  color: var(--tackle-lounge-hero-h2-color);
}

.tackle-lounge-lures-hero .main-headings h4 {
  font-size: 36px;
  font-family: curve;
  font-weight: bolder !important;
  line-height: 1;
  margin: 0;
  color: var(--tackle-lounge-hero-heading-primary);
}

.tackle-lounge-lures-hero .body-texts {
  margin-top: 28px;
  margin-bottom: 28px;
}

.tackle-lounge-lures-hero .body-texts p {
  font-size: 28px;
  font-family: curve;
  font-weight: 600 !important;
  line-height: 1.4;
  margin: 0;
  color: var(--tackle-lounge-hero-h2-color);
}

.hero-section-cta a {
  font-family: curve;
  display: flex;
  flex-direction: column;
  width: fit-content;
  font-size: 36px;
  font-weight: 600;
  color: var(--tackle-lounge-golden-color);
  background: #fff;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: 200ms ease;
}

.hero-section-cta a:hover {
  transform: translateY(-5px);
}

.hero-section-cta .button-main-title {
  padding: 8px 12px;
  background: var(--tackle-lounge-hero-cta-bg);
  border-radius: 8px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  line-height: 1.5;
}

.hero-section-cta a svg {
  width: 30px;
  height: 30px;
  margin: 0;
  margin-top: 4px;
}

.hero-section-cta .button-sub-title {
  font-size: 20px;
  color: var(--tackle-lounge-secondary-color);
  padding: 8px;
  text-align: center;
  font-weight: 500;
}

.hero-cta-info {
  margin-top: 20px;
  text-wrap: wrap;
  word-wrap: break-word;
  max-width: 520px;
  font-family: curve;
  color: #345534;
  border: 3px solid #345534c7;
  background: linear-gradient(135deg, #ffffff 0%, #f7fbf8 55%, #eef6f0 100%);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 5px 7px 16px 1px #34553494;
  position: relative;
  overflow: hidden;
}

.hero-cta-info p {
  word-break: auto-phrase;
  margin: 0;
}

.hero-cta-info-title {
  font-size: 20px;
  font-weight: 600;
}

.hero-cta-info-highlight {
  color: red;
  font-size: 74px;
  font-family: curve;
  font-weight: bolder !important;
  line-height: 1;
  margin: 0;
  margin-block: 15px;
  text-shadow: 3px 5px 11px #e00e0e66;
}

.hero-cta-info-body {
  font-size: 18px;
  text-align: right;
}

.hero-cta-info-note {
  font-size: 16px;
  color: #e60000;
  margin-top: 6px;
}

.hero-cta-info::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -40px;
  top: -40px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.85) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  animation: hero-cta-float 6s ease-in-out infinite;
  pointer-events: none;
}

.hero-cta-info::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.7) 45%,
    rgba(255, 255, 255, 0) 65%
  );
  transform: translateX(-120%);
  animation: hero-cta-sheen 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes hero-cta-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.7;
  }

  50% {
    transform: translate3d(-18px, 18px, 0);
    opacity: 0.9;
  }
}

@keyframes hero-cta-sheen {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }

  30% {
    opacity: 0.7;
  }

  60% {
    transform: translateX(120%);
    opacity: 0;
  }

  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

/** Hero Section End **/

/** Should I Sell Section **/
.tackle-lounge-sis {
  background-size: 23px 53px, 35px 24px, 29px 42px;
}

.tackle-lounge-sis {
  position: relative;
  padding: 50px 16px;
}

.tackle-lounge-sis::before {
  content: "";
  width: 100%;
  height: 60px;
  background: #fff;
  position: absolute;
  filter: blur(40px);
}

.sis-header {
  font-size: 50px;
  font-family: curve;
  font-weight: bolder;
  color: var(--tackle-lounge-secondary-color);
  text-align: center;
  position: relative;
  z-index: 99;
  overflow: hidden;
  display: block;
  width: fit-content;
  margin: auto;
  margin-bottom: 40px;
}

.tackle-lounge-sis-images {
  --tackle-lounge-container-width: 1160px;
  display: flex;
  max-inline-size: var(--tackle-lounge-container-width);
  margin-inline: auto;
  justify-content: center;
  gap: 16px;
  padding: 50px 16px;
}

.tackle-lounge-sis-images img {
  width: 100%;
  object-fit: cover;
}

.tackle-lounge-sis-col {
  width: 350px;
  display: flex;
  border-radius: 10px;
  flex-direction: column;
  gap: 0;
  background-image: url("assets/images/paper-texture.jpg");
}

.tackle-lounge-sis-col:first-child,
.tackle-lounge-sis-col:last-child {
  width: 410px;
}

.tackle-lounge-sis-col div:first-child {
  height: 380px;
}

.tackle-lounge-sis-col div:last-child {
  /* height: 190px; */
}

.tackle-lounge-sis-col .text-contents {
  padding: 20px;
}

.tackle-lounge-sis-col div img {
  height: 100%;
}

.tackle-lounge-sis-col div:last-child {
  position: relative;
}

.tackle-lounge-sis-col div:last-child {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  align-items: center;
  margin: 0;
}

.tackle-lounge-sis-col-text {
  font-size: 34px;
  font-weight: bolder;
  font-family: curve;
  color: var(--tackle-lounge-secondary-color);
  text-align: center;
}

.tackle-lounge-sis-col-text span:last-child {
  font-size: 25px;
  font-weight: 700;
}

.tackle-lounge-sis-col-text span:last-child {
  font-size: 25px;
  font-weight: 700;
}

.tackle-lounge-sis-col-text-line-2 p {
  font-size: 25px;
  font-weight: 700;
}

.tackle-lounge-sis-col div:first-child .sis-box-image {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.tackle-lounge-sis-col div:last-child {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.tackle-lounge-sis-col div:last-child .sis-box-image {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.tackle-lounge-sis-col div img.sis-arrow {
  position: absolute;
  width: 100px;
  height: 100px;
  z-index: 10;
  top: 60%;
  left: 103%;
  transform: translate(-50%, -50%);
  object-fit: contain;
}

.tackle-lounge-sis-col div img.sis-arrow.sis-arrow-secondary {
  top: 120%;
}

.tackle-lounge-sis-col div {
  position: relative;
}

/** Should I Sell Section End **/

/** HTS **/

.tackle-lounge-hts-section {
  background-image: url("assets/images/paper-texture.jpg");
}

.tackle-lounge-hts-inner {
  max-inline-size: var(--tackle-lounge-secondary-container-width);
  margin-inline: auto;
  padding: 50px 24px;
  max-inline-size: var(--tackle-lounge-secondary-container-width);
  margin-inline: auto;
  padding: 50px 16px;
}

.tackle-lounge-hts-inner .hts-heading {
  font-size: 48px;
  font-family: curve;
  font-weight: bolder;
  line-height: 1.4;
  color: var(--tackle-lounge-hero-h2-color);
  margin-bottom: 12px;
}

.tackle-lounge-hts-inner .hts-badge {
  background: var(--tackle-lounge-hero-h2-color);
  color: #fff;
  font-size: 30px;
  padding: 8px 14px;
  border-radius: 30px;
  font-weight: 600;
  font-family: curve;
}

.tackle-lounge-hts-inner .hts-steps {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 40px;
  gap: 16px;
}

.tackle-lounge-hts-inner .hts-single-step {
  display: flex;

  background: #fff;
  gap: 0;
  height: 250px;
  border-radius: 10px;
}

.tackle-lounge-hts-inner .hts-single-step .image-contents {
  height: 100%;
}

.tackle-lounge-hts-inner .hts-single-step img {
  object-fit: cover;
  height: 100%;
  width: 410px;
  border-radius: 10px;
}

.tackle-lounge-hts-inner .text-contents {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  border-radius: 10px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  position: relative;
  /*! width: 100%; */
}

.tackle-lounge-hts-inner .text-contents h3 {
  font-size: 30px;
  font-family: curve;
  font-weight: 00;
  color: var(--tackle-lounge-secondary-color);
}

.tackle-lounge-hts-inner .text-contents img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 95%;
}

.tackle-lounge-hts-inner .hts-single-step:last-child .text-contents img {
  width: 200px;
  position: revert;
  transform: unset;
  margin-inline: auto;
}

.hts-single-step div {
  width: 50%;
}

.tackle-lounge-hts-inner .text-contents h3 {
  font-size: 30px;
  font-family: curve;
  font-weight: 00;
  color: var(--tackle-lounge-secondary-color);
  text-align: center;
}

/** HTS END **/

/** WITO **/

.tackle-lounge-wito-section-inner {
  max-inline-size: var(--tackle-lounge-container-width);
  margin-inline: auto;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.tackle-lounge-wito-section .wito-heading {
  font-size: 48px;
  text-align: center;
  font-family: curve;
  font-weight: 700;
  color: var(--tackle-lounge-secondary-color);
  border-bottom: 4px dotted #aaa;
  padding-bottom: 20px;
}

.tackle-lounge-wito-section .wito-cards {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.tackle-lounge-wito-section .wito-single-card {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: space-between;
  border-radius: 10px;
  background-image: url("assets/images/paper-texture.jpg");
  position: relative;
  width: 350px;
}

.tackle-lounge-wito-section .wito-single-card::before {
  content: "";
  width: 100%;
  height: 50px;
  background: #ded6ca69;
  position: absolute;
  bottom: 0;
}

.tackle-lounge-wito-section .wito-single-card h4 {
  font-size: 36px;
  font-family: curve;
  font-weight: 600;
  color: var(--tackle-lounge-secondary-color);
  text-align: center;
}

.tackle-lounge-wito-section .wito-single-card .text-contents {
  padding-block: 20px 65px;
}

.wito-single-card img {
  width: 100%;
}

.tackle-lounge-wito-section .wito-single-card .image-contents {
  width: 100%;
  height: 280px;
}

.tackle-lounge-wito-section .wito-single-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

/** WITO END **/

/** We evaluate section **/
.tackle-lounge-we-evaluate-section {
  background: #e5ffda;
}

.tackle-lounge-we-evaluate-section-inner {
  padding: 50px 0;
  text-align: center;
}

.tackle-lounge-we-evaluate-section .we-evaluate-heading {
  font-size: 36px;
  font-family: curve;
  font-weight: 500;
}

.tackle-lounge-we-evaluate-section .we-evaluate-subtitle {
  font-size: 14px;
  font-weight: 600;
}

.we-evaluate-section-posts {
  padding: 64px 0;
  background: #ffffff;
  width: 100%;
  margin-block: 20px;
}

.tackle-lounge-we-evaluate-section .we-evaluate-section-posts {
  background: #e5ffda !important;
}

.we-evaluate-section-posts table {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid #d9d9d9;
  max-inline-size: var(--tackle-lounge-container-width);
  margin-inline: auto;
}

.we-evaluate-section-posts thead {
  border-bottom: 2px solid #d9d9d9;
}

.we-evaluate-section-posts th {
  padding: 16px;
  text-align: left;
  font-weight: 600;
  color: #495057;
  font-size: 14px;
  letter-spacing: 0.5px;
  border-right: 1px solid #d9d9d9;
}

.we-evaluate-section-posts th:first-child {
  width: 180px;
}

.we-evaluate-section-posts th:nth-child(3) {
  width: 180px;
}

.we-evaluate-section-posts tbody tr {
  border-bottom: 1px solid #d9d9d9;
  transition: background-color 0.2s;
}

.we-evaluate-section-posts tbody tr:hover {
  /* background-color: #f8f9fa; */
}

.we-evaluate-section-posts td {
  padding: 20px 16px;
  vertical-align: middle;
  border-right: 1px solid #d9d9d9;
}

.we-evaluate-section-posts td:last-child,
.we-evaluate-section-posts th:last-child {
  border-right: none;
}

.we-evaluate-section-posts .product-category {
  font-size: 15px;
  color: #212529;
  text-align: left;
}

.we-evaluate-section-posts .product-title {
  font-size: 15px;
  color: #212529;
  line-height: 1.5;
  text-align: left;
}

.we-evaluate-section-posts .product-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--tackle-lounge-primary-color);
  text-align: left;
}

.we-evaluate-section-posts .action-cell {
  text-align: center;
}

.we-evaluate-section-posts .action-button {
  background-color: var(--tackle-lounge-primary-color);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s;
  text-decoration: none;
}

.we-evaluate-section-posts .action-button:hover {
  background-color: var(--tackle-lounge-footer-bg);
}

.we-evaluate-section-posts .action-button:active {
  transform: scale(0.98);
}

/** Purchase category section **/

.tackle-lounge-purchase-category-section-inner {
  padding: 50px 0;
  text-align: center;
}

.tackle-lounge-purchase-category-section .purchase-category-heading {
  font-size: 36px;
  font-family: curve;
  font-weight: 500;
}

.tackle-lounge-purchase-category-section .purchase-category-subtitle {
  font-size: 14px;
  font-weight: 600;
}

.purchase-category-section-posts {
  padding: 64px 0;
  background: #ffffff;
  width: 100%;
  margin-block: 20px;
}

.purchase-category-section-posts table {
  width: 100%;
  border-collapse: collapse;
  max-inline-size: var(--tackle-lounge-container-width);
  margin-inline: auto;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 22px 45px rgba(36, 40, 43, 0.12),
    0 2px 6px rgba(111, 183, 80, 0.15);
}

.purchase-category-section-posts thead {
  background: linear-gradient(
    120deg,
    rgba(111, 183, 80, 0.16),
    rgba(255, 255, 255, 0.9)
  );
}

.purchase-category-section-posts th {
  padding: 18px 20px;
  text-align: left;
  font-weight: 600;
  color: #495057;
  font-size: 14px;
  letter-spacing: 0.5px;
  border-right: 1px solid rgba(111, 183, 80, 0.18);
  text-transform: uppercase;
}

.purchase-category-section-posts th:first-child {
  width: 180px;
}

.purchase-category-section-posts th:nth-child(3) {
  width: 180px;
}

.purchase-category-section-posts tbody tr {
  border-bottom: 1px solid rgba(73, 80, 87, 0.12);
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.purchase-category-section-posts tbody tr:nth-child(even) {
  background: rgba(111, 183, 80, 0.08);
}

.purchase-category-section-posts tbody tr:hover {
  background: rgba(111, 183, 80, 0.14);
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px rgba(111, 183, 80, 0.2);
}

.purchase-category-section-posts td {
  padding: 22px 20px;
  vertical-align: middle;
  border-right: 1px solid rgba(111, 183, 80, 0.12);
}

.purchase-category-section-posts td:last-child,
.purchase-category-section-posts th:last-child {
  border-right: none;
}

.purchase-category-section-posts .product-category {
  font-size: 15px;
  color: #212529;
  text-align: left;
  font-weight: 600;
}

.purchase-category-section-posts .product-title {
  font-size: 15px;
  color: #212529;
  line-height: 1.5;
  text-align: left;
}

.purchase-category-section-posts .product-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--tackle-lounge-primary-color);
  text-align: left;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(111, 183, 80, 0.15);
  box-shadow: inset 0 0 0 1px rgba(111, 183, 80, 0.25);
}

.purchase-history-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.purchase-history-page {
  min-width: 44px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--tackle-lounge-primary-color);
  background: #fff;
  color: var(--tackle-lounge-primary-color);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s,
    box-shadow 0.2s;
}

.purchase-history-page:hover {
  background: var(--tackle-lounge-secondary-bg);
  border-color: var(--tackle-lounge-footer-bg);
  color: var(--tackle-lounge-footer-bg);
}

.purchase-history-page:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(111, 183, 80, 0.35);
}

.purchase-history-page.is-active {
  background: var(--tackle-lounge-primary-color);
  border-color: var(--tackle-lounge-primary-color);
  color: var(--tackle-lounge-text-white);
  box-shadow: 0 6px 16px rgba(36, 40, 43, 0.15);
  cursor: default;
}

.purchase-history-page.is-active:hover {
  background: var(--tackle-lounge-primary-color);
  border-color: var(--tackle-lounge-primary-color);
  color: var(--tackle-lounge-text-white);
}

/** We evaluate section end **/

/** TBH Section **/

.tackle-lounge-tbh-section {
  background-image: url("assets/images/paper-texture.jpg");
}

.tackle-lounge-tbh-section .tbh-inner {
  font-size: 34px;
  font-weight: 800;
  font-family: curve;
  max-inline-size: var(--tackle-lounge-container-width);
  margin-inline: auto;
  padding: 40px;
}

.tbh-heading {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.tbh-heading h3:first-child {
  background: var(--tackle-lounge-hero-cta-bg);
  color: #fff;
  text-transform: uppercase;
  padding: 2px 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
}

/* Inline | http://localhost/fish/lure-page-dynamic/ */

.tackle-lounge-tbh-section .single-tbh-card {
  overflow: hidden;
  width: 370px;
}

.tackle-lounge-tbh-section .tbh-cards {
  width: 100%;
}

.single-tbh-card .image-contents {
  width: 100%;
  height: 280px !important;
}

.single-tbh-card .image-contents img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tbh-heading h3:last-child {
  background: #f1deae;
  color: #625031;
  text-transform: uppercase;
  padding: 8px 20px;
}

.tbh-heading h3:last-child i {
  color: #e4bb59;
}

.tackle-lounge-tbh-section .tbh-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.tackle-lounge-tbh-section .tbh-heading i {
  line-height: 1.5;
  margin-right: 4px;
}

.tackle-lounge-tbh-section .single-tbh-card {
  display: flex;
  flex-direction: column;
  background: #c5cfbd6e;
  text-align: center;
  border-radius: 18px;
}

.tackle-lounge-tbh-section .single-tbh-card {
  width: 400px !important;
}

.single-tbh-card .image-contents {
  height: 325px !important;
}

.tbh-heading h3:last-child {
  background: #f1deae;
  color: #625031;
  text-transform: uppercase;
  padding: 8px 20px;
  margin-left: -30px;
  z-index: 1;
  padding-left: 50px;
}

.tbh-heading h3:first-child {
  background: var(--tackle-lounge-hero-cta-bg);
  color: #fff;
  text-transform: uppercase;
  padding: 2px 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  z-index: 2;
}

.tbh-heading h3:last-child {
  background: #f1deae;
  color: #625031;
  text-transform: uppercase;
  padding: 8px 20px;
  margin-left: -30px;
  z-index: 1;
  padding-left: 50px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

.tbh-heading h3:first-child {
  background: var(--tackle-lounge-hero-cta-bg);
  color: #fff;
  text-transform: uppercase;
  padding: 2px 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  z-index: 2;
}

.single-tbh-card:last-child {
  background: #f1daaa63;
  color: #625031;
}

.single-tbh-card .image-contents {
  height: 100%;
  overflow: hidden;
  object-fit: cover;
  width: 400px;
}

.single-tbh-card .image-contents img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.single-tbh-card:last-child .text-contents i {
  color: #b47f36;
}

.single-tbh-card:first-child .text-contents i {
  color: var(--tackle-lounge-hero-cta-bg);
}

.tackle-lounge-tbh-section .single-tbh-card .text-contents {
  padding: 10px 20px;
}

/** TBH Section End **/

/** Purchase Process Section **/

.tackle-lounge-purchase-process-section {
  background-image: url("assets/images/paper-texture.jpg");
}

.tackle-lounge-purchase-process-section .purchase-process-inner {
  max-inline-size: var(--tackle-lounge-container-width);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 50px 20px;
}

.tackle-lounge-purchase-process-section .purchase-process-heading {
  font-size: 48px;
  font-family: curve;
  font-weight: 600;
  color: var(--tackle-lounge-hero-h2-color);
}

.tackle-lounge-purchase-process-section .process-steps {
  display: flex;
  gap: 8px;
}

.tackle-lounge-purchase-process-section .single-step-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  width: 330px;
}

.tackle-lounge-purchase-process-section .single-step-card:last-child h3 .no {
  background-color: #a78030;
}

.tackle-lounge-purchase-process-section .single-step-card h3 .no {
  background: var(--tackle-lounge-hero-h2-color);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #fff;
}

.tackle-lounge-purchase-process-section .single-step-card:first-child h3 {
  background: #c7cbc1a1;
}

.tackle-lounge-purchase-process-section .single-step-card:last-child h3 {
  background: #e2cc98a1;
  color: #5a3d18;
}

.tackle-lounge-purchase-process-section .single-step-card h3 {
  font-size: 30px;
  font-family: curve;
  font-weight: 600;
  display: flex;
  gap: 8px;
  color: var(--tackle-lounge-hero-h2-color);
  padding: 8px 10px;
  background: #efdfbd98;
  text-align: center;
  justify-content: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.tackle-lounge-purchase-process-section .single-step-card h3:last-child {
  border-radius: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background: #efeaf0;
}

.tackle-lounge-purchase-process-section .ps-arrow {
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.purchase-process-inner .image-contents {
  width: 100%;
}

.purchase-process-inner .image-contents img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.purchase-process-inner .image-contents {
  height: 290px;
}

/** Purchase Process Section End **/

/** FAQ Section **/

.tackle-lounge-faq {
  padding: 50px;
  max-inline-size: var(--tackle-lounge-container-width);
  margin-inline: auto;
}

.tackle-lounge-faq .faq-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.tackle-lounge-faq .faq-heading .main-heading .main-title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
}

.tackle-lounge-faq .faq-heading .main-heading .sub-title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
}

.tackle-lounge-faq .faq-heading .sub-heading .sub-heading-text {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 20px;
}

.tackle-lounge-faq .faq-inner .faq-contents {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.tackle-lounge-faq .faq-inner .faq-contents .single-faq {
  padding: 20px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 0.5px solid #ddd;
  cursor: pointer;
}

.tackle-lounge-faq .faq-inner .faq-contents .single-faq:first-child {
  border-top: 0;
}

.tackle-lounge-faq .faq-inner .faq-contents .single-faq .plus,
.tackle-lounge-faq .faq-inner .faq-contents .single-faq .minus {
  font-size: 26px;
  width: 30px;
  height: 30px;
  background: var(--tackle-lounge-primary-color);
  color: #fff;
  display: grid;
  place-content: center;
  font-weight: bolder;
  place-content: center;
  border-radius: 50%;
  font-weight: 700;
  font-family: curve;
  position: relative;
}

.tackle-lounge-faq .faq-inner .faq-contents .qna {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.tackle-lounge-faq .faq-inner .faq-contents .question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
}

.tackle-lounge-faq .faq-inner .faq-contents .question-contents {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
}

.tackle-lounge-faq .faq-inner .faq-contents .question .q,
.tackle-lounge-faq .faq-inner .faq-contents .answer .a {
  font-size: 26px;
  width: 40px;
  height: 40px;
  background: var(--tackle-lounge-primary-color);
  color: #fff;
  display: grid;
  place-content: center;
  border-radius: 50%;
  aspect-ratio: 1;
}

.tackle-lounge-faq .faq-inner .faq-contents .answer {
  display: none;
  margin-top: 10px;
}

.tackle-lounge-faq .faq-inner .faq-contents .answer .a {
  background: #dfefd8;
  color: var(--tackle-lounge-primary-color);
}

.tackle-lounge-faq .faq-inner .faq-contents .single-faq.faq-open .answer {
  display: flex;
  gap: 20px;
}

.tackle-lounge-faq .faq-inner .faq-contents .answer .answer-contents {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tackle-lounge-faq .faq-inner .faq-contents .single-faq .minus {
  display: none;
}

.tackle-lounge-faq .faq-inner .faq-contents .single-faq.faq-open .plus {
  display: none;
}

.tackle-lounge-faq .faq-inner .faq-contents .single-faq.faq-open .minus {
  display: grid;
  background: #bbbbbb;
}

.tackle-lounge-faq .faq-inner .faq-contents .single-faq.faq-open .minus::before,
.tackle-lounge-faq .faq-inner .faq-contents .single-faq .plus::before,
.tackle-lounge-faq .faq-inner .faq-contents .single-faq .plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45%;
  height: 4px;
  background: #fff;
}

.tackle-lounge-faq .faq-inner .faq-contents .single-faq .plus::after {
  height: 45%;
  width: 4px;
}

.tackle-lounge-faq .faq-inner .faq-contents .single-faq .answer strong {
  font-weight: bolder;
}

.tackle-lounge-faq .faq-inner .faq-contents .single-faq .answer {
  font-size: 20px;
}

.tackle-lounge-faq .more-question-text {
  font-size: 20px;
  margin-top: 30px;
}

/** Faq Section End **/

/** Appraisal Form **/
.tackle-lounge-appraisal-form {
  padding: 72px 16px 90px;
  background-color: #f3f7ff;
}

.appraisal-form-inner {
  max-width: 640px;
  margin: 0 auto;
}

.appraisal-form-heading {
  text-align: center;
  font-size: 28px;
  margin-bottom: 36px;
  color: #2d2f86;
  font-weight: 700;
}

.appraisal-form-inner form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.appraisal-form-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}

.appraisal-form-row p {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.appraisal-form-row label {
  font-size: 18px;
  color: #4b4b4b;
  font-weight: 600;
}

.form-required {
  color: #d94c4c;
  font-weight: 700;
}

.appraisal-form-row input,
.appraisal-form-row textarea,
.appraisal-form-row select {
  width: 100%;
  border: 1px solid #2d2f86;
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  background-color: #fff;
  box-sizing: border-box;
}

.application-select {
  width: 100%;
}

.appraisal-form-row textarea {
  resize: vertical;
  min-height: 140px;
}

.appraisal-form-row-textarea {
  align-items: flex-start;
}

.appraisal-form-submit input {
  border: 1px solid #2d2f86;
  background-color: #fff;
  color: #2d2f86;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  margin: 0 auto 0;
  width: 100%;
  max-width: 560px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 4px;
  transition: 200ms ease;
}

.appraisal-form-submit:hover {
  background-color: #2d2f86;
  color: #fff;
}

.wpcf7-spinner {
  display: none;
}

.tackle-lounge-contact-popup {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  padding: 12px 18px;
  background: #1f6b3c;
  color: #fff;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  font-size: 14px;
}

.tackle-lounge-footer .footer-social-list a {
  background-color: #fff;
  color: #44b14c !important;
  box-shadow: 0 0 8px #ffffff;
}

@media (max-width: 768px) {
  .appraisal-form-row {
    align-items: flex-start;
  }

  .appraisal-form-row label {
    font-weight: 600;
  }

  .appraisal-form-submit {
    width: 100%;
  }

  /** wito section **/
  .tackle-lounge-wito-section .wito-cards .wito-single-card {
    width: 340px;
  }

  /** wito section end **/
  /** sis section **/
  .sis-header {
    font-size: 22px;
  }

  .tackle-lounge-sis-images {
    flex-direction: column;
  }

  .tackle-lounge-sis-images .tackle-lounge-sis-col {
    width: 330px;
  }

  .tackle-lounge-sis-col div:first-child {
    height: 240px;
  }

  .tackle-lounge-sis-images {
    justify-content: center;
    align-items: center;
  }

  .tackle-lounge-sis-col-text {
    font-size: 20px;
  }

  .tackle-lounge-sis-col-text span:last-child {
    font-size: 12px;
  }

  .tackle-lounge-sis-col div:last-child {
    height: 120px;
  }

  .tackle-lounge-sis-col div img.sis-arrow {
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    top: 330px;
  }

  .tackle-lounge-sis-col div img.sis-arrow.sis-arrow-secondary {
    top: 150%;
    width: 60px;
  }

  .tackle-lounge-sis-col div img.sis-arrow.sis-arrow-secondary {
    display: none;
  }

  /* sis section end **/
}

/** Appraisal Form End **/

/** Footer **/
.tackle-lounge-footer {
  background-color: var(--tackle-lounge-footer-bg);
}

/* No-prep section styles */
.tackle-lounge-no-prep {
  padding: 60px 16px;
  text-align: center;
  background-image: url("assets/images/paper-texture.jpg");
  /* min-height: 100vh;
  min-height: 100dvh; */
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 3px dotted var(--tackle-lounge-secondary-color);
}

.tackle-lounge-no-prep .no-prep-inner {
  max-inline-size: var(--tackle-lounge-container-width);
  margin-inline: auto;
  /* padding: 48px 30px; */
  border-radius: 12px;
}

.no-prep-heading {
  font-family: curve;
  font-size: 48px;
  font-weight: 900;
  color: var(--tackle-lounge-hero-h2-color);
  margin: 0 0 24px 0;
  line-height: 1.05;
}

.no-prep-divider {
  width: 60%;
  margin: 10px auto 22px auto;
  border-top: 4px dotted rgba(0, 0, 0, 0.12);
}

.no-prep-line {
  font-size: 32px;
  font-family: curve;
  font-weight: bold;
  color: var(--tackle-lounge-secondary-color);
  margin: 8px 0;
  line-height: 1.8;
  font-weight: 700;
}

.no-prep-sub {
  font-size: 32px;
  font-family: curve;
  font-weight: bold;
  color: var(--tackle-lounge-secondary-color);
  opacity: 0.95;
  margin-top: 40px;
}

/** CTA Banner Section **/
.tackle-lounge-cta-banner {
  /* min-height: 100vh;
  min-height: 100dvh; */
}

/** No-prep section styles end **/
@media (max-width: 768px) {
  .no-prep-heading {
    font-size: 32px;
  }

  .no-prep-line {
    font-size: 18px;
  }

  .tackle-lounge-no-prep .no-prep-inner {
    padding: 28px 18px;
  }
}

/** CTA Banner Section **/
.tackle-lounge-cta-banner {
  padding: 70px 16px 80px;
  background-color: #dbdbdb;
  background-image: url("assets/images/paper-texture.jpg");
}

.cta-banner-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.cta-banner-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px 48px;
  border-radius: 18px;
  border: 3px solid #a7c169;
  background: linear-gradient(180deg, #53733a 0%, #38522c 100%);
  color: #f7f4e3;
  font-size: 50px;
  font-family: curve;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.35),
    inset 0 -4px 0 rgba(0, 0, 0, 0.25), 0 6px 0 #2a3c1f,
    0 10px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.cta-banner-button svg {
  fill: #f9ea65;
  stroke: #f9ea65;
}

.cta-banner-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: rotate(90deg);
}

.cta-banner-note {
  margin-top: 38px;
  font-size: 40px;
  color: #3b3b3b;
  font-weight: 600;
  font-family: curve;
}

.cta-banner-button:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.45),
    inset 0 -4px 0 rgba(0, 0, 0, 0.25), 0 8px 0 #2a3c1f,
    0 14px 18px rgba(0, 0, 0, 0.3);
  filter: brightness(1.05);
}

.cta-banner-button:active {
  transform: translateY(2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -2px 0 rgba(0, 0, 0, 0.2), 0 2px 0 #2a3c1f,
    0 6px 10px rgba(0, 0, 0, 0.25);
}

.cta-banner-button:focus-visible {
  outline: 3px solid #f9ea65;
  outline-offset: 4px;
}

@media (max-width: 768px) {
  .cta-banner-button {
    font-size: 20px;
    padding: 16px 28px;
  }

  .cta-banner-icon {
    width: 32px;
    height: 32px;
  }

  .cta-banner-note {
    font-size: 15px;
  }
}

/** CTA Banner Section End **/

/** Footer sticky CTA **/

.footer-sticky-cta-section {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  padding: 30px 16px;
  width: 100%;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s, visibility 0.3s;
  background: rgba(255, 255, 255, 0.4);
  opacity: 0;
  visibility: hidden;
}

.footer-sticky-cta-section.section-visible {
  opacity: 1;
  visibility: visible;
}

.footer-sticky-cta-section a {
  font-size: 22px;
  background: var(--tackle-lounge-primary-color);
  padding: 0 20px;
  height: 68px;
  width: fit-content;
  justify-content: center;
  align-items: center;
  display: flex;
  color: #fff;
  font-weight: bold;
  font-family: sans;
  text-decoration: none;
  border-radius: 100px;
  margin-inline: auto;
  transition: 200ms ease;
}

.footer-sticky-cta-section a:hover {
  background: #6fc950;
  transform: translateY(-4px);
}

/** Footer sticky CTA End **/

.tackle-lounge-footer .tackle-lounge-footer-inner {
  padding: 72px 16px 64px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tackle-lounge-footer .footer_nav {
  margin-top: 32px;
}

.tackle-lounge-footer .footer-social {
  margin-top: 24px;
}

.tackle-lounge-footer .footer-social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.tackle-lounge-footer .footer-social-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.tackle-lounge-footer .footer-social-list a:hover {
  background-color: #5fae3c;
  color: #fff !important;
}

.tackle-lounge-footer .copyright {
  margin-top: 42px;
}

.tackle-lounge-footer nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
  color: #fff;
  font-size: 14px;
  line-height: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.tackle-lounge-footer nav ul a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
}

footer .copyright p {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
}

.purchase-table-wrapper {
  border-radius: 18px;
}

.purchase-category-section-posts {
  padding-inline: 10px;
}

@media (max-width: 768px) {
  .tackle-lounge-footer .footer-social {
    margin-top: 20px;
  }

  .tackle-lounge-footer .footer-social-list {
    gap: 12px;
  }

  .tackle-lounge-footer .footer-social-list a {
    width: 100%;
    max-width: 220px;
    justify-content: center;
    font-size: 12px;
    padding: 8px 12px;
  }
}

/** Footer **/

/** Laptop **/
@media screen and (max-width: 1024px) {
  .navbar-brand .logo {
    width: 150px;
  }

  header .navbar-nav {
    gap: 0;
    font-size: 12px;
  }

  header .first-line .navbar-nav li {
    padding-inline: 6px;
  }

  header .first-line .navbar-nav li a {
    font-size: 14px;
  }

  header .navbar-nav .nav-item {
    padding: 8px;
  }

  /** wito section **/
  .tackle-lounge-wito-section .wito-single-card {
    width: 380px;
  }

  /** wito section end **/

  /** purhcase process section **/
  .tackle-lounge-purchase-process-section .single-step-card {
    width: 250px;
  }

  /** Purchase Process Section End **/
}

/** Laptop End **/
/** Tablet **/
@media screen and (max-width: 768px) {
  header {
    padding-inline: 10px;
  }

  header .navbar-collapse {
    display: flex !important;
    flex: 1;
    justify-content: flex-end;
  }

  header .navbar-nav {
    flex-direction: column;
    position: absolute;
    width: 200px;
    background: #ffffffb5;
    right: 0;
    top: 100%;
    z-index: 4;
  }

  header .first-line {
    justify-content: space-between;
  }

  header .first-line .navbar-nav li::before {
    content: unset;
    width: 0;
    height: 0;
  }

  header .first-line .navbar-nav li a {
    font-weight: 600;
    cursor: pointer;
    font-size: 18px;
  }

  header .first-line .navbar-nav {
    /* display: none; */
    width: 100% !important;
    height: 0;
    opacity: 0;
    overflow: hidden;
    display: flex;
    transition: 500ms ease;
  }

  header .first-line .navbar-nav.simple-nav {
    position: static;
    flex-direction: row;
    width: auto !important;
    height: auto;
    opacity: 1;
    overflow: visible;
    padding: 0;
    gap: 12px;
  }

  header .first-line .navbar-nav.simple-nav li:first-child {
    display: none;
  }

  header .first-line .navbar-nav.open-menu {
    opacity: 1;
    height: 500px !important;
    overflow: hidden;
    max-inline-size: var(--tackle-lounge-container-width);
    padding: 40px;
  }

  .tackle-lounge-lures-hero .main-headings h3 {
    font-size: 40px;
  }

  .tackle-lounge-lures-hero .main-headings h2 {
    font-size: 56px;
  }

  .tackle-lounge-lures-hero .main-headings h4 {
    font-size: 32px;
  }

  .tackle-lounge-lures-hero .body-texts p {
    font-size: 24px;
    word-break: keep-all;
  }

  .hero-section-cta .button-main-title {
    font-size: 20px;
  }

  .hero-section-cta .button-sub-title {
    font-size: 18px;
  }

  .hero-cta-info {
    padding: 14px 16px;
    max-width: 100%;
  }

  .hero-cta-info-title {
    font-size: 18px;
  }

  .hero-cta-info-highlight {
    font-size: 36px;
  }

  .hero-cta-info-body {
    font-size: 16px;
  }

  .hero-cta-info-note {
    font-size: 14px;
  }

  .hero-cta-info p {
    word-break: auto-phrase;
    margin: 6px 0;
    text-align: center;
  }

  /** Should I Sell Section **/

  .tackle-lounge-sis-col div img.sis-arrow {
    width: 80px;
  }

  .tackle-lounge-sis-col div:first-child {
    height: 240px;
  }

  .tackle-lounge-sis-col div:last-child {
    height: 130px;
  }

  .tackle-lounge-sis-col div img.sis-arrow.sis-arrow-secondary {
    top: 145%;
  }

  .sis-header {
    font-size: 32px;
  }

  /** Should I Sell Section End **/

  /** HTS **/
  .tackle-lounge-hts-section .hts-heading {
    font-size: 30px;
  }

  .tackle-lounge-hts-inner .hts-badge {
    font-size: 24px;
    display: block;
    width: fit-content;
    margin: auto;
  }

  .tackle-lounge-hts-inner .hts-single-step img {
    width: 100%;
  }

  /** HTS End **/

  /** WITO **/
  .tackle-lounge-wito-section-inner .wito-heading {
    font-size: 36px;
  }

  .tackle-lounge-wito-section .wito-cards {
    flex-direction: column;
  }

  /** WITO End **/

  /** We evaluate section **/


  .tackle-lounge-we-evaluate-section table {
    min-width: 600px;
  }

  .tackle-lounge-we-evaluate-section .product-image {
    width: 60px;
    height: 60px;
  }

  .tackle-lounge-purchase-category-section table {
    min-width: 600px;
  }

  /** We evaluate section end **/

  /** FAQ **/

  .tackle-lounge-faq .faq-heading .main-heading .main-title {
    font-size: 36px;
  }

  .tackle-lounge-faq .faq-heading .main-heading .sub-title {
    font-size: 18px;
  }

  .tackle-lounge-faq .faq-heading .sub-heading .sub-heading-text {
    font-size: 14px;
  }

  .tackle-lounge-faq .faq-inner .faq-contents .question-contents {
    font-size: 16px;
  }

  .tackle-lounge-faq .faq-inner .faq-contents .question .q,
  .tackle-lounge-faq .faq-inner .faq-contents .answer .a {
    font-size: 20px;
  }

  .tackle-lounge-faq .faq-inner .faq-contents .single-faq .answer {
    font-size: 16px;
  }

  .tackle-lounge-faq {
    padding: 20px;
  }

  .tackle-lounge-faq .more-question-text {
    font-size: 14px;
  }

  /** FAQ End **/
}

@media screen and (max-width: 600px) {
  .tackle-lounge-tbh-section .tbh-inner {
    font-size: 20px;
  }

  .single-tbh-card .image-contents {
    height: 100%;
    overflow: hidden;
    object-fit: cover;
    width: 372px;
  }

  .single-tbh-card .image-contents img {
    width: 100%;
  }

  .tbh-heading h3 {
    font-size: 24px;
  }
}

@media screen and (max-width: 900px) {
  .tackle-lounge-purchase-process-section .purchase-process-heading {
    font-size: 36px;
  }

  .tackle-lounge-purchase-process-section .single-step-card h3 {
    font-size: 24px;
  }

  .tackle-lounge-purchase-process-section .single-step-card {
    width: 200px;
  }

  /** no prep section **/

  .no-prep-sub {
    font-size: 18px;
  }

  /** no prep section end **/
  /** should i sell section **/

  .tackle-lounge-sis-col-text {
    font-size: 24px;
  }

  .tackle-lounge-sis-col-text span:last-child {
    font-size: 16px;
  }

  .tackle-lounge-sis-col-text-line-2 p {
    font-size: 20px;
  }

  /** Should I Sell Section End **/
  .purchase-process-inner .image-contents {
    height: 220px;
  }
}

/** Tablet End **/
/** Phone **/
@media screen and (max-width: 500px) {
  .purchase-process-inner .process-steps {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .tackle-lounge-purchase-process-section .single-step-card {
    width: 80% !important;
  }

  .tackle-lounge-purchase-process-section .ps-arrow {
    display: none !important;
  }

  .purchase-process-inner .image-contents {
    height: auto;
    max-height: 300px;
  }

  .tackle-lounge-sis-col div:first-child {
    height: 240px;
  }

  .tackle-lounge-sis-col div img.sis-arrow {
    width: 60px;
  }

  /* .tackle-lounge-sis-col-text {
        font-size: 20px;
    } */

  .tackle-lounge-sis-col-text span:last-child {
    font-size: 10px;
  }

  .tackle-lounge-sis-col div:last-child {
    /* height: 95px; */
  }

  .tackle-lounge-sis-images {
    padding-inline: 0;
  }

  /** Purchase Process Section **/

  .tackle-lounge-purchase-process-section .single-step-card h3 {
    font-size: 18px;
  }

  .tackle-lounge-purchase-process-section .single-step-card {
    width: 130px;
  }

  .tackle-lounge-purchase-process-section .single-step-card h3 .no {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }

  .tackle-lounge-purchase-process-section .ps-arrow {
    width: 60px;
  }

  /** Purchase Process Section End **/

  /** HTS **/

  .tackle-lounge-hts-inner .text-contents h3 {
    font-size: 24px;
  }

  .tackle-lounge-hts-inner .text-contents img {
    height: 80px;
  }

  .tackle-lounge-hts-inner .hts-badge {
    font-size: 18px;
  }

  /** HTS End **/
  /** TBH **/
  .tbh-heading h3:last-child {
    font-size: 20px;
  }

  .tbh-heading h3 {
    font-size: 20px;
  }

  /** TBH End **/

  /** FAQ **/

  .tackle-lounge-faq .faq-heading .main-heading .main-title {
    font-size: 32px;
  }

  .tackle-lounge-faq .faq-heading .main-heading .sub-title {
    font-size: 16px;
  }

  .tackle-lounge-faq .faq-heading .sub-heading .sub-heading-text {
    font-size: 12px;
  }

  .tackle-lounge-faq .faq-inner .faq-contents .question-contents {
    font-size: 14px;
  }

  .tackle-lounge-faq .faq-inner .faq-contents .question .q,
  .tackle-lounge-faq .faq-inner .faq-contents .answer .a {
    font-size: 18px;
  }

  .tackle-lounge-faq .faq-inner .faq-contents .single-faq .answer {
    font-size: 14px;
  }

  .tackle-lounge-faq {
    padding: 18px;
  }

  /** FAQ End **/
  .purchase-process-inner .image-contents {
    height: auto;
    max-height: 300px;
  }

  .tackle-lounge-purchase-process-section .single-step-card h3 {
    font-size: 12px;
  }

  .faq-heading .sub-heading p:nth-last-of-type(2) {
    text-align: center;
  }
}

@media screen and (max-width: 430px) {
  header .css-mobile-menu {
    display: flex;
    flex-direction: column;
  }

  header .first-line .navbar-nav li a {
    color: #fff;
  }

  /** Purchase Process Section **/

  .tackle-lounge-purchase-process-section .single-step-card h3 {
    font-size: 28px;
  }

  .tackle-lounge-purchase-process-section .single-step-card {
    width: 120px;
  }

  .tackle-lounge-purchase-process-section .single-step-card h3 .no {
    width: 42px;
    height: 42px;
    font-size: 24px;
  }

  .tackle-lounge-purchase-process-section .ps-arrow {
    width: 50px;
  }

  /** Purchase Process Section End **/
  /** TBH **/
  .tbh-heading h3:last-child {
    font-size: 16px;
  }

  .tbh-heading h3 {
    font-size: 16px;
  }

  /** TBH End **/

  /** FAQ **/

  .tackle-lounge-faq .faq-heading .main-heading .main-title {
    font-size: 30px;
  }

  .tackle-lounge-faq .faq-heading .main-heading .sub-title {
    font-size: 14px;
  }

  .tackle-lounge-faq .faq-heading .sub-heading .sub-heading-text {
    font-size: 10px;
  }

  .tackle-lounge-faq .faq-inner .faq-contents .question-contents {
    font-size: 12px;
  }

  .tackle-lounge-faq .faq-inner .faq-contents .question .q,
  .tackle-lounge-faq .faq-inner .faq-contents .answer .a {
    font-size: 16px;
    min-width: 40px;
    min-height: 40px;
  }

  .tackle-lounge-faq .faq-inner .faq-contents .single-faq .answer {
    font-size: 12px;
  }

  .tackle-lounge-faq {
    padding: 10px;
  }

  .tackle-lounge-faq .faq-inner .faq-contents .question {
    gap: 4px;
  }

  /** FAQ End **/

  /** No prep section **/

  .no-prep-heading {
    font-size: 26px;
  }

  .no-prep-line {
    font-size: 16px;
  }

  .tackle-lounge-no-prep .no-prep-inner {
    padding-inline: 0;
  }

  .no-prep-sub {
    font-size: 15px;
  }

  /** No prep section end **/
}

/** Phone End **/

/** Purchase history single **/
.tackle-lounge-purchase-single {
  background: #f7faf4;
  padding: 140px 0 80px;
}

.purchase-single-container {
  max-inline-size: var(--tackle-lounge-container-width);
  margin-inline: auto;
  padding-inline: 40px;
}

.purchase-single-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: start;
}

.purchase-single-article {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.purchase-single-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.purchase-single-meta {
  display: flex;
  gap: 16px;
  color: #8a8f8a;
  font-size: 14px;
  padding: 20px 32px 0;
}

.purchase-single-title {
  font-size: 24px;
  color: var(--tackle-lounge-text-dark);
  padding: 16px 32px 0;
}

.purchase-single-body {
  padding: 24px 32px 32px;
  line-height: 1.8;
  color: #313131;
}

.purchase-single-body img {
  max-width: 100%;
  height: auto;
}

.purchase-single-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.purchase-widget {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.purchase-widget-title {
  background: var(--tackle-lounge-primary-color);
  color: #fff;
  font-size: 16px;
  padding: 12px 16px;
}

.purchase-widget-list {
  list-style: none;
  padding: 12px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.purchase-widget-list li a {
  color: #1d1d1d;
  text-decoration: none;
}

.purchase-widget-list li a:hover {
  color: var(--tackle-lounge-primary-color);
}

.purchase-widget-search {
  padding: 16px;
}

.purchase-search-form {
  display: flex;
}

.purchase-search-field {
  flex: 1;
  border: 1px solid #d8ded4;
  padding: 8px 10px;
  font-size: 14px;
}

.purchase-search-submit {
  border: none;
  background: var(--tackle-lounge-primary-color);
  color: #fff;
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
}

.purchase-search-submit:hover {
  background: #5fae3c;
}

@media (max-width: 960px) {
  .purchase-single-grid {
    grid-template-columns: 1fr;
  }

  .purchase-single-sidebar {
    margin-top: 24px;
  }
}

@media (max-width: 640px) {
  .purchase-single-container {
    padding-inline: 20px;
  }

  .purchase-single-meta {
    flex-direction: column;
    gap: 6px;
  }

  .purchase-single-title {
    font-size: 20px;
  }
}

.tackle-lounge-voice-of-customer {
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  background-color: #354b37;
}

.tackle-lounge-voice-of-customer::before {
  content: "";
  position: absolute;
  inset: -20% 0 0;
  background: repeating-radial-gradient(
    circle at 0 0,
    rgba(255, 255, 255, 0.5) 0,
    rgba(255, 255, 255, 0.5) 8px,
    rgba(255, 255, 255, 0) 8px,
    rgba(255, 255, 255, 0) 28px
  );
  opacity: 0.35;
  animation: voice-wave 22s linear infinite;
  z-index: 0;
}

.tackle-lounge-voice-of-customer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.7),
    rgba(235, 255, 242, 0.15)
  );
  opacity: 0.8;
  z-index: 0;
}

.voice-bg-ornaments {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.voice-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.55;
  animation: voice-float 16s ease-in-out infinite;
}

.voice-orb--one {
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.9),
    rgba(255, 196, 210, 0.25)
  );
  top: -40px;
  left: -20px;
}

.voice-orb--two {
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.9),
    rgba(182, 228, 255, 0.25)
  );
  bottom: -60px;
  right: -40px;
  animation-delay: -6s;
}

.voice-orb--three {
  width: 140px;
  height: 140px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.8),
    rgba(255, 228, 178, 0.3)
  );
  top: 30%;
  right: 6%;
  animation-delay: -10s;
}

.voice-petal {
  position: absolute;
  width: 28px;
  height: 20px;
  background: radial-gradient(circle at 30% 30%, #ffd6e2, #f5a8bf);
  border-radius: 70% 30% 70% 30%;
  opacity: 0.7;
  box-shadow: 0 6px 12px rgba(233, 141, 170, 0.25);
  animation: voice-fall 14s linear infinite;
}

.voice-petal--one {
  left: 8%;
  top: -40px;
  animation-delay: -2s;
}

.voice-petal--two {
  left: 35%;
  top: -80px;
  animation-delay: -7s;
}

.voice-petal--three {
  left: 68%;
  top: -60px;
  animation-delay: -4s;
}

.voice-petal--four {
  left: 88%;
  top: -90px;
  animation-delay: -9s;
}

.voice-stamp {
  position: absolute;
  font-weight: 700;
  color: rgba(199, 27, 27, 0.4);
  border: 2px solid rgba(199, 27, 27, 0.4);
  padding: 8px 12px;
  border-radius: 6px;
  transform: rotate(-6deg);
  letter-spacing: 0.2em;
  font-size: 18px;
}

.voice-stamp--one {
  bottom: 18%;
  left: 6%;
}

.voice-stamp--two {
  top: 22%;
  right: 10%;
  transform: rotate(8deg);
}

.voice-of-customer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.voice-of-customer-heading {
  text-align: center;
  font-size: 32px;
  margin: 0;
}

.voice-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.voice-testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.6);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  word-wrap: break-word;
  text-wrap: wrap;
}

.voice-testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.6),
      rgba(255, 240, 244, 0.2)
    ),
    repeating-linear-gradient(
      120deg,
      rgba(255, 205, 220, 0.25) 0,
      rgba(255, 205, 220, 0.25) 8px,
      rgba(255, 255, 255, 0) 8px,
      rgba(255, 255, 255, 0) 22px
    );
  opacity: 0.6;
  pointer-events: none;
  background-size: auto, 200% 200%;
  animation: voice-card-shift 14s linear infinite;
}

.voice-testimonial-card::after {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: radial-gradient(
      circle,
      rgba(255, 226, 235, 0.55),
      rgba(255, 226, 235, 0) 60%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(212, 238, 255, 0.5),
      rgba(212, 238, 255, 0) 55%
    );
  opacity: 0.7;
  animation: voice-card-glow 12s ease-in-out infinite;
  pointer-events: none;
}

.voice-testimonial-card > * {
  position: relative;
  z-index: 1;
}

.voice-testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
}

.voice-testimonial-text {
  margin: 0;
  color: #2b2b2b;
  line-height: 1.7;
}

.voice-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: #1d1d1d;
}

.voice-testimonial-avatar img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.voice-testimonial-empty {
  text-align: center;
  margin: 0;
  color: #5b5b5b;
}

.voice-recommendation-card {
  background: #fff9b1;
  padding: 40px 32px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.voice-recommendation-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 220px solid transparent;
  border-right: 220px solid transparent;
  border-bottom: 140px solid #fff;
}

.voice-recommendation-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.3) 0,
    rgba(255, 255, 255, 0.3) 12px,
    rgba(255, 255, 255, 0) 12px,
    rgba(255, 255, 255, 0) 28px
  );
  opacity: 0.4;
}

.voice-recommendation-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 24px;
}

.voice-recommendation-header h3 {
  margin: 0;
  font-size: 34px;
  color: #2f2f2f;
}

.voice-recommendation-header p {
  margin: 8px 0 0;
  font-size: 18px;
  font-weight: 600;
  color: #2f2f2f;
}

.voice-recommendation-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.voice-recommendation-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 22px;
  font-weight: 700;
  color: #222;
}

.voice-recommendation-list li::before {
  content: "✔";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 4px;
  background: #e6e6e6;
  color: #c41f1f;
  font-size: 20px;
  box-shadow: inset 0 0 0 2px #c1c1c1;
}

.voice-emphasis {
  color: #e31b3c;
}

@keyframes voice-wave {
  0% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(12px) translateX(30px);
  }

  100% {
    transform: translateY(0) translateX(0);
  }
}

@keyframes voice-float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(18px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes voice-fall {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 0.7;
  }

  100% {
    transform: translateY(520px) translateX(40px) rotate(180deg);
    opacity: 0;
  }
}

@keyframes voice-card-glow {
  0% {
    transform: translateX(0) translateY(0);
  }

  50% {
    transform: translateX(30px) translateY(-10px);
  }

  100% {
    transform: translateX(0) translateY(0);
  }
}

@keyframes voice-card-shift {
  0% {
    background-position: 0 0, 0 0;
  }

  100% {
    background-position: 0 0, 200% 200%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tackle-lounge-voice-of-customer::before,
  .voice-orb,
  .voice-petal,
  .voice-testimonial-card::after,
  .voice-testimonial-card::before {
    animation: none;
  }

  .voice-testimonial-card {
    transition: none;
  }
}

@media (max-width: 720px) {
  .voice-of-customer-heading {
    font-size: 26px;
  }

  .voice-stamp {
    font-size: 14px;
    padding: 6px 10px;
  }

  .voice-recommendation-card {
    padding: 32px 20px;
  }

  .voice-recommendation-card::before {
    border-left-width: 160px;
    border-right-width: 160px;
    border-bottom-width: 110px;
  }

  .voice-recommendation-header h3 {
    font-size: 26px;
  }

  .voice-recommendation-list li {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  /* p,
    h2 {
        word-break: keep-all;
    } */

  h2 p {
    text-align: center;
  }

  br {
    display: none;
  }

  h3 p {
    font-size: 18px !important;
  }

  p.voice-testimonial-text {
    word-break: auto-phrase;
  }
}

@media (max-width: 500px) {
  .tackle-lounge-we-evaluate-section .purchase-table-wrapper {
    overflow-x: visible;
  }

  .tackle-lounge-we-evaluate-section table {
    min-width: 100%;
  }

  .tackle-lounge-we-evaluate-section thead {
    display: none;
  }

  .we-evaluate-section-posts tbody tr {
    display: grid;
    grid-template-columns: 88px 1fr;
    grid-template-areas:
      "image info"
      "image action";
    column-gap: 12px;
    row-gap: 4px;
    border-bottom: 1px solid #d9d9d9;
    padding: 12px 16px;
  }

  .we-evaluate-section-posts tbody tr td {
    padding: 0;
    border-right: none;
  }

  .we-evaluate-section-posts tbody tr td:first-child {
    grid-area: image;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .we-evaluate-section-posts tbody tr td:nth-child(2) {
    grid-area: info;
  }

  .we-evaluate-section-posts tbody tr td:nth-child(3) {
    grid-area: action;
  }

  .we-evaluate-section-posts .product-title {
    text-align: left;
  }

  .we-evaluate-section-posts .action-cell {
    text-align: left;
  }

  .we-evaluate-section-posts .action-button {
    margin-top: 4px;
    display: inline-block;
  }

  .purchase-category-section-posts table {
    min-width: 100%;
  }

  .purchase-category-section-posts th {
    text-align: center;
    width: auto;
  }

  .purchase-category-section-posts th:first-child {
    width: 100px;
  }

  .purchase-category-section-posts th:nth-child(3) {
    width: 50px;
  }

  .purchase-category-section-posts tbody tr td {
    width: auto;
  }

  .purchase-category-section-posts tbody tr td div {
    text-align: center !important;
  }

  .purchase-category-section-posts tbody tr td:first-child {
    width: 100px;
  }

  .purchase-category-section-posts tbody tr th:nth-child(3) {
    width: 50px;
  }

  .tackle-lounge-lures-hero .main-headings h2 {
    font-size: 49px;
  }

  .tackle-lounge-wito-section-inner .wito-heading {
    font-size: 33px;
  }

  .purchase-category-section-posts .product-category {
    font-size: 14px;
  }

  .voice-recommendation-list li {
    font-size: 16px !important;
  }

  .appraisal-form-row p {
    gap: 10px;
  }
}

@media (max-width: 350px) {
  .tackle-lounge-sis-images .tackle-lounge-sis-col {
    width: 100%;
  }
}

.voice-recommendation-card::before {
  border-left-width: 160px;
  border-right-width: 160px;
  border-bottom-width: 110px;
}

.voice-recommendation-header h3 {
  font-size: 26px;
}

.voice-recommendation-list li {
  font-size: 18px;
}