/*
  THEME NAME: Zojirushi
  VERSION: 1.0
  Domain Path: /languages/
*/

/* --- BASE STYLES (from stylesheet.css) --- */

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;

  @media (width < 640px) {
    /* sm */
    max-width: 100%;
  }

  @media (640px <=width < 768px) {
    /* md */
    max-width: 640px;
  }

  @media (768px <=width < 1024px) {
    /* lg */
    max-width: 768px;
  }

  @media (1024px <=width < 1280px) {
    /* xl */
    max-width: 1024px;
  }

  @media (1280px <=width < 1536px) {
    /* 2xl */
    max-width: 1080px;
  }

  @media (1536px <=width) {
    /* 3xl */
    max-width: 1536px;
  }
}

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

@keyframes l13 {
  100% {
    transform: rotate(1turn)
  }
}

.loader {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(farthest-side, rgba(20, 102, 157, 1) 94%, #0000) top/8px 8px no-repeat,
    conic-gradient(#0000 30%, rgba(20, 102, 157, 1));
  -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 8px), #000 0);
  animation: l13 1s infinite linear;
}

@keyframes animation-rotate-skew {
  0% {
    transform: rotate(0) scale(1) skew(1deg)
  }

  10% {
    transform: rotate(-25deg) scale(1) skew(1deg)
  }

  20% {
    transform: rotate(25deg) scale(1) skew(1deg)
  }

  30% {
    transform: rotate(-25deg) scale(1) skew(1deg)
  }

  40% {
    transform: rotate(25deg) scale(1) skew(1deg)
  }

  50% {
    transform: rotate(0) scale(1) skew(1deg)
  }

  100% {
    transform: rotate(0) scale(1) skew(1deg)
  }
}


.container-loader {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}


@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

body {
  font-family: Helvetica;
  line-height: 1.6;
}

h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 16px;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  p {
    font-size: 15px;
  }
}

img {
  max-width: 100%;
  height: auto;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: auto !important;
  margin-bottom: 16px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

ul {
  padding: 0;
  margin: 0;
}

.font-bold {
  font-weight: bold !important;
}

header {
  border-bottom: 0.2rem solid #007fc3;
}

header nav {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

header nav .logo {
  width: 180px;
  height: 40px;
}

header nav .navbar-nav {
  display: flex;
  flex-flow: row nowrap;
  margin: 0 auto;
}

.navbar-nav a {
  color: black;
  margin: 0 4px;
  padding: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
}

.search-form {
  width: 220px;
}

.search-form form {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  position: relative;
}

.search-form form img {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.search-form form input {
  outline: none;
  border: 1px solid #ced4da;
  color: #495057;
  border-radius: 4px;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 12px;
  padding-right: 28px;
}

/* ANIMATION MENU */

@keyframes animation-menu-in {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }

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

@keyframes animation-menu-out {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

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

.text-left {
  text-align: left !important;
}

.banner-contact {
  max-width: 1440px;
  margin: 0 auto;
  height: 330px;
  background-image: url('./assets/images/banner-contact.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;

}

.contact-wrapper {
  display: flex;
  flex-flow: row nowrap;
  margin: 60px 0;
  justify-content: space-between;
  align-items: start;
}

.contact-wrapper .contact-info {
  max-width: 600px;
  width: 100%;
  padding-right: 40px;
  margin-bottom: 40px;
}

.contact-wrapper .contact-form {
  max-width: 500px;
  width: 100%;
  background: rgba(232, 242, 248, 1);
  padding: 32px;
}

.contact-wrapper .contact-form input,
.contact-wrapper .contact-form textarea {
  background: white;
  border: none;
  outline: none;
  box-shadow: none;
  width: 100%;
  border-radius: 8px;
  margin-bottom: 24px;
  padding: 16px;
}

.contact-wrapper .contact-form input::placeholder,
.contact-wrapper .contact-form textarea::placeholder {
  color: rgba(140, 140, 140, 1);
  font-size: 16px;
  font-weight: 400;
}

contact-wrapper .contact-form input {
  height: 56px;
}

.contact-wrapper .contact-form textarea {
  height: 130px;
  resize: none;
}

.wpcf7-response-output {
  padding: 0 !important;
  font-size: 16px;
  outline: none !important;
  border: none !important;
  margin-top: 16px !important;
}

.wpcf7-spinner {
  top: 8px;
}

.contact-wrapper .contact-form .wpcf7-submit {
  width: 160px;
  background: rgba(24, 120, 185, 1);
  border-radius: 100px;
  color: white;
  height: 40px;
  border: none;
  outline: none;
  box-shadow: none;
  transition: all 0.3s ease-in-out;

}

.contact-wrapper .contact-form .wpcf7-submit:hover {
  transform: translateY(-2px);
}

.contact-info p {
  margin: 0;
}

.contact-info .tt1 {
  font-weight: 700;
  font-size: 40px;
  color: rgba(24, 120, 185, 1);
  margin-bottom: 16px;
}

.contact-info .pp1 {
  font-weight: 700;
  font-size: 18px;
  color: rgba(20, 20, 20, 1);
  margin-bottom: 8px;
}

.contact-info .pp2 {
  color: rgba(20, 20, 20, 1);
  font-size: 18px;
  font-weight: 400;
}

.contact-info .pp3 {
  color: rgba(140, 140, 140, 1);
  font-size: 18px;
  font-weight: 400;
}

.contact-info .space {
  margin-bottom: 24px;
}

.contact-info ul {
  margin-bottom: 8px;
}

.contact-info ul li {
  list-style: disc;
  margin-left: 22px;
  color: rgba(20, 20, 20, 1);
  font-size: 18px;
  font-weight: 400;
}

.contact-info .desc {
  font-weight: 400;
  font-size: 16px;
  color: rgba(20, 20, 20, 1);
  margin-bottom: 40px;
}

.contact-info .group {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  margin-bottom: 8px;
}

.contact-info .group .text {
  font-weight: 700;
  font-size: 20px;
  color: rgba(24, 120, 185, 1);
  margin-left: 12px;
}

/* MENU */

header .container {
  max-width: 1440px;
}

header .menu {
  position: relative;
  z-index: 1;
}

header .menu>ul {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

header .menu li {
  list-style: none;
}

header .menu li.has-mega,
header .menu li.has-submenu {
  position: relative;
}

header .menu li.has-mega>.mega-menu,
header .menu li.has-submenu>.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(31, 41, 55, 0.10);
  border-radius: 8px;
  z-index: 800;
  padding: 12px 0;
}

header .menu li.has-mega>.mega-menu {
  min-width: 600px;
  flex-flow: row nowrap;
}

header .menu li.has-mega:hover .mega-menu,
header .menu li.has-submenu:hover .sub-menu {
  display: flex;
}

header .menu .mega-menu-link {
  display: flex;
  flex-flow: column nowrap;
  width: 220px;
  border-right: 2px solid #eaecf0;
}

header .menu .mega-menu-link a.active,
header .menu .mega-menu-link a:hover {
  color: #0056b3;
}

header .menu .mega-menu-contents {
  flex: 1;
  padding: 0 16px;
}

header .menu .mega-menu-contents ul {
  display: none;
  flex-flow: column nowrap;
}

header .menu .mega-menu-contents ul.active {
  display: flex;
}


/* menu mega */

header .menu .mega-column {
  position: relative;
}

header .menu .mega-column ul {
  display: none;
}

header .menu .link-wrapper {
  display: flex;
  align-items: center;
}

header .menu a {
  color: #1a1a1a;
  margin: 0 4px;
  padding: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.2s linear;
  display: block;
}

header .menu a:hover {
  color: #0056b3;
}

header .menu .show-submenu {
  border: none;
  background: none;

  >svg>path {
    fill: #0056b3;
  }
}

/* menu mobile */
header .menu-mobile {
  display: flex;
  position: fixed;
  background: white;
  max-width: 320px;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 88888;
  height: 100vh;
  padding-top: 60px;
  padding-bottom: 16px;
  transform: translateX(100%);
}



header .menu-mobile.menu-open {
  animation: animation-menu-in 0.4s ease-in-out forwards;
}

header .menu-mobile.menu-close {
  animation: animation-menu-out 0.4s ease-in-out forwards;
}


header .menu-mobile ul {
  width: 100%;
  overflow-y: auto;
  height: 100%;
  padding: 0 16px;
}

header .menu-mobile .hamburger {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  z-index: 8888;
}

header .menu-mobile .link-wrapper {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  padding-right: 8px;
}

header .menu-mobile a {
  width: 100%;
  color: #1a1a1a;
  padding: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.2s linear;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  z-index: 1;
}

header .menu-mobile .show-submenu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

header .menu-mobile a:hover {
  color: #0056b3;
}

header .menu-mobile li.has-mega,
header .menu-mobile li.has-submenu {
  display: flex;
  flex-flow: column nowrap;
}

header .menu-mobile .mega-column {
  position: relative;
}

header .menu-mobile .mega-column a {
  font-size: 14px;
}

header .menu-mobile .mega-column .sub-menu {
  display: none;
}

header .menu-mobile li.has-mega>.mega-menu,
header .menu-mobile li.has-submenu>.sub-menu {
  display: none;
  flex-flow: column nowrap;
  width: 100%;
  background: #fff;
  box-shadow: 0 8px 24px rgba(31, 41, 55, 0.10);
  border-radius: 8px;
  padding: 12px 0;
}

.text-highlighted {
  font-weight: bold !important;
  font-size: 20px !important;
}

/* END MENU */

/* PRODUCT - CLINETS */

.page-clients {
  margin-top: 60px;
}

.entry-products h2 {
  background: rgba(232, 242, 248, 1);
  margin-bottom: 32px;
  border-top-right-radius: 100px;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  padding: 10px 32px;
  border-left: 5px solid rgba(24, 120, 185, 1);
  color: rgba(20, 102, 157, 1);
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
}


.entry-products {
  margin-bottom: 60px;
}

.entry-products .sub-category {
  display: flex;
  flex-flow: row wrap;
  gap: 16px;
  margin-bottom: 42px;
}

.entry-products .sub-category .item {
  outline: none;
  background: rgba(245, 245, 245, 1);
  color: rgba(89, 89, 89, 1);
  font-size: 14px;
  padding: 8px 20px;
  text-decoration: none;
  border-radius: 32px;
  border: 1.5px solid transparent;
  transition: all 0.2s ease-in-out;
}

.entry-products .sub-category .item.active {
  border: 1.5px solid rgba(24, 120, 185, 1);
  color: rgba(20, 102, 157, 1);
  background: rgba(232, 242, 248, 1);
}

.entry-products .sub-category .item:hover {
  color: rgba(20, 102, 157, 1);
  border: 1.5px solid rgba(24, 120, 185, 1);
}

.entry-products .loop-products {
  display: flex;
  flex-flow: row nowrap;
  gap: 100px;
}

.entry-products .paginations {
  margin-top: 60px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.entry-products .paginations button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: rgba(20, 20, 20, 1);
  border-radius: 100%;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease-in-out;
}

.entry-products .paginations button.mid {
  pointer-events: none;
}

.entry-products .paginations button:hover:not(.mid),
.entry-products .paginations button.current {
  background: rgba(24, 120, 185, 1);
  color: white;
}

.entry-products .paginations button:hover svg path {
  fill: white;
}

.entry-products .loop-products .product-image img {
  object-fit: cover;
}

.entry-products .loop-products .product-link {
  background: rgba(24, 120, 185, 1);
  color: rgba(252, 252, 252, 1);
  font-size: 16px;
  font-weight: 700;
  margin: 0 auto;
  margin-top: 40px;
  width: 150px;
  text-align: center;
  border-radius: 100px;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  padding: 9px 16px;
  display: inline-flex;
}

.entry-products .loop-products .product-link:hover {
  transform: translateY(-2px);
}

.entry-products .col-product {
  display: flex;
  flex-flow: row nowrap;
  width: 50%;
  gap: 40px;
}

.entry-products .col-product .col-left {
  flex: 1;
}

.entry-products .col-product .col-right {
  width: 200px;
  text-align: center;
}

.entry-products .loop-products {
  min-height: 300px;
}

.entry-products .loop-products h3 {
  color: rgba(20, 102, 157, 1);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.entry-products .loop-products h3 a {
  text-decoration: none;
  color: rgba(20, 102, 157, 1);
  font-size: 16px;
  font-weight: 700;
}

.entry-products .loop-products .product-line {
  display: flex;
  flex-flow: column nowrap;
  margin-bottom: 16px;
}

.entry-products .loop-products .product-line li {
  display: flex;
  flex-flow: row wrap;
}

.entry-products .loop-products .product-line .label {
  color: rgba(140, 140, 140, 1);
  font-size: 16px;
  font-weight: 700;
  margin-right: 6px;
}

.entry-products .loop-products .product-line .value {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  font-weight: 700;
}

.entry-products .loop-products .tt3 {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  font-weight: 400;
}

/*  */

.bg-f2 {
  background: #f2f2f2;
}

.about-us .copy-area {
  margin-top: 8px;
}

.banner {
  margin-top: 20px;
  margin-bottom: 10px;
  position: relative;
}

.banner .wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  z-index: 9;
}

.banner .wrapper h1 {
  font-size: 42px;
  color: white;
  font-weight: bold;
}

.banner .wrapper p {
  font-size: 16px;
  color: white;
}

.list-post-search {
  padding: 100px 0;
  min-height: 600px;
}

.list-post-search a {
  text-decoration: none;
}

.list-post-search .item-title {
  color: #1F2937;
  font-size: 2rem;
}

.list-post-search .item-excerpt {
  font-size: 1rem;
  color: #1F2937;
}

.breadcrumbs a {
  text-decoration: none;
  color: #1F2937;
}

.breadcrumbs ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}

.breadcrumbs ul li {
  padding: 0 4px;
}

.breadcrumbs .sep {
  margin: 0 4px;
}

/* SLIDER */

.page-404 {
  height: 600px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
}

/* SECTION SLIDE INTRO */

.slick-dots {
  margin: 0;
}

.section-slider-intro {
  background: rgba(20, 20, 20, 1);
}

.section-slider-intro .slide-content {
  height: 100%;
}

.section-slider-intro .slide-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#slider-intro .slick-list {
  height: 46vw;
  max-height: 100%;
}

#slider-intro.landing-page .slick-list {
  max-height: 100%;
}


#slider-intro .slick-track {
  height: 100%;
}

#slider-intro .slick-slide {
  height: 100%;
  position: relative;
}

