.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}
.custom-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 15px 0;
}
.custom-header .icon {
    width: 65px;
    height: 80px;
    object-fit: contain;
    cursor: pointer;
}
.header-left,
.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header-center {
    width: 33%;
    justify-content: center;
    display: flex;
}
.header-center img {
  width: 300px;
  max-width: 100%;
}
.angled-search-box {
    position: relative;
    bottom: 3px;
}
.header-left {
    width: 33%;
}
.angled-search-input {
    flex-grow: 1;
    border: none !important;
    outline: none;
    background: transparent;
    padding: 8px 10px !important;
    font-size: 14px;
    color: #333 !important;
    width: 100px;
}
header#masthead {
    position: relative;
    z-index: 2;
}
.angled-search-input::placeholder {
  color: #444;
  opacity: 0.8;
}
.angled-search-button {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.angled-search-button img {
    width: 15px;
    height: 15px;
}.header-right {
    width: 33%;
    justify-content: right;
}
 .slide-learn-more {
    position: absolute;
        bottom: -33px;
    left: 50%;
    transform: translateX(-50%);}

/* Search Results */
 
.search-header {
  text-align: center;
  margin-bottom: 40px;
}

.search-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
}

.search-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding-bottom: 40px;
}

.search-post-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
      border: 1px solid #a4a4a4;
}

.search-post-card:hover {
  transform: translateY(-5px);
}

.search-post-link {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 16px;
}

.search-post-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.search-post-title {
  font-size: 1.25rem;
  margin-top: 12px;
  color: #222;
}

.search-post-excerpt {
  font-size: 0.95rem;
  color: #555;
  margin-top: 8px;
}

.pagination-wrapper {
  text-align: center;
  margin-top: 40px;
}

.pagination-wrapper ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 20px 0;
}

.pagination-wrapper li {
  display: inline-block;
}

.pagination-wrapper a,
.pagination-wrapper span {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.pagination-wrapper a:hover {
  background-color: #111;
  color: #fff;
  border-color: #111;
}

.pagination-wrapper .current {
  background-color: #111;
  color: #fff;
  border-color: #111;
  font-weight: bold;
}

.error-page-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  min-height: 80vh;
  text-align: center;
  background: #f9f9f9;
}

.error-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.error-code {
  font-size: 8rem;
  font-weight: 900;
  color: #000000;
  margin: 0;
}

.error-title {
  font-size: 2rem;
  margin: 10px 0;
}

.error-message {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #555;
}

.error-actions .btn {
    display: inline-block;
    padding: 12px 24px;
    margin: 10px 5px;
    background: black;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}
.error-actions .btn:hover {
  background: #333;
}
.btn-primary {
  background-color: #1e90ff;
  color: #fff;
}

.btn-primary:hover {
  background-color: #006ad1;
}

.btn-secondary {
  background-color: #e0e0e0;
  color: #333;
}

.btn-secondary:hover {
  background-color: #ccc;
}

.search-wrapper {
  margin-top: 30px;
}

.search-wrapper h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.error-widgets {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
  gap: 20px;
}

.error-widgets .widget {
  flex: 1 1 45%;
  text-align: left;
}
.category-tab {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.category-tab:hover {
    transform: scale(1.03);
}
.category-tab.active {
    animation: popFadeIn 0.4s ease-out forwards;
}

.category-icon img {
    transition: transform 0.3s ease;
}
.category-tab:hover .category-icon img {
    transform: scale(1.1) rotate(-3deg);
}
.product-card {
    animation: slideFadeIn 0.5s ease-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-title-button {
    transition: all 0.3s ease;
}
.product-title-button:hover {
    transform: scale(1.05);
    filter: brightness(1.05);
}

.origin-button {
    transition: transform 0.4s ease-in-out;
}
.origin-button:hover {
    animation: pulse 1s infinite;
}

#product-gallery-list .splide__slide img {
    transition: all 0.3s ease;
}
#product-gallery-list .splide__slide img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

@keyframes slideFadeIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes popFadeIn {
    0% {
        transform: scale(0.95);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.04);
    }
    100% {
        transform: scale(1);
    }
}


