@charset "UTF-8";
/**
* Reset styles.
*
* Minimal reset of style.
* Some good practice are already in the inline CSS of each Gutenberg blocks.
*
* More about reset files:
* https://piccalil.li/blog/a-modern-css-reset/
* https://www.joshwcomeau.com/css/custom-css-reset/
* https://github.com/twbs/bootstrap/blob/main/scss/_reboot.scss
*/
/**
* Use box-sizing for every element.
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

/**
* Font smoothing.
*/
body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  overflow-x: hidden;
}

body:not(.wp-admin) {
  background: #1a1a1a;
  color: #ffffff;
}

/**
* Remove built-in form typography styles.
*/
input,
button,
textarea,
select {
  font: inherit;
}

/**
* Remove all animations, transitions for people that prefer not to see them.
* This is a global setting,
* but it would be better to use it on a per-element basis.
* https://web.dev/prefers-reduced-motion/#remove-motion-on-the-web
*
* These animations/@keyframes must be loaded from lazy.scss.
* Comment the lines below if an approach on per-element basis is used.
*/
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

ol,
ul {
  padding-left: 28px;
}

button {
  cursor: pointer;
}

/* Make images easier to work with */
img,
picture {
  display: block;
  max-width: 100%;
  height: auto;
}

:root {
  --largeDesktop: 1350px;
  --smallDesktop: 1200px;
  --desktop: 1024px;
  --navBreak: 901px;
  --block: 782px;
  --tablet: 768px;
  --mobile: 600px;
  --smallMobile: 480px;
  --gutter: 25px;
  --container: 1300px;
  --assetPath: "../../assets/images";
  --color-primary: #ff0000;
  --color-secondary: #3595E2;
  --color-tertiary: #83bca9;
  --color-4: #cae7ff;
  --color-5: #f6fafd;
  --color-6: #1C5889;
  --color-7: #BFBEC0;
  --color-8: #EBF5FD;
  --text-color: #1C1B1F;
  --font-family--1: "Arial", sans-serif;
  --font-family--2: "Arial", sans-serif;
}

@keyframes wiggle {
  0% {
    transform: rotate(10deg);
  }
  25% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(10deg);
  }
  75% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(10deg);
  }
}
/* Remove Scrollbar */
/* Reset Lists */
/* Assets Path */
.wp-block-cover h1:not(.has-text-color), .wp-block-cover h2:not(.has-text-color), .wp-block-cover h3:not(.has-text-color), .wp-block-cover h4:not(.has-text-color), .wp-block-cover h5:not(.has-text-color), .wp-block-cover h6:not(.has-text-color), .wp-block-cover p:not(.has-text-color), .wp-block-cover-image h1:not(.has-text-color), .wp-block-cover-image h2:not(.has-text-color), .wp-block-cover-image h3:not(.has-text-color), .wp-block-cover-image h4:not(.has-text-color), .wp-block-cover-image h5:not(.has-text-color), .wp-block-cover-image h6:not(.has-text-color), .wp-block-cover-image p:not(.has-text-color) {
  color: #1C1B1F;
}

body {
  font-family: var(--font-family--1);
  color: #1C1B1F;
}

h1 {
  line-height: 1.3;
  font-size: 48px;
  margin-bottom: 1vw;
  color: #fff;
}
@media (min-width: 768px) {
  h1 {
    font-size: 56px;
  }
}

h2 {
  line-height: 1.2;
  font-size: 38px;
  margin-bottom: 1vw;
  color: #1C1B1F;
  font-weight: 400;
}
@media (min-width: 768px) {
  h2 {
    font-size: 38px;
  }
}

h3 {
  line-height: 1.2;
  font-size: 34px;
  margin-bottom: 0.8vw;
  color: #1C1B1F;
  font-weight: 400;
}
@media (min-width: 768px) {
  h3 {
    font-size: 34px;
  }
}

p {
  color: #1C1B1F;
}

a {
  color: #ff0000;
}

.container {
  margin: 0 auto;
  max-width: 1320px;
  width: 100%;
}

.container-sm {
  margin: 0 auto;
  max-width: 1320px;
  width: 100%;
  max-width: 1065px;
}

.container-xs {
  margin: 0 auto;
  max-width: 1320px;
  width: 100%;
  max-width: 850px;
}

:not(.page-template-template-fullwidth) .content-area-wrapper {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1220px) {
  :not(.page-template-template-fullwidth) .content-area-wrapper {
    flex-direction: row;
  }
}

.gutter {
  padding: 25px 15px;
}
@media (min-width: 768px) {
  .gutter {
    padding: 45px 25px;
  }
}
.gutter .gutter {
  padding: 35px 0;
}
.gutter .side-gutter {
  padding: 0 0;
}

.gutter-sm {
  padding: 35px 25px;
}
.gutter-sm .gutter {
  padding: 35px 0;
}
.gutter-sm .side-gutter {
  padding: 0 0;
}

.inner-gutter {
  padding: 45px 25px;
}

.side-gutter {
  padding: 0 15px;
}
@media (min-width: 768px) {
  .side-gutter {
    padding: 0 25px;
  }
}
.side-gutter .gutter {
  padding: 35px 0;
}
.side-gutter .side-gutter {
  padding: 0 0;
}

.flex-columns-wrapper {
  max-width: 100%;
}

@media (min-width: 768px) {
  .flex-columns {
    display: flex;
  }
}

@media (min-width: 768px) {
  .flex-column {
    flex: 1;
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadein {
  /* display: none; */
  /* opacity:0; */
  position: relative;
  bottom: -300px;
  transition: all 1.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0;
}
.is-root-container .fadein {
  bottom: 0;
  opacity: 1;
}

.faded {
  bottom: 0;
  opacity: 1;
}

.fadeinleft {
  position: relative;
  left: -300px;
  transition: all 1.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0;
}
.is-root-container .fadeinleft {
  left: 0;
  opacity: 1;
}

.faded-left {
  left: 0;
  opacity: 1;
}

.fadeinright {
  position: relative;
  right: -300px;
  transition: all 1.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0;
}
.is-root-container .fadeinright {
  right: 0;
  opacity: 1;
}

.faded-right {
  right: 0;
  opacity: 1;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: #000;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -50px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 12px;
  width: 12px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 12px;
  height: 12px;
  background-color: #1C5889;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: transparent;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-radius: 100%;
}
.slick-dots li.slick-active button:before {
  background-color: #ff0000;
  opacity: 0.75;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.btn-primary,
.hs-submit .custom-submit-button {
  background-color: #ff0000;
  border: 1px solid #ff0000;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  height: 40px;
  min-height: 55px;
  min-width: 148px;
  padding-top: 2px;
  padding-left: 15px;
  padding-right: 15px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 5px;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.btn-primary:hover,
.hs-submit .custom-submit-button:hover {
  color: #fff;
  background-color: #CC5B3D;
  transform: scale(1.03);
}

.btn-white {
  background-color: #fff;
  border: 1px solid #fff;
  color: #000;
  font-size: 16px;
  font-weight: bold;
  height: 40px;
  min-height: 55px;
  min-width: 148px;
  padding-top: 2px;
  padding-left: 15px;
  padding-right: 15px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 5px;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.btn-white:hover {
  background-color: #F4F9FD;
  transform: scale(1.03);
}

.icon-box {
  height: 30px;
  width: 30px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.icon-twitter {
  background-color: white;
  background-image: url("../images/icon-twitter.svg");
}
.icon-twitter:focus, .icon-twitter:hover {
  background-color: #F4F9FD;
}

.icon-linkedin {
  background-color: white;
  background-image: url("../images/icon-linkedin.svg");
}
.icon-linkedin:focus, .icon-linkedin:hover {
  background-color: #F4F9FD;
}

.footer-social__icon-box a:first-child {
  margin-right: 15px;
}

.nav-minimal .main-navigation #main-menu > li > a {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.3px;
}
.nav-minimal .main-navigation #main-menu > li > a:hover {
  background: transparent;
  color: #ff0000;
}

.nav-bold .main-navigation #main-menu > li > a {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.nav-bold .main-navigation #main-menu > li > a:hover {
  background: #ff0000;
  color: #fff;
}

.nav-underlined .main-navigation #main-menu > li > a {
  position: relative;
}
.nav-underlined .main-navigation #main-menu > li > a::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #ff0000;
  transform: translateX(-50%);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.nav-underlined .main-navigation #main-menu > li > a:hover::after {
  width: 80%;
}

.nav-pill .main-navigation #main-menu > li > a {
  border-radius: 25px;
  margin: 0 4px;
}
.nav-pill .main-navigation #main-menu > li > a:hover {
  background: #ff0000;
  color: #fff;
}
.nav-pill .main-navigation #main-menu > li > a.current-menu-item {
  background: #ff0000;
  color: #fff;
}

.nav-mega .main-navigation #main-menu > li {
  position: static;
}
.nav-mega .main-navigation #main-menu > li .sub-menu {
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.nav-mega .main-navigation #main-menu > li .sub-menu li a {
  padding: 8px 0;
  font-size: 16px;
  font-weight: 600;
}
.nav-mega .main-navigation #main-menu > li .sub-menu li a:hover {
  background: transparent;
  padding-left: 10px;
}

.nav-animated .main-navigation #main-menu > li .sub-menu {
  transform: translateY(-20px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.nav-animated .main-navigation #main-menu > li .sub-menu li {
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.nav-animated .main-navigation #main-menu > li .sub-menu li:nth-child(1) {
  transition-delay: 0.1s;
}
.nav-animated .main-navigation #main-menu > li .sub-menu li:nth-child(2) {
  transition-delay: 0.15s;
}
.nav-animated .main-navigation #main-menu > li .sub-menu li:nth-child(3) {
  transition-delay: 0.2s;
}
.nav-animated .main-navigation #main-menu > li .sub-menu li:nth-child(4) {
  transition-delay: 0.25s;
}
.nav-animated .main-navigation #main-menu > li .sub-menu li:nth-child(5) {
  transition-delay: 0.3s;
}
.nav-animated .main-navigation #main-menu > li:hover .sub-menu {
  transform: translateY(0);
}
.nav-animated .main-navigation #main-menu > li:hover .sub-menu li {
  opacity: 1;
  transform: translateY(0);
}