#slider-intro .slick-slide:not(.slick-active):after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}


#slider-intro .slide-content-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}


#slider-intro .slide-content-inner h3 {
  font-size: 24px;
  color: white;
  font-weight: bold;
  opacity: 0;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

#slider-intro .slide-content-inner p {
  font-size: 16px;
  color: white;
  font-weight: 400;
  opacity: 0;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

#slider-intro .slick-slide.slick-active .slide-content-inner h3,
#slider-intro .slick-slide.slick-active .slide-content-inner p {
  animation: fadeIn 1s ease-in-out both;
}


#slider-intro .slide-control {
  width: 100%;
  margin: 0 auto;
  padding: 60px 100px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}

/*
#slider-intro .slide-control .slide-dots .slick-dots:nth-child(1) {
	display: flex;
	
	@media (1024px >= width) {
		display: none;
	}
}
*/

#slider-intro .slide-control .slide-dots .slick-dots:nth-child(2) {
  opacity: 0;
}


#slider-intro .slide-control .slide-dots {
  margin-bottom: 10px;
}

#slider-intro .slide-control .slide-outside {
  display: flex;
  flex-flow: column nowrap;
  align-items: end;
}

#slider-intro .slide-control .slide-outside .outside-title {
  font-weight: 700;
  font-size: 56px;
  color: white;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

#slider-intro .slide-control .slide-outside .outside-desc {
  font-weight: 700;
  font-size: 24px;
  color: white;
}

#slider-intro .slide-control .slide-outside .outside-desc,
#slider-intro .slide-control .slide-outside .outside-title {
  margin: 0;
}

#slider-intro .slide-control .slide-dots .slick-dots {
  display: flex;
  flex-flow: row nowrap;
  gap: 10px;
  list-style: none;
  padding: 0;
}

#slider-intro .slide-control .slide-dots .slick-dots li {
  width: 20px;
  height: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 100%;
  cursor: pointer;
  transition: all 0.2s linear;
}

#slider-intro .slide-control .slide-dots .slick-dots li:hover {
  background: #007fc3;
}

#slider-intro .slide-control .slide-dots .slick-dots li.slick-active {
  background: black;
}

#slider-intro .slide-control .slide-dots .slick-dots button {
  display: none;
}

#slider-intro .slide-control .slide-arrow {
  position: absolute;
  top: 0;
  right: 100px;
  display: flex;
  flex-flow: row nowrap;
  gap: 16px;
}

#slider-intro .slide-control .slide-arrow button {
  border: none;
  outline: none;
  background: rgba(0, 0, 0, 0.3);
  width: 56px;
  height: 56px;
  transition: all 0.2s linear;
  cursor: pointer;
}

#slider-intro .slide-control .slide-arrow button:hover {
  background: #007fc3;
}

/* SECTION INTRO PRODUCT - Zojirushi Style */
.section-intro-product {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
}

.section-intro-product:nth-child(even) {
  background: #f8f9fa;
}

.section-intro-product .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-intro-product h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 40px;
  position: relative;
  letter-spacing: -0.5px;
}

.section-intro-product h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #007fc3, #0056b3);
  border-radius: 2px;
}

.section-intro-product a {
  display: block;
  width: 100%;
  max-width: 1600px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}

.section-intro-product a:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.section-intro-product img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.section-intro-product a:hover img {
  transform: scale(1.05);
}

/* HOME PRODUCT SECTIONS */
.home-products-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.home-products-section.home-new-products {
  background: #ffffff;
}

.home-products-section .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.home-products-section .section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.home-products-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  position: relative;
}

.home-products-section h2::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #007fc3, #0056b3);
  border-radius: 2px;
}

.home-products-section .view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 8px;
  background: #007fc3;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  transition: background 0.3s ease;
}

/* ABOUT US */

.list-dot {
  margin-left: 30px;
  margin-bottom: 24px;
}

.list-dot li {
  position: relative;
  margin-bottom: 12px;
}

.list-dot li:before {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: black;
  left: -20px;
  top: 7px;
  z-index: 2;
}

.about-us {
  padding: 60px 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

.about-us .tt-slogon {
  font-weight: bold;
  font-size: 20px;
  text-align: center;
}

.about-us .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-us h2 {
  font-size: 32px;
  color: #222;
  margin-bottom: 20px;
  border-left: 5px solid #0077C8;
  padding-left: 15px;
}

.about-us h3 {
  font-size: 24px;
  color: #0077C8;
  margin-top: 25px;
  margin-bottom: 15px;
}

.about-us p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-us .tt1 {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
}

.about-us ul {
  margin-bottom: 20px;
  padding-left: 25px;
  list-style: disc;
}

.about-us li {
  margin-bottom: 10px;
  display: list-item;
}

.about-us li .tt1 {
  padding: 0 16px;
  display: block;
  text-align: center;
  font-weight: bold;
}

.about-us li .tt2 {
  flex: 1;
}


.about-us .contents {
  margin-bottom: 50px;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* END ABOUT US */

/* SAMPLE FOOTER - Zojirushi Style */
.sample-footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 60px 0 0 0;
  font-family: Helvetica, Arial, sans-serif;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  align-items: start;
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-section p {
  color: #cccccc;
  font-size: 16px;
  margin: 0;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  line-height: 1.4;
}

.footer-section ul li a:hover {
  color: #007fc3;
}

.footer-logo .logo-link {
  max-width: 300px;
  width: 100%;
  display: flex;

}

.footer-logo .wrapper {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
}


.footer-logo .wrapper h3 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.footer-logo .wrapper p {
  color: #cccccc;
  font-size: 16px;
  margin: 0;
  font-style: italic;
}

.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #cccccc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #007fc3;
  color: #ffffff;
  transform: translateY(-2px);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  padding: 20px 0;
  background: #111111;
  border-top: 1px solid #333;
}

.footer-bottom-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: #999999;
  font-size: 14px;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #999999;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #007fc3;
}

/* WOOCOMMERCE PRODUCT CARD - Custom Zojirushi Style */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 10px !important;
  padding: 0 !important;
  margin: 0 !important;
}

@media (min-width: 1024px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 16px !important;
  }
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none !important;
}

.woocommerce ul.products li.product.custom-product-card {
  width: 100%;
  margin: 0;
  border: 1px solid #f0f0f0 !important;
  border-radius: 12px !important;
  padding: 15px !important;
  background: #fff !important;
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  transition: all 0.3s ease !important;
  height: 100% !important;
  float: none !important;
}

.woocommerce ul.products li.product.custom-product-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
  border-color: #e0e0e0 !important;
  transform: translateY(-4px) !important;
}

/* Badges */
.discount-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #ff8c00 0%, #ff4500 100%);
  color: #fff;
  padding: 4px 10px;
  border-bottom-right-radius: 12px;
  border-top-left-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  z-index: 11;
}

.new-badge {
  position: absolute;
  top: 45px;
  left: 10px;
  background: #e62117;
  color: #fff;
  padding: 2px 6px;
  font-size: 10px;
  font-weight: 800;
  border-radius: 2px;
  z-index: 10;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.custom-product-card a.woocommerce-loop-product__link {
  display: flex !important;
  flex-direction: column !important;
  text-decoration: none !important;
  flex: 1 !important;
}

.custom-product-card .woocommerce-placeholder,
.custom-product-card img {
  margin-bottom: 15px !important;
  border-radius: 8px !important;
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
}

.custom-product-card .woocommerce-loop-product__title {
  font-size: 16px !important;
  color: #333 !important;
  font-weight: 600 !important;
  margin: 0 0 8px !important;
  line-height: 1.4 !important;
  height: 2.8em !important;
  overflow: hidden !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  padding: 0 !important;
}

.custom-product-card .price {
  font-size: 18px !important;
  color: #e62117 !important;
  font-weight: 700 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: baseline !important;
  gap: 10px !important;
  margin: 0 0 10px 0 !important;
}

.custom-product-card .price del {
  color: #999 !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  order: 2 !important;
  text-decoration: line-through !important;
}

.custom-product-card .price ins {
  text-decoration: none !important;
  order: 1 !important;
  background: transparent !important;
  color: inherit !important;
}

.sales-count {
  font-size: 13px !important;
  color: #666 !important;
  margin: 0 0 15px 0 !important;
}

.custom-product-card .onsale {
  display: none !important;
}

.custom-product-card a.button {
  margin-top: auto !important;
  background: #007fc3 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 10px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  text-align: center !important;
  display: block !important;
  width: 100% !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

@media (max-width: 768px) {
  .custom-product-card a.button {
    font-size: 10px !important;
  }
}

.custom-product-card a.button:hover {
  background: #0056b3 !important;
}

/* WOOCOMMERCE PAGINATION - Zojirushi Style */
.woocommerce-pagination {
  margin: 60px 0;
  text-align: center;
}

.woocommerce-pagination ul.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.woocommerce-pagination ul.page-numbers li {
  margin: 0;
}

.woocommerce-pagination ul.page-numbers li a.page-numbers,
.woocommerce-pagination ul.page-numbers li span.page-numbers {
  /* display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #ffffff;
  color: #1a1a1a;
  text-decoration: none;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer; */
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0.75rem 1rem;
  background: #FFFFFF;
  border: 2px solid #E5E7EB;
  border-radius: 8px;
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}

.woocommerce-pagination ul.page-numbers li a.page-numbers:hover {
  background: #F3F4F6;
  border-color: #D1D5DB;
  color: #111827;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.woocommerce-pagination ul.page-numbers li span.page-numbers.current {
  background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
  border-color: #1F2937;
  color: #FFFFFF;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(31, 41, 55, 0.3);
}

.woocommerce-pagination ul.page-numbers li span.page-numbers.dots {
  background: transparent;
  border-color: transparent;
  color: #666666;
  cursor: default;
}

.woocommerce-pagination ul.page-numbers li span.page-numbers.dots:hover {
  background: transparent;
  color: #666666;
  transform: none;
  box-shadow: none;
}

/* Previous/Next buttons */
.woocommerce-pagination ul.page-numbers li a.page-numbers.prev,
.woocommerce-pagination ul.page-numbers li a.page-numbers.next {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


/* Loading state */
.woocommerce-pagination ul.page-numbers li a.page-numbers.loading {
  background: #f5f5f5;
  color: #999999;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.woocommerce-pagination ul.page-numbers li a.page-numbers.loading:hover {
  background: #f5f5f5;
  color: #999999;
  transform: none;
  box-shadow: none;
}

.woocommerce nav.woocommerce-pagination ul {
  gap: 0.5rem;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
}

.woocommerce nav.woocommerce-pagination ul,
.woocommerce nav.woocommerce-pagination ul li {
  border: none;
}

.woocommerce .woocommerce-pagination ul.page-numbers li,
.woocommerce-page .woocommerce-pagination ul.page-numbers li {
  overflow: initial;
}

/* WOOCOMMERCE PRODUCTS HEADER - Zojirushi Style */
.woocommerce-products-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 60px 0 40px 0;
  margin-bottom: 40px;
  border-bottom: 1px solid #e9ecef;
  position: relative;
}

.woocommerce-products-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #007fc3, #0056b3);
}

.woocommerce-products-header .woocommerce-products-header__title {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 20px 0;
  text-align: center;
  letter-spacing: -0.5px;
  position: relative;
}

.woocommerce-products-header .woocommerce-products-header__title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #007fc3, #0056b3);
  border-radius: 2px;
}