.single-blog-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', sans-serif;
}

.entry-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.entry-meta {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 1.5rem;
}

.post-thumbnail img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.entry-content p {
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}

.entry-footer .post-tags {
  margin-top: 1.5rem;
  font-size: 0.9rem;
}

.social-share {
  margin-top: 2rem;
  border-top: 1px solid #eee;
  padding-top: 1rem;
}

.social-icons a {
  margin-right: 10px;
  text-decoration: none;
  color: #0073aa;
}

.author-box {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 1rem;
}

.author-avatar {
  margin-right: 1rem;
}

.author-info h3 {
  margin-bottom: 0.5rem;
}

.post-navigation {
  margin-top: 2rem;
  padding-top: 2rem;
}

.animate-fade-up {
  animation: fadeUp 0.6s ease-out both;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out both;
}


@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.nav-previous a, .nav-next a {
    text-decoration: none;
    color: black;
    border: 1px solid;
    padding: 15px;
    border-radius: 8px;
}

.css-loader-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
 
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.css-loader {
  width: 110px;
  height: 110px;
  border: 6px solid rgba(0, 0, 0, 0.1);
  border-top: 6px solid #000;
  border-right: 6px solid #000;
  border-radius: 50%;
  animation: spin 1s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
  position: relative;
   right: 0%;
   left: 299%;
}

.css-loader::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border: 4px solid transparent;
  border-top: 4px solid #999;
  border-left: 4px solid #999;
  border-radius: 50%;
  animation: spinReverse 1.5s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinReverse {
  to {
    transform: rotate(-360deg);
  }
}

.product-options p {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    padding: 4px 20px;
    border-radius: 8px;
    display: inline-block;
}



.select-category-text {
  margin: 0;
  margin-right: 12px;
}

.pointer-hand {
    width: 30px;
    height: 30px !important;
    animation: bounce 1.2s infinite;
}
@keyframes bounce {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-10px);
  }
}

.category-tab {
  animation: pulseTab 3s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
}

.category-tab:hover {
  transform: scale(1.05);
}

@keyframes pulseTab {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

.category-tab:nth-child(1) {
  animation-delay: 0s;
}
.category-tab:nth-child(2) {
  animation-delay: 0.5s;
}
.category-tab:nth-child(3) {
  animation-delay: 1s;
}
.category-tab:nth-child(4) {
  animation-delay: 1.5s;
}


.category-icon img {
  transition: transform 0.4s ease-in-out;
}

.category-tab:nth-child(1):hover .category-icon img {
  transform: scale(1.1) rotate(3deg);
}
.category-tab:nth-child(2):hover .category-icon img {
  transform: scale(1.1) rotate(-3deg);
}
.category-tab:nth-child(3):hover .category-icon img {
  transform: scale(1.15);
}
.category-tab:nth-child(4):hover .category-icon img {
  transform: scale(1.05) rotate(5deg);
}
.category-tab.active {
  animation: popFadeIn 0.4s ease-out forwards;
}
.select-category-text {
  cursor: pointer;
  animation: pulseFlash 1.8s ease-in-out infinite;
}

@keyframes pulseFlash {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.03);
  }
}

.variation-wrapper {
  margin-top: 15px;
  font-family: Arial, sans-serif;
}

.variation-wrapper strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  color: #333;
}