.nav-dark {
  background: #1C1B1F;
}
.nav-dark .main-navigation #main-menu > li > a {
  color: #fff;
}
.nav-dark .main-navigation #main-menu > li > a:hover {
  color: #3595E2;
}
.nav-dark .menu-btn {
  background: #3595E2;
  border-color: #3595E2;
}
.nav-dark .menu-btn:hover {
  background: #2576B7;
  border-color: #2576B7;
}

.nav-gradient {
  background: linear-gradient(135deg, #ff0000 0%, #3595E2 100%);
}
.nav-gradient .main-navigation #main-menu > li > a {
  color: #fff;
}
.nav-gradient .main-navigation #main-menu > li > a:hover {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
}
.nav-gradient .menu-btn {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  color: #fff;
}
.nav-gradient .menu-btn:hover {
  background: #fff;
  color: #ff0000;
}

.nav-glass {
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.nav-glass .main-navigation #main-menu > li > a:hover {
  background: rgba(255, 0, 0, 0.1);
}

.nav-floating {
  margin: 20px auto;
  max-width: calc(1320px - 40px);
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.nav-hidden {
  transform: translateY(-100%);
}

.nav-visible {
  transform: translateY(0);
}

.nav-spaced .main-navigation #main-menu > li > a {
  margin: 0 15px;
}

.nav-compact .main-navigation #main-menu > li > a {
  margin: 0 8px;
  padding: 12px 16px;
}

@media (max-width: 599px) {
  .nav-mobile-stacked .main-navigation #main-menu {
    flex-direction: column;
    gap: 0;
  }
  .nav-mobile-stacked .main-navigation #main-menu > li > a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    margin: 0;
  }
  .nav-mobile-stacked .main-navigation #main-menu > li > a:hover {
    background: rgba(255, 0, 0, 0.05);
  }
}
@keyframes navSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes navFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.nav-animate-in {
  animation: navSlideDown 0.3s ease-out;
}

.nav-fade-in {
  animation: navFadeIn 0.3s ease-out;
}

.main-navigation #main-menu > li > a:focus {
  outline: 2px solid #3595E2;
  outline-offset: 2px;
}

.skip-nav {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #ff0000;
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 10000;
}
.skip-nav:focus {
  top: 6px;
}

.page-content.gutter {
  text-align: center;
}
.page-content.gutter #scenes-title,
.page-content.gutter #scenes-archive {
  text-align: left;
}

#scenes-title {
  text-align: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 1219px) {
  #scenes-title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  #scenes-title {
    font-size: 32px;
  }
}
@media (max-width: 599px) {
  #scenes-title {
    font-size: 28px;
  }
}

#scenes-archive {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
  min-height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
#scenes-archive .scene-item {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

.scene-item {
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.scene-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}
.scene-item .scene-thumbnail {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.scene-item .scene-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.scene-item .scene-thumbnail:hover img {
  transform: scale(1.05);
}
.scene-item .scene-info {
  padding: 20px;
  text-align: center;
}
.scene-item .scene-info h3 {
  margin: 0 0 10px 0;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}
.scene-item .scene-info .scene-meta {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 15px;
}
.scene-item .scene-info .scene-button {
  background: #ff0000;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.scene-item .scene-info .scene-button:hover {
  background: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

@media (max-width: 767px) {
  #scenes-archive {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 15px;
  }
  .scene-item .scene-thumbnail {
    height: 160px;
  }
  .scene-item .scene-info {
    padding: 15px;
  }
  .scene-item .scene-info h3 {
    font-size: 18px;
  }
}
@media (max-width: 599px) {
  #scenes-archive {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 10px;
  }
  .scene-item .scene-thumbnail {
    height: 140px;
  }
  .scene-item .scene-info {
    padding: 12px;
  }
  .scene-item .scene-info h3 {
    font-size: 16px;
  }
  .scene-item .scene-info .scene-meta {
    font-size: 13px;
  }
}
.scenes-pagination {
  text-align: center;
  margin-top: 40px;
}
.scenes-pagination .load-more-scenes {
  background: #ff0000;
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
}
.scenes-pagination .load-more-scenes:hover {
  background: #cc0000;
}
.scenes-pagination .load-more-scenes:disabled {
  background: rgba(255, 255, 255, 0.3);
  cursor: not-allowed;
}

.models-grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 20px 0;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.models-grid.models-grid-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
}
.models-grid.models-grid-empty p {
  font-size: 18px;
  color: rgba(28, 27, 31, 0.7);
  margin: 0;
}

.models-grid-ajax .models-grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px 0;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.models-title {
  text-align: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 40px auto;
}
.models-title h1 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media (max-width: 599px) {
  .models-title h1 {
    font-size: 28px;
  }
}

.scenes-title-wrapper {
  text-align: center;
  margin-bottom: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 2rem auto;
}

.scenes-title {
  color: #ff0000;
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  text-align: center;
}
@media (max-width: 1219px) {
  .scenes-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  .scenes-title {
    font-size: 2rem;
  }
}
@media (max-width: 599px) {
  .scenes-title {
    font-size: 1.75rem;
  }
}

.model-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(28, 27, 31, 0.05);
}
.model-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.model-card .model-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}
.model-card .model-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.model-card .model-image:hover img {
  transform: scale(1.05);
}
.model-card .model-info {
  padding: 20px;
  text-align: center;
}
.model-card .model-info .model-name {
  margin: 0 0 10px 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}
.model-card .model-info .model-name a {
  color: #1C1B1F;
  text-decoration: none;
  transition: color 0.3s ease;
}
.model-card .model-info .model-name a:hover {
  color: #ff0000;
}
.model-card .model-info .model-description {
  margin: 0 0 15px 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(28, 27, 31, 0.7);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.model-card .model-info .model-stats {
  margin: 0 0 20px 0;
  font-size: 14px;
  font-weight: 600;
  color: #ff0000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.model-card .model-info .view-scenes-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #ff0000;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.model-card .model-info .view-scenes-btn:hover {
  background: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.models-pagination {
  text-align: center;
  padding: 40px 0;
}
.models-pagination .load-more-models {
  display: inline-block;
  padding: 15px 30px;
  background: #ff0000;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.models-pagination .load-more-models:hover {
  background: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}
.models-pagination .load-more-models:disabled {
  background: rgba(255, 255, 255, 0.3);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.models-grid-loading .models-grid-container {
  opacity: 0.6;
  pointer-events: none;
}
.models-grid-loading .load-more-models {
  position: relative;
}
.models-grid-loading .load-more-models::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top: 2px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (min-width: 1350px) {
  .models-grid,
  .models-grid-ajax .models-grid-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
}
@media (max-width: 1219px) {
  .models-grid,
  .models-grid-ajax .models-grid-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .models-grid,
  .models-grid-ajax .models-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 15px;
    justify-content: center;
  }
  .model-card .model-image {
    height: 160px;
  }
  .model-card .model-info {
    padding: 15px;
  }
  .model-card .model-info .model-name {
    font-size: 18px;
  }
  .model-card .model-info .view-scenes-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}
@media (max-width: 599px) {
  .models-grid,
  .models-grid-ajax .models-grid-container {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 10px;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
  .model-card .model-image {
    height: 140px;
  }
  .model-card .model-info {
    padding: 12px;
  }
  .model-card .model-info .model-name {
    font-size: 16px;
  }
  .model-card .model-info .model-description {
    font-size: 13px;
  }
  .model-card .model-info .view-scenes-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
}
.footacular-login-container {
  max-width: 500px;
  margin: 4rem auto;
  padding: 3rem 2rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .footacular-login-container {
    margin: 2rem auto;
    padding: 2rem 1.5rem;
  }
}
.footacular-login-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #ff0000, #3595E2);
}
.footacular-login-container .footacular-forms-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footacular-login-form .footacular-login-title,
.footacular-login-form .footacular-register-title,
.footacular-register-form .footacular-login-title,
.footacular-register-form .footacular-register-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ff0000;
  margin-bottom: 2rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}
.footacular-login-form .footacular-login-title::after,
.footacular-login-form .footacular-register-title::after,
.footacular-register-form .footacular-login-title::after,
.footacular-register-form .footacular-register-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #ff0000, #3595E2);
  border-radius: 2px;
}
.footacular-login-form .form-row,
.footacular-register-form .form-row {
  margin-bottom: 1.5rem;
}
.footacular-login-form .form-row label,
.footacular-register-form .form-row label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #1C1B1F;
}
.footacular-login-form .form-row label .required,
.footacular-register-form .form-row label .required {
  color: #e74c3c;
}
.footacular-login-form .footacular-input,
.footacular-register-form .footacular-input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #f8f9fa;
  color: #1C1B1F;
}
.footacular-login-form .footacular-input:focus,
.footacular-register-form .footacular-input:focus {
  outline: none;
  border-color: #ff0000;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.1);
  transform: translateY(-1px);
}
.footacular-login-form .footacular-input::-moz-placeholder, .footacular-register-form .footacular-input::-moz-placeholder {
  color: #999;
}
.footacular-login-form .footacular-input::placeholder,
.footacular-register-form .footacular-input::placeholder {
  color: #999;
}
.footacular-login-form .footacular-checkbox,
.footacular-register-form .footacular-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  color: #1C1B1F;
}
.footacular-login-form .footacular-checkbox .footacular-checkbox-input,
.footacular-register-form .footacular-checkbox .footacular-checkbox-input {
  margin-right: 8px;
  transform: scale(1.2);
}
.footacular-login-form .footacular-button,
.footacular-register-form .footacular-button {
  width: 100%;
  padding: 18px 24px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}