.woocommerce-products-header .woocommerce-products-header__description {
  font-size: 18px;
  color: #666666;
  text-align: center;
  margin: 0;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Products header with breadcrumbs */
.woocommerce-products-header .woocommerce-breadcrumb {
  margin-bottom: 30px;
  text-align: center;
}

.woocommerce-products-header .woocommerce-breadcrumb a {
  color: #007fc3;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.woocommerce-products-header .woocommerce-breadcrumb a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.woocommerce-products-header .woocommerce-breadcrumb .delimiter {
  color: #999999;
  margin: 0 8px;
  font-size: 12px;
}

.woocommerce-products-header .woocommerce-breadcrumb .breadcrumb-last {
  color: #666666;
  font-weight: 600;
}

/* Products header with category image */
.woocommerce-products-header .category-image {
  margin-bottom: 30px;
  text-align: center;
}

.woocommerce-products-header .category-image img {
  max-width: 200px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.woocommerce-products-header .category-image img:hover {
  transform: scale(1.05);
}

/* Products header with filters/sorting */
.woocommerce-products-header .woocommerce-ordering {
  margin-top: 30px;
  text-align: center;
}

.woocommerce-products-header .woocommerce-ordering select {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 200px;
}

.woocommerce-products-header .woocommerce-ordering select:hover {
  border-color: #007fc3;
  box-shadow: 0 4px 12px rgba(0, 127, 195, 0.1);
}

.woocommerce-products-header .woocommerce-ordering select:focus {
  outline: none;
  border-color: #007fc3;
  box-shadow: 0 0 0 3px rgba(0, 127, 195, 0.1);
}

/* Products count */
.woocommerce-products-header .woocommerce-result-count {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #666666;
  font-weight: 500;
}

/* Category description */
.woocommerce-products-header .term-description {
  margin-top: 20px;
  text-align: center;
  font-size: 16px;
  color: #666666;
  line-height: 1.6;
  max-width: 800px;
  margin: 20px auto 0 auto;
}

/* Subcategories */
.woocommerce-products-header .woocommerce-loop-category__title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 15px 0 5px 0;
  text-align: center;
}

.woocommerce-products-header .woocommerce-loop-category__count {
  font-size: 14px;
  color: #666666;
  text-align: center;
  margin: 0;
}

/* BLOG POSTS SECTION - Zojirushi Style */
.section-blog-posts {
  padding: 80px 0;
  background: #ffffff;
}

.section-blog-posts .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-blog-posts h2 {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  letter-spacing: -0.5px;
}

.section-blog-posts h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #007fc3, #0056b3);
  border-radius: 2px;
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.blog-post-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.blog-post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.blog-post-card .post-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.blog-post-card .post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-post-card:hover .post-image img {
  transform: scale(1.05);
}

.blog-post-card .post-content {
  padding: 20px;
}

.blog-post-card .post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 12px;
  color: #666666;
}

.blog-post-card .post-date {
  font-weight: 500;
}

.blog-post-card .post-category a {
  color: #007fc3;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.blog-post-card .post-category a:hover {
  color: #0056b3;
}

.blog-post-card .post-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 12px 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-post-card .post-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-post-card .post-title a:hover {
  color: #007fc3;
}

.blog-post-card .post-excerpt {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-post-card .read-more {
  display: inline-block;
  color: #007fc3;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}

.blog-post-card .read-more::after {
  content: '→';
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.blog-post-card .read-more:hover {
  color: #0056b3;
}

.blog-post-card .read-more:hover::after {
  transform: translateX(4px);
}

/* SINGLE POST PAGE - Zojirushi Style */
.single-post-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 80px 0 60px 0;
  border-bottom: 1px solid #e9ecef;
  position: relative;
}

.single-post-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #007fc3, #0056b3);
}

.single-post-header .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.post-header-content {
  text-align: center;
  max-width: 1440px;
  padding: 0 16px;
  margin: 0 auto;
}

.post-header-content .post-meta {
  margin-bottom: 20px;
  font-size: 14px;
  color: #666666;
}

.post-header-content .post-date {
  font-weight: 500;
  margin-right: 20px;
}

.post-header-content .post-category a {
  color: #007fc3;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.post-header-content .post-category a:hover {
  color: #0056b3;
}

.post-header-content .post-title {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 20px 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.post-header-content .post-author {
  font-size: 16px;
  color: #666666;
}

.post-header-content .author-label {
  font-weight: 500;
}

.post-header-content .author-name {
  color: #007fc3;
  font-weight: 600;
}

/* Single Post Content */
.single-post-content {
  padding: 60px 0;
  background: #ffffff;
}

.single-post-content .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.post-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
  align-items: start;

  .sidebar {
    height: 100%;
  }
}

.contact-details .contact-item {
  margin-top: 16px;
}

/* Main Content */
.post-main {
  background: #ffffff;
  min-width: 0;
}

.post-featured-image {
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.post-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Post Tags */
.post-tags {
  margin-bottom: 40px;
  padding: 20px 0;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.post-tags h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 15px 0;
}

.tags-list a {
  display: inline-block;
  background: #f0f0f0;
  color: #666666;
  padding: 6px 12px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  margin: 0 8px 8px 0;
  transition: all 0.3s ease;
}

.tags-list a:hover {
  background: #007fc3;
  color: #ffffff;
}

/* Post Navigation */
.post-navigation {
  margin-bottom: 40px;
  padding: 30px 0;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
  flex: 1;
}

.post-navigation .nav-next {
  text-align: right;
}

.post-navigation a {
  color: #007fc3;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
}

.post-navigation a:hover {
  color: #0056b3;
}

/* Author Bio */
.author-bio {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 12px;
  margin-bottom: 40px;
}

.author-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.author-info h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 10px 0;
}

.author-info p {
  font-size: 16px;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

/* Related Posts */
.related-posts {
  margin-bottom: 40px;
}

.related-posts h3 {
  font-size: 28px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 30px 0;
  text-align: center;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.related-post-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.related-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.related-post-image {
  height: 200px;
  overflow: hidden;
}

.related-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-post-card:hover .related-post-image img {
  transform: scale(1.05);
}

.related-post-content {
  padding: 15px;
}

.related-post-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.related-post-content h4 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-post-content h4 a:hover {
  color: #007fc3;
}

.related-post-date {
  font-size: 12px;
  color: #666666;
}

.sidebar {
  height: auto;
}

/* Sidebar */
.post-sidebar {
  background: #ffffff;
  min-width: 0;
  position: sticky;
  top: 20px;
}

.sidebar-widget {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
  border: 1px solid #e9ecef;
}

.sidebar-widget h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #007fc3;
}

.categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-list li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e9ecef;

  ul {
    list-style: none;
  }
}

.categories-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.categories-list a {
  color: #333333;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.categories-list a:hover {
  color: #007fc3;
}

.recent-posts-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recent-posts-list li {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e9ecef;
}

.recent-posts-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.recent-posts-list a {
  color: #333333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 5px;
}

.recent-posts-list a:hover {
  color: #007fc3;
}

.recent-post-date {
  font-size: 12px;
  color: #666666;
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-link {
  background: #ffffff;
  color: #666666;
  padding: 6px 12px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 12px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.tag-link:hover {
  background: #007fc3;
  color: #ffffff;
  border-color: #007fc3;
}

.woocommerce-products-header::before {
  display: none;
}

.woocommerce .woocommerce-breadcrumb {
  padding: 16px 0;
}


.archive-shop-space {
  display: block;
  width: 100%;
  height: 32px;
}

.client-banner {
  background-image: url('./assets/images/client-banner.png');
  max-width: 1440px;
  margin: 0 auto;
  height: 800px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;

}


.floating-button {
  position: fixed;
  right: 32px;
  display: flex;
  flex-flow: column nowrap;
  width: 56px;
  gap: 10px;
  bottom: 32px;
}

.floating-button.cart-exists {
  bottom: 100px;
}

.floating-button a {
  width: 56px;
  height: 56px;
  display: block;
  border-radius: 100%;
  box-shadow: 0 4px 16px rgba(31, 41, 55, 0.18);
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  background: #1878b9;
}

.floating-button a:hover {
  box-shadow: 0 8px 32px rgba(31, 41, 55, 0.28);
  transform: translateY(-2px) scale(1.05);
}

.floating-button .icon {
  border-radius: 100%;
  display: block;
  overflow: hidden;
}

.floating-button .btn-phone .icon {
  transform: scale(0.70);
}

.floating-button .btn-zalo .icon {
  position: relative;
  top: -1px;
}

.about-us img {
  width: 200px;
  height: 100%;
  object-fit: cover;

}

/* --- RESPONSIVE STYLES (from responsive.css) --- */
/* RESPONSIVE STYLES */

@media (max-width: 992px) {
  header .search-form {
    display: none;
  }

  header .menu {
    display: none;
  }

  .entry-products .loop-products {
    flex-flow: column nowrap;
    gap: 30px;
  }

  .entry-products .col-product {
    width: 100%;
  }
}

/* Tablet and smaller desktop */
@media (max-width: 768px) {

  /* ABOUT US */

  .about-us h2 {
    font-size: 28px;
  }

  .about-us h3 {
    font-size: 20px;
  }

  .about-us p,
  .about-us li {
    font-size: 15px;
  }

  .about-us .contents {
    padding: 20px;
  }

  /* END ABOUT US */

  .entry-products .sub-category .item {
    padding: 4px 12px;
  }

  .entry-products .sub-category {
    gap: 10px;
  }

  .contact-wrapper {
    flex-flow: column nowrap;
  }

  .contact-wrapper .contact-info {
    max-width: 100%;
    padding: 0;
  }

  .contact-wrapper .contact-form {
    margin: 0 auto;
    margin-bottom: 40px;
  }

  /* Slider Responsive */
  #slider-intro .slick-list {
    height: 60vw;
  }

  #slider-intro .slide-content-inner h3 {
    font-size: 42px;
  }

  #slider-intro .slide-content-inner p {
    font-size: 20px;
  }

  #slider-intro .slide-control {
    padding: 40px 60px;
  }

  #slider-intro .slide-control .slide-arrow {
    right: 60px;
  }

  /* Product Sections Responsive */
  .section-intro-product {
    padding: 60px 0;
  }

  .section-intro-product .container {
    padding: 0 20px;
  }

  .section-intro-product h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .home-products-section {
    padding: 60px 0;
  }

  .home-products-section .container {
    padding: 0 20px;
  }

  .home-products-section .section-heading {
    margin-bottom: 32px;
  }

  .home-products-section h2 {
    font-size: 28px;
  }

  /* Footer Responsive */
  .sample-footer {
    padding: 40px 0 0 0;
  }

  .footer-container {
    padding: 0 20px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 30px;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .social-icons {
    justify-content: start;
  }

  /* Blog Posts responsive */
  .section-blog-posts {
    padding: 60px 0;
  }

  .section-blog-posts .container {
    padding: 0 20px;
  }

  .section-blog-posts h2 {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .blog-posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .blog-post-card .post-content {
    padding: 16px;
  }

  .blog-post-card .post-title {
    font-size: 16px;
  }

  .blog-post-card .post-excerpt {
    font-size: 13px;
  }

  /* Pagination responsive */
  .woocommerce-pagination {
    margin: 40px 0;
  }

  .woocommerce-pagination ul.page-numbers {
    gap: 6px;
  }

  .woocommerce-pagination ul.page-numbers li a.page-numbers,
  .woocommerce-pagination ul.page-numbers li span.page-numbers {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }

  .woocommerce-pagination ul.page-numbers li a.page-numbers.prev,
  .woocommerce-pagination ul.page-numbers li a.page-numbers.next {
    font-size: 11px;
  }

  /* Custom Pagination responsive */
  .pagination-nav,
  .woocommerce-pagination {
    margin: 2rem 0;
  }

  .pagination,
  .woocommerce-pagination ul.page-numbers {
    gap: 0.25rem;
  }

  .page-link,
  .woocommerce-pagination ul.page-numbers li a.page-numbers,
  .woocommerce-pagination ul.page-numbers li span.page-numbers {
    min-width: 40px;
    height: 40px;
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }

  .page-item:first-child .page-link,
  .page-item:last-child .page-link,
  .woocommerce-pagination ul.page-numbers li a.prev,
  .woocommerce-pagination ul.page-numbers li a.next {
    min-width: 44px;
  }

  /* Products Header responsive */
  .woocommerce-products-header {
    padding: 40px 0 30px 0;
    margin-bottom: 30px;
  }

  .woocommerce-products-header .woocommerce-products-header__title {
    font-size: 36px;
    margin: 0 0 15px 0;
  }

  .woocommerce-products-header .woocommerce-products-header__description {
    font-size: 16px;
  }

  .woocommerce-products-header .category-image img {
    max-width: 150px;
  }

  .woocommerce-products-header .woocommerce-ordering select {
    min-width: 180px;
    padding: 10px 16px;
  }

  /* WooCommerce responsive */
  .woocommerce ul.products li.product .button {
    padding: 10px 20px !important;
    font-size: 10px !important;
    margin-top: 12px;
  }

  .woocommerce ul.products li.product {
    padding: 15px;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 16px;
    margin: 12px 0 8px 0;
  }

  .woocommerce ul.products li.product .price {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .woocommerce ul.products li.product .price del {
    font-size: 14px;
  }

  /* Single Post responsive */
  .single-post-header {
    padding: 60px 0 40px 0;
  }

  .single-post-header .container {
    padding: 0 20px;
  }

  .post-header-content .post-title {
    font-size: 32px;
  }

  .single-post-content {
    padding: 40px 0;
  }

  .single-post-content .container {
    padding: 0 20px;
  }

  .post-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .author-bio {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .sidebar-widget {
    padding: 20px;
  }
}

.orderby {
  padding: 5px;
}

@media (max-width: 575px) {
  .entry-products .col-product {
    flex-flow: column nowrap;
  }

  .entry-products .col-product .col-left {
    order: 2;
    width: 100%;
  }

  .entry-products .col-product .col-right {
    order: 1;
    width: 100%;
  }
}

/* Mobile devices */
@media (max-width: 480px) {

  .entry-products h2 {
    font-size: 30px;
  }

  /* Header Responsive */
  header nav {
    gap: 15px;
    padding: 15px 20px;
  }

  header nav .logo {
    width: 150px;
    height: 35px;
  }

  .navbar-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .navbar-nav a {
    font-size: 14px;
    padding: 6px;
  }

  /* Banner Responsive */
  .banner .wrapper h1 {
    font-size: 32px;
  }

  .banner .wrapper p {
    font-size: 15px;
  }

  /* Slider Responsive */
  #slider-intro .slick-list {
    height: 70vw;
  }

  #slider-intro .slide-content-inner h3 {
    font-size: 20px;
  }

  #slider-intro .slide-content-inner p {
    font-size: 15px;
  }

  #slider-intro .slide-control {
    padding: 30px 20px;
  }

  #slider-intro .slide-control .slide-arrow {
    right: 20px;
  }

  #slider-intro .slide-control .slide-arrow button {
    width: 44px;
    height: 44px;
  }

  /* Product Sections Responsive */
  .section-intro-product {
    padding: 40px 0;
  }

  .section-intro-product .container {
    padding: 0 15px;
  }

  .section-intro-product h2 {
    font-size: 28px;
    margin-bottom: 25px;
  }

  .home-products-section {
    padding: 40px 0;
  }

  .home-products-section .container {
    padding: 0 15px;
  }

  .home-products-section .section-heading {
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 32px;
  }

  .home-products-section h2 {
    font-size: 26px;
  }

  /* Footer Responsive */
  .footer-main {
    gap: 30px;
  }

  .footer-section h4 {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .footer-section ul li a {
    font-size: 13px;
  }

  .footer-logo .logo h3 {
    font-size: 24px;
  }

  .social-icon {
    width: 35px;
    height: 35px;
  }

  .social-icon svg {
    width: 18px;
    height: 18px;
  }

  .footer-links {
    gap: 15px;
  }

  .footer-links a {
    font-size: 12px;
  }

  /* Blog Posts mobile responsive */
  .section-blog-posts {
    padding: 40px 0;
  }

  .section-blog-posts h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .blog-posts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-post-card .post-image {
    height: 180px;
  }

  .blog-post-card .post-content {
    padding: 15px;
  }

  .blog-post-card .post-title {
    font-size: 16px;
    margin: 0 0 10px 0;
  }

  .blog-post-card .post-excerpt {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .blog-post-card .read-more {
    font-size: 13px;
  }

  /* Pagination responsive */
  .woocommerce-pagination {
    margin: 40px 0;
  }

  .woocommerce-pagination ul.page-numbers {
    gap: 6px;
  }

  .woocommerce-pagination ul.page-numbers li a.page-numbers,
  .woocommerce-pagination ul.page-numbers li span.page-numbers {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }

  .woocommerce-pagination ul.page-numbers li a.page-numbers.prev,
  .woocommerce-pagination ul.page-numbers li a.page-numbers.next {
    font-size: 11px;
  }

  /* Custom Pagination mobile responsive */
  .pagination-nav,
  .woocommerce-pagination {
    margin: 1.5rem 0;
  }

  .pagination,
  .woocommerce-pagination ul.page-numbers {
    gap: 0.125rem;
  }

  .page-link,
  .woocommerce-pagination ul.page-numbers li a.page-numbers,
  .woocommerce-pagination ul.page-numbers li span.page-numbers {
    min-width: 36px;
    height: 36px;
    padding: 0.375rem 0.5rem;
    font-size: 0.75rem;
  }

  .page-item:first-child .page-link,
  .page-item:last-child .page-link,
  .woocommerce-pagination ul.page-numbers li a.prev,
  .woocommerce-pagination ul.page-numbers li a.next {
    min-width: 40px;
  }

  /* Hide some page numbers on very small screens */
  .page-item:not(.active):not(:first-child):not(:last-child):not(.disabled),
  .woocommerce-pagination ul.page-numbers li:not(.current):not(:first-child):not(:last-child):not(.dots) {
    display: none;
  }

  .page-item.active,
  .page-item:first-child,
  .page-item:last-child,
  .page-item.disabled,
  .woocommerce-pagination ul.page-numbers li.current,
  .woocommerce-pagination ul.page-numbers li:first-child,
  .woocommerce-pagination ul.page-numbers li:last-child,
  .woocommerce-pagination ul.page-numbers li.dots {
    display: block;
  }

  /* Products Header mobile responsive */
  .woocommerce-products-header {
    padding: 30px 0 20px 0;
    margin-bottom: 20px;
  }

  .woocommerce-products-header .woocommerce-products-header__title {
    font-size: 28px;
    margin: 0 0 12px 0;
  }

  .woocommerce-products-header .woocommerce-products-header__description {
    font-size: 14px;
  }

  .woocommerce-products-header .category-image img {
    max-width: 120px;
  }

  .woocommerce-products-header .woocommerce-ordering select {
    min-width: 160px;
    padding: 8px 12px;
    font-size: 13px;
  }

  .woocommerce-products-header .woocommerce-breadcrumb {
    margin-bottom: 20px;
  }

  .woocommerce-products-header .woocommerce-breadcrumb a {
    font-size: 13px;
  }

  .woocommerce-products-header .term-description {
    font-size: 14px;
    margin-top: 15px;
  }

  /* WooCommerce mobile responsive */
  .woocommerce ul.products li.product .button {
    padding: 8px 16px !important;
    font-size: 10px !important;
    margin-top: 10px;
    letter-spacing: 0.3px;
  }

  .woocommerce ul.products li.product {
    padding: 12px;
    border-radius: 8px;
  }

  .woocommerce ul.products li.product:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 14px;
    margin: 10px 0 6px 0;
  }

  .woocommerce ul.products li.product .price {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .woocommerce ul.products li.product .price del {
    font-size: 13px;
  }

  .woocommerce ul.products li.product .button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 127, 195, 0.3);
  }

  /* Single Post mobile responsive */
  .single-post-header {
    padding: 40px 0 30px 0;
  }

  .post-header-content .post-title {
    font-size: 28px;
  }

  .single-post-content {
    padding: 30px 0;
  }

  .related-posts-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .related-posts h3 {
    font-size: 24px;
  }

  .author-bio {
    padding: 20px;
  }

  .author-avatar img {
    width: 60px;
    height: 60px;
  }

  .sidebar-widget {
    padding: 15px;
  }

  .sidebar-widget h4 {
    font-size: 18px;
  }
}