.variation-wrapper .variation-option {
  display: inline-block;
  margin: 4px;
  padding: 8px 16px;
  background-color: #f7f7f7;
  border: 2px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.variation-wrapper .variation-option:hover {
  background-color: #eaeaea;
  border-color: #999;
}

.variation-wrapper .variation-option.selected {
  background-color: #000;
  color: #fff;
  border-color: #000;
}
.rep-popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rep-popup-content {
      background: rgb(255 255 255 / 78%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
  padding: 15px;
  max-width: 400px;
  text-align: center;
      border: 2px solid #000000;
  position: relative;
}

.rep-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

/* Contact Form */

.wpcf7-form {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 30px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.05);
    font-family: 'Arial', sans-serif;
}

.wpcf7-form p label {
    display: block;
    font-weight: 600;
    color: #333;
}

.wpcf7-form-control {
    position: relative;
    width: 100%;
    padding: 0.75rem 1rem !important;
    font-size: 1rem;
    background: #fff;
    box-sizing: border-box !important;
     border: 1px solid #000000 !important;
    transition: all 0.3s ease;
    margin-bottom: 1.2rem;
    border: none !important;
    clip-path: polygon(4% 0, 97% 0, 100% 50%, 97% 100%, 4% 100%, 0% 50%);
    z-index: 1;
}
.wpcf7-form-control:hover {
      background: #fff !important;
}

.wpcf7-form-control::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    clip-path: polygon(4% 0, 97% 0, 100% 50%, 97% 100%, 4% 100%, 0% 50%);
    border: 1px solid #000000;
    z-index: -1;
    background: transparent;
}


.wpcf7-form-control:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.2);
}

.wpcf7-textarea {
    resize: vertical;
    min-height: 100px !important;
     height: 100px !important;
}



.wpcf7-submit:hover {
    background-color: #005f8d;
}

.wpcf7-spinner {
    margin-left: 10px;
    vertical-align: middle;
}

.wpcf7-response-output {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 0.95rem;
}

.wpcf7-form.invalid .wpcf7-response-output {
    border-color: #dc3232;
    background-color: #fbeaea;
    color: #dc3232;
}

.wpcf7-form.sent .wpcf7-response-output {
    border-color: #46b450;
    background-color: #e7fbe9;
    color: #256d34;
}
.wpcf7-form p {
    margin: 0;
}

#bastion-datetime {
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
    background-color: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
}

#bastion-datetime:focus {
    border-color: #007cba;
    box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.3);
    outline: none;
}

label[for="bastion-datetime"] {
    font-weight: 600;
    font-size: 15px;
    color: #333;
}

#bastion-datetime::-webkit-calendar-picker-indicator {
    filter: invert(0.5);
}
ul.wc-item-meta {
    margin: 0;
    padding: 0;
}
ul.wc-item-meta strong.wc-item-meta-label {
    top: 3px !important;
    position: relative !important;
}
.info-card {
     background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  border: 2px solid #060606;
  border-radius: 30px;
  padding: 20px;
      width: 37%;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.info-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

#info-category-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

#info-category-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.total-rep {
       font-weight: bold;
    font-size: 22px;
    color: #000;

    padding: 6px 12px;
    border-radius: 4px;
    display: inline-block;
}


.rep-login-btn-wrap {
    display: inline-block;
}

/* Login button wrapper */
.rep-login-btn-wrap {
    display: inline-block;
}

/* Login button style with image background */