.footacular-login-form .footacular-button::before,
.footacular-register-form .footacular-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}
.footacular-login-form .footacular-button:hover::before,
.footacular-register-form .footacular-button:hover::before {
  left: 100%;
}
.footacular-login-form .footacular-button.footacular-button-primary,
.footacular-register-form .footacular-button.footacular-button-primary {
  background: linear-gradient(135deg, #ff0000, #b30000);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}
.footacular-login-form .footacular-button.footacular-button-primary:hover,
.footacular-register-form .footacular-button.footacular-button-primary:hover {
  background: linear-gradient(135deg, #e60000, #990000);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}
.footacular-login-form .footacular-button.footacular-button-secondary,
.footacular-register-form .footacular-button.footacular-button-secondary {
  background: linear-gradient(135deg, #3595E2, #196eb1);
  color: #fff;
  box-shadow: 0 4px 15px rgba(53, 149, 226, 0.3);
}
.footacular-login-form .footacular-button.footacular-button-secondary:hover,
.footacular-register-form .footacular-button.footacular-button-secondary:hover {
  background: linear-gradient(135deg, #2089de, #16609b);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(53, 149, 226, 0.4);
}
.footacular-login-form .footacular-link,
.footacular-register-form .footacular-link {
  color: #ff0000;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}
.footacular-login-form .footacular-link:hover,
.footacular-register-form .footacular-link:hover {
  color: #b30000;
  text-decoration: underline;
}
.footacular-login-form .footacular-password-note,
.footacular-register-form .footacular-password-note {
  font-size: 14px;
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
  text-align: center;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #3595E2;
}

.footacular-form-divider {
  position: relative;
  text-align: center;
  margin: 1rem 0;
}
.footacular-form-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e1e5e9, transparent);
}
.footacular-form-divider span {
  background: #fff;
  padding: 0 20px;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  position: relative;
  z-index: 1;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid;
}
.woocommerce-error.woocommerce-error,
.woocommerce-info.woocommerce-error,
.woocommerce-message.woocommerce-error {
  background: #fef2f2;
  border-color: #e74c3c;
  color: #c53030;
}
.woocommerce-error.woocommerce-info,
.woocommerce-info.woocommerce-info,
.woocommerce-message.woocommerce-info {
  background: #eff6ff;
  border-color: #3b82f6;
  color: #1e40af;
}
.woocommerce-error.woocommerce-message,
.woocommerce-info.woocommerce-message,
.woocommerce-message.woocommerce-message {
  background: #f0fdf4;
  border-color: #22c55e;
  color: #15803d;
}

body.woocommerce-account:not(.logged-in) .content-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}
body.woocommerce-account:not(.logged-in) .site-main {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
body.woocommerce-account:not(.logged-in) .sidebar {
  display: none;
}

.footacular-cart-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}
.footacular-cart-container .footacular-cart-table {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.footacular-cart-container .footacular-cart-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 0.5fr;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #ff0000, #cc0000);
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .footacular-cart-container .footacular-cart-header {
    display: none;
  }
}
.footacular-cart-container .footacular-cart-items .footacular-cart-item {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 0.5fr;
  gap: 1rem;
  padding: 1.5rem;
  border-bottom: 1px solid #e1e5e9;
  align-items: center;
  transition: background-color 0.3s ease;
}
.footacular-cart-container .footacular-cart-items .footacular-cart-item:hover {
  background-color: #f8f9fa;
}
@media (max-width: 768px) {
  .footacular-cart-container .footacular-cart-items .footacular-cart-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1rem;
    text-align: center;
  }
  .footacular-cart-container .footacular-cart-items .footacular-cart-item .footacular-cart-item-product {
    grid-column: 1/-1;
  }
}
.footacular-cart-container .footacular-cart-items .footacular-cart-item .footacular-cart-item-product {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footacular-cart-container .footacular-cart-items .footacular-cart-item .footacular-cart-item-product .footacular-cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.footacular-cart-container .footacular-cart-items .footacular-cart-item .footacular-cart-item-product .footacular-cart-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footacular-cart-container .footacular-cart-items .footacular-cart-item .footacular-cart-item-product .footacular-cart-item-details .footacular-cart-item-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1C1B1F;
}
.footacular-cart-container .footacular-cart-items .footacular-cart-item .footacular-cart-item-product .footacular-cart-item-details .footacular-cart-item-title a {
  color: inherit;
  text-decoration: none;
}
.footacular-cart-container .footacular-cart-items .footacular-cart-item .footacular-cart-item-product .footacular-cart-item-details .footacular-cart-item-title a:hover {
  color: #ff0000;
}
.footacular-cart-container .footacular-cart-items .footacular-cart-item .footacular-cart-item-price {
  font-weight: 600;
  color: #ff0000;
  font-size: 1.1rem;
}
.footacular-cart-container .footacular-cart-items .footacular-cart-item .footacular-cart-item-quantity .quantity {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 120px;
}
.footacular-cart-container .footacular-cart-items .footacular-cart-item .footacular-cart-item-quantity .quantity input[type=number] {
  width: 60px;
  padding: 8px;
  border: 2px solid #e1e5e9;
  border-radius: 6px;
  text-align: center;
  font-size: 14px;
}
.footacular-cart-container .footacular-cart-items .footacular-cart-item .footacular-cart-item-quantity .quantity input[type=number]:focus {
  outline: none;
  border-color: #ff0000;
}
.footacular-cart-container .footacular-cart-items .footacular-cart-item .footacular-cart-item-subtotal {
  font-weight: 600;
  color: #ff0000;
  font-size: 1.1rem;
}
.footacular-cart-container .footacular-cart-items .footacular-cart-item .footacular-cart-item-remove .footacular-remove-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #e74c3c;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
}
.footacular-cart-container .footacular-cart-items .footacular-cart-item .footacular-cart-item-remove .footacular-remove-item:hover {
  background: #d62c1a;
  transform: scale(1.1);
}
.footacular-cart-container .footacular-cart-actions {
  padding: 1.5rem;
  background: #f8f9fa;
  border-top: 1px solid #e1e5e9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 768px) {
  .footacular-cart-container .footacular-cart-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
.footacular-cart-container .footacular-cart-actions .footacular-coupon-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .footacular-cart-container .footacular-cart-actions .footacular-coupon-section {
    flex-direction: column;
    align-items: stretch;
  }
}
.footacular-cart-container .footacular-cart-actions .footacular-coupon-section .footacular-coupon-label {
  font-weight: 600;
  color: #1C1B1F;
  white-space: nowrap;
}
.footacular-cart-container .footacular-cart-actions .footacular-coupon-section .footacular-coupon-input {
  padding: 10px 12px;
  border: 2px solid #e1e5e9;
  border-radius: 6px;
  font-size: 14px;
  min-width: 200px;
}
.footacular-cart-container .footacular-cart-actions .footacular-coupon-section .footacular-coupon-input:focus {
  outline: none;
  border-color: #ff0000;
}
@media (max-width: 768px) {
  .footacular-cart-container .footacular-cart-actions .footacular-coupon-section .footacular-coupon-input {
    min-width: auto;
  }
}
.footacular-cart-container .footacular-cart-collaterals {
  margin-top: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.cart_totals {
  padding: 2rem;
}
.cart_totals h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ff0000;
  margin-bottom: 1.5rem;
  text-align: center;
}
.cart_totals .shop_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}
.cart_totals .shop_table th, .cart_totals .shop_table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #e1e5e9;
}
.cart_totals .shop_table th:last-child, .cart_totals .shop_table td:last-child {
  text-align: right;
  font-weight: 600;
}
.cart_totals .shop_table th {
  font-weight: 600;
  color: #1C1B1F;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}
.cart_totals .shop_table .order-total th, .cart_totals .shop_table .order-total td {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ff0000;
  border-bottom: 2px solid #ff0000;
}
.cart_totals .wc-proceed-to-checkout {
  text-align: center;
}
.cart_totals .wc-proceed-to-checkout .checkout-button {
  display: inline-block;
  padding: 16px 32px;
  background: linear-gradient(135deg, #ff0000, #cc0000);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.cart_totals .wc-proceed-to-checkout .checkout-button:hover {
  background: linear-gradient(135deg, #e60000, #b30000);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
}

.woocommerce-cart-form__cart-item .woocommerce-cart-form__cart-item {
  display: none;
}

.woocommerce-cart-form__contents:empty::after {
  content: "Your cart is currently empty!";
  display: block;
  text-align: center;
  padding: 3rem;
  font-size: 1.2rem;
  color: #666;
  font-style: italic;
}

.footacular-videos-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}
.footacular-videos-container .woocommerce-products-header {
  text-align: center;
  margin-bottom: 3rem;
}
.footacular-videos-container .woocommerce-products-header .woocommerce-products-header__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff0000;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footacular-videos-container .footacular-videos-content .footacular-videos-grid {
  display: grid;
  grid-template-columns: repeat(var(--columns, 4), 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 1024px) {
  .footacular-videos-container .footacular-videos-content .footacular-videos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .footacular-videos-container .footacular-videos-content .footacular-videos-grid {
    grid-template-columns: repeat(var(--columns-mobile, 2), 1fr);
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .footacular-videos-container .footacular-videos-content .footacular-videos-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.woocommerce-notices-wrapper {
  margin-bottom: 2rem;
}
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-notices-wrapper .woocommerce-error {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border-left: 4px solid;
}
.woocommerce-notices-wrapper .woocommerce-message.woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info.woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-error.woocommerce-message {
  background: #f0fdf4;
  border-color: #22c55e;
  color: #15803d;
}
.woocommerce-notices-wrapper .woocommerce-message.woocommerce-info,
.woocommerce-notices-wrapper .woocommerce-info.woocommerce-info,
.woocommerce-notices-wrapper .woocommerce-error.woocommerce-info {
  background: #eff6ff;
  border-color: #3b82f6;
  color: #1e40af;
}
.woocommerce-notices-wrapper .woocommerce-message.woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-info.woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-error.woocommerce-error {
  background: #fef2f2;
  border-color: #e74c3c;
  color: #c53030;
}

.woocommerce-ordering,
.woocommerce-result-count {
  margin-bottom: 2rem;
  padding: 1rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.woocommerce-ordering select {
  padding: 8px 12px;
  border: 2px solid #e1e5e9;
  border-radius: 6px;
  font-size: 14px;
  background: #fff;
}
.woocommerce-ordering select:focus {
  outline: none;
  border-color: #ff0000;
}

.woocommerce-pagination {
  text-align: center;
  margin-top: 3rem;
}
.woocommerce-pagination ul {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.5rem;
}
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  display: inline-block;
  padding: 10px 15px;
  border: 2px solid #e1e5e9;
  border-radius: 6px;
  text-decoration: none;
  color: #1C1B1F;
  font-weight: 500;
  transition: all 0.3s ease;
}
.woocommerce-pagination ul li a:hover,
.woocommerce-pagination ul li span:hover {
  border-color: #ff0000;
  color: #ff0000;
}
.woocommerce-pagination ul li span.current {
  background: #ff0000;
  border-color: #ff0000;
  color: #fff;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.footacular-checkout-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
@media (max-width: 768px) {
  .footacular-checkout-container {
    padding: 1rem 0.5rem;
  }
}

.woocommerce-checkout .footacular-checkout-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .woocommerce-checkout .footacular-checkout-fields {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.woocommerce-checkout .footacular-checkout-billing,
.woocommerce-checkout .footacular-checkout-shipping {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.woocommerce-checkout .footacular-checkout-billing .footacular-checkout-title,
.woocommerce-checkout .footacular-checkout-shipping .footacular-checkout-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #ff0000;
  padding-bottom: 0.5rem;
}
.woocommerce-checkout .footacular-checkout-order-review {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}
.woocommerce-checkout .footacular-checkout-order-review .footacular-checkout-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table {
  background: transparent;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table thead {
  background: #ff0000;
  color: #fff;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table thead th {
  padding: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table tbody td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table tbody td:last-child {
  text-align: right;
  font-weight: 600;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot th {
  padding: 1rem;
  font-weight: 600;
  text-align: right;
  color: #fff;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot td {
  padding: 1rem;
  text-align: right;
  font-weight: 700;
  font-size: 1.2rem;
  color: #ff0000;
}
.woocommerce-checkout .form-row {
  margin-bottom: 1.5rem;
}
.woocommerce-checkout .form-row label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #fff;
}
.woocommerce-checkout .form-row label .required {
  color: #ff0000;
}
.woocommerce-checkout .form-row input,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: all 0.3s ease;
}
.woocommerce-checkout .form-row input::-moz-placeholder, .woocommerce-checkout .form-row select::-moz-placeholder, .woocommerce-checkout .form-row textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.woocommerce-checkout .form-row input::placeholder,
.woocommerce-checkout .form-row select::placeholder,
.woocommerce-checkout .form-row textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus {
  outline: none;
  border-color: #ff0000;
  box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.15);
}
.woocommerce-checkout .form-row.form-row-wide {
  grid-column: 1/-1;
}
.woocommerce-checkout .form-row.form-row-first {
  grid-column: 1;
}
.woocommerce-checkout .form-row.form-row-last {
  grid-column: 2;
}
@media (max-width: 768px) {
  .woocommerce-checkout .form-row.form-row-first, .woocommerce-checkout .form-row.form-row-last {
    grid-column: 1;
  }
}
.woocommerce-checkout #place_order {
  width: 100%;
  padding: 1.5rem 2rem;
  background: #ff0000;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.woocommerce-checkout #place_order:hover {
  background: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}
.woocommerce-checkout #place_order:disabled {
  background: rgba(255, 255, 255, 0.3);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.woocommerce-checkout .wc_payment_methods {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}
.woocommerce-checkout .wc_payment_methods li {
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}
.woocommerce-checkout .wc_payment_methods li.payment_method_ax_ccbill {
  border-color: #ff0000;
  background: rgba(255, 0, 0, 0.1);
}
.woocommerce-checkout .wc_payment_methods li label {
  display: flex;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
}
.woocommerce-checkout .wc_payment_methods li label input[type=radio] {
  margin-right: 0.5rem;
}
.woocommerce-checkout .wc_payment_methods li .payment_box {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  border-left: 4px solid #ff0000;
  color: #fff;
}
.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-info,
.woocommerce-checkout .woocommerce-message {
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 6px;
  border-left: 4px solid;
}
.woocommerce-checkout .woocommerce-error.woocommerce-error,
.woocommerce-checkout .woocommerce-info.woocommerce-error,
.woocommerce-checkout .woocommerce-message.woocommerce-error {
  background: rgba(239, 68, 68, 0.1);
  border-color: #e74c3c;
  color: #fca5a5;
}
.woocommerce-checkout .woocommerce-error.woocommerce-info,
.woocommerce-checkout .woocommerce-info.woocommerce-info,
.woocommerce-checkout .woocommerce-message.woocommerce-info {
  background: rgba(59, 130, 246, 0.1);
  border-color: #3b82f6;
  color: #93c5fd;
}
.woocommerce-checkout .woocommerce-error.woocommerce-message,
.woocommerce-checkout .woocommerce-info.woocommerce-message,
.woocommerce-checkout .woocommerce-message.woocommerce-message {
  background: rgba(34, 197, 94, 0.1);
  border-color: #22c55e;
  color: #86efac;
}
.woocommerce-checkout .woocommerce-form-login {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}
.woocommerce-checkout .woocommerce-form-login h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}
.woocommerce-checkout .woocommerce-form-login .form-row {
  margin-bottom: 1rem;
}
.woocommerce-checkout .woocommerce-form-login .button {
  background: #ff0000;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.woocommerce-checkout .woocommerce-form-login .button:hover {
  background: #cc0000;
  transform: translateY(-2px);
}

.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 2rem 0;
  list-style: none;
  padding: 0;
}
@media (max-width: 1024px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .woocommerce ul.products {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.woocommerce ul.products li.product {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
  margin: 0 !important;
  width: 100% !important;
  float: none !important;
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0.75rem 0 0.5rem;
  padding: 0 1rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.woocommerce ul.products li.product .price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ff0000;
  margin: 0.5rem 0;
  padding: 0 1rem;
}
.woocommerce ul.products li.product .button {
  width: 100%;
  margin-top: 1rem;
  border-radius: 0 0 12px 12px;
  padding: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.woocommerce ul.products li.product .attachment-woocommerce_thumbnail {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px 12px 0 0;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title a {
  color: inherit;
  text-decoration: none;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title a:hover {
  color: #ff0000;
}
.woocommerce ul.products li.product .woocommerce-loop-product__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.woocommerce ul.products li.product .woocommerce-loop-product__link img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.woocommerce ul.products li.product .woocommerce-loop-product__link:hover img {
  transform: scale(1.05);
}
.woocommerce ul.products li.product .onsale {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e74c3c;
  color: #fff;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 10;
}
.woocommerce ul.products li.product .star-rating {
  padding: 0 1rem 0.5rem;
  color: #ffc107;
  font-size: 0.9rem;
}
.woocommerce ul.products li.product .add_to_cart_button.loading {
  opacity: 0.7;
  pointer-events: none;
}
.woocommerce ul.products li.product .add_to_cart_button.loading::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 8px;
}
.woocommerce ul.products li.product .price del {
  color: #999;
  font-weight: 400;
  margin-right: 0.5rem;
}
.woocommerce ul.products li.product .price ins {
  text-decoration: none;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.woocommerce-products-header {
  text-align: center;
  margin-bottom: 2rem;
}
.woocommerce-products-header .woocommerce-products-header__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1C1B1F;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .woocommerce-products-header .woocommerce-products-header__title {
    font-size: 2rem;
  }
}

.woocommerce-ordering,
.woocommerce-result-count {
  margin-bottom: 1.5rem;
}

.woocommerce-ordering select {
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  font-size: 0.9rem;
}

.woocommerce-pagination {
  margin-top: 3rem;
  text-align: center;
}
.woocommerce-pagination .page-numbers {
  display: inline-flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.woocommerce-pagination .page-numbers li {
  margin: 0;
}
.woocommerce-pagination .page-numbers a,
.woocommerce-pagination .page-numbers span {
  display: block;
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  text-decoration: none;
  color: #1C1B1F;
  transition: all 0.2s ease;
}
.woocommerce-pagination .page-numbers a:hover,
.woocommerce-pagination .page-numbers span:hover {
  background: #ff0000;
  color: #fff;
  border-color: #ff0000;
}
.woocommerce-pagination .page-numbers .current {
  background: #ff0000;
  color: #fff;
  border-color: #ff0000;
}

.footacular-single-product {
  background: transparent;
  padding: 2rem 0;
}
.footacular-single-product .footacular-product-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .footacular-single-product .footacular-product-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.footacular-single-product .footacular-product-gallery {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.footacular-single-product .footacular-product-gallery .woocommerce-product-gallery {
  margin: 0;
}
.footacular-single-product .footacular-product-gallery .woocommerce-product-gallery .woocommerce-product-gallery__image {
  width: 100%;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.footacular-single-product .footacular-product-gallery .woocommerce-product-gallery .woocommerce-product-gallery__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.footacular-single-product .footacular-product-gallery .woocommerce-product-gallery .woocommerce-product-gallery__image:empty::before {
  content: attr(data-title, "Product Image");
  color: #ff0000;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}
.footacular-single-product .footacular-product-summary {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.footacular-single-product .footacular-product-summary .product_title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footacular-single-product .footacular-product-summary .price {
  font-size: 2rem;
  color: #ff0000;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.footacular-single-product .footacular-product-summary .price del {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.2rem;
  margin-right: 1rem;
}
.footacular-single-product .footacular-product-summary .price ins {
  text-decoration: none;
}
.footacular-single-product .footacular-product-summary .woocommerce-product-details__short-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.footacular-single-product .footacular-product-summary .cart {
  margin-bottom: 2rem;
}
.footacular-single-product .footacular-product-summary .cart .variations {
  margin-bottom: 1.5rem;
}
.footacular-single-product .footacular-product-summary .cart .variations .variation {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.footacular-single-product .footacular-product-summary .cart .variations .variation label {
  color: #fff;
  font-weight: 600;
  min-width: 120px;
  margin-right: 1rem;
}
.footacular-single-product .footacular-product-summary .cart .variations .variation select {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 0.75rem;
  border-radius: 6px;
  flex: 1;
}
.footacular-single-product .footacular-product-summary .cart .variations .variation select:focus {
  outline: none;
  border-color: #ff0000;
}
.footacular-single-product .footacular-product-summary .cart .single_add_to_cart_button {
  background: #ff0000;
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}
.footacular-single-product .footacular-product-summary .cart .single_add_to_cart_button:hover {
  background: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}
.footacular-single-product .footacular-product-summary .cart .single_add_to_cart_button:disabled {
  background: rgba(255, 255, 255, 0.3);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.footacular-single-product .footacular-product-summary .product_meta {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
}
.footacular-single-product .footacular-product-summary .product_meta span {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}
.footacular-single-product .footacular-product-summary .product_meta span a {
  color: #ff0000;
  text-decoration: none;
}
.footacular-single-product .footacular-product-summary .product_meta span a:hover {
  text-decoration: underline;
}

.woocommerce-related-products {
  margin-top: 3rem;
}
.woocommerce-related-products h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.woocommerce-related-products .products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.woocommerce-related-products .products .product {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.woocommerce-related-products .products .product:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.woocommerce-related-products .products .product .woocommerce-loop-product__title {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.woocommerce-related-products .products .product .price {
  color: #ff0000;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.woocommerce-related-products .products .product .button {
  background: #ff0000;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  width: 100%;
}
.woocommerce-related-products .products .product .button:hover {
  background: #cc0000;
  transform: translateY(-2px);
}

.single-product .product {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
@media (max-width: 768px) {
  .single-product .product {
    padding: 1rem 0.5rem;
  }
}
.single-product .woocommerce-product-gallery {
  margin-bottom: 2rem;
}
.single-product .woocommerce-product-gallery .woocommerce-product-gallery__image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.single-product .woocommerce-product-gallery .woocommerce-product-gallery__image img {
  width: 100%;
  height: auto;
  display: block;
}
.single-product .summary .product_title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .single-product .summary .product_title {
    font-size: 1.5rem;
  }
}
.single-product .summary .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff0000;
  margin-bottom: 1.5rem;
}
.single-product .summary .price del {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.2rem;
  margin-right: 0.5rem;
}
.single-product .summary .price ins {
  text-decoration: none;
}
.single-product .summary .woocommerce-product-details__short-description {
  margin-bottom: 2rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}
.single-product .summary .cart {
  margin-bottom: 2rem;
}
.single-product .summary .cart .quantity {
  margin-bottom: 1rem;
}
.single-product .summary .cart .quantity input {
  width: 80px;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  text-align: center;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.single-product .summary .cart .single_add_to_cart_button {
  width: 100%;
  padding: 1rem 2rem;
  background: #ff0000;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.single-product .summary .cart .single_add_to_cart_button:hover {
  background: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}
.single-product .summary .cart .single_add_to_cart_button:disabled {
  background: rgba(255, 255, 255, 0.3);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.single-product .summary .product_meta {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.single-product .summary .product_meta span {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}
.single-product .summary .product_meta span a {
  color: #ff0000;
  text-decoration: none;
}
.single-product .summary .product_meta span a:hover {
  text-decoration: underline;
}

.search-results {
  margin: 0 auto;
  max-width: 1320px;
  width: 100%;
  max-width: 1200px;
  padding: 2rem 1rem;
}
@media (max-width: 599px) {
  .search-results {
    padding: 1rem 0.5rem;
  }
}

.page-header {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.page-header .page-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.page-header .page-title span {
  color: #ff0000;
}

.search-results .page-header h1,
.search .page-header h1,
.search-results .entry-title,
.search .entry-title {
  color: #fff !important;
}

.search-results .page-header h1, .search-results .page-header h2, .search-results .page-header h3,
.search .page-header h1, .search .page-header h2, .search .page-header h3 {
  color: #fff !important;
}

.search-results h1,
.search h1 {
  color: #fff !important;
}

body.search-results h1,
body.search h1,
.search-results body h1,
.search body h1 {
  color: #fff !important;
}

.mobile-menu-overlay {
  opacity: 0 !important;
  visibility: hidden !important;
}
.mobile-menu-overlay.overlay-active {
  opacity: 1 !important;
  visibility: visible !important;
}

.slick-slider .slick-slide {
  display: none !important;
}
.slick-slider .slick-slide.slick-active {
  display: block !important;
}
.slick-slider.slick-initialized .slick-slide {
  display: block !important;
}

.slick-slide img, .slick-slide video, .slick-slide iframe {
  max-width: 100%;
  height: auto;
}
.slick-slide .slide-content {
  color: #fff;
}

.search-results .site-main,
.search-results .page-content,
.search-results .entry-content,
.search-results .post-content,
.search .site-main,
.search .page-content,
.search .entry-content,
.search .post-content {
  opacity: 1;
  visibility: visible;
  display: block;
}
.search-results article,
.search article {
  opacity: 1;
  visibility: visible;
  display: block;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}
.search-results h1, .search-results h2, .search-results h3, .search-results h4, .search-results h5, .search-results h6,
.search h1,
.search h2,
.search h3,
.search h4,
.search h5,
.search h6 {
  color: #fff;
  opacity: 1;
  visibility: visible;
}
.search-results p,
.search p {
  color: rgba(255, 255, 255, 0.9);
  opacity: 1;
  visibility: visible;
}
.search-results .entry-content a,
.search-results .entry-summary a,
.search-results .entry-footer a,
.search-results .post-content a,
.search .entry-content a,
.search .entry-summary a,
.search .entry-footer a,
.search .post-content a {
  color: #ff0000;
  opacity: 1;
  visibility: visible;
}
.search-results .entry-content a:hover,
.search-results .entry-summary a:hover,
.search-results .entry-footer a:hover,
.search-results .post-content a:hover,
.search .entry-content a:hover,
.search .entry-summary a:hover,
.search .entry-footer a:hover,
.search .post-content a:hover {
  color: #ff3333;
}

.site-main .search-results-container {
  display: grid;
  gap: 2rem;
}

.search-results article,
.search article {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.search-results article:hover,
.search article:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.search-results article .entry-header,
.search article .entry-header {
  margin-bottom: 1rem;
}
.search-results article .entry-header .entry-title,
.search article .entry-header .entry-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: #fff;
}
.search-results article .entry-header .entry-title a,
.search article .entry-header .entry-title a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.search-results article .entry-header .entry-title a:hover,
.search article .entry-header .entry-title a:hover {
  color: #ff0000;
}
.search-results article .entry-header .entry-meta,
.search article .entry-header .entry-meta {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.search-results article .entry-header .entry-meta a,
.search article .entry-header .entry-meta a {
  color: #ff0000;
  text-decoration: none;
}
.search-results article .entry-header .entry-meta a:hover,
.search article .entry-header .entry-meta a:hover {
  text-decoration: underline;
}
.search-results article .post-thumbnail,
.search article .post-thumbnail {
  margin-bottom: 1rem;
}
.search-results article .post-thumbnail img,
.search article .post-thumbnail img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.search-results article .entry-summary,
.search article .entry-summary {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.search-results article .entry-footer,
.search article .entry-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}
.search-results article .entry-footer a,
.search article .entry-footer a {
  color: #ff0000;
  text-decoration: none;
}
.search-results article .entry-footer a:hover,
.search article .entry-footer a:hover {
  text-decoration: underline;
}

.no-results {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.no-results .page-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.no-results .page-content {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.posts-navigation {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.posts-navigation .nav-links {
  display: flex;
  gap: 1rem;
}
.posts-navigation .nav-previous,
.posts-navigation .nav-next {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  transition: all 0.3s ease;
}
.posts-navigation .nav-previous:hover,
.posts-navigation .nav-next:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}
.posts-navigation .nav-previous a,
.posts-navigation .nav-next a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.posts-navigation .nav-previous a:hover,
.posts-navigation .nav-next a:hover {
  color: #ff0000;
}

.widget-area {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.widget-area .widget {
  margin-bottom: 2rem;
}
.widget-area .widget:last-child {
  margin-bottom: 0;
}
.widget-area .widget .widget-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.widget-area .widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget-area .widget ul li {
  margin-bottom: 0.5rem;
}
.widget-area .widget ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}
.widget-area .widget ul li a:hover {
  color: #ff0000;
}

.hero-general-overlay.hero-general-section {
  margin-top: -194.75px;
  padding-top: 105px;
}

.is-root-container .hero-general-overlay.hero-general-section {
  margin-top: 0;
  padding-top: 0;
}

.hero-general__image-box {
  position: relative;
  min-height: 650px;
  max-width: 100%;
  width: 100%;
  display: block;
  min-height: 430px;
  aspect-ratio: 1920/430;
}
.hero-general__image-box img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero-general-contained-image .hero-general__image-box img {
  -o-object-fit: contain;
     object-fit: contain;
}

.hero-general-content {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  padding: 50px 25px;
}
@media (min-width: 768px) {
  .hero-general-content {
    padding: 0 25px;
    padding-top: 0;
  }
}

.hero-general-content__inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  position: relative;
}

.hero-general-section .hero-general__title {
  color: #FFF;
  font-size: 44px;
  font-weight: 400;
  letter-spacing: 5px;
  margin-bottom: 0;
  font-family: var(--font-family--2);
  font-size: 44px;
  line-height: normal;
  text-align: center;
}
@media (min-width: 768px) {
  .hero-general-section .hero-general__title {
    max-width: 900px;
    margin-bottom: 20px;
  }
}
@media (min-width: 1220px) {
  .hero-general-section .hero-general__title {
    font-size: 62px;
  }
}

.hero-general__subtitle {
  color: #ff0000;
  text-align: center;
  font-family: var(--font-family--2);
  font-style: italic;
  font-weight: 400;
  line-height: normal;
  font-size: 44px;
  margin-top: 0;
}
@media (min-width: 768px) {
  .hero-general__subtitle {
    font-size: 64px;
  }
}

.hero-general__text {
  color: #3595E2;
  text-align: center;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 20px;
}

.hero-general__text p:last-child {
  margin-bottom: 0;
}

.hero-general__button-box {
  display: flex;
  width: 100%;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .hero-general__button-box {
    flex-direction: row;
  }
}

.hero-general__button-box a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 9px 15px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  max-width: 300px;
  padding: 5px 25px;
  min-height: 42px;
  background-color: #ff0000;
  color: #fff;
  text-decoration: none;
}
@media (min-width: 768px) {
  .hero-general__button-box a {
    margin: 0 9px;
  }
}

.post-cards-section {
  background-color: #f6fafd;
  padding-bottom: 45px;
}
@media (min-width: 768px) {
  .post-cards-section {
    padding-top: 3vw;
    padding-bottom: 3vw;
  }
}

@media (min-width: 600px) {
  .post-cards__wrapper {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 20px);
    margin: -10px;
  }
}

.post-cards__item {
  width: 100%;
  padding-bottom: 25px;
}
@media (min-width: 600px) {
  .post-cards__item {
    width: 50%;
    padding: 10px;
  }
}
@media (min-width: 768px) {
  .post-cards__item {
    width: 33.333%;
  }
}
.is-root-container .post-cards__item {
  width: 31% !important;
}

@media (min-width: 768px) {
  .post-cards-half .post-cards__item {
    width: 50%;
  }
}

@media (min-width: 600px) {
  .post-cards-third .post-cards__item {
    width: 50%;
    padding: 10px;
  }
}
@media (min-width: 768px) {
  .post-cards-third .post-cards__item {
    width: 33.333%;
  }
}

@media (min-width: 600px) {
  .post-cards-quarter .post-cards__item {
    width: 50%;
    padding: 10px;
  }
}
@media (min-width: 768px) {
  .post-cards-quarter .post-cards__item {
    width: 25%;
  }
}

.post-cards__header {
  color: #3595E2;
  text-align: center;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 48px;
  font-family: var(--font-family--2);
  margin-bottom: 3vw;
}
@media (min-width: 768px) {
  .post-cards__header {
    font-size: 64px;
  }
}
.post-cards__header em {
  color: #ff0000;
}

.post_card__image-box {
  margin-bottom: 1.8vw;
}

.post-card__title {
  color: #3595E2;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 28px;
  font-family: var(--font-family--2);
  margin-bottom: 1.5vw;
}
@media (min-width: 768px) {
  .post-card__title {
    font-size: 32px;
  }
}
.post-card__title em {
  color: #ff0000;
}

.post-card-block-description {
  font-size: 18px;
  color: #cae7ff;
}

.post_card__image-box {
  aspect-ratio: 420/251;
  position: relative;
  background-color: #D9D9D9;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
}

.post_card__image-box div {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  max-width: 80%;
  margin: 0 auto;
  letter-spacing: 1px;
}

.post_card__image-box img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  background-color: #D9D9D9;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.post-cards-repeater__item-text p:last-child {
  margin-bottom: 0;
}

.post-card__link {
  text-decoration: none !important;
}

.post-card__link:hover .post-card__title {
  color: #ff0000;
}
.post-card__link:hover .post-card-block-description p {
  color: #3595E2;
}
.post-card__link:hover .post_card__image-box img {
  transform: scale(1.1);
}

.blog-list-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

body .blog-list__item-link {
  text-decoration: none;
}

.blog-list__title {
  color: #000;
  text-align: center;
  font-family: var(--font-family--2);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 44px;
  margin-bottom: 105px;
}
@media (min-width: 768px) {
  .blog-list__title {
    font-size: 64px;
  }
}

.blog-list__wrapper {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 15px);
  margin: -15px;
}

.blog-list__item {
  width: 100%;
  padding: 15px;
}
@media (min-width: 600px) {
  .blog-list__item {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .blog-list__item {
    width: 33.333%;
  }
}

@media (min-width: 768px) {
  .blog-list-single .blog-list__item {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .blog-list-half .blog-list__item {
    width: 50%;
  }
}

@media (min-width: 600px) {
  .blog-list-third .blog-list__item {
    width: 50%;
    padding: 10px;
  }
}
@media (min-width: 768px) {
  .blog-list-third .blog-list__item {
    width: 33.333%;
  }
}

@media (min-width: 600px) {
  .blog-list-quarter .blog-list__item {
    width: 50%;
    padding: 10px;
  }
}
@media (min-width: 768px) {
  .blog-list-quarter .blog-list__item {
    width: 25%;
  }
}

.blog-list__image-box {
  aspect-ratio: 547/333;
  position: relative;
  margin-bottom: 35px;
}

.blog-list__image-box img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-list-repeater__item-title {
  color: #000;
  font-family: var(--font-family--2);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 10px;
}

.blog-list__podcast-icon {
  position: relative;
  margin-bottom: 30px;
}

.blog-list-repeater__item-date {
  color: #ff0000;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 30px;
}

.blog-list-repeater__item-text p {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 10px;
}

.blog-list-section .pagination {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  width: 100%;
  margin-top: 50px;
}

.blog-list-section .page-numbers {
  margin-left: 6px;
  margin-right: 6px;
  font-weight: 500;
  text-decoration: none;
  display: block;
  color: black;
}

.blog-list-section .page-numbers.current {
  color: #ff0000;
}

.prev.page-numbers,
.next.page-numbers {
  background-image: url("../images/next-icon.svg");
  background-repeat: no-repeat;
  color: transparent !important;
  background-size: contain;
  height: 40px;
  width: 40px;
}

.prev.page-numbers {
  background-image: url("../images/prev-icon.svg");
}

.next.page-numbers {
  background-image: url("../images/next-icon.svg");
}

.blog-list__item-inner {
  background-color: white;
  box-shadow: 0 1px 1px 0 rgba(164, 164, 164, 0.11);
  height: 100%;
}

.text-container-inner {
  padding: 10px;
}

.image-cards-header {
  text-align: center;
}

.image-cards-header-text {
  font-size: 36px;
  font-weight: 500;
}

.image-cards-repeater__item {
  min-height: 300px;
}

.image-cards-repeater__item--inner {
  background-color: white;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 15px;
  margin-right: 12px;
  margin-left: 12px;
  min-height: 250px;
}
@media (min-width: 768px) {
  .image-cards-repeater__item--inner {
    min-height: 250px;
  }
}

.image-card-box {
  position: relative;
  margin-bottom: 15px;
}

.image-cards-repeater__title {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.09px;
}

.image-cards-section .slick-prev {
  background-image: url("../images/arrow-left.svg");
  background-repeat: no-repeat;
  background-position: center;
  height: 30px;
  left: -12px;
}
.image-cards-section .slick-prev:before {
  content: "";
}

.image-cards-section .slick-next {
  background-image: url("../images/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  height: 30px;
  right: -12px;
}
.image-cards-section .slick-next:before {
  content: "";
}

.image-cards-section img {
  filter: grayscale(100%);
}

.image-cards-style2 .image-cards-repeater__content {
  position: relative;
  bottom: 0;
}

.image-cards-style2 .image-cards-repeater__item--inner {
  min-height: auto;
}

.site-header {
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1000;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  min-height: 80px;
}

.site-branding {
  flex-shrink: 0;
}
.site-branding .custom-logo-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.site-branding .logo-container {
  display: flex;
  align-items: center;
  gap: 6px;
}
.site-branding .logo-container .site-logo {
  height: 40px;
  width: auto;
  flex-shrink: 0;
}
.site-branding .logo-container .logo-text {
  display: flex;
  flex-direction: column;
}
.site-branding .logo-container .logo-text .logo-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: #fff;
  line-height: 1.2;
}
.site-branding .logo-container .logo-text .logo-subtitle {
  font-size: 12px;
  font-weight: 400;
  margin: 2px 0 0 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.2;
}
.site-branding .logo-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: #fff;
  line-height: 1.2;
}
.site-branding .logo-subtitle {
  font-size: 14px;
  font-weight: 400;
  margin: 4px 0 0 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.2;
}

.main-navigation {
  flex: 1;
  margin: 0 40px;
}
.main-navigation #main-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  gap: 40px;
}
.main-navigation #main-menu li {
  position: relative;
}
.main-navigation #main-menu li a {
  display: block;
  padding: 8px 0;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.main-navigation #main-menu li a:hover {
  color: #ff0000;
}
.main-navigation #main-menu li .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 1000;
}
.main-navigation #main-menu li .sub-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.main-navigation #main-menu li .sub-menu li:last-child {
  border-bottom: none;
}
.main-navigation #main-menu li .sub-menu li a {
  padding: 12px 20px;
  font-size: 14px;
  color: #fff;
}
.main-navigation #main-menu li .sub-menu li a:hover {
  background: rgba(255, 0, 0, 0.1);
  color: #ff0000;
}
.main-navigation #main-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #fff;
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}
.header-icon:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ff0000;
}
.header-icon svg {
  width: 24px;
  height: 24px;
}
.header-icon .cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff0000;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.menu-btn-box {
  flex-shrink: 0;
}

.menu-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #ff0000;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.menu-btn:hover {
  background: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.mobile-menu_button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-right: 15px;
}
.mobile-menu_button svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mobile-menu_button:hover svg {
  fill: #ff0000;
}
.mobile-menu_button[aria-expanded=true] svg {
  fill: #ff0000;
}

#mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  z-index: 9999999 !important;
  transform: translateX(-100%);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow-y: auto;
}
@media (min-width: 768px) {
  #mobile-menu {
    width: 25%;
    max-width: 400px;
  }
}
#mobile-menu.menu-open {
  transform: translateX(0) !important;
}

.mobile-menu__inner {
  width: 100%;
  height: 100vh;
  background: #000;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (max-width: 599px) {
  .mobile-menu__inner {
    width: 80%;
    max-width: 400px;
    margin: 0 auto;
  }
}

.mobile-menu__header-image {
  height: 120px;
  background: #000;
  width: 100%;
  flex-shrink: 0;
}

.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
.mobile-menu__header .close-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 11;
}
.mobile-menu__header .close-button:hover {
  background: rgba(255, 255, 255, 0.1);
}
.mobile-menu__header .close-button svg {
  width: 24px;
  height: 24px;
  stroke: #FF1744;
}
.mobile-menu__header .mobile-menu__logo {
  flex: 1;
  display: flex;
  justify-content: center;
}
.mobile-menu__header .mobile-menu__logo .mobile-logo-container {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mobile-menu__header .mobile-menu__logo .mobile-logo-container .mobile-site-logo {
  height: 30px;
  width: auto;
  flex-shrink: 0;
}
.mobile-menu__header .mobile-menu__logo .mobile-logo-container .mobile-logo-text .mobile-logo-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #fff;
  line-height: 1.2;
}

.mobile-menu__content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.mobile-menu__content .mobile-menu__navigation .mobile-menu-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu__content .mobile-menu__navigation .mobile-menu-nav li {
  margin-bottom: 20px;
}
.mobile-menu__content .mobile-menu__navigation .mobile-menu-nav li a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mobile-menu__content .mobile-menu__navigation .mobile-menu-nav li a:hover {
  color: #ff0000;
  transform: translateX(10px);
}
.mobile-menu__content .mobile-menu__search .mobile-search-form {
  position: relative;
}
.mobile-menu__content .mobile-menu__search .search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.mobile-menu__content .mobile-menu__search .mobile-search-input {
  width: 100%;
  padding: 15px 50px 15px 20px;
  border: none;
  background: #fff;
  color: #1C1B1F;
  font-size: 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
}
.mobile-menu__content .mobile-menu__search .mobile-search-input::-moz-placeholder {
  color: rgba(28, 27, 31, 0.6);
}
.mobile-menu__content .mobile-menu__search .mobile-search-input::placeholder {
  color: rgba(28, 27, 31, 0.6);
}
.mobile-menu__content .mobile-menu__search .mobile-search-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px #ff0000;
}
.mobile-menu__content .mobile-menu__search .mobile-search-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #1C1B1F;
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.mobile-menu__content .mobile-menu__search .mobile-search-btn:hover {
  background: rgba(28, 27, 31, 0.1);
}
.mobile-menu__content .mobile-menu__search .mobile-search-btn svg {
  width: 20px;
  height: 20px;
}
.mobile-menu__content .mobile-menu__cta .mobile-cta-button {
  display: block;
  width: 100%;
  padding: 18px 24px;
  background: #FF1744;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  transition: all 0.3s ease;
}
.mobile-menu__content .mobile-menu__cta .mobile-cta-button:hover {
  background: #D50000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 23, 68, 0.3);
}
.mobile-menu__content .mobile-menu__social {
  margin-top: auto;
  padding-top: 20px;
}
.mobile-menu__content .mobile-menu__social .social-icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.mobile-menu__content .mobile-menu__social .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: #fff;
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.mobile-menu__content .mobile-menu__social .social-icon:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}
.mobile-menu__content .mobile-menu__social .social-icon svg {
  width: 24px;
  height: 24px;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999998 !important;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
@media (min-width: 768px) {
  .mobile-menu-overlay {
    background: transparent;
  }
}
.mobile-menu-overlay.overlay-active {
  opacity: 1 !important;
  visibility: visible !important;
}

.mobile-menu__member {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(28, 27, 31, 0.1);
}
.mobile-menu__member .member-info .member-greeting {
  text-align: center;
  margin-bottom: 1.5rem;
}
.mobile-menu__member .member-info .member-greeting h3 {
  color: #1C1B1F;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.mobile-menu__member .member-info .member-status-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
}
.mobile-menu__member .member-info .member-status-badge.status-active_member {
  background: #28a745;
  color: white;
}
.mobile-menu__member .member-info .member-status-badge.status-expired_member {
  background: #dc3545;
  color: white;
}
.mobile-menu__member .member-info .member-status-badge.status-free {
  background: #6c757d;
  color: white;
}
.mobile-menu__member .member-info .member-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mobile-menu__member .member-info .member-link {
  display: block;
  color: #1C1B1F;
  text-decoration: none;
  padding: 1rem;
  border: 1px solid rgba(28, 27, 31, 0.2);
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease;
}
.mobile-menu__member .member-info .member-link:hover {
  background: rgba(28, 27, 31, 0.05);
  border-color: rgba(28, 27, 31, 0.4);
  transform: translateY(-2px);
}
.mobile-menu__member .member-info .member-link.renew-link {
  border-color: #ff0000;
  color: #ff0000;
}
.mobile-menu__member .member-info .member-link.renew-link:hover {
  background: #ff0000;
  color: white;
}
.mobile-menu__member .member-info .member-link.logout-link {
  border-color: #dc3545;
  color: #dc3545;
}
.mobile-menu__member .member-info .member-link.logout-link:hover {
  background: #dc3545;
  color: white;
}
.mobile-menu__member .auth-section {
  text-align: center;
}
.mobile-menu__member .auth-section h3 {
  color: #1C1B1F;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.mobile-menu__member .auth-section p {
  color: rgba(28, 27, 31, 0.7);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.mobile-menu__member .auth-section .auth-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobile-menu__member .auth-section .mobile-btn {
  display: block;
  text-align: center;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}
.mobile-menu__member .auth-section .mobile-btn.mobile-btn-primary {
  background: #ff0000;
  color: white;
  border: 2px solid #ff0000;
}
.mobile-menu__member .auth-section .mobile-btn.mobile-btn-primary:hover {
  background: transparent;
  color: #ff0000;
  transform: translateY(-3px);
}
.mobile-menu__member .auth-section .mobile-btn.mobile-btn-secondary {
  background: transparent;
  color: #1C1B1F;
  border: 2px solid rgba(28, 27, 31, 0.3);
}
.mobile-menu__member .auth-section .mobile-btn.mobile-btn-secondary:hover {
  background: rgba(28, 27, 31, 0.05);
  border-color: #1C1B1F;
  transform: translateY(-3px);
}

.header-message {
  background: #ff0000;
  color: #fff;
  padding: 12px 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}
.header-message__text p, .header-message__text a {
  color: #fff;
  margin: 0;
}
.header-message__text a {
  font-weight: 600;
  text-decoration: underline;
}
.header-message__text a:hover {
  text-decoration: none;
}
.header-message.dismissible {
  position: relative;
  padding-right: 50px;
}
.header-message.dismissible .dismiss-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.header-message.dismissible .dismiss-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 767px) {
  .site-header__inner {
    padding: 0 15px;
  }
  .main-navigation {
    display: none;
  }
  .mobile-menu_button {
    display: flex;
  }
  .header-actions {
    gap: 15px;
  }
  .header-icon {
    width: 35px;
    height: 35px;
  }
  .header-icon svg {
    width: 20px;
    height: 20px;
  }
  .menu-btn {
    padding: 10px 18px;
    min-width: 120px;
    font-size: 13px;
  }
}
@media (min-width: 768px) {
  .site-header__inner {
    padding: 0 30px;
  }
  .mobile-menu_button {
    display: flex;
  }
  .mobile-menu-open .main-navigation {
    display: none;
  }
}
.header-centered .site-header__inner {
  justify-content: center;
}
.header-centered .main-navigation {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.header-split .site-header__inner {
  justify-content: space-between;
}
.header-split .main-navigation {
  flex: none;
  margin: 0 40px;
}

.nav-left .main-navigation #main-menu {
  justify-content: flex-start;
}

.nav-right .main-navigation #main-menu {
  justify-content: flex-end;
}

.nav-center .main-navigation #main-menu {
  justify-content: center;
}

#colophon.site-footer {
  background: #000000;
}

.site-footer__inner {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 25px 12px;
}
@media (min-width: 768px) {
  .site-footer__inner {
    flex-direction: row;
    padding: 50px 12px;
  }
}

.site-footer__column {
  flex: 1;
}

.footer-logo__column {
  max-width: 250px;
  padding-right: 15px;
}

footer .custom-logo {
  margin-bottom: 15px;
}

.site-footer__column .menu {
  padding-top: 10px;
}

footer ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
@media (max-width: 599px) {
  footer ul {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}

footer .menu-item {
  margin-bottom: 0;
}
@media (max-width: 599px) {
  footer .menu-item {
    width: 100%;
    text-align: center;
  }
}

footer .menu-item a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
}
@media (max-width: 599px) {
  footer .menu-item a {
    display: block;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
  }
}
footer .menu-item a:hover {
  color: #ff0000;
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 599px) {
  footer .menu-item a:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
  }
}