/* Large screens */
@media (min-width: 1200px) {

  .footer-container,
  .section-intro-product .container,
  .single-post-header .container,
  .single-post-content .container,
  header .container {
    max-width: 1440px;
  }

  /* #slider-intro .slide-content-inner {
    max-width: 1440px;
  } */

}

/* Extra large screens */
@media (min-width: 1600px) {

  .footer-container,
  .section-intro-product .container,
  .single-post-header .container,
  .single-post-content .container,
  header .container {
    max-width: 1600px;
  }

  /* #slider-intro .slide-content-inner {
    max-width: 1600px;
  } */
}

/* --- THEME CUSTOM STYLES (existing style.css content) --- */



/* ===== PAGINATION STYLES ===== */
.pagination-nav,
.woocommerce-pagination {
  margin: 3rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination,
.woocommerce-pagination ul.page-numbers {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.page-item,
.woocommerce-pagination ul.page-numbers li {
  margin: 0;
}

.page-link,
.woocommerce-pagination ul.page-numbers li a.page-numbers,
.woocommerce-pagination ul.page-numbers li span.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0.75rem 1rem;
  background: #FFFFFF;
  border: 2px solid #E5E7EB;
  border-radius: 8px;
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}

.page-link:hover,
.woocommerce-pagination ul.page-numbers li a.page-numbers:hover {
  background: #F3F4F6;
  border-color: #D1D5DB;
  color: #111827;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-link:focus,
.woocommerce-pagination ul.page-numbers li a.page-numbers:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  border-color: #3B82F6;
}

/* Active page styling */
.page-item.active .page-link,
.woocommerce-pagination ul.page-numbers li span.current {
  background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
  border-color: #1F2937;
  color: #FFFFFF;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(31, 41, 55, 0.3);
}

.page-item.active .page-link:hover,
.woocommerce-pagination ul.page-numbers li span.current:hover {
  background: linear-gradient(135deg, #111827 0%, #1F2937 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(31, 41, 55, 0.4);
}

/* Disabled/ellipsis styling */
.page-item.disabled .page-link,
.woocommerce-pagination ul.page-numbers li span.dots {
  background: #F9FAFB;
  border-color: #E5E7EB;
  color: #9CA3AF;
  cursor: not-allowed;
  pointer-events: none;
}

.page-item.disabled .page-link:hover,
.woocommerce-pagination ul.page-numbers li span.dots:hover {
  background: #F9FAFB;
  border-color: #E5E7EB;
  color: #9CA3AF;
  transform: none;
  box-shadow: none;
}

/* Previous/Next button styling */
.page-item:first-child .page-link,
.page-item:last-child .page-link,
.woocommerce-pagination ul.page-numbers li a.prev,
.woocommerce-pagination ul.page-numbers li a.next {
  background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
  border-color: #1F2937;
  color: #FFFFFF;
  font-weight: 500;
  min-width: 48px;
}

.page-item:first-child .page-link:hover,
.page-item:last-child .page-link:hover,
.woocommerce-pagination ul.page-numbers li a.prev:hover,
.woocommerce-pagination ul.page-numbers li a.next:hover {
  background: linear-gradient(135deg, #111827 0%, #1F2937 100%);
  border-color: #111827;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(31, 41, 55, 0.4);
}

.page-item:first-child .page-link:focus,
.page-item:last-child .page-link:focus,
.woocommerce-pagination ul.page-numbers li a.prev:focus,
.woocommerce-pagination ul.page-numbers li a.next:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

/* SVG icon styling in prev/next buttons */
.page-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease-in-out;
}

.page-item:first-child .page-link:hover svg {
  transform: translateX(-2px);
}

.page-item:last-child .page-link:hover svg {
  transform: translateX(2px);
}

/* Loading state */
.pagination.loading .page-link,
.woocommerce-pagination.loading .page-numbers {
  pointer-events: none;
  opacity: 0.7;
}

.pagination.loading .page-link::after,
.woocommerce-pagination.loading .page-numbers::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .pagination {
    gap: 0.25rem;
  }

  .page-link {
    min-width: 40px;
    height: 40px;
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }

  .page-item:first-child .page-link,
  .page-item:last-child .page-link {
    min-width: 44px;
  }
}

@media (max-width: 480px) {
  .pagination {
    gap: 0.125rem;
  }

  .page-link {
    min-width: 36px;
    height: 36px;
    padding: 0.375rem 0.5rem;
    font-size: 0.75rem;
  }

  .page-item:first-child .page-link,
  .page-item:last-child .page-link {
    min-width: 40px;
  }

  /* Hide some page numbers on very small screens */
  .page-item:not(.active):not(:first-child):not(:last-child):not(.disabled) {
    display: none;
  }

  .page-item.active,
  .page-item:first-child,
  .page-item:last-child,
  .page-item.disabled {
    display: block;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .page-link {
    border-width: 3px;
  }

  .page-item.active .page-link {
    border-width: 3px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

  .page-link,
  .page-link svg {
    transition: none;
  }

  .page-link:hover {
    transform: none;
  }

  .page-item:first-child .page-link:hover svg,
  .page-item:last-child .page-link:hover svg {
    transform: none;
  }
}

/* ===== WOOCOMMERCE SINGLE PRODUCT STYLES ===== */

.woocommerce div.product {
  padding-bottom: 80px;
}

@media (max-width: 768px) {
  .woocommerce div.product {
    padding-bottom: 40px;
  }
}

.woocommerce div.product .product_title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.woocommerce div.product .price {
  font-size: 1.75rem;
  font-weight: 600;
  color: #059669;
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.woocommerce div.product .price del {
  font-size: 1.25rem;
  color: #9CA3AF;
  text-decoration: line-through;
  font-weight: 400;
}

.woocommerce div.product .price ins {
  text-decoration: none;
  color: #059669;
}

.woocommerce div.product .price .amount {
  color: inherit;
  font-weight: 700;
  font-size: 1.1em;
}

.woocommerce div.product .price del .amount {
  color: #9CA3AF;
  text-decoration: line-through;
  font-weight: 400;
}

.woocommerce div.product .price ins .amount {
  color: #059669;
  text-decoration: none;
  font-weight: 700;
}

.woocommerce div.product .price .amount[data-price]:not([data-price=""]) {
  font-size: 1.2em;
}

.woocommerce div.product .price .amount.sale-price {
  color: #059669;
}

.woocommerce div.product .price .amount.from,
.woocommerce div.product .price .amount.to {
  color: inherit;
}

.woocommerce div.product .price .amount.free {
  color: #059669;
  font-weight: 700;
}

.woocommerce div.product .price .amount.out-of-stock {
  color: #9CA3AF;
  opacity: 0.6;
  text-decoration: line-through;
}

/* Product form cart styling */
.woocommerce div.product form.cart {
  margin: 2rem 0;
  padding: 2rem;
  background: #FFFFFF;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

/* Quantity input styling */
.woocommerce div.product form.cart .quantity {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.woocommerce div.product form.cart .quantity label {
  font-weight: 600;
  color: #374151;
  font-size: 1rem;
  min-width: 80px;
}

.woocommerce div.product form.cart .quantity input[type="number"] {
  width: 80px;
  height: 48px;
  padding: 0.75rem;
  border: 2px solid #E5E7EB;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  background: #FFFFFF;
  color: #374151;
  transition: all 0.2s ease-in-out;
}

.woocommerce div.product form.cart .quantity input[type="number"]:focus {
  outline: none;
  border-color: #3B82F6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.woocommerce div.product form.cart .quantity input[type="number"]::-webkit-inner-spin-button,
.woocommerce div.product form.cart .quantity input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.woocommerce div.product form.cart .quantity .qty-btn {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  margin: 0;
  border: 2px solid #E5E7EB;
  background: #FFFFFF;
  color: #374151;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  flex-shrink: 0;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.woocommerce div.product form.cart .quantity .qty-btn:hover:not(:disabled) {
  background: #3B82F6;
  border-color: #3B82F6;
  color: #FFFFFF;
}

.woocommerce div.product form.cart .quantity .qty-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Single product cart buttons layout */
.woocommerce div.product form.cart {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* On desktop, make buttons side-by-side */
@media (min-width: 768px) {
  .woocommerce div.product form.cart {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    align-items: end;
    gap: 12px;
  }

  .woocommerce div.product form.cart .quantity {
    grid-column: 1;
    margin-bottom: 0 !important;
  }

  .woocommerce div.product form.cart .single_add_to_cart_button {
    grid-column: 2;
    margin-top: 0 !important;
  }

  .woocommerce div.product form.cart .buy_now_button {
    grid-column: 3;
    margin-top: 0 !important;
  }
}

.woocommerce div.product form.cart .single_add_to_cart_button,
.woocommerce div.product form.cart .buy_now_button {
  width: 100%;
  height: 56px;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.woocommerce div.product form.cart .single_add_to_cart_button {
  background: #fff !important;
  color: #1F2937 !important;
  border: 2px solid #1F2937 !important;
}

.woocommerce div.product form.cart .buy_now_button {
  background: linear-gradient(135deg, #e62117 0%, #c11a11 100%) !important;
  color: #FFFFFF !important;
}

/* Button loading state */
.woocommerce div.product form.cart .single_add_to_cart_button.loading {
  pointer-events: none;
  opacity: 0.8;
}

.woocommerce div.product form.cart .single_add_to_cart_button.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid #FFFFFF;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Product variations styling */
.woocommerce div.product form.cart .variations {
  margin-bottom: 2rem;
  border-bottom: 1px solid #E5E7EB;
  padding-bottom: 1.5rem;
}

.woocommerce div.product form.cart .variations td {
  padding: 0.75rem 0;
  vertical-align: middle;
}

.woocommerce div.product form.cart .variations td.label {
  padding-right: 1rem;
  min-width: 120px;
}

.woocommerce div.product form.cart .variations td.label label {
  font-weight: 600;
  color: #374151;
  font-size: 1rem;
  margin: 0;
}

.woocommerce div.product form.cart .variations td.value {
  width: 100%;
}

.woocommerce div.product form.cart .variations select {
  width: 100%;
  max-width: 300px;
  height: 48px;
  padding: 0.75rem 1rem;
  border: 2px solid #E5E7EB;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  background: #FFFFFF;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

.woocommerce div.product form.cart .variations select:focus {
  outline: none;
  border-color: #3B82F6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.woocommerce div.product form.cart .variations select:hover {
  border-color: #D1D5DB;
}

/* Reset variations link */
.woocommerce div.product form.cart .reset_variations {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: #F3F4F6;
  border: 1px solid #D1D5DB;
  border-radius: 6px;
  color: #6B7280;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}

.woocommerce div.product form.cart .reset_variations:hover {
  background: #E5E7EB;
  color: #374151;
  text-decoration: none;
}

/* Stock status */
.woocommerce div.product form.cart .stock {
  margin: 1rem 0;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.875rem;
}

.woocommerce div.product form.cart .stock.in-stock {
  background: #D1FAE5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.woocommerce div.product form.cart .stock.out-of-stock {
  background: #FEE2E2;
  color: #991B1B;
  border: 1px solid #FCA5A5;
}

/* Product meta information */
.woocommerce div.product .product_meta {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #E5E7EB;
}

.woocommerce div.product .product_meta>span {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.woocommerce div.product .product_meta>span>span,
.woocommerce div.product .product_meta>span>a {
  color: #6B7280;
  text-decoration: none;
  font-weight: 500;
}

.woocommerce div.product .product_meta>span>a:hover {
  color: #374151;
  text-decoration: underline;
}

/* Product images */
.woocommerce div.product .woocommerce-product-gallery {
  margin-bottom: 2rem;
}

.woocommerce div.product .woocommerce-product-gallery__image:first-child {
  margin-right: 0;
  margin-bottom: 15px;
}

.woocommerce div.product .woocommerce-product-gallery__image:last-child {
  margin-right: 0 !important;
}

.woocommerce div.product .woocommerce-product-gallery__image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

}

.woocommerce div.product div.images .woocommerce-product-gallery__image:nth-child(n+2) {
  width: calc(25% - 15px);
  margin-right: 15px;
}

.woocommerce div.product .woocommerce-product-gallery__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== WOOCOMMERCE TABS STYLES ===== */

/* Main tabs container */
.woocommerce-tabs,
.wc-tabs-wrapper {
  margin-top: 3rem;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  overflow: hidden;
}

/* Tabs navigation */
.woocommerce-tabs ul.tabs,
.wc-tabs-wrapper ul.tabs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  border-bottom: 1px solid #E5E7EB;
  gap: 0;
}

.woocommerce-tabs ul.tabs li,
.wc-tabs-wrapper ul.tabs li {
  margin: 0;
  position: relative;
}

.woocommerce-tabs ul.tabs li a,
.wc-tabs-wrapper ul.tabs li a {
  display: block;
  padding: 1rem 2rem;
  background: transparent;
  border: none;
  color: #6B7280;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  text-align: center;
  transition: all 0.2s ease-in-out;
  position: relative;
  border-bottom: 2px solid transparent;
  min-width: 120px;
}

.woocommerce-tabs ul.tabs li.active a,
.wc-tabs-wrapper ul.tabs li.active a {
  color: #1F2937;
  background: #FFFFFF;
  border-bottom-color: #1F2937;
  font-weight: 600;
}

.woocommerce-tabs ul.tabs li a:hover,
.wc-tabs-wrapper ul.tabs li a:hover {
  color: #1F2937;
  background: #F3F4F6;
  border-bottom-color: #D1D5DB;
}

/* Active tab indicator */
.woocommerce-tabs ul.tabs li.active::after,
.wc-tabs-wrapper ul.tabs li.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: #1F2937;
  z-index: 2;
}

/* Tab content panels */
.woocommerce-tabs .panel,
.wc-tabs-wrapper .panel {
  padding: 2rem;
  background: #FFFFFF;
  border: none;
  position: relative;
  animation: fadeInUp 0.3s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Panel headings */
.woocommerce-tabs .panel h2,
.wc-tabs-wrapper .panel h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1F2937;
  margin: 0 0 1.5rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #E5E7EB;
  position: relative;
}

.woocommerce-tabs .panel h2::after,
.wc-tabs-wrapper .panel h2::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #1F2937;
}

/* Panel content styling */
.woocommerce-tabs .panel p,
.wc-tabs-wrapper .panel p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6B7280;
  margin-bottom: 1rem;
}

.woocommerce-tabs .panel ul,
.wc-tabs-wrapper .panel ul {
  margin: 1rem 0;
  padding-left: 1.25rem;
}

.woocommerce-tabs .panel ul li,
.wc-tabs-wrapper .panel ul li {
  margin-bottom: 0.5rem;
  color: #6B7280;
  line-height: 1.5;
  font-size: 0.95rem;
}

.woocommerce-tabs .panel ul li::marker,
.wc-tabs-wrapper .panel ul li::marker {
  color: #1F2937;
  font-weight: 500;
}

/* Description tab specific styling */
.woocommerce-tabs .panel.woocommerce-Tabs-panel--description,
.wc-tabs-wrapper .panel.woocommerce-Tabs-panel--description {
  background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
}

/* Additional information tab */
.woocommerce-tabs .panel.woocommerce-Tabs-panel--additional_information,
.wc-tabs-wrapper .panel.woocommerce-Tabs-panel--additional_information {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
}

/* Reviews tab */
.woocommerce-tabs .panel.woocommerce-Tabs-panel--reviews,
.wc-tabs-wrapper .panel.woocommerce-Tabs-panel--reviews {
  background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
}

/* Tab icons (if using icons) */
.woocommerce-tabs ul.tabs li a::before,
.wc-tabs-wrapper ul.tabs li a::before {
  margin-right: 0.5rem;
  font-family: 'dashicons';
  font-size: 1.1em;
  vertical-align: middle;
}

.woocommerce-tabs ul.tabs li.woocommerce-Tabs-panel--description a::before,
.wc-tabs-wrapper ul.tabs li.woocommerce-Tabs-panel--description a::before {
  content: '\f123';
  /* Description icon */
}

.woocommerce-tabs ul.tabs li.woocommerce-Tabs-panel--additional_information a::before,
.wc-tabs-wrapper ul.tabs li.woocommerce-Tabs-panel--additional_information a::before {
  content: '\f111';
  /* Info icon */
}

.woocommerce-tabs ul.tabs li.woocommerce-Tabs-panel--reviews a::before,
.wc-tabs-wrapper ul.tabs li.woocommerce-Tabs-panel--reviews a::before {
  content: '\f101';
  /* Star icon */
}

/* Tab content tables */
.woocommerce-tabs .panel table,
.wc-tabs-wrapper .panel table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 6px;
  overflow: hidden;
}

.woocommerce-tabs .panel table th,
.wc-tabs-wrapper .panel table th {
  background: #F8F9FA;
  color: #1F2937;
  padding: 0.75rem 1rem;
  font-weight: 600;
  text-align: left;
  border-bottom: 1px solid #E5E7EB;
  font-size: 0.9rem;
}

.woocommerce-tabs .panel table td,
.wc-tabs-wrapper .panel table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #F3F4F6;
  color: #6B7280;
  font-size: 0.9rem;
}

.woocommerce-tabs .panel table tr:last-child td,
.wc-tabs-wrapper .panel table tr:last-child td {
  border-bottom: none;
}

.woocommerce-tabs .panel table tr:hover td,
.wc-tabs-wrapper .panel table tr:hover td {
  background: #F9FAFB;
}

/* Tab content lists */
.woocommerce-tabs .panel dl,
.wc-tabs-wrapper .panel dl {
  margin: 1.5rem 0;
}

.woocommerce-tabs .panel dt,
.wc-tabs-wrapper .panel dt {
  font-weight: 600;
  color: #1F2937;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.woocommerce-tabs .panel dd,
.wc-tabs-wrapper .panel dd {
  margin-bottom: 1rem;
  color: #6B7280;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Tab content images */
.woocommerce-tabs .panel img,
.wc-tabs-wrapper .panel img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 1rem 0;
  border: 1px solid #E5E7EB;
}

/* Tab content links */
.woocommerce-tabs .panel a,
.wc-tabs-wrapper .panel a {
  color: #1F2937;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}

.woocommerce-tabs .panel a:hover,
.wc-tabs-wrapper .panel a:hover {
  color: #374151;
  text-decoration: underline;
}

/* Tab content blockquotes */
.woocommerce-tabs .panel blockquote,
.wc-tabs-wrapper .panel blockquote {
  margin: 1.5rem 0;
  padding: 1.25rem;
  background: #F8F9FA;
  border-left: 3px solid #1F2937;
  border-radius: 0 6px 6px 0;
  font-style: italic;
  color: #6B7280;
  font-size: 0.95rem;
}

/* Tab content code */
.woocommerce-tabs .panel code,
.wc-tabs-wrapper .panel code {
  background: #F3F4F6;
  color: #1F2937;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.85em;
  border: 1px solid #E5E7EB;
}

/* Tab loading state */
.woocommerce-tabs.loading,
.wc-tabs-wrapper.loading {
  position: relative;
  min-height: 200px;
}

.woocommerce-tabs.loading::after,
.wc-tabs-wrapper.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  margin: -16px 0 0 -16px;
  border: 2px solid #E5E7EB;
  border-top: 2px solid #1F2937;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Related products */
.woocommerce .related.products {
  margin-top: 4rem;
}

.woocommerce .related.products h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 2rem;
  text-align: center;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: none !important;
  margin: 0;
}

.woocommerce-tabs ul.tabs {
  display: flex;
  align-items: center;
  justify-content: center;
}

.woocommerce-tabs ul.tabs li {
  padding: 0 !important;
  border: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:before,
.woocommerce div.product .woocommerce-tabs ul.tabs li:after {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  padding: 16px;
}

.woocommerce-tabs .panel h2,
.wc-tabs-wrapper .panel h2 {
  padding: 16px;
}

#review_form {
  margin: 0 16px;
}

.woocommerce-noreviews {
  padding: 0 16px;
}

.woocommerce div.product .woocommerce-tabs .panel {
  display: none;
  padding: 3rem;
}

.woocommerce div.product .woocommerce-tabs .panel.active {
  display: block;
}

/* Make first tab active by default */
.woocommerce div.product .woocommerce-tabs ul.tabs li:first-child {
  background: #FFFFFF;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:first-child a {
  color: #1F2937;
  background: #FFFFFF;
  border-bottom-color: #1F2937;
  font-weight: 600;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:first-child::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: #1F2937;
  z-index: 2;
}

/* Show first panel by default */
.woocommerce div.product .woocommerce-tabs .panel:first-child {
  display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .woocommerce div.product .product_title {
    font-size: 2rem;
  }

  .woocommerce div.product .price {
    font-size: 1.5rem;
  }

  .woocommerce div.product form.cart {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .woocommerce div.product form.cart .variations td {
    display: block;
    width: 100%;
  }

  .woocommerce div.product form.cart .variations td.label {
    padding-right: 0;
    padding-bottom: 0.5rem;
  }

  .woocommerce div.product form.cart .variations select {
    max-width: 100%;
  }

  .woocommerce div.product .woocommerce-tabs .panel {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .woocommerce div.product .product_title {
    font-size: 1.75rem;
  }

  .woocommerce div.product .price {
    font-size: 1.25rem;
  }

  .woocommerce div.product form.cart {
    padding: 1rem;
  }

  .woocommerce div.product form.cart .single_add_to_cart_button {
    height: 48px;
    font-size: 1rem;
  }

  .woocommerce div.product form.cart .buy_now_button {
    height: 48px;
  }

  .woocommerce div.product .woocommerce-tabs .panel {
    padding: 1rem;
  }
}

/* ===== WOOCOMMERCE REVIEW FORM STYLES ===== */

/* Review form container */
.woocommerce #review_form #respond {
  margin-top: 2rem;
  padding: 2rem;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.woocommerce #review_form #respond h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1F2937;
  margin: 0 0 1.5rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #E5E7EB;
  position: relative;
}

.woocommerce #review_form #respond h3::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #1F2937;
}

/* Form paragraphs */
.woocommerce #review_form #respond p {
  margin-bottom: 1.5rem;
  position: relative;
}

/* Form labels */
.woocommerce #review_form #respond label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.woocommerce #review_form #respond label.required::after {
  content: ' *';
  color: #EF4444;
  font-weight: 700;
}

/* Form inputs */
.woocommerce #review_form #respond input[type="text"],
.woocommerce #review_form #respond input[type="email"],
.woocommerce #review_form #respond textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #E5E7EB;
  border-radius: 6px;
  font-size: 0.95rem;
  color: #374151;
  background: #FFFFFF;
  transition: all 0.2s ease-in-out;
  font-family: inherit;
  line-height: 1.5;
}

.woocommerce #review_form #respond input[type="text"]:focus,
.woocommerce #review_form #respond input[type="email"]:focus,
.woocommerce #review_form #respond textarea:focus {
  outline: none;
  border-color: #1F2937;
  box-shadow: 0 0 0 3px rgba(31, 41, 55, 0.1);
}

.woocommerce #review_form #respond input[type="text"]:hover,
.woocommerce #review_form #respond input[type="email"]:hover,
.woocommerce #review_form #respond textarea:hover {
  border-color: #D1D5DB;
}

/* Textarea specific styling */
.woocommerce #review_form #respond textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}

/* Rating stars styling */
.woocommerce #review_form #respond .stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.woocommerce #review_form #respond .stars a {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #E5E7EB;
  border-radius: 2px;
  position: relative;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}

.woocommerce #review_form #respond .stars a::before {
  content: '★';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #9CA3AF;
  font-size: 14px;
  transition: color 0.2s ease-in-out;
}

