* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
  width: 100%;
  margin: 0 auto;
}

a {
  color: rgb(0 0 0);
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* SIDEBAR STYLES */
.banner-slot {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 12px;
  color: #666;
}

.youtube-placeholder {
  width: 100%;
  height: 90px;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 12px;
  color: #666;
}

/* MAIN CONTENT STYLES */
.hero-carousel {
  height: 135px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 18px;
  color: #666;
  background-color: #ebebeb;
}

.banner-row {
  margin-bottom: 16px;
}

.banner-box {
  /* height: 120px; */
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #666;
  /* background-color: #ebebeb; */
}
.banner-hr {
  height: 85px;
}

/* PRODUCT SECTIONS */
.product-section {
  margin-bottom: 24px;
}

.section-header {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 700;
}

.section-header.Leftborder {
  border-left: #69cad3 solid 8px;
  padding-left: 10px;
}

.category-list {
  background-color: #f9f9f9;
  border-radius: 6px;
  padding: 12px;
}

.category-list details {
  margin-bottom: 12px;
}

.category-list summary {
  font-weight: 500;
  cursor: pointer;
  padding: 4px 0;
}

.category-list ul {
  margin-left: -18px;
  margin-top: 8px;
}

.category-list li {
  margin-bottom: 6px;
  font-size: 13px;
}

.product-card {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
  background-color: white;
  height: 100%;
}

.product-image {
  height: 140px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #666;
}

.product-image img {
  height: 140px;
  width: 100%;
  object-fit: contain;
}

.product-info {
  padding: 12px;
}

.product-title {
  font-size: 13px;
  /* height: 40px;
    overflow: hidden; */
  margin-bottom: 8px;
}

.product-price {
  font-weight: 700;
  color: #f68b1f;
  margin-bottom: 8px;
}

.product-btn {
  background-color: #69cad3;
  border: 1px solid #4dadb6 !important;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  width: 100%;
}

/* BLOG SECTION */
.blog-card {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
  background-color: white;
}

.blog-image {
  height: 120px;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #666;
}

.blog-info {
  padding: 12px;
}

.blog-desc {
  font-size: 13px;
  margin-bottom: 8px;
  height: 40px;
  overflow: hidden;
}

.read-more {
  color: #0078d4;
  font-size: 12px;
  font-weight: 500;
}

.view-more-btn {
  display: block;
  margin: 0 auto;
  background-color: #000000;
  border: 1px solid #000000;
  padding: 8px 24px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  color: #ffffff;
}

/* FAQ SECTION */
.faq-section {
  margin-bottom: 24px;
}

.faq-container {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item summary {
  padding: 12px 16px;
  font-weight: 500;
  cursor: pointer;
  background-color: #f9f9f9;
}

.faq-item p {
  padding: 16px;
  background-color: white;
  font-size: 13px;
}

/* NEWS SECTION */
.news-section {
  margin-bottom: 24px;
}

.news-banner {
  height: auto;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 14px;
  color: #666;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.news-item {
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px dotted #e0e0e0;
}

/* SOCIAL SECTION */
.social-section {
  margin-bottom: 24px;
}

.social-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 100px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: white;
  cursor: pointer;
  transition: all 0.2s;
}

.social-btn:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: #f0f0f0;
  border-radius: 50%;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.social-text {
  font-size: 12px;
  text-align: center;
}

/* FOOTER STYLES */
.footer-banner-row {
  background-color: #ffffc6;
}

.footer-banner {
  /* height: 155px; */
  background-color: #f0f0f0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #666;
}

.footer-social-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.footer-social-icon {
  width: 150px;
  height: 50px;
  background-color: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0e0e0;
}

.footer-links {
  background-color: #c8e3ea;
}

.footer-social-icon.line-bg {
  background-color: #edfff2;
  border: 1px solid #6bfd95;
}

.footer-social-icon.tiktok-bg {
  background-color: #ffecff;
  border: 1px solid #ff9aff;
}

.footer-social-icon.youtube-bg {
  background-color: #fbe5e5;
  border: 1px solid #ff0000;
}

.footer-social-icon.insta-bg {
  background: linear-gradient(to right, #ebceff, #ffb3b3, #ffd394);
  border: 1px solid #ffb3b3;
}
.footer-column h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  /* padding-left: 2rem; */
}

.footer-column ul li {
  margin-bottom: 8px;
  font-size: 12px;
}

.footer-column a:hover {
  text-decoration: underline;
}

.copyright {
  text-align: center;
  font-size: 12px;
  color: #000;
  border-top: 2px solid #000000;
  background-color: #69cad3;
}

/* Product Carousel Styles */
.product-carousel .carousel-item {
  padding: 10px;
}

.product-carousel .carousel-control-prev,
.product-carousel .carousel-control-next {
  width: 5%;
  opacity: 0.7;
}

.product-carousel .carousel-control-prev-icon,
.product-carousel .carousel-control-next-icon {
  background-color: #000000;
  border-radius: 50%;
  width: 20px;
  height: 20px;
}

/* --- Responsive adjustments --- */

/* Tablet Styles (max-width: 992px) */
@media (max-width: 992px) {
  .sidebar {
    margin-bottom: 20px;
  }

  .hero-carousel {
    height: 200px;
  }

  .category-list {
    display: none;
  }

  .nav-icons {
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .nav-icons::-webkit-scrollbar {
    height: 4px;
  }

  .nav-icons::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 2px;
  }

  .header-bottom .d-flex {
    flex-direction: column;
    gap: 12px;
  }

  .search-bar {
    width: 100%;
  }

  /* Adjust dropdowns for tablet */
  .dropdown,
  .notification-panel {
    position: fixed;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 300px;
  }
}

/* Mobile Styles (max-width: 600px) */
@media (max-width: 600px) {
  body {
    font-size: 13px;
    width: 100%;
  }
  .header-top .d-flex {
    flex-direction: column;
    gap: 12px;
  }
  .header-top .nav-icons.d-flex {
    flex-direction: row !important;
    gap: 12px;
  }

  .brand-section {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .chatgpt-search {
    margin-left: 0;
  }

  .nav-icons {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .nav-icon span {
    font-size: 11px;
  }

  .category-dropdown {
    justify-content: center;
  }

  .search-bar .d-flex {
    flex-direction: column;
  }

  .search-input {
    border-radius: 4px;
    margin-bottom: 8px;
  }

  .search-btn {
    border-radius: 4px;
  }

  .hero-carousel {
    height: 150px;
    font-size: 16px;
    width: 100%;
  }

  .banner-box {
    height: 80px;
    margin-bottom: 10px;
  }

  .news-list {
    grid-template-columns: 1fr;
  }

  .social-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .social-btn {
    width: 100%;
    max-width: 200px;
  }

  .footer-banner {
    margin-bottom: 10px;
  }

  .footer-social .d-flex {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .section-header {
    font-size: 16px;
  }

  .faq-item p,
  .news-item {
    font-size: 12px;
  }

  /* Adjust dropdowns for mobile */
  .dropdown,
  .notification-panel {
    position: fixed;
    top: 140px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 280px;
  }

  /* Carousel adjustments for mobile */
  .product-carousel .carousel-inner .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

:root {
  --main-blue: #0070c9;
  --dark-blue: #0052a3;
  --accent-red: #e60012;
  --accent-yellow: #ffd800;
  --bg-light: #f4f6f9;
  --text-main: #333;
  --border-soft: #e1e4ea;
  --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.06);
  --radius-lg: 12px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 14px;
  background: var(--bg-light);
  color: var(--text-main);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* WRAPPER - limit max width similar to screenshot */

.site-wrapper {
  max-width: 1320px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.04);
  min-height: 100vh;
}

/* HEADER TOP */

header {
  border-bottom: 1px solid var(--border-soft);
}

.header-top {
  background: #ffffff;
  padding: 10px 20px;
}

.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand-section {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1 1 auto;
  min-width: 0;
}

.brand-text img {
  width: 180px;
  height: auto;
}

.chatgpt-search {
  flex: 1 1 0;
  min-width: 220px;
}

.chatgpt-btn {
  width: 100%;
  border: none;
  border-radius: 10px;
  background: linear-gradient(90deg, #151a25 0%, #2c3340 40%, #00a67e 100%);
  color: #fff;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  text-align: left;
}

.chatgpt-btn img {
  width: 36px;
  height: 36px;
}

.chatgpt-btn small {
  opacity: 0.85;
  font-size: 11px;
}

.chatgpt-search-links {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  font-size: 12px;
}

.chatgpt-search-links a {
  color: var(--dark-blue);
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.nav-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 35px;
  color: #555;
  cursor: pointer;
  position: relative;
}

.nav-icon .icon-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  background: #fff;
  transition: all 0.15s ease-in-out;
}

.nav-icon:hover .icon-placeholder {
  background: var(--main-blue);
  color: #fff;
  border-color: var(--main-blue);
}

.nav-icon span {
  display: block;
  font-size: 11px;
  line-height: 1.1;
  white-space: normal !important;
  text-align: center;
  max-width: 55px;
}

/* MENU DROPDOWN */

.menu-dropdown {
  position: absolute;
  top: 52px;
  right: 0;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  min-width: 190px;
  padding: 8px 0;
  display: none;
  z-index: 50;
}

.menu-dropdown.show {
  display: block;
}

.menu-dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-dropdown li a {
  display: block;
  padding: 8px 14px;
  font-size: 13px;
}

.menu-dropdown li a:hover {
  background: #f3f6fb;
}

/* NOTIFICATION PANEL */

.notification-panel {
  position: absolute;
  top: 52px;
  right: 0;
  width: 260px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  padding: 10px 12px;
  display: none;
  z-index: 50;
}

.notification-panel.show {
  display: block;
}

.notification-panel h4 {
  font-size: 13px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--border-soft);
  padding-bottom: 4px;
}

.notification-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 220px;
  overflow-y: auto;
  font-size: 12px;
}

.notification-panel li {
  padding: 6px 0;
  border-bottom: 1px dashed #e4e7ee;
}

/* HEADER BOTTOM (search bar area) */

.header-bottom {
  background: var(--dark-blue);
  color: #fff;
  padding: 8px 20px 10px;
}

.header-bottom-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.category-dropdown {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.category-dropdown i {
  margin-left: 3px;
}

.search-bar {
  display: flex;
  flex: 1 1 0;
  max-width: 520px;
  background: #fff;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.search-input {
  border: none;
  padding-left: 14px;
  font-size: 13px;
}

.search-input:focus {
  box-shadow: none;
}

.search-btn {
  border-radius: 0;
  border: none;
  background: #e14337;
  /* padding: 0 22px; */
  font-weight: 600;
  font-size: 13px;
}

/* MAIN LAYOUT */

main {
  padding: 12px 20px 0;
}
.product-container {
  flex: 1;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.content-row {
  display: flex;
  gap: 12px;
}

.sidebar-left,
.sidebar-right {
  width: 180px;
  flex: 0 0 auto;
}

.content-center {
  flex: 1 1 auto;
  min-width: 0;
}

.banner-slot {
  margin-bottom: 8px;
}

.banner-slot img {
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  width: 288px;
}

.hero-carousel img {
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 10px;
}

.banner-row .banner-box img {
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.banner-row {
  margin-top: 0px;
}

.banner-hr img {
  height: 100%;
  object-fit: cover;
}

/* PRODUCT SECTIONS */

.product-section {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.section-header {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.section-header.Leftborder {
  border-left: 4px solid var(--main-blue);
  padding-left: 8px;
}

.category-list details {
  border-radius: 8px;
  border: 1px solid var(--border-soft);
  padding: 8px 10px;
  margin-bottom: 8px;
  /* background: #fafbfd; */
}

.category-list summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
}

.category-list ul {
  list-style: none;
  padding-left: 0;
  margin: 6px 0 0;
  font-size: 12px;
}

.category-list li {
  padding: 2px 0;
}

.product-carousel .carousel-inner {
  padding-bottom: 4px;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.product-image {
  background: #f8fafc;
  padding: 10px;
  text-align: center;
}

.product-image img {
  max-height: 120px;
  margin: 0 auto;
}

.product-info {
  padding: 10px 10px 12px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 6px;
}

.product-title {
  font-size: 12px;
  line-height: 1.5;
  /* height: 40px;
      overflow: hidden; */
}

.product-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-red);
}

.product-btn {
  margin-top: auto;
  border: none;
  border-radius: 999px;
  padding: 6px 0;
  font-size: 13px;
  font-weight: 600;
  background: linear-gradient(90deg, #ffb400, #ff7700);
  color: #fff;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.product-btn:hover {
  opacity: 0.9;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

.product-section .carousel-control-prev,
.product-section .carousel-control-next {
  width: 45px;
}

/* BLOG SECTION */

.blog-section {
  margin-top: 18px;
  padding: 14px 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.view-more-btn {
  border-radius: 999px;
  border: 1px solid var(--dark-blue);
  padding: 6px 22px;
  font-size: 13px;
  color: var(--dark-blue);
  background: #fff;
}

.view-more-btn:hover {
  background: #f0f4ff;
}

/* FAQ SECTION */

.faq-section {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.faq-container details {
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  padding: 10px 12px;
  margin-bottom: 8px;
  background: #fafbfd;
}

.faq-container summary {
  font-weight: 600;
  cursor: pointer;
  font-size: 13px;
}

.faq-container p {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.6;
}

/* NEWS / BANNERS SECTION */

.news-section {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.news-banner img {
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.footer-banner-row {
  background: #fff;
  padding: 14px 0 8px;
}

.footer-banner img {
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

/* RIGHT SIDEBAR EXTRA */

.youtube-placeholder {
  border-radius: 12px;
  overflow: hidden;
  /* border: 1px solid var(--border-soft);
      box-shadow: var(--shadow-soft); */
  background: #000;
}

.youtube-placeholder video {
  display: block;
}

/* FOOTER */

footer {
  margin-top: 20px;
  border-top: 1px solid var(--border-soft);
  background: #ffffff;
}

.footer-social {
  padding: 12px 20px;
  background: #f7f9fc;
  border-bottom: 1px solid var(--border-soft);
}

.footer-social-btn {
  flex: 0 0 auto;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  gap: 4px;
}

.line-bg {
  background: #00c300;
  color: #fff;
  border-color: #00c300;
}

.tiktok-bg {
  background: #000;
  color: #fff;
  border-color: #000;
}

.footer-links {
  padding: 18px 20px 10px;
  font-size: 13px;
}

.footer-column h3 {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-column ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 4px;
}

.footer-column a {
  font-size: 12px;
  color: #555;
}

.footer-column a:hover {
  text-decoration: underline;
}

.copyright {
  text-align: center;
  font-size: 11px;
  color: #777;
  border-top: 1px solid var(--border-soft);
  background: #f7f9fc;
}

/* RESPONSIVE */

@media (max-width: 1199.98px) {
  .sidebar-left,
  .sidebar-right {
    width: 150px;
  }
}

@media (max-width: 991.98px) {
  .sidebar-left,
  .sidebar-right {
    display: none;
  }

  .content-row {
    flex-direction: column;
  }

  .content-center {
    width: 100%;
  }

  .header-top-inner {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .nav-icons {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .nav-icon span {
    font-size: 10px;
  }
}

@media (max-width: 767.98px) {
  .header-top {
    padding: 8px 12px;
  }

  .header-bottom {
    padding: 6px 12px 10px;
  }

  main {
    padding: 10px 12px 0;
  }

  .header-top-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .brand-section {
    width: 100%;
    justify-content: space-between;
  }

  .chatgpt-search {
    margin-top: 6px;
  }

  .nav-icons {
    justify-content: space-between;
    width: 100%;
    margin-top: 6px;
  }

  .search-bar {
    max-width: 100%;
  }

  .product-section,
  .blog-section,
  .faq-section,
  .news-section {
    padding: 12px 12px;
  }

  .footer-links {
    padding: 16px 12px 10px;
  }

  .footer-social {
    padding: 10px 12px;
  }

  .footer-social .d-flex {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .footer-social-icon {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .product-image img {
    max-height: 110px;
  }

  .product-title {
    height: auto;
  }
}
.category-sidebar {
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  padding: 10px;
  background: #fafafa;
}

.category-sidebar details {
  padding: 6px 0;
  border-bottom: 1px dashed #ddd;
}

.category-sidebar summary {
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.category-sidebar ul {
  padding-left: 18px;
  margin-top: 6px;
}

.category-sidebar li {
  font-size: 13px;
  padding: 3px 0;
}

.product-section .row > .col-md-9 .row {
  margin-top: 5px;
}
/* container */
.product-row-wrapper {
  margin-bottom: 40px;
}

/* header */
.product-row-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 6px;
}

.product-row-header h3 {
  font-size: 20px;
  font-weight: 600;
}

.product-row-header a {
  font-size: 14px;
  color: #007bff;
}

/* scroll container */
.product-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 8px;
}

.product-scroll::-webkit-scrollbar {
  height: 6px;
}

.product-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

/* product card */
.product-card-x {
  min-width: 126px;
  max-width: 126px;
  background: #fff;
  border-radius: 8px;
  padding: 12px;
  border: 1px solid #eee;
  transition: all 0.2s;
  flex-shrink: 0;
}

.product-card-x:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* image */
.product-card-x img {
  width: 100%;
  height: 103px;
  object-fit: contain;
  border-radius: 6px;
}

/* title */
.product-title-x {
  font-size: 12px;
  font-weight: 500;
  margin-top: 8px;
  height: 15px;
  overflow: hidden;
}

/* price */
.product-price-x {
  font-size: 18px;
  font-weight: bold;
  color: #d00;
  margin: 6px 0 0 0;
}

/* rating */
.product-rating-x i {
  color: #ffcc00;
  font-size: 12px;
}

/* button */
.product-btn-x {
  width: 100%;
  padding: 6px 0;
  background: #007bff;
  color: #fff;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  margin-top: 6px;
}

/* =====================
   RESPONSIVE BREAKPOINTS
===================== */

/* Small mobile */
@media (max-width: 480px) {
  .product-card-x {
    min-width: 150px;
    max-width: 150px;
  }

  .product-card-x img {
    height: 130px;
  }
}

/* Large mobile / small tablet */
@media (max-width: 768px) {
  .product-card-x {
    min-width: 170px;
    max-width: 170px;
  }

  .product-row-header h3 {
    font-size: 18px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .product-card-x {
    min-width: 180px;
    max-width: 180px;
  }
}

.jp-widget-clean {
  width: 100%;
  background: #ffffff;
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 15px;
  border: 1px solid #eaeaea;
}

/* JP Post Image */
.jp-widget-img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* Search Bar */
.jp-widget-search {
  position: relative;
  width: 100%;
}

.jp-widget-search input {
  width: 100%;
  padding: 10px 40px 10px 15px;
  font-size: 14px;
  border-radius: 30px;
  border: 2px solid #333;
  outline: none;
}

.jp-widget-search button {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #111;
}
.per-tablet-price {
  font-size: 12px;
}

.product-unit-x {
  font-size: 12px;
  margin: 5px 0 5px 0;
  text-transform: lowercase;
}
.product-online-x {
  font-size: 12px;
  margin: 5px 0 5px 0;
  text-transform: capitalize;
  color: red;
}
.carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slides {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  max-width: 100%;
}

.slide img {
  width: 100%;
  height: 242px;
  display: block;
  border-radius: 8px;
}

/* Thumbnails */
.thumbnails {
  display: flex;
  gap: 8px;
  margin: 5px 0 5px 0;
}

.thumbnails img {
  width: 159px;
  height: 60px;
  object-fit: cover;
  opacity: 0.6;
  cursor: pointer;
  border-radius: 4px;
  transition: opacity 0.3s;
}

.thumbnails img.active {
  opacity: 1;
  border: 2px solid #007bff;
}
.category-list {
  padding: 10px;
  background: #fff;
  border-radius: 8px;
}

.cat-group {
  margin-bottom: 12px;
}

.cat-type-title {
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 6px;
  cursor: pointer;
}

.cat-items {
  list-style: none;
  padding-left: 12px;
  margin-top: 6px;
}

.cat-items li {
  margin-bottom: 6px;
  line-height: 1.4;
}

.cat-items li a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  display: block;
  word-break: break-word;
}

.cat-items li a:hover {
  color: #007bff;
}

.cat-items li {
  margin-bottom: 6px;
  padding-left: 12px;
  position: relative;
}

.cat-items li::before {
  content: "•"; /* or "-" */
  position: absolute;
  left: 0;
  top: 2px;
  color: #555;
}

.cat-items li::before {
  content: "›";
  font-size: 14px;
  font-weight: bold;
  left: 0;
  color: #999;
}
.health {
  width: 288px !important;
  height: 92px !important;
}
.youtube-placeholder {
  width: 100%;
  height: 50px; /* Same height as video */
  background: #f5f6f9;
  /* border-radius: 6px;
    border: 1px solid #ddd; */
}
.youtube-placeholder {
  width: 100%;
  height: 50px;
  background: #f5f6f9;
  /* border-radius: 6px;
    border: 1px solid #ddd; */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
}
.searchGuide {
  height: 245px !important;
}

.youtube-lazy {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 6px;
}

.youtube-thumb {
  width: 100%;
  display: block;
  border-radius: 6px;
  transition: 0.3s ease;
  height: 200px;
}

/* Dark overlay */
.youtube-lazy::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
  border-radius: 6px;
}

/* Play icon */
.youtube-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25px;
  height: 25px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
}

.youtube-play-btn::before {
  content: "";
  border-left: 12px solid #e62117;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  margin-left: 4px;
}

/* Hover effects */
.youtube-lazy:hover .youtube-thumb {
  transform: scale(1.05);
}

.youtube-lazy:hover::after {
  background: rgba(0, 0, 0, 0.35);
}

.product-card-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  overflow: hidden;
}

.product-card-x {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 12px;
  transition: 0.2s;
}

.product-card-x img {
  width: 100%;
  height: 120px;
  object-fit: contain;
}

.product-title-x {
  font-size: 13px;
  margin-top: 8px;
  height: 34px;
  overflow: hidden;
}
.page_numbers_toolbar {
  text-align: center;
  margin: 25px 0;
}

.page_numbers_toolbar ul {
  list-style: none;
  padding-left: 0;
  display: inline-flex;
  gap: 8px;
}

.page_numbers_toolbar ul li a {
  display: inline-block;
  padding: 8px 14px;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 50px;
  font-size: 14px;
  color: #333;
  transition: all 0.2s ease;
}

.page_numbers_toolbar ul li a:hover {
  background: #f0f0f0;
  border-color: #ccc;
}

.page_numbers_toolbar ul li a.current_page {
  background: #007bff;
  color: #fff !important;
  border-color: #007bff;
  font-weight: bold;
}

.page_numbers_toolbar ul li a.prev_page,
.page_numbers_toolbar ul li a.next_page {
  font-weight: 600;
}

@media (max-width: 576px) {
  .page_numbers_toolbar ul {
    gap: 5px;
  }
  .page_numbers_toolbar ul li a {
    padding: 6px 10px;
    font-size: 12px;
  }
}
.checkout-accordion .accordion-item {
  /* border: 1px solid #ddd; */
  margin-bottom: 10px;
  border-radius: 5px;
}

.checkout-accordion .accordion-header {
  padding: 10px;
  /* background: #2dc6b6; */
  cursor: pointer;
  /* color: #fff; */
  font-weight: bold;
}

.checkout-accordion .accordion-body {
  padding: 15px;
  background: #fff;
}

.is-invalid {
  border-color: red;
}

.form-control {
  color: #cccccc;
}
.form-check-inline {
  margin-top: 10px;
}

.accordion-button {
  font-weight: bold;
}
style.css .banner-row .banner-box img {
  border-radius: 12px;
  /* box-shadow: var(--shadow-soft); */
}
.health {
  width: 100% !important;
  height: auto !important;
}
.banner-box {
  /* height: 120px; */
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #666;
  background-color: #ffffff;
}
.health-banner .banner-box {
  height: 92px;
}
/* product card */
.product-card-x {
  min-width: 200px;
  max-width: 126px;
  background: #fff;
  border-radius: 8px;
  padding: 12px;
  border: 1px solid #eee;
  transition: all 0.2s;
  flex-shrink: 0;
}
.product-card-x {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 0;
  transition: 0.2s;
  text-align: center;
}
.product-card-x img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.product-title-x {
  font-size: 12px;
  margin-top: 8px;
  height: 15px;
  overflow: hidden;
  font-weight: 900;
}
.product-price-x {
  font-size: 18px;
  font-weight: bold;
  color: #d00;
  margin: 0;
}

swichLight.css .swichLightRightItem {
  display: inline-block;
  width: 31%;
  height: 80px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  margin: 5px;
  text-align: center;
  line-height: 80px;
  text-transform: capitalize;
}

.product-section {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.cardItemSwichLight {
  grid-row: span 7;
  grid-column: span 4;
  width: 99%;
  margin: 10px auto;
}

.swichLightBox {
  margin: 0 auto;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 0;
  padding: 10px 10px 0px 0;
}

.swichLightRight {
  float: right;
  width: -webkit-calc(100% - 200px);
  width: calc(100% - 200px);

  margin: 0 auto;
  padding-top: 20px;
  justify-content: center;
  align-content: center;
  margin-top: 15px;
  margin-bottom: 0;
}

.swichLightRightBox {
  width: 99%;
  margin: 0 auto;
}
.swichLightLeft {
  float: left;
  width: 200px;
  margin: 30px 0;
  position: relative;
}
.clear {
  clear: both;
}

.swichLightTittle {
  display: block;
  margin: 0 auto;
  margin-top: -30px;
  color: #33476a;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
  font-family: "æ¸¸ã‚´ã‚·ãƒƒã‚¯ä½“", YuGothic, "æ¸¸ã‚´ã‚·ãƒƒã‚¯", "Yu Gothic",
    "ãƒ¡ã‚¤ãƒªã‚ª", sans-serif;
  color: #01c1ff;
  letter-spacing: 5px;
}
.visible {
  width: 150px;
  /*---------height:170px;--------*/
  display: block;
  margin: 0 auto;
}

.visible1 {
  width: 140px;
  height: 140px;
  margin-top: 10px;
}

.left {
  display: inline-block;
  width: 4em;
  height: 4em;
  border: 0.5em solid #f8e322;
  background-color: #f8e322;
  border-radius: 50%;
  margin-right: 1.5em;
  display: none;
}

.top {
  display: inline-block;
  width: 4em;
  height: 4em;
  border: 0.5em solid #f8e322;
  background-color: #f8e322;
  border-radius: 50%;
  margin-right: 0.75em;
  display: none;
}

.bottom {
  display: inline-block;
  width: 4em;
  height: 4em;
  border: 0.5em solid #f8e322;
  background-color: #f8e322;
  border-radius: 50%;
  margin-left: 0.75em;
  display: none;
}

.right {
  display: inline-block;
  width: 4em;
  height: 4em;
  border: 0.5em solid #f8e322;
  background-color: #f8e322;
  border-radius: 50%;
  margin-left: 1.5em;
  position: absolute;
  top: 0;
  right: -55px;
}

/*---------ã‚°ãƒªãƒƒãƒ‰ãƒ‡ã‚¶ã‚¤ãƒ³---------*/
.swichLightRightItem {
  display: inline-block;
  width: 31%;
  height: 80px;
  background: #fff;
  /*--------- box-shadow: 1px 1px 3px #999;---------*/
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  margin: 5px;
  text-align: center;
  line-height: 80px;
  text-transform: capitalize;
}

.swichLightItemA,
.swichLightItemB,
.swichLightItemC,
.swichLightItemD,
.swichLightItemE,
.swichLightItemF,
.swichLightItemG,
.swichLightItemH,
.swichLightItemI,
.swichLightItemJ,
.swichLightItemK,
.swichLightItemL {
  color: #33476a;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  font-family: "æ¸¸ã‚´ã‚·ãƒƒã‚¯";
}

.swichLightRightItem:hover {
  background: red;
  transition-duration: 0.5s;
  color: #ffffff;
}

@media (max-width: 650px) {
  .swichLightRight {
    width: 98%;
    float: none;
  }
  .swichLightRightBox {
    padding-left: 15px;
  }
  .swichLightLeft {
    display: none;
  }
  .visible {
    display: none;
  }

  .swichLightBox {
    margin: 0 auto;
    width: 99%;
    padding: 70px 0px 5px 0;
  }

  .swichLight-wrapper {
  }
}

@media (max-width: 625px) {
  .swichLightRight {
  }
}

@media (max-width: 530px) {
  .swichLightRightItem {
    width: 29%;
  }
}

@media (max-width: 490px) {
  .swichLightRight {
  }
  .swichLightRight {
  }
}

@media (max-width: 420px) {
  .cardItemSwichLight {
    grid-row: span 16;
    grid-column: span 4;
  }
  .swichLightRightItem {
    width: 28%;
  }
}

@media (max-width: 375px) {
  .swichLightRight {
    padding-top: 10px;
  }
  .swichLightTittle {
    margin-top: -5px;
    font-size: 20px;
  }
  .swichLightBox {
    padding: 40px 0px 5px 0;
  }
}
@media (max-width: 320px) {
  .swichLightRight {
  }
  .swichLightTittle {
    font-size: 16px;
  }
  .swichLightBox {
    padding: 30px 0px 5px 0;
  }
}

/*---------å…‰ã‚‹éƒ¨åˆ†â†“â†“â†“â†“---------*/

.swichLightA {
  position: absolute;
  top: -5px;
  left: 85px;
  width: 30px;
  height: 30px;
  background: red;
  border-radius: 30px;
  opacity: 0.8;
  animation: blink 1s linear infinite normal;
  -webkit-animation: blink 1s linear infinite normal;
  -moz-animation: blink 1s linear infinite normal;
  -o-animation: blink 1s linear infinite normal;
}
.swichLightB {
  position: absolute;
  top: 80px;
  left: 110px;
  width: 20px;
  height: 20px;
  background: red;
  border-radius: 30px;
  opacity: 0.8;
  animation: blink 1s linear infinite normal;
  -webkit-animation: blink 1s linear infinite normal;
  -moz-animation: blink 1s linear infinite normal;
  -o-animation: blink 1s linear infinite normal;
}
.swichLightB1 {
  position: absolute;
  top: 120px;
  left: 130px;
  width: 20px;
  height: 20px;
  background: red;
  border-radius: 30px;
  opacity: 0.8;
  animation: blink 1s linear infinite normal;
  -webkit-animation: blink 1s linear infinite normal;
  -moz-animation: blink 1s linear infinite normal;
  -o-animation: blink 1s linear infinite normal;
}

.swichLightC {
  position: absolute;
  top: 85px;
  left: 91px;
  width: 15px;
  height: 15px;
  background: red;
  border-radius: 30px;
  opacity: 0.8;
  animation: blink 1s linear infinite normal;
  -webkit-animation: blink 1s linear infinite normal;
  -moz-animation: blink 1s linear infinite normal;
  -o-animation: blink 1s linear infinite normal;
}

.swichLightD {
  position: absolute;
  top: 95px;
  left: 90px;
  width: 20px;
  height: 20px;
  background: red;
  border-radius: 30px;
  opacity: 0.8;
  animation: blink 1s linear infinite normal;
  -webkit-animation: blink 1s linear infinite normal;
  -moz-animation: blink 1s linear infinite normal;
  -o-animation: blink 1s linear infinite normal;
}

.swichLightE {
  position: absolute;
  top: 145px;
  left: 77px;
  width: 45px;
  height: 45px;
  background: red;
  border-radius: 30px;
  opacity: 0.8;
  animation: blink 1s linear infinite normal;
  -webkit-animation: blink 1s linear infinite normal;
  -moz-animation: blink 1s linear infinite normal;
  -o-animation: blink 1s linear infinite normal;
}

.swichLightF {
  position: absolute;
  top: 230px;
  left: 70px;
  width: 30px;
  height: 30px;
  background: red;
  border-radius: 30px;
  opacity: 0.8;
  animation: blink 1s linear infinite normal;
  -webkit-animation: blink 1s linear infinite normal;
  -moz-animation: blink 1s linear infinite normal;
  -o-animation: blink 1s linear infinite normal;
}

.swichLightG {
  position: absolute;
  top: 210px;
  left: 92px;
  width: 15px;
  height: 15px;
  background: red;
  border-radius: 30px;
  opacity: 0.8;
  animation: blink 1s linear infinite normal;
  -webkit-animation: blink 1s linear infinite normal;
  -moz-animation: blink 1s linear infinite normal;
  -o-animation: blink 1s linear infinite normal;
}

.swichLightH {
  position: absolute;
  top: -20px;
  left: 25px;
  width: 150px;
  height: 350px;
  background: red;
  border-radius: 500px;
  opacity: 0.8;
  animation: blink 1s linear infinite normal;
  -webkit-animation: blink 1s linear infinite normal;
  -moz-animation: blink 1s linear infinite normal;
  -o-animation: blink 1s linear infinite normal;
}

.swichLightI {
  position: absolute;
  top: 120px;
  left: 100px;
  width: 25px;
  height: 25px;
  background: red;
  border-radius: 30px;
  opacity: 0.8;
  animation: blink 1s linear infinite normal;
  -webkit-animation: blink 1s linear infinite normal;
  -moz-animation: blink 1s linear infinite normal;
  -o-animation: blink 1s linear infinite normal;
}

.swichLightJ {
  position: absolute;
  top: 180px;
  left: 60px;
  width: 80px;
  height: 80px;
  background: red;
  border-radius: 50%;
  opacity: 0.8;
  animation: blink 1s linear infinite normal;
  -webkit-animation: blink 1s linear infinite normal;
  -moz-animation: blink 1s linear infinite normal;
  -o-animation: blink 1s linear infinite normal;
}
.swichLightK {
  position: absolute;
  top: 58px;
  left: 106px;
  width: 15px;
  height: 15px;
  background: red;
  border-radius: 30px;
  opacity: 0.8;
  animation: blink 1s linear infinite normal;
  -webkit-animation: blink 1s linear infinite normal;
  -moz-animation: blink 1s linear infinite normal;
  -o-animation: blink 1s linear infinite normal;
}
.swichLightL {
  position: absolute;
  top: 190px;
  left: 75px;
  width: 15px;
  height: 15px;
  background: red;
  border-radius: 30px;
  opacity: 0.8;
  animation: blink 1s linear infinite normal;
  -webkit-animation: blink 1s linear infinite normal;
  -moz-animation: blink 1s linear infinite normal;
  -o-animation: blink 1s linear infinite normal;
}
.swichLightL1 {
  position: absolute;
  top: 190px;
  left: 110px;
  width: 15px;
  height: 15px;
  background: red;
  border-radius: 30px;
  opacity: 0.8;
  animation: blink 1s linear infinite normal;
  -webkit-animation: blink 1s linear infinite normal;
  -moz-animation: blink 1s linear infinite normal;
  -o-animation: blink 1s linear infinite normal;
}

@keyframes blink {
  0% {
    background-color: red;
  }
  10% {
    background-color: #fde8a1;
  }
  100% {
    background-color: red;
  }
}
@-webkit-keyframes blink {
  0% {
    background-color: red;
  }
  10% {
    background-color: #fde8a1;
  }
  100% {
    background-color: red;
  }
}
@-moz-keyframes blink {
  0% {
    background-color: red;
  }
  10% {
    background-color: #fde8a1;
  }
  100% {
    background-color: red;
  }
}
@-o-keyframes blink {
  0% {
    background-color: red;
  }
  10% {
    background-color: #fde8a1;
  }
  100% {
    background-color: red;
  }
}

/*---------å…‰ã‚‹éƒ¨åˆ†â†‘â†‘â†‘â†‘---------*/
/*custom css*/
.carousel-control-prev {
  left: -55px;
}
.carousel-control-next {
  right: -55px;
}
.carousel-control-next-icon,
.carousel-control-prev-icon {
  background-color: rgba(0, 0, 0, 0.9);
}
.carousel-control-next,
.carousel-control-prev {
  position: absolute;
  top: -55px;
}