.footer-social__column--inner {
  padding-top: 30px;
}
@media (min-width: 768px) {
  .footer-social__column--inner {
    display: flex;
    justify-content: flex-end;
  }
}

.footer-social__icon-box {
  display: flex;
  margin-left: auto;
  gap: 10px;
}
.footer-social__icon-box .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #fff;
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.footer-social__icon-box .social-icon:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}
.footer-social__icon-box .social-icon svg {
  width: 20px;
  height: 20px;
}

.footer-social__column a {
  padding-right: 25px;
}
@media (min-width: 768px) {
  .footer-social__column a {
    padding-left: 25px;
  }
}

.footer-cert img {
  max-width: 100px;
}

.site-footer__bottom {
  text-align: center;
  margin-bottom: 30px;
}

.content-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.page-content {
  background: #1a1a1a;
}
.page-content .entry-content {
  color: #fff;
}
.page-content .entry-content h1, .page-content .entry-content h2, .page-content .entry-content h3, .page-content .entry-content h4, .page-content .entry-content h5, .page-content .entry-content h6 {
  color: #fff;
}
.page-content .entry-content p {
  color: #fff;
}
.page-content .entry-content ul, .page-content .entry-content ol {
  color: #fff;
}
.page-content .entry-content li {
  color: #fff;
}
.page-content .entry-content a {
  color: #ff0000;
}
.page-content .entry-content a:hover {
  color: #ff3333;
}