.woocommerce #review_form #respond .stars a:hover,
.woocommerce #review_form #respond .stars a.active {
  background: #FEF3C7;
  border-color: #F59E0B;
}

.woocommerce #review_form #respond .stars a:hover::before,
.woocommerce #review_form #respond .stars a.active::before {
  color: #F59E0B;
}

/* Submit button */
.woocommerce #review_form #respond .form-submit {
  margin-top: 2rem;
}

.woocommerce #review_form #respond input[type="submit"] {
  background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
  color: #FFFFFF;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 140px;
}

.woocommerce #review_form #respond input[type="submit"]:hover {
  background: linear-gradient(135deg, #111827 0%, #1F2937 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(31, 41, 55, 0.3);
}

.woocommerce #review_form #respond input[type="submit"]:active {
  transform: translateY(0);
}

.woocommerce #review_form #respond input[type="submit"]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

/* Loading state */
.woocommerce #review_form #respond input[type="submit"].loading {
  pointer-events: none;
  opacity: 0.7;
  position: relative;
}

.woocommerce #review_form #respond input[type="submit"].loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid transparent;
  border-top: 2px solid #FFFFFF;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Form validation styles */
.woocommerce #review_form #respond .form-row.error input,
.woocommerce #review_form #respond .form-row.error textarea {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.woocommerce #review_form #respond .form-row.error .error-message {
  color: #EF4444;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  font-weight: 500;
}

