/* ==========================================================================
   HOMEPAGE CONTENT STYLES
   ========================================================================== */

/* 1. Banner Video Section (Split Background) */
.hero-video-kono-new {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--header-height));
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: var(--color-blue);
  color: #ffffff;
}

.hero-grid-kono-new {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-content-kono-new {
  flex: 1 1 50%;
}

.hero-video-box-kono-new {
  flex: 1 1 50%;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  /* min-height: 380px; */
}

.hero-video-box-kono-new video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* min-height: 380px; */
}

@media (max-width: 991px) {
  .hero-grid-kono-new {
    flex-direction: column;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .hero-content-kono-new,
  .hero-video-box-kono-new {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .hero-video-box-kono-new,
  .hero-video-box-kono-new video {
    min-height: 260px;
  }
}

.hero-badge-kono-new {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  background-color: rgba(245, 166, 35, 0.2);
  border: 1px solid rgba(245, 166, 35, 0.4);
  margin-bottom: 24px;
  color: var(--color-yellow);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-badge-kono-new [data-lucide] {
  width: 14px;
  height: 14px;
}

.hero-title-kono-new {
  font-size: clamp(25px, 4vw, 44px);
  line-height: 1.15;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title-kono-new b {
  color: var(--color-yellow);
}

.hero-desc-kono-new {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 40px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-actions-kono-new {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-primary-kono-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 32px;
  background-color: var(--color-yellow);
  color: var(--color-blue);
  font-weight: 700;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.2);
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.btn-primary-kono-new:hover {
  background-color: #e09310;
}

.btn-secondary-kono-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 32px;
  background-color: transparent;
  color: #ffffff;
  font-weight: 700;
  border: 2px solid #ffffff;
  border-radius: var(--radius-md);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-secondary-kono-new:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--color-yellow);
}

/* 2. Introduction Section */
.intro-section-kono-new {
  padding: 100px 0;
  background-color: #ffffff;
}

.intro-container-kono-new {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 992px) {
  .intro-container-kono-new {
    grid-template-columns: 1.1fr 1fr;
  }
}

.intro-image-wrapper-kono-new {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(11, 47, 97, 0.08);
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.intro-image-wrapper-kono-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-experience-badge-kono-new {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(11, 47, 97, 0.95);
  backdrop-filter: blur(8px);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-yellow);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.intro-experience-badge-kono-new h3 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-yellow);
  margin: 0 0 4px 0;
  font-weight: 700;
}

.intro-experience-badge-kono-new p {
  font-size: 20px;
  font-weight: 800;
  margin: 0;
}

.intro-content-kono-new {
  display: flex;
  flex-direction: column;
}

.section-tag-kono-new {
  font-size: 12px;
  font-weight: 800;
  color: var(--color-yellow);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 5px;
  text-align: center;
}

.section-tag-kono-new.text-center {
  text-align: center;
}

.section-title-kono-new {
  font-size: clamp(22px, 2.8vw, 32px);
  color: var(--color-blue);
  font-weight: 650;
  line-height: 1.25;
  margin-top: 0;
}

.section-title-kono-new.text-center {
  text-align: center;
}

.intro-lead-kono-new {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-blue);
  line-height: 1.7;
  margin-bottom: 20px;
}

.intro-text-kono-new {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 28px;
}

.intro-features-kono-new {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.intro-feature-item-kono-new {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--color-blue);
}

.intro-feature-item-kono-new [data-lucide] {
  width: 18px;
  height: 18px;
  color: var(--color-yellow);
}

/* 3. Featured Products Section */
.featured-products-kono-new {
  padding: 100px 0;
  background-color: #f8fafc;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.section-header-kono-new {
  margin-bottom: 60px;
}

.section-desc-kono-new {
  font-size: 15px;
  color: var(--color-text-light);
  max-width: 650px;
  margin-inline: auto;
  line-height: 1.6;
}

.section-desc-kono-new.text-center {
  text-align: center;
}

.products-grid-kono-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.product-card-kono-new {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 30px rgba(11, 47, 97, 0.02);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card-kono-new:hover {
  border-color: rgba(245, 166, 35, 0.25);
  box-shadow: 0 20px 40px rgba(11, 47, 97, 0.08);
}

.product-img-wrapper-kono-new {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #f8fafc;
}

.product-img-wrapper-kono-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card-kono-new:hover .product-img-wrapper-kono-new img {
  transform: scale(1.05);
}

.product-info-kono-new {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-info-kono-new h3 {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--color-blue);
  margin: 0 0 14px 0;
  line-height: 1.45;
  min-height: 48px;
  display: flex;
  align-items: center;
}

.product-specs-kono-new {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
  padding-top: 14px;
}

.product-specs-kono-new li {
  font-size: 13.5px;
  color: var(--color-text-light);
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.product-specs-kono-new li span {
  font-weight: 700;
  color: var(--color-blue);
}

.product-link-kono-new {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--color-blue);
  transition: color 0.2s ease;
}

.product-link-kono-new:hover {
  color: var(--color-yellow);
}

.product-link-kono-new [data-lucide] {
  width: 14px;
  height: 14px;
}

/* 4. Customer Reviews Section */
.reviews-section-kono-new {
  padding: 100px 0;
  background-color: #ffffff;
  overflow: hidden;
}

.reviews-header-kono-new {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 48px;
}

.slider-controls-kono-new {
  display: flex;
  gap: 12px;
}

.slider-btn-kono-new {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue);
  background-color: #ffffff;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.slider-btn-kono-new:hover:not(:disabled) {
  background-color: var(--color-blue);
  border-color: var(--color-blue);
  color: #ffffff;
}

.slider-btn-kono-new:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.slider-btn-kono-new [data-lucide] {
  width: 18px;
  height: 18px;
}

.reviews-slider-container-kono-new {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.reviews-slider-track-kono-new {
  display: flex;
  gap: 24px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.review-card-kono-new {
  width: calc((100% - 2 * 24px) / 3);
  flex-shrink: 0;
  background-color: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
  transition: transform 0.3s ease;
}
@media (max-width: 992px) {
  .review-card-kono-new {
    width: calc((100% - 1 * 24px) / 2);
  }
}

@media (max-width: 768px) {
  .review-card-kono-new {
    width: 100%;
    height: max-content;
  }
  .detail-cta-call-kono-new, .detail-cta-download-kono-new{
    padding: 10px 15px !important;
  }
}

.review-rating-kono-new {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.review-rating-kono-new [data-lucide] {
  width: 16px;
  height: 16px;
  color: #cbd5e1;
}

.review-rating-kono-new [data-lucide].fill-yellow {
  color: var(--color-yellow);
  fill: var(--color-yellow);
}

.review-text-kono-new {
  font-size: 14.5px;
  color: var(--color-text-light);
  line-height: 1.7;
  font-style: italic;
  margin: 0 0 24px 0;
  flex: 1;
}

.review-author-kono-new {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 18px;
}

.review-author-kono-new h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-blue);
  margin: 0 0 2px 0;
}

.review-author-kono-new p {
  font-size: 11.5px;
  color: var(--color-text-light);
  margin: 0;
}

/* 5. Image Gallery Section */
.gallery-section-kono-new {
  padding: 100px 0;
  background-color: #f8fafc;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.gallery-grid-kono-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .gallery-grid-kono-new {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.gallery-item-kono-new {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: block;
}

.gallery-item-kono-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item-kono-new:hover img {
  transform: scale(1.06);
}

.gallery-overlay-kono-new {
  position: absolute;
  inset: 0;
  background-color: rgba(11, 47, 97, 0.75);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 1;
  transition: background-color 0.3s ease;
}

.gallery-item-kono-new:hover .gallery-overlay-kono-new {
  background-color: rgba(11, 47, 97, 0.85);
}

.gallery-overlay-kono-new span {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
}

/* 6. Call to Action (CTA) Section */
.cta-section-kono-new {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--color-blue) 0%, #061937 100%);
  color: #ffffff;
  overflow: hidden;
}

.cta-section-kono-new::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 90%, rgba(245, 166, 35, 0.1) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.cta-container-kono-new {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.cta-content-kono-new h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin: 0 0 18px 0;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-content-kono-new p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  margin: 0 0 40px 0;
}

.cta-actions-kono-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

@media (min-width: 576px) {
  .cta-actions-kono-new {
    flex-direction: row;
  }
}

.cta-btn-primary-kono-new {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 54px;
  padding: 0 32px;
  background-color: var(--color-yellow);
  color: var(--color-blue);
  font-weight: 700;
  font-size: 14.5px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.cta-btn-primary-kono-new:hover {
  background-color: #e09310;
}

.cta-btn-outline-kono-new {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 54px;
  padding: 0 32px;
  background-color: transparent;
  color: #ffffff;
  font-weight: 700;
  font-size: 14.5px;
  border: 2px solid var(--color-yellow);
  border-radius: var(--radius-md);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-btn-outline-kono-new:hover {
  background-color: var(--color-yellow);
  color: var(--color-blue);
}

/* ==========================================================================
   PRODUCT LIST PAGE STYLES
   ========================================================================== */

/* Page Banner */
.products-banner-kono-new {
  position: relative;
  background-color: var(--color-blue);
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
  overflow: hidden;
}

.products-banner-kono-new::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(245, 166, 35, 0.15) 0%, transparent 50%);
  z-index: 1;
}

.products-banner-content-kono-new {
  position: relative;
  z-index: 10;
  max-width: 600px;
  margin-inline: auto;
}

.products-banner-kono-new h1 {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px 0;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.products-banner-kono-new p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.products-breadcrumb-kono-new {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

.products-breadcrumb-kono-new a {
  color: rgba(255, 255, 255, 0.8);
}

.products-breadcrumb-kono-new a:hover {
  color: var(--color-yellow);
}

/* Layout */
.products-layout-kono-new {
  padding: 60px 0;
  background-color: #f9fafb;
}

.products-layout-inner-kono-new {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 992px) {
  .products-layout-inner-kono-new {
    grid-template-columns: 280px 1fr;
  }
}

/* Sidebar Filters */
.products-sidebar-kono-new {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.filter-card-kono-new {
  background: #ffffff;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
}

.filter-card-kono-new h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-blue);
  margin: 0 0 16px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(11, 47, 97, 0.08);
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-card-kono-new h3 [data-lucide] {
  width: 16px;
  height: 16px;
  color: var(--color-yellow);
}

.search-bar-kono-new {
  display: flex;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: #ffffff;
}

.search-bar-kono-new input {
  flex: 1;
  padding: 10px 14px;
  border: none;
  font-size: 13.5px;
  color: var(--color-text);
  outline: none;
}

.search-bar-kono-new button {
  padding: 0 14px;
  background-color: var(--color-blue);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-18px);
}

.search-bar-kono-new button:hover {
  background-color: #0d3873;
}

.search-bar-kono-new button [data-lucide] {
  width: 16px;
  height: 16px;
}

.filter-list-kono-new {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-list-kono-new li {
  margin: 0;
}

.filter-list-kono-new a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  color: var(--color-text-light);
  font-weight: 500;
}

.filter-list-kono-new a:hover {
  background-color: #f9fafb;
  color: var(--color-blue);
}

.filter-list-kono-new a.active {
  background-color: rgba(11, 47, 97, 0.05);
  color: var(--color-blue);
  font-weight: 700;
}

.filter-count-kono-new {
  font-size: 11px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.4);
  background-color: rgba(0, 0, 0, 0.04);
  padding: 2px 6px;
  border-radius: 20px;
}

/* Grid & Cards */
.products-content-kono-new {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.products-grid-kono-new {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.product-card-item-kono-new {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.product-card-item-kono-new:hover {
  border-color: rgba(245, 166, 35, 0.3);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.product-card-img-wrapper-kono-new {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #f9fafb;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.product-card-img-wrapper-kono-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card-item-kono-new:hover .product-card-img-wrapper-kono-new img {
  transform: scale(1.04);
}

/* Hover overlay on image */
.product-card-hover-overlay-kono-new {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 47, 97, 0.82) 0%, rgba(11, 47, 97, 0.4) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 20px 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.product-card-item-kono-new:hover .product-card-hover-overlay-kono-new {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.product-card-item-kono-new:hover .product-card-img-wrapper-kono-new img {
  transform: scale(1.07);
}

.product-card-hover-overlay-kono-new .btn-card-primary-kono-new,
.product-card-hover-overlay-kono-new .btn-card-secondary-kono-new {
  width: 100%;
  justify-content: center;
}

/* Title link inside card */
.product-card-title-kono-new a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.product-card-title-kono-new a:hover {
  color: var(--color-yellow);
}

.product-card-badge-kono-new {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--color-blue);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card-badge-kono-new.hot-kono-new {
  background-color: var(--color-yellow);
  color: var(--color-blue);
}

.product-card-info-kono-new {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-title-kono-new {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-blue);
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.product-card-specs-kono-new {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-card-specs-kono-new li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--color-text-light);
}

.product-card-specs-kono-new [data-lucide] {
  width: 14px;
  height: 14px;
  color: var(--color-yellow);
}

.product-card-footer-kono-new {
  margin-top: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-card-price-kono-new {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-yellow);
  white-space: nowrap;
  flex-shrink: 0;
}

.product-card-actions-kono-new {
  display: flex;
  gap: 8px;
  flex: 1;
}

.btn-card-primary-kono-new {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  background-color: var(--color-blue);
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(11, 47, 97, 0.15);
  transition: background-color 0.2s ease;
}

.btn-card-primary-kono-new:hover {
  background-color: #0d3873;
}

.btn-card-secondary-kono-new {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 36px;
  padding: 0 12px;
  border-radius: 4px;
  border: 1px solid var(--color-blue);
  color: var(--color-blue);
  background-color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-card-secondary-kono-new:hover {
  background-color: var(--color-blue);
  color: #ffffff;
  border-color: var(--color-blue);
}

.btn-card-secondary-kono-new [data-lucide] {
  width: 14px;
  height: 14px;
}

/* ==========================================================================
   PRODUCT DETAIL PAGE STYLES
   ========================================================================== */

/* Main Layout Grid for Product Detail Page */
@media (min-width: 992px) {
  .detail-main-kono-new {
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    padding: 40px;
  }
}

@media (max-width: 991px) {
  .detail-main-kono-new {
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 24px;
  }
}

.detail-content-grid-kono-new {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .detail-content-grid-kono-new {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* Image Box and Lightbox zoom */
.detail-image-box-kono-new {
  position: relative;
}

.detail-image-box-kono-new .gallery-item-kono-new {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background-color: #f9fafb;
  aspect-ratio: 1 / 1;
  position: relative;
}

.detail-image-box-kono-new .gallery-item-kono-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.detail-image-box-kono-new .gallery-item-kono-new:hover img {
  transform: scale(1.05);
}

.gallery-zoom-badge-kono-new {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(11, 47, 97, 0.85);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.detail-image-box-kono-new .gallery-item-kono-new:hover .gallery-zoom-badge-kono-new {
  transform: scale(1.1);
  background-color: var(--color-blue);
}

.gallery-zoom-badge-kono-new [data-lucide] {
  width: 18px;
  height: 18px;
}

/* Info Box */
.detail-info-box-kono-new {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-info-box-kono-new h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-blue);
  margin: 0;
  line-height: 1.35;
}

/* Specs list in Detail */
.product-detail-specs-kono-new {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-detail-specs-kono-new li {
  font-size: 14.5px;
  color: var(--color-text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.product-detail-specs-kono-new li [data-lucide] {
  width: 18px;
  height: 18px;
  color: var(--color-yellow);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Actions */
.product-detail-footer-actions-kono-new {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

@media (min-width: 480px) {
  .product-detail-footer-actions-kono-new {
    flex-direction: row;
  }
}

/* CTA Buttons specifically for Product Detail page */
.detail-cta-call-kono-new,
.detail-cta-download-kono-new {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 16px;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.detail-cta-call-kono-new {
  background-color: var(--color-yellow);
  color: var(--color-blue);
  border: 2px solid var(--color-yellow);
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.25);
}

.detail-cta-call-kono-new:hover {
  background-color: #e09310;
  border-color: #e09310;
}

.detail-cta-download-kono-new {
  background-color: #ffffff;
  color: var(--color-blue);
  border: 2px solid var(--color-blue);
}

.detail-cta-download-kono-new:hover {
  background-color: var(--color-blue);
  color: #ffffff;
}

.detail-cta-call-kono-new [data-lucide],
.detail-cta-download-kono-new [data-lucide] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Tabs & Sections in Detail */
.detail-sections-container-kono-new {
  display: flex;
  flex-direction: column;
  gap: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 40px;
}
.detail-sections-container-kono-new img{
  margin-bottom: 15px;
  border-radius: 5px;
}
.detail-sections-container-kono-new table{
  width: 100%;
}
.detail-sections-container-kono-new table,
.detail-sections-container-kono-new td,
.detail-sections-container-kono-new th{
  border: 1.5px solid rgba(11, 47, 97, 0.08);
}
.detail-sections-container-kono-new td,
.detail-sections-container-kono-new th{
  padding: 10px;
}
@media screen and (max-width: 768px){
  .detail-sections-container-kono-new td,
  .detail-sections-container-kono-new th{
    font-size: 10px;
    padding: 5px;
  }
}
.detail-sections-container-kono-new  table{
  border-collapse: collapse;
}
.detail-tab-section-kono-new h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-blue);
  margin: 15px 0px;
  position: relative;
  padding-left: 14px;
}

.detail-tab-section-kono-new h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background-color: var(--color-yellow);
  border-radius: 2px;
}

.detail-tab-section-kono-new p {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin: 0;
}

/* Specs Table styling */
.table-responsive-kono-new {
  overflow-x: auto;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  background-color: #ffffff;
}

.specs-table-kono-new {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
  min-width: 600px;
}

.specs-table-kono-new th,
.specs-table-kono-new td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.specs-table-kono-new th {
  background-color: #f8fafc;
  font-weight: 700;
  color: var(--color-blue);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.specs-table-kono-new tr:last-child td {
  border-bottom: none;
}

.specs-table-kono-new tr:nth-child(even) {
  background-color: #fcfdfe;
}

.font-bold-kono-new {
  font-weight: 700;
  color: var(--color-blue);
}

/* Sidebar Related Products Thumbnail List */
.related-products-sidebar-kono-new {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.related-sidebar-item-kono-new {
  display: flex;
  gap: 12px;
  padding: 10px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.related-sidebar-item-kono-new:hover {
  background-color: #f9fafb;
  border-color: rgba(0, 0, 0, 0.04);
}

.related-sidebar-item-kono-new img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  background-color: #f9fafb;
  flex-shrink: 0;
}

.related-sidebar-info-kono-new {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.related-sidebar-info-kono-new h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-blue);
  margin: 0;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-sidebar-info-kono-new span {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-yellow);
  display: inline-flex;
  align-items: center;
  gap: 2px;
  text-transform: uppercase;
}

.related-sidebar-info-kono-new span [data-lucide] {
  width: 10px;
  height: 10px;
  transition: transform 0.2s ease;
}
.reviews-slider-container-kono-new,
.reviews-slider-track-kono-new,
.review-card-kono-new {
  user-select: none;
  -webkit-user-select: none;
}
.product-detail-price-kono-new{
  font-weight: 600;
  font-size: 20px;
}

.default-page-kono-new {
    padding: 80px 0;
    background: #fff;
}

.page-content-wrapper-kono-new {
    max-width: 900px;
    margin: 0 auto;
}

.page-header-kono-new {
    margin-bottom: 40px;
    text-align: center;
}

.page-title-kono-new {
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.2;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.page-content-kono-new {
    color: #374151;
    font-size: 17px;
    line-height: 1.9;
}

.page-content-kono-new > *:first-child {
    margin-top: 0;
}

.page-content-kono-new > *:last-child {
    margin-bottom: 0;
}

.page-content-kono-new h1,
.page-content-kono-new h2,
.page-content-kono-new h3,
.page-content-kono-new h4,
.page-content-kono-new h5,
.page-content-kono-new h6 {
    color: #111827;
    line-height: 1.3;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-content-kono-new h2 {
    font-size: 32px;
}

.page-content-kono-new h3 {
    font-size: 26px;
}

.page-content-kono-new p {
    margin-bottom: 20px;
}

.page-content-kono-new ul,
.page-content-kono-new ol {
    padding-left: 24px;
    margin-bottom: 24px;
}

.page-content-kono-new li {
    margin-bottom: 10px;
}

.page-content-kono-new a {
    color: #c59d5f;
    text-decoration: none;
    transition: 0.3s ease;
}

.page-content-kono-new a:hover {
    opacity: 0.7;
}

.page-content-kono-new img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 24px 0;
}

.page-content-kono-new figure {
    margin: 32px 0;
}

.page-content-kono-new blockquote {
    border-left: 4px solid #c59d5f;
    padding-left: 20px;
    margin: 32px 0;
    color: #6b7280;
    font-style: italic;
}

.page-content-kono-new table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
}

.page-content-kono-new table th,
.page-content-kono-new table td {
    border: 1px solid #e5e7eb;
    padding: 14px;
    text-align: left;
}

.page-content-kono-new table th {
    background: #f9fafb;
    font-weight: 600;
}

@media (max-width: 767px) {
    .default-page-kono-new {
        padding: 50px 0;
    }

    .page-content-kono-new {
        font-size: 16px;
        line-height: 1.8;
    }

    .page-title-kono-new {
        font-size: 28px;
    }
    .intro-section-kono-new, .featured-products-kono-new, .reviews-section-kono-new,.gallery-section-kono-new{
      padding: 50px 0px;
    }
    .review-text-kono-new{
      flex: unset;
    }
}

.detail-tab-section-kono-new h2{
  font-size: 20px;
}