@media (min-width: 768px) {
  .page-content main {
    width: 75%;
    padding-right: 35px;
  }
}

@media (min-width: 768px) {
  .page-content aside {
    width: 25%;
  }
}

#secondary .wp-block-group {
  padding: 0;
}

#secondary h2.wp-block-heading {
  font-size: 24px;
  font-weight: bold;
}

#secondary section.widget {
  margin-top: 30px;
}

#secondary .wp-block-categories-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
#secondary .wp-block-categories-list li {
  margin-bottom: 10px;
  padding-left: 8px;
}
#secondary .wp-block-categories-list li a {
  font-size: 18px;
  color: #ff0000;
  font-weight: bold;
  text-decoration: none;
}

.archive #primary > article,
.single #primary > article {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.single #primary > nav {
  margin-bottom: 30px;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.category-pill {
  background: #ff0000;
  border-radius: 5px;
  padding: 5px 15px;
  margin-right: 15px;
  margin-bottom: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.category-pill a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
}

#nav-menus-frame h2, #nav-menus-frame h3 {
  font-size: 16px !important;
}

.block-editor .wp-block {
  max-width: 95% !important;
}
.block-editor .wp-block[data-align=wide] {
  max-width: 1280px;
}
.block-editor .wp-block-group {
  border: 4px dashed black;
  padding: 10px;
}
.block-editor .wp-block-group .wp-block-group {
  padding: 0;
  border: none;
}
.block-editor .wp-block-spacer,
.block-editor [data-title=Spacer] {
  background-color: #e3e3e3;
}
.block-editor .login form {
  border-radius: 13px;
}