.woocommerce #review_form #respond .form-row.success input,
.woocommerce #review_form #respond .form-row.success textarea {
  border-color: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Form layout improvements */
.woocommerce #review_form #respond .comment-form-rating {
  margin-bottom: 1.5rem;
}

.woocommerce #review_form #respond .comment-form-comment {
  margin-bottom: 1.5rem;
}

.woocommerce #review_form #respond .comment-form-author,
.woocommerce #review_form #respond .comment-form-email {
  display: inline-block;
  width: calc(50% - 0.5rem);
  vertical-align: top;
}

.woocommerce #review_form #respond .comment-form-author {
  margin-right: 1rem;
}

/* Placeholder styling */
.woocommerce #review_form #respond input::placeholder,
.woocommerce #review_form #respond textarea::placeholder {
  color: #9CA3AF;
  opacity: 1;
}

/* Form description text */
.woocommerce #review_form #respond .comment-notes {
  font-size: 0.875rem;
  color: #6B7280;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.woocommerce #review_form #respond .comment-notes a {
  color: #1F2937;
  text-decoration: underline;
}

.woocommerce #review_form #respond .comment-notes a:hover {
  color: #374151;
}

/* Logged in user styling */
.woocommerce #review_form #respond .logged-in-as {
  background: #F8F9FA;
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: #6B7280;
  border-left: 3px solid #1F2937;
}

.woocommerce #review_form #respond .logged-in-as a {
  color: #1F2937;
  font-weight: 600;
  text-decoration: none;
}

.woocommerce #review_form #respond .logged-in-as a:hover {
  text-decoration: underline;
}

/* Form submission success message */
.woocommerce #review_form #respond .comment-submitted {
  background: #D1FAE5;
  color: #065F46;
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  border: 1px solid #A7F3D0;
  font-weight: 500;
}

.img-story2 {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 16px;
}

.img-story2 img {
  /* max-width: 800px; */
  width: 100%;
}

/* Responsive adjustments for review form */
@media (max-width: 768px) {

  .about-us li {
    flex-flow: row wrap;
  }

  .about-us li .img-wrapper {
    width: 100%;
    margin: 0 auto;
    text-align: center;

  }

  .about-us img {
    width: auto;
    height: auto;
  }


  .about-us li .tt1 {
    width: initial;
  }

  .about-us li .tt2 {
    width: initial;
  }



  .woocommerce #review_form #respond {
    padding: 1.5rem;
    margin-top: 1.5rem;
  }

  .woocommerce #review_form #respond h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .woocommerce #review_form #respond .comment-form-author,
  .woocommerce #review_form #respond .comment-form-email {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .woocommerce #review_form #respond input[type="submit"] {
    width: 100%;
    padding: 1rem 2rem;
  }

  .woocommerce #review_form #respond textarea {
    min-height: 100px;
  }
}

@media (max-width: 480px) {
  .woocommerce #review_form #respond {
    padding: 1rem;
  }

  .woocommerce #review_form #respond h3 {
    font-size: 1.125rem;
  }

  .woocommerce #review_form #respond input[type="text"],
  .woocommerce #review_form #respond input[type="email"],
  .woocommerce #review_form #respond textarea {
    padding: 0.625rem 0.875rem;
    font-size: 0.875rem;
  }

  .woocommerce #review_form #respond .stars a {
    width: 18px;
    height: 18px;
  }

  .woocommerce #review_form #respond .stars a::before {
    font-size: 12px;
  }
}

/* ===== WOOCOMMERCE STAR RATING STYLES ===== */
.woocommerce .star-rating {
  position: relative;
  display: inline-block;
  font-family: 'star';
  font-size: 1rem;
  line-height: 1;
  color: #E5E7EB;
  overflow: hidden;
}

.woocommerce .star-rating::before {
  content: '\73\73\73\73\73';
  color: #E5E7EB;
}

.woocommerce .star-rating span {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  color: transparent;
}

.woocommerce .star-rating span::before {
  content: '\53\53\53\53\53';
  color: #FFD700;
  text-shadow: 0 0 2px rgba(255, 215, 0, 0.3);
}

/* Hover effects for interactive star ratings */
.woocommerce .star-rating:hover::before {
  color: #FFD700;
  transition: color 0.2s ease-in-out;
}

.woocommerce .star-rating:hover span::before {
  color: #FFD700;
  text-shadow: 0 0 4px rgba(255, 215, 0, 0.5);
  transition: all 0.2s ease-in-out;
}

/* Different star rating sizes */
.woocommerce .star-rating.star-rating--small {
  font-size: 0.875rem;
}

.woocommerce .star-rating.star-rating--large {
  font-size: 1.25rem;
}

.woocommerce .star-rating.star-rating--xlarge {
  font-size: 1.5rem;
}

/* Star rating in product loops */
.woocommerce ul.products li.product .star-rating {
  margin: 0.5rem 0;
  font-size: 0.875rem;
}

/* Star rating in reviews */
.woocommerce .comment-form-rating .star-rating {
  margin: 0.5rem 0;
  font-size: 1rem;
}

/* Star rating in review lists */
.woocommerce .review .star-rating {
  font-size: 0.875rem;
}