a.rep-login-btn {
    position: absolute;
    left: 0;
	color: white;
    right: 0;
}
.rep-info {
    position: absolute;
    left: 44%;
    bottom: 0%;
    right: 0;
}
.rep-login-btn:hover {
 color: white !important;
}
.xoo-el-form-container button.btn.button.xoo-el-action-btn {
  height: 47px !important;
}
.xoo-el-form-container button.btn.button.xoo-el-action-btn {
     height: 47px !important;
    cursor: pointer;
    width: fit-content;
    padding: 20px 40px !important;
	margin: auto;
    margin-bottom: 0 !important;
	   background-color: #000000 !important;
	opacity: 1;
    transition: background-color 0.3s ease;
    clip-path: polygon(15% 0, 85% 0, 100% 50%, 85% 100%, 15% 100%, 0% 50%);
}
.xoo-el-form-container ul.xoo-el-tabs li.xoo-el-active {
    background-color: #000000;
    color: #ffffff;
    height: 47px !important;
    cursor: pointer;
    padding: 10px 40px !important;
    margin-bottom: 0 !important;
    transition: background-color 0.3s ease;
    clip-path: polygon(15% 0, 85% 0, 100% 50%, 85% 100%, 15% 100%, 0% 50%);
}
.xoo-el-form-container ul.xoo-el-tabs {
	justify-content: center;
    width: fit-content;
    margin: auto;
}
a.xoo-el-lostpw-tgr {
    color: black;
    border-bottom: 1px solid;
    padding-bottom: 2px;
}
label.xoo-el-form-label {
    color: black;
    border-bottom: 1px solid;
}

 label.xoo-el-form-label input[type="checkbox"]{
    box-sizing: border-box;
    position: relative;
    color: black;
    top: 1px;
}
@media (max-width: 1280px) {
  .css-loader {
    width: 40px !important;
    height: 40px !important;
    right: 620%;
    border-width: 5px;
  }

  .css-loader::after {
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-width: 3px;
  }
}


@media (max-width: 768px) {
  .custom-header {
    flex-direction: row;
    align-items: center;
  }
  .header-center {
    width: 100%;
    justify-content: center;
    margin-bottom: 0;
  }
  .angled-search-box {
    width: 100%;
            display: none;
  }
  .angled-search-input {
    width: calc(100% - 50px);
  }
  .header-left, .header-right {
    justify-content: space-between;
  }
  .header-left {
    width: 52% !important;
}
  .slide-top-title {
        width: 100% !important;
  }
  .splide__pagination {
        top: -20.5em !important;
        display: none !important;
  }
  .slide-left {
    flex: auto !important;
}
.header-right {
    width: 51% !important;
    justify-content: flex-end !important;
}
.product-showcase-wrapper {
  flex-direction: column !important;
}
.pointer-wrapper {
    display: none !important;
}
.category-list {
  width: 100% !important; 
      align-items: center !important;
}
          .product-submenu {
        padding-right: 30px !important;
        bottom: 60% !important;
        right: 100%;
        position: absolute !important;
        transform: rotate(180deg) !important;
        transform-origin: center !important;
    }

    .product-card {
          margin-left: 0 !important;        
          margin-top: 320px;
    width: 100% !important;}

    .origin-button {
          margin-right: 20px;
    }
   div#product-gallery-wrapper .splide__pagination{
        display: none !important;
    }
.custom-tabs-wrapper .splide__pagination {
    top: -11.5em !important;
}

.custom-tabs-tab {
      padding: 15px 24px 18px 24px !important;
          font-size: 14px !important;
}
.origin-tabs-wrapper .splide__pagination {
  top: -20.5em !important;
}
.origin-tabs-tab {
  font-size: 14px !important;
}
.origin-tabs-category-list, .custom-tabs-category-list {
  margin-top: -48px !important;
}
ul#menu-main-menu {
    margin: 0;
}
.slide-left h2 {
  font-size: 24px !important;
}
.header-center img {
    width: 150px !important;}

    .info-card {
        width: 100% !important;
        margin-top: 90%;
    }
.rep-info {
    position: absolute;
    left: 26%;
    bottom: -1%;
    right: 0;
}
.splide-bg { padding: 30px 0px !important;} 
.custom-tabs-category-list, .origin-tabs-category-list { margin-bottom: 0 !important;}

a.rep-login-btn {
    position: absolute;
    left: -20px !important;
    color: white;
    right: 0;
    bottom: -15px !important;
} 
.product-showcase-wrapper {
      margin-bottom: 72px !important;
}
.origin-tabs-category-list, .custom-tabs-category-list  {
      flex-direction: column !important;
      margin-bottom: 15px !important;
      align-items: center !important;
}
}
input.wpcf7-form-control.wpcf7-submit.has-spinner:hover {
    background: black !important;
    color: white !important;
}