body .wp-block-group__inner-container,
body .wp-block-cover__inner-container {
  margin: 0 auto;
  max-width: 1320px;
  width: 100%;
}

body .wp-block-group,
body .wp-block-cover {
  padding: 35px 15px;
}
@media (min-width: 768px) {
  body .wp-block-group,
  body .wp-block-cover {
    padding: 50px 25px;
  }
}
body .wp-block-group .wp-block-group,
body .wp-block-group .wp-block-cover,
body .wp-block-cover .wp-block-group,
body .wp-block-cover .wp-block-cover {
  padding: 0;
}

body .gutter-lg {
  padding-top: 45px;
  padding-bottom: 45px;
}
@media (min-width: 768px) {
  body .gutter-lg {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.max-width-small {
  max-width: 654px;
  margin-left: auto;
  margin-right: auto;
}

#lottie-container {
  max-width: 350px;
  margin: 0 auto;
}

.no-top-padding {
  padding-top: 1px !important;
}

.wp-block-button__link {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.wp-block-button__link:hover {
  color: #fff !important;
  background-color: #CC5B3D !important;
  transform: scale(1.03);
}

.woocommerce-account .page-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 599px) {
  .woocommerce-account .page-content {
    padding: 0 10px;
  }
}
.woocommerce-account .woocommerce {
  max-width: 100%;
  margin: 0;
  padding: 0;
}
@media (max-width: 599px) {
  .woocommerce-account .woocommerce {
    padding: 0;
  }
}
.woocommerce-account .woocommerce-dashboard {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.woocommerce-account .woocommerce-dashboard p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
}
.woocommerce-account .woocommerce-dashboard p:last-child {
  margin-bottom: 0;
}
.woocommerce-account::after {
  content: "";
  display: table;
  clear: both;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
  width: 25%;
  float: left;
  padding-right: 30px;
}
@media (max-width: 767px) {
  .woocommerce-account .woocommerce-MyAccount-navigation {
    width: 100%;
    float: none;
    padding-right: 0;
    margin-bottom: 30px;
  }
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(28, 27, 31, 0.1);
  border-radius: 12px;
  background: #fff;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li {
  border-bottom: 1px solid rgba(28, 27, 31, 0.05);
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li:last-child {
  border-bottom: none;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 15px 20px;
  color: #1C1B1F;
  text-decoration: none;
  transition: all 0.3s ease;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
  background: rgba(255, 0, 0, 0.05);
  color: #ff0000;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
  background: #ff0000;
  color: #fff;
}
.woocommerce-account .woocommerce-MyAccount-content {
  width: 75%;
  float: right;
}
@media (max-width: 767px) {
  .woocommerce-account .woocommerce-MyAccount-content {
    width: 100%;
    float: none;
  }
}
.woocommerce-account .woocommerce-MyAccount-content::after {
  content: "";
  display: table;
  clear: both;
}

.woocommerce table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.woocommerce table th, .woocommerce table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid rgba(28, 27, 31, 0.1);
}
.woocommerce table th {
  background: rgba(28, 27, 31, 0.02);
  font-weight: 600;
}

.woocommerce-form .form-row {
  margin-bottom: 20px;
}
.woocommerce-form .form-row label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}
.woocommerce-form .form-row input, .woocommerce-form .form-row textarea, .woocommerce-form .form-row select {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(28, 27, 31, 0.2);
  border-radius: 4px;
  font-size: 16px;
}
.woocommerce-form .form-row input:focus, .woocommerce-form .form-row textarea:focus, .woocommerce-form .form-row select:focus {
  outline: none;
  border-color: #ff0000;
  box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.1);
}
.woocommerce-form .button {
  background: #ff0000;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.woocommerce-form .button:hover {
  background: #e63d0f;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 4px;
  border-left: 4px solid;
}