.woocommerce .star-rating[aria-label]:hover::after {
  content: attr(aria-label);
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  background: #1F2937;
  color: #FFFFFF;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  white-space: nowrap;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive star ratings */
@media (max-width: 768px) {
  .woocommerce .star-rating {
    font-size: 0.875rem;
  }

  .woocommerce div.product .star-rating {
    font-size: 1rem;
  }

  .woocommerce ul.products li.product .star-rating {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .woocommerce .star-rating {
    font-size: 0.8rem;
  }

  .woocommerce div.product .star-rating {
    font-size: 0.9rem;
  }

  .woocommerce ul.products li.product .star-rating {
    font-size: 0.75rem;
  }
}

/* ===== WOOCOMMERCE SYSTEM MESSAGES ===== */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-notice {
  position: relative;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 8px;
  border-left: 4px solid;
  font-size: 0.95rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

/* Success messages */
.woocommerce-message {
  background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
  border-left-color: #10B981;
  color: #065F46;
}

.woocommerce-message::before {
  content: '✓';
  font-weight: bold;
  font-size: 1.1rem;
  color: #10B981;
  background: #FFFFFF;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
}

/* Info messages */
.woocommerce-info {
  background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
  border-left-color: #3B82F6;
  color: #1E40AF;
}

.woocommerce-info::before {
  content: 'ℹ';
  font-weight: bold;
  font-size: 1.1rem;
  color: #3B82F6;
  background: #FFFFFF;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

/* Error messages */
.woocommerce-error {
  background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
  border-left-color: #EF4444;
  color: #991B1B;
}

.woocommerce-error::before {
  content: '✕';
  font-weight: bold;
  font-size: 1.1rem;
  color: #EF4444;
  background: #FFFFFF;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(239, 68, 68, 0.2);
}

/* Notice messages */
.woocommerce-notice {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  border-left-color: #F59E0B;
  color: #92400E;
}

.woocommerce-notice::before {
  content: '⚠';
  font-weight: bold;
  font-size: 1.1rem;
  color: #F59E0B;
  background: #FFFFFF;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(245, 158, 11, 0.2);
}

/* Message content styling */
.woocommerce-message p,
.woocommerce-info p,
.woocommerce-error p,
.woocommerce-notice p {
  margin: 0;
  flex: 1;
}

/* Links within messages */
.woocommerce-message a,
.woocommerce-info a,
.woocommerce-error a,
.woocommerce-notice a {
  color: inherit;
  text-decoration: underline;
  font-weight: 600;
  transition: opacity 0.2s ease-in-out;
}

.woocommerce-message a:hover,
.woocommerce-info a:hover,
.woocommerce-error a:hover,
.woocommerce-notice a:hover {
  opacity: 0.8;
}

/* Close button styling */
.woocommerce-message .woocommerce-message-close,
.woocommerce-info .woocommerce-message-close,
.woocommerce-error .woocommerce-message-close,
.woocommerce-notice .woocommerce-message-close {
  background: none;
  border: none;
  color: inherit;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
  opacity: 0.7;
  margin-left: auto;
}

.woocommerce-message .woocommerce-message-close:hover,
.woocommerce-info .woocommerce-message-close:hover,
.woocommerce-error .woocommerce-message-close:hover,
.woocommerce-notice .woocommerce-message-close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.3);
}

/* Button styling within messages */
.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button,
.woocommerce-notice .button,
.woocommerce-message input[type="submit"],
.woocommerce-info input[type="submit"],
.woocommerce-error input[type="submit"],
.woocommerce-notice input[type="submit"],
.woocommerce-message .btn,
.woocommerce-info .btn,
.woocommerce-error .btn,
.woocommerce-notice .btn {
  background: #FFFFFF;
  color: inherit;
  border: 2px solid currentColor;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s ease-in-out;
  margin-left: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  min-height: 36px;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.woocommerce-message .button:hover,
.woocommerce-info .button:hover,
.woocommerce-error .button:hover,
.woocommerce-notice .button:hover,
.woocommerce-message input[type="submit"]:hover,
.woocommerce-info input[type="submit"]:hover,
.woocommerce-error input[type="submit"]:hover,
.woocommerce-notice input[type="submit"]:hover,
.woocommerce-message .btn:hover,
.woocommerce-info .btn:hover,
.woocommerce-error .btn:hover,
.woocommerce-notice .btn:hover {
  background: currentColor;
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Button focus states */
.woocommerce-message .button:focus,
.woocommerce-info .button:focus,
.woocommerce-error .button:focus,
.woocommerce-notice .button:focus,
.woocommerce-message input[type="submit"]:focus,
.woocommerce-info input[type="submit"]:focus,
.woocommerce-error input[type="submit"]:focus,
.woocommerce-notice input[type="submit"]:focus,
.woocommerce-message .btn:focus,
.woocommerce-info .btn:focus,
.woocommerce-error .btn:focus,
.woocommerce-notice .btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5), 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Button active states */
.woocommerce-message .button:active,
.woocommerce-info .button:active,
.woocommerce-error .button:active,
.woocommerce-notice .button:active,
.woocommerce-message input[type="submit"]:active,
.woocommerce-info input[type="submit"]:active,
.woocommerce-error input[type="submit"]:active,
.woocommerce-notice input[type="submit"]:active,
.woocommerce-message .btn:active,
.woocommerce-info .btn:active,
.woocommerce-error .btn:active,
.woocommerce-notice .btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Button loading states */
.woocommerce-message .button.loading,
.woocommerce-info .button.loading,
.woocommerce-error .button.loading,
.woocommerce-notice .button.loading,
.woocommerce-message input[type="submit"].loading,
.woocommerce-info input[type="submit"].loading,
.woocommerce-error input[type="submit"].loading,
.woocommerce-notice input[type="submit"].loading,
.woocommerce-message .btn.loading,
.woocommerce-info .btn.loading,
.woocommerce-error .btn.loading,
.woocommerce-notice .btn.loading {
  pointer-events: none;
  opacity: 0.7;
  position: relative;
}

.woocommerce-message .button.loading::after,
.woocommerce-info .button.loading::after,
.woocommerce-error .button.loading::after,
.woocommerce-notice .button.loading::after,
.woocommerce-message input[type="submit"].loading::after,
.woocommerce-info input[type="submit"].loading::after,
.woocommerce-error input[type="submit"].loading::after,
.woocommerce-notice input[type="submit"].loading::after,
.woocommerce-message .btn.loading::after,
.woocommerce-info .btn.loading::after,
.woocommerce-error .btn.loading::after,
.woocommerce-notice .btn.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Button with icons */
.woocommerce-message .button::before,
.woocommerce-info .button::before,
.woocommerce-error .button::before,
.woocommerce-notice .button::before,
.woocommerce-message .btn::before,
.woocommerce-info .btn::before,
.woocommerce-error .btn::before,
.woocommerce-notice .btn::before {
  font-family: 'dashicons';
  font-size: 1rem;
  line-height: 1;
}

/* Specific button types */
.woocommerce-message .button.alt,
.woocommerce-info .button.alt,
.woocommerce-error .button.alt,
.woocommerce-notice .button.alt {
  background: currentColor;
  color: #FFFFFF;
  border-color: currentColor;
}

.woocommerce-message .button.alt:hover,
.woocommerce-info .button.alt:hover,
.woocommerce-error .button.alt:hover,
.woocommerce-notice .button.alt:hover {
  background: #FFFFFF;
  color: inherit;
  opacity: 0.9;
}

/* Small buttons */
.woocommerce-message .button.small,
.woocommerce-info .button.small,
.woocommerce-error .button.small,
.woocommerce-notice .button.small {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
  min-height: 32px;
}

/* Large buttons */
.woocommerce-message .button.large,
.woocommerce-info .button.large,
.woocommerce-error .button.large,
.woocommerce-notice .button.large {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  min-height: 44px;
}

/* Disabled buttons */
.woocommerce-message .button:disabled,
.woocommerce-info .button:disabled,
.woocommerce-error .button:disabled,
.woocommerce-notice .button:disabled,
.woocommerce-message input[type="submit"]:disabled,
.woocommerce-info input[type="submit"]:disabled,
.woocommerce-error input[type="submit"]:disabled,
.woocommerce-notice input[type="submit"]:disabled,
.woocommerce-message .btn:disabled,
.woocommerce-info .btn:disabled,
.woocommerce-error .btn:disabled,
.woocommerce-notice .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.woocommerce-message .button:disabled:hover,
.woocommerce-info .button:disabled:hover,
.woocommerce-error .button:disabled:hover,
.woocommerce-notice .button:disabled:hover,
.woocommerce-message input[type="submit"]:disabled:hover,
.woocommerce-info input[type="submit"]:disabled:hover,
.woocommerce-error input[type="submit"]:disabled:hover,
.woocommerce-notice input[type="submit"]:disabled:hover,
.woocommerce-message .btn:disabled:hover,
.woocommerce-info .btn:disabled:hover,
.woocommerce-error .btn:disabled:hover,
.woocommerce-notice .btn:disabled:hover {
  transform: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* List styling within messages */
.woocommerce-message ul,
.woocommerce-info ul,
.woocommerce-error ul,
.woocommerce-notice ul {
  margin: 0.5rem 0 0 0;
  padding-left: 1.5rem;
}

.woocommerce-message ul li,
.woocommerce-info ul li,
.woocommerce-error ul li,
.woocommerce-notice ul li {
  margin: 0.25rem 0;
}

/* Animation for new messages */
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-notice {
  animation: slideInDown 0.3s ease-out;
}

/* Hover effects */
.woocommerce-message:hover,
.woocommerce-info:hover,
.woocommerce-error:hover,
.woocommerce-notice:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {

  .woocommerce-message,
  .woocommerce-info,
  .woocommerce-error,
  .woocommerce-notice {
    padding: 0.875rem 1.25rem;
    margin: 1rem 0;
    font-size: 0.9rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .woocommerce-message::before,
  .woocommerce-info::before,
  .woocommerce-error::before,
  .woocommerce-notice::before {
    width: 20px;
    height: 20px;
    font-size: 1rem;
  }

  .woocommerce-message .button,
  .woocommerce-info .button,
  .woocommerce-error .button,
  .woocommerce-notice .button {
    margin-left: 0;
    margin-top: 0.5rem;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {

  .woocommerce-message,
  .woocommerce-info,
  .woocommerce-error,
  .woocommerce-notice {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }

  .woocommerce-message::before,
  .woocommerce-info::before,
  .woocommerce-error::before,
  .woocommerce-notice::before {
    width: 18px;
    height: 18px;
    font-size: 0.9rem;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {

  .woocommerce-message,
  .woocommerce-info,
  .woocommerce-error,
  .woocommerce-notice {
    border-width: 3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

  .woocommerce-message,
  .woocommerce-info,
  .woocommerce-error,
  .woocommerce-notice {
    animation: none;
    transition: none;
  }

  .woocommerce-message:hover,
  .woocommerce-info:hover,
  .woocommerce-error:hover,
  .woocommerce-notice:hover {
    transform: none;
  }
}

/* WooCommerce cart styles → assets/css/woocommerce-cart.css */

.floating-cart-icon {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(31, 41, 55, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.floating-cart-icon:hover {
  box-shadow: 0 8px 32px rgba(31, 41, 55, 0.28);
  transform: translateY(-2px) scale(1.05);
}

.floating-cart-icon .cart-icon-svg {
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-cart-icon .cart-count-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  min-width: 22px;
  height: 22px;
  background: #F59E0B;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(245, 158, 11, 0.18);
  border: 2px solid #fff;
  pointer-events: none;
}

@media (max-width: 600px) {
  .floating-cart-icon {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }

  .floating-cart-icon .cart-count-badge {
    min-width: 18px;
    height: 18px;
    font-size: 0.8rem;
    top: 4px;
    right: 4px;
  }
}

/* ==========================================================================
   Shop Archive Layout (Custom Sidebar & Main Content)
   ========================================================================== */

#acf-category-content .wp-caption.aligncenter {
  width: fit-content !important;
}

.shop-sidebar {
  width: 320px;
  background-color: #f8f9fa;
  padding: 24px;
  height: fit-content;
  border-radius: 12px;
  position: sticky;
  top: 20px;
}

.shop-main-content {
  flex: 1;
  min-width: 0;
}

.shop-sidebar .sidebar-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;
  color: #007fc3;
  padding-bottom: 12px;
  display: inline-block;
}

.shop-sidebar ul.product-categories {
  list-style: none;
  padding: 0;
  margin: 0;
}

.shop-sidebar ul.product-categories li {
  margin-bottom: 8px;
  position: relative;
}

.shop-sidebar ul.product-categories li:last-child {
  margin-bottom: 0;
}

.shop-sidebar ul.product-categories li a {
  text-decoration: none;
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 400;
  transition: all 0.3s ease;
  display: block;
  padding: 10px 16px;
  border-radius: 6px;
}

.shop-sidebar ul.product-categories li a:hover {
  background-color: #e6f2f9;
  color: #1a1a1a;
}

.shop-sidebar ul.product-categories li.current-cat>a {
  background-color: #e6f2f9;
  font-weight: 600;
}

/* Sub-categories styling */
.shop-sidebar ul.product-categories ul.children {
  margin-top: 8px;
  margin-bottom: 8px;
  margin-left: 15px;
}

.shop-sidebar ul.product-categories ul.children li a {
  font-size: 14px;
  color: #444;
  padding: 8px 16px;
}

/* Product counts */
.shop-sidebar ul.product-categories li .count {
  display: none;
}

/* Responsive */
@media (max-width: 991px) {
  .shop-archive-layout {
    flex-direction: column-reverse;
    gap: 20px !important;
    padding: 40px 0 !important;
  }

  .shop-sidebar {
    width: 100% !important;
  }
}

/* Subcategories Grid */
.woocommerce ul.products li.product-category .woocommerce-loop-category__title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 15px 0 5px 0;
  text-align: center;
}

.woocommerce ul.products li.product-category .woocommerce-loop-category__count {
  font-size: 14px;
  color: #666666;
  text-align: center;
  margin: 0;
}

.woocommerce ul.products li.product.custom-product-card,
.woocommerce ul.products li.product-category {
  width: 100% !important;
  margin: 0 !important;
  border: 1px solid #f0f0f0 !important;
  border-radius: 12px !important;
  padding: 15px !important;
  background: #fff !important;
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  transition: all 0.3s ease !important;
  height: 100% !important;
  float: none !important;
}

.woocommerce ul.products li.product.custom-product-card:hover,
.woocommerce ul.products li.product-category:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
  border-color: #e0e0e0 !important;
  transform: translateY(-4px) !important;
}

.custom-product-card a.woocommerce-loop-product__link,
.woocommerce ul.products li.product-category a {
  display: flex !important;
  flex-direction: column !important;
  text-decoration: none !important;
  flex: 1 !important;
}

.custom-product-card .woocommerce-placeholder,
.custom-product-card img,
.woocommerce ul.products li.product-category img {
  margin-bottom: 15px !important;
  border-radius: 8px !important;
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
}

/* Category Title Banner */
.woocommerce-products-header {
  background: #f8f9fa;
  padding: 60px 0;
  margin-bottom: 40px;
  border-bottom: 1px solid #e9ecef;
  text-align: center;
  border-radius: 0;
}

.woocommerce-products-header::before {
  display: none;
}

.woocommerce-products-header .woocommerce-products-header__title {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  position: relative;
  display: inline-block;
}

.woocommerce-products-header .woocommerce-products-header__title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #007fc3;
  border-radius: 2px;
}

.woocommerce-products-header .woocommerce-breadcrumb {
  text-align: left;
  margin-bottom: 20px;
  font-size: 14px;
}

.shop-main-content>.woocommerce-breadcrumb {
  margin-bottom: 20px;
}

.woocommerce-result-count {
  margin-bottom: 0 !important;
  margin-top: 10px !important;
}

.woocommerce-ordering {
  margin-top: 0 !important;
}

.shop-archive-layout {
  padding: 80px 0;
  display: flex;
  gap: 40px;
}

/* Product Description Read More */
.product-read-more-wrapper .product-description-content {
  max-height: 400px;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.product-read-more-wrapper .product-description-content.expanded {
  max-height: none;
}

.product-read-more-wrapper .product-content-overlay {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(transparent, #fff);
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.product-read-more-wrapper.is-expanded .product-content-overlay {
  opacity: 0;
}

.read-more-toggle {
  background: #1878b9;
  color: #fff;
  border: none;
  padding: 8px 25px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.read-more-toggle:hover {
  background: #136094;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Category Description Read More (Fixing existing implementation) */
.acf-bottom-content-collapsed {
  max-height: 400px;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.acf-bottom-content-collapsed.expanded {
  max-height: none;
}

#ez-toc-container {
  border-radius: 3px;
  margin-bottom: 15px;
  padding: 10px;
  box-shadow: 0 5px 12px #959da51a;
  border: none !important
}

@media (min-width:1024px) {
  #ez-toc-container {
    margin-bottom: 16px;
    padding: 16px
  }
}

#ez-toc-container .ez-toc-title {
  padding-left: 40px;
  font-size: 18px;
  position: relative;
  font-weight: 700 !important
}

@media (min-width:1024px) {
  #ez-toc-container .ez-toc-title {
    font-size: 24px !important
  }
}

#ez-toc-container .ez-toc-title:before {
  content: "";
  aspect-ratio: 1;
  background-image: url("data: image/svg+xml, %3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M2.08687%203.63501C0.934534%203.63501%200%204.56949%200%205.72266C0%206.87499%200.934534%207.80869%202.08687%207.80869C3.2392%207.80869%204.17374%206.87499%204.17374%205.72266C4.17374%204.56949%203.2392%203.63501%202.08687%203.63501ZM2.08687%209.91356C0.934534%209.91356%200%2010.8473%200%2012.0004C0%2013.1528%200.934534%2014.0872%202.08687%2014.0872C3.2392%2014.0872%204.17374%2013.1528%204.17374%2012.0004C4.17374%2010.8473%203.2392%209.91356%202.08687%209.91356ZM2.08687%2016.1913C0.934534%2016.1913%200%2017.1258%200%2018.2781C0%2019.4305%200.934534%2020.365%202.08687%2020.365C3.2392%2020.365%204.17374%2019.4305%204.17374%2018.2781C4.17374%2017.1258%203.2392%2016.1913%202.08687%2016.1913ZM22.4307%204.15262H7.58619C6.71963%204.15262%206.01693%204.85532%206.01693%205.72266C6.01693%206.58927%206.71958%207.29192%207.58619%207.29192H22.4307C23.2972%207.29192%2024%206.58927%2024%205.72266C24%204.85532%2023.2972%204.15262%2022.4307%204.15262ZM22.4307%2010.4304H7.58619C6.71963%2010.4304%206.01693%2011.133%206.01693%2012.0004C6.01693%2012.867%206.71958%2013.5697%207.58619%2013.5697H22.4307C23.2972%2013.5697%2024%2012.867%2024%2012.0004C24%2011.133%2023.2972%2010.4304%2022.4307%2010.4304ZM22.4307%2016.7089H7.58619C6.71963%2016.7089%206.01693%2017.4115%206.01693%2018.2781C6.01693%2019.1447%206.71958%2019.8473%207.58619%2019.8473H22.4307C23.2972%2019.8473%2024%2019.1447%2024%2018.2781C24%2017.4115%2023.2972%2016.7089%2022.4307%2016.7089Z%22%20fill%3D%22currentColor%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  justify-content: center;
  align-items: center;
  height: 24px;
  display: inline-flex;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%)
}

#ez-toc-container .ez-toc-cssicon {
  border: none;
  width: 10px
}

#ez-toc-container .ez-toc-icon-toggle-span {
  align-items: center;
  width: 0;
  display: flex;
  position: relative
}

#ez-toc-container .ez-toc-icon-toggle-span:before {
  content: "";
  background-image: url("data: image/svg+xml, %3Csvg%20width%3D%2214%22%20height%3D%228%22%20viewBox%3D%220%200%2014%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M6.57%207.7025L13.3125%200.783751L12.5063%205.46666e-07L6.58125%206.07875L0.8175%200.00375012L3.02593e-07%200.78L6.57%207.7025Z%22%20fill%3D%22currentColor%22%2F%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 8px;
  position: absolute;
  right: 0
}

#ez-toc-container .ez-toc-icon-toggle-span svg {
  display: none
}

#ez-toc-container .ez-toc-icon-toggle-span .ez-toc-icon-toggle-span {
  opacity: 0
}

#ez-toc-container nav .ez-toc-list {
  border-top: 1px solid #dfdfdf;
  margin-top: 8px;
  padding-top: 8px
}

@media (min-width:1024px) {
  #ez-toc-container nav .ez-toc-list {
    margin-top: 16px;
    padding-top: 16px
  }
}

#ez-toc-container nav .ez-toc-list li:first-child {
  margin-top: 0
}

#ez-toc-container nav .ez-toc-list li {
  margin-top: 8px
}