.woocommerce-message {
  background: rgba(255, 0, 0, 0.1);
  border-left-color: #ff0000;
  color: #cc3d0c;
}

.woocommerce-info {
  background: rgba(255, 0, 0, 0.1);
  border-left-color: #ff0000;
  color: #cc3d0c;
}

.woocommerce-error {
  background: rgba(220, 53, 69, 0.1);
  border-left-color: #dc3545;
  color: #dc3545;
}

.woocommerce .button {
  background: #ff0000;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.woocommerce .button:hover {
  background: #e63d0f;
  color: #fff;
}
.woocommerce .button.alt {
  background: #fff;
  color: #ff0000;
  border: 2px solid #ff0000;
}
.woocommerce .button.alt:hover {
  background: #ff0000;
  color: #fff;
}

.woocommerce-pagination {
  text-align: center;
  margin-top: 30px;
}
.woocommerce-pagination ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  gap: 5px;
}
.woocommerce-pagination ul li a, .woocommerce-pagination ul li span {
  display: block;
  padding: 8px 12px;
  border: 1px solid rgba(28, 27, 31, 0.2);
  border-radius: 4px;
  text-decoration: none;
  color: #1C1B1F;
  transition: all 0.3s ease;
}
.woocommerce-pagination ul li a:hover {
  background: rgba(255, 0, 0, 0.1);
  border-color: #ff0000;
  color: #ff0000;
}
.woocommerce-pagination ul li span.current {
  background: #ff0000;
  border-color: #ff0000;
  color: #fff;
}

.single-product .woocommerce-product-gallery {
  margin-bottom: 30px;
}
.single-product .summary .product_title {
  font-size: 32px;
  margin-bottom: 15px;
}
.single-product .summary .price {
  font-size: 24px;
  color: #ff0000;
  margin-bottom: 20px;
}

.woocommerce-cart .cart-collaterals {
  margin-top: 30px;
}
.woocommerce-cart .cart-collaterals .cart_totals {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.woocommerce-checkout .col2-set {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 767px) {
  .woocommerce-checkout .col2-set {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.woocommerce-order-details {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.woocommerce-customer-details {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.woocommerce-account .age-gate-wrapper,
.woocommerce-account .age-gate {
  display: none !important;
}
.woocommerce-account .woocommerce {
  position: relative;
  z-index: 1;
}

.woocommerce-info.wc-memberships-restriction-message {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  color: #fff !important;
  padding: 2rem !important;
  margin: 2rem 0 !important;
  text-align: center !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  line-height: 1.6 !important;
}
.woocommerce-info.wc-memberships-restriction-message a {
  color: #ff0000 !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  transition: color 0.3s ease !important;
}
.woocommerce-info.wc-memberships-restriction-message a:hover {
  color: #ff3333 !important;
  text-decoration: underline !important;
}
.woocommerce-info.wc-memberships-restriction-message::before {
  content: "🔒" !important;
  display: block !important;
  font-size: 2rem !important;
  margin-bottom: 1rem !important;
}

.woocommerce-info {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 8px !important;
  color: #fff !important;
  padding: 1.5rem !important;
  margin: 1.5rem 0 !important;
}

.woocommerce-error {
  background: rgba(239, 68, 68, 0.1) !important;
  border: 1px solid rgba(239, 68, 68, 0.3) !important;
  border-radius: 8px !important;
  color: #fca5a5 !important;
  padding: 1.5rem !important;
  margin: 1.5rem 0 !important;
}

.woocommerce-message {
  background: rgba(34, 197, 94, 0.1) !important;
  border: 1px solid rgba(34, 197, 94, 0.3) !important;
  border-radius: 8px !important;
  color: #86efac !important;
  padding: 1.5rem !important;
  margin: 1.5rem 0 !important;
}
/*# sourceMappingURL=style.css.map */