#ez-toc-container nav .ez-toc-list li a:visited {
  color: #333
}

.marker-none {
  list-style: none
}

.marker-none::-webkit-details-marker {
  display: none
}

.marker-none::marker {
  content: ""
}

.entry-post-content,
.entry-content.woocommerce-Tabs-panel--description {
  line-height: 1.6
}

.entry-post-content :last-child,
.entry-content.woocommerce-Tabs-panel--description :last-child {
  margin-bottom: 0
}

.entry-post-content b,
.entry-content.woocommerce-Tabs-panel--description b,
.entry-post-content strong,
.entry-content.woocommerce-Tabs-panel--description strong {
  font-weight: 700
}

.entry-post-content a,
.entry-content.woocommerce-Tabs-panel--description a {
  color: var(--color-primary)
}

.entry-post-content a:hover,
.entry-content.woocommerce-Tabs-panel--description a:hover {
  text-decoration: underline
}

.entry-post-content ol,
.entry-content.woocommerce-Tabs-panel--description ol {
  margin-bottom: 20px;
  padding-left: 30px;
  list-style: decimal
}

.entry-post-content ul,
.entry-content.woocommerce-Tabs-panel--description ul {
  margin-bottom: 20px;
  padding-left: 16px;
  list-style: disc;
}

.entry-post-content li,
.entry-content.woocommerce-Tabs-panel--description li {
  margin-bottom: 10px;
  font-size: 16px
}

.entry-post-content img,
.entry-content.woocommerce-Tabs-panel--description img {
  object-fit: contain;
  max-width: 100%;
  margin: auto;
  margin-bottom: 10px;
  height: auto !important
}

.entry-post-content .wp-block-image.aligncenter.size-full,
.entry-content.woocommerce-Tabs-panel--description .wp-block-image.aligncenter.size-full {
  margin-left: auto;
  margin-right: auto
}

.entry-post-content figure,
.entry-content.woocommerce-Tabs-panel--description figure {
  margin: 20px 0;
  max-width: 100%
}

.entry-post-content figcaption,
.entry-content.woocommerce-Tabs-panel--description figcaption {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 22px
}

.entry-post-content iframe,
.entry-content.woocommerce-Tabs-panel--description iframe {
  width: 100%
}

.entry-post-content table,
.entry-content.woocommerce-Tabs-panel--description table {
  border-collapse: separate;
  border-spacing: 0;
  border-width: 1px 0 0 1px;
  width: 100%;
  margin: 20px 0
}

.entry-post-content table,
.entry-content.woocommerce-Tabs-panel--description table,
.entry-post-content td,
.entry-content.woocommerce-Tabs-panel--description td,
.entry-post-content th,
.entry-content.woocommerce-Tabs-panel--description th {
  border: 1px solid #0000001a
}

.entry-post-content td,
.entry-content.woocommerce-Tabs-panel--description td {
  border-width: 0 1px 1px 0
}

.entry-post-content td,
.entry-content.woocommerce-Tabs-panel--description td,
.entry-post-content th,
.entry-content.woocommerce-Tabs-panel--description th {
  padding: 8px
}

.entry-post-content blockquote,
.entry-content.woocommerce-Tabs-panel--description blockquote {
  border-left: 4px solid var(--color-primary);
  margin-bottom: 20px;
  margin-left: 0;
  margin-right: 0;
  padding-left: 16px
}

@media screen and (max-width:768px) {
  .entry-post-content p:has(img) {
    flex-direction: column !important;
    gap: 10px !important;
    display: flex !important
  }
}

@media screen and (min-width:768px) {
  .entry-post-content p:has(img) {
    gap: 16px !important;
    display: flex !important
  }
}

/* Wrapper chung */
.footer-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Logo */
.footer-logo img {
  max-width: 150px;
  /* Điều chỉnh kích thước tùy ý */
}

/* Slogan */
.footer-slogan {
  font-size: 16px;
  margin: 0;
}

/* Phần mạng xã hội */
.social-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-title {
  font-size: 18px;
  font-weight: bold;
  color: #ce1126;
  text-transform: uppercase;
  margin: 0;
}

.social-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-item {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-item:hover {
  background-color: #ce1126;
  /* Màu khi hover */
  border-color: #ce1126;
}


/* Container chứa 2 logo */
.footer-certs {
  display: flex;
  align-items: center;
  gap: 15px;
  /* Khoảng cách giữa 2 logo */
}

/* Định dạng cho từng logo bên trong */
.footer-cert img {
  max-width: 120px;
  /* Điều chỉnh kích thước theo ý bạn */
  height: auto;
  display: block;
}

/* Chứng chỉ (BCT, DMCA) */
.footer-cert img {
  max-width: 120px;
  margin-top: 10px;
}

/* Responsive cho màn hình lớn (lg: 1024px trở lên) */
@media (min-width: 1024px) {
  .social-title {
    font-size: 20px;
  }
}

font-size: 20px;
}
}