/*
Theme Name: LivingCool
Theme URI: https://livingcool.co.id
Author: Hakam
Author URI: https://livingcool.co.id
Description: Modern e-commerce theme for LivingCool - AC, cooling systems, and monitoring equipment. Features WooCommerce integration, responsive design, and customizable product displays.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: livingcool
Tags: e-commerce, woocommerce, responsive-design, custom-header, custom-menu, featured-images, threaded-comments, translation-ready
*/

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600;700&display=swap');

/* === Global Reset === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #1B517C;
  --primary-green: #7CB342;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --text-dark: #333333;
  --text-light: #666666;
  --border-light: #e5e7eb;
}

body {
  font-family: "Lexend", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #ffffff;
  margin: 0;
  padding: 0;
}

/* === Container Layout === */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 30px;
}

/* === HEADER (Clean Figma Design) === */
.site-header {
  background: #FFFFFF;
  padding: 0;
  position: relative;
  z-index: 100;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  height: 56px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #E2E5F1;
  box-shadow: 0 4px 20px rgba(94, 103, 116, 0.1);
}

.header-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 40px;
  height: 100%;
}

/* Logo */
.header-logo {
  display: flex;
  flex-direction: column;
  width: fit-content;
  max-width: 112px;
  height: 50px;
  padding: 12px 0;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.header-logo a {
  text-decoration: none;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.header-logo .custom-logo {
  height: auto;
  width: auto;
  max-width: 112px;
  max-height: 50px;
  object-fit: contain;
}

.logo-living {
  color: #7CB342;
}

.logo-cool {
  color: #1B517C;
}

/* Navigation */
.header-nav {
  display: flex;
  justify-content: space-between;
  flex: 1;
  height: 56px;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 14px;
  align-items: center;
  height: 100%;
}

.nav-menu li a {
  text-decoration: none;
  color: #333333;
  font-family: "Lexend", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: regular;
  line-height: 125%;
  letter-spacing: 0%;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

/* Individual menu item widths - FIXED: responsive widths */
.nav-menu li a {
  width: auto;
  padding: 0 16px;
  white-space: nowrap;
}

.nav-menu li a:hover {
  color: #1B517C;
}

.nav-menu li a.active {
  color: var(--primary-green);
  position: relative;
}

.nav-menu li a.active::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-green);
  border-radius: 2px;
}

/* Add hover state underline for better UX */
.nav-menu li a:hover::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-blue);
  border-radius: 2px;
  opacity: 0.6;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.search-btn,
.cart-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  color: #333333;
  transition: background-color 0.2s ease;
}

.search-btn:hover,
.cart-btn:hover {
  background-color: #f5f5f5;
}

.search-btn:focus,
.cart-btn:focus {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

.search-btn:active,
.cart-btn:active {
  background-color: #e5e5e5;
  transform: scale(0.98);
}

/* === HERO BANNER === */
.hero-banner {
  min-height: 500px;
  color: white;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding-top: 0;
}

.hero-slider {
  position: relative;
  width: 100%;
  max-width: 1440px;
  height: 500px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 1440px;
  height: 500px;
  display: flex;
  align-items: center;
  padding: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 auto;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #212C44 0%, #212C44 0%, transparent 70%);
  z-index: 1;
}

.hero-content {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-text-container {
  width: 100%;
  max-width: 588px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-title {
  font-size: 56px!important;
  font-weight: 700 !important;
  line-height: 100%!important;
  margin-bottom: 4px !important;
  margin-top: -150px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: left !important;
}

.hero-subtitle {
  font-size: 16px !important;
  line-height: 150% !important;
  margin-bottom: 32px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  opacity: 0.9 !important;
  max-width: 600px !important;
  text-align: left !important;
}

.hero-cta {
  background: #FFFFFF;
  color: var(--primary-blue);
  padding: 11px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 124px;
  height: 40px;
  gap: 10px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.hero-cta:focus {
  outline: 3px solid var(--primary-blue);
  outline-offset: 2px;
}

.hero-cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.hero-cta:disabled,
.hero-cta[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Individual slide backgrounds */
.hero-slide-1 {
  background-image: url('./assets/images/ac-livingcool.jpg');
}

.hero-slide-2 {
  background-image: url('./assets/images/ac-livingcool.jpg');
}

.hero-slide-3 {
  background-image: url('./assets/images/ac-livingcool.jpg');
}

/* Navigation Arrows */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 24px;
  padding: 15px 20px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.hero-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.hero-prev {
  left: 20px;
}

.hero-next {
  right: 20px;
}

/* Dots Indicator */
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero-dot.active,
.hero-dot:hover {
  background: white;
}

/* === FEATURES SECTION === */
.features-section {
  padding: 40px 0;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 326px);
  gap: 20px;
  justify-content: center;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: white;
  border-radius: 10px;
  width: 100%;
  max-width: 326px;
  min-height: 64px;
  height: auto;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-icon img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.feature-item:nth-child(1) .feature-icon {
  color: var(--primary-green);
}

.feature-item:nth-child(2) .feature-icon {
  color: var(--primary-blue);
}

.feature-item:nth-child(3) .feature-icon {
  color: #FF9800;
}

.feature-item:nth-child(4) .feature-icon {
  color: #9C27B0;
}

.feature-item h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.3;
}

/* === PRODUCTS SALE === */
.products-sale {
  width: 100%;
  max-width: 1440px;
  height: auto;
  min-height: 469px;
  background: white;
  display: flex;
  flex-direction: column;
  overflow: visible;
  position: relative;
  margin: 0 auto;
}

.products-sale .container {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  padding-left: 30px;
  padding-right: 30px;
  overflow: visible;
  gap: 14px;
  margin: 0 auto;
}

/* Responsive grid untuk Produk Sale */
.products-sale .sale-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  overflow-x: visible;
  overflow-y: visible;
  padding: 10px 0;
  margin: 0 auto;
  justify-content: flex-start;
}

/* Scrollbar styling untuk produk sale */
.products-sale .sale-grid::-webkit-scrollbar {
  height: 8px;
}

.products-sale .sale-grid::-webkit-scrollbar-track {
  background: white;
  border-radius: 4px;
}

.products-sale .sale-grid::-webkit-scrollbar-thumb {
  background: white;
  border-radius: 4px;
}

.products-sale .sale-grid::-webkit-scrollbar-thumb:hover {
  background: white;
}

.section-title {
  font-family: "Lexend", sans-serif;
  font-size: 26px;
  font-weight: 500;
  font-style: medium;
  line-height: 125%;
  letter-spacing: 0%;
  width: fit-content;
  min-width: 155px;
  height: auto;
  min-height: 33px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1B517C;
  white-space: nowrap;
}

.check-icon {
  font-size: 1.2rem;
}

.check-icon img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  vertical-align: middle;
}

/* Generic scrollbar styling */
.products-grid::-webkit-scrollbar {
  height: 8px;
}

.products-grid::-webkit-scrollbar-track {
  background: white;
  border-radius: 4px;
}

.products-grid::-webkit-scrollbar-thumb {
  background: white;
  border-radius: 4px;
}

.products-grid::-webkit-scrollbar-thumb:hover {
  background: white
}

/* Sale card untuk Produk Sale - 6 cards per row */
.sale-card {
  background: #FFFFFF;
  border-radius: 10px;
  flex: 0 0 calc(16.666% - 17px);
  min-width: 200px;
  max-width: 240px;
  width: 100%;
  height: 368px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sale-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.product-badge {
  position: absolute;
  top: 8px;
  left: -5px;
  background-image: url('./assets/images/badge.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  color: white;
  width: 36px;
  height: 25px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 2px;
  font-size: 12px;
  font-family: 'Lexend', sans-serif;
  font-weight: 400;
  line-height: 125%;
  z-index: 2;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 10px;
  border-bottom: none;
}

.sale-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 10px;
  border-bottom: none;
  margin-bottom: 10px;
}

.sale-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #F5F5F5;
}

.sale-info {
  padding: 0px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 114px;
  flex: 1;
  justify-content: space-between;
}

.sale-info .product-brand {
  margin-bottom: 2px;
  height: 15px;
  display: flex;
  align-items: center;
}

.sale-info h3 {
  font-family: 'Lexend', sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 125%;
  letter-spacing: 0%;
  color: #191919;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  margin-bottom: 0;
  max-height: 40px !important;
  min-height: 40px !important;
  height: 40px !important;
}

.sale-info .product-capacity {
  margin-bottom: 4px;
  height: 20px;
  display: flex;
  align-items: center;
}

.sale-info .product-channel {
  margin-bottom: 4px;
  height: 20px;
  display: flex;
  align-items: center;
}

.sale-info .product-resolution {
  margin-bottom: 4px;
  height: 20px;
  display: flex;
  align-items: center;
}

.sale-info .resolution-wrapper {
  height: 20px;
  display: flex;
  align-items: center;
  min-height: 20px !important;
}

.sale-info .product-price {
  margin-top: auto;
}

.sale-info .price-current {
  font-family: 'Lexend', sans-serif;
  font-size: 14px !important;
  font-weight: 600;
  color: #dc2626;
  line-height: 125%;
}

.popular-price {
  margin-top: auto;
  font-family: 'Lexend', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
}

.popular-price span {
  color: #dc2626;
}

.product-link {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
}

.product-link:hover {
  text-decoration: none;
  color: inherit;
}

.product-info {
  padding: 0px 16px 0px 0;
  display: flex;
  flex-direction: column;
  width: 240px;
  height: 114px;
  justify-content: space-between;
}

.product-info .product-brand {
  margin-bottom: 2px;
}

.product-info h3 {
  font-family: 'Lexend', sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 125%;
  letter-spacing: 0%;
  color: #191919;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  flex: none !important;
  margin-bottom: 4px;
  max-height: 40px !important;
  min-height: 40px !important;
  height: 40px !important;
}

.product-info .product-capacity {
  margin-bottom: 4px;
}

.product-info .product-price {
  margin-top: auto;
}

.product-price {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

/* Strikethrough price styling - consolidated */
.price-original,
.products-sale .price-original,
.product-card .price-original,
.sale-info .price-original {
  font-family: 'Lexend', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #767676;
  text-decoration: line-through;
  display: inline;
}

/* Ensure sale products title is limited to 2 lines */
.products-sale .product-info h3 {
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

/* === FEATURED PRODUCTS === */
.featured-products {
  width: 100%;
  max-width: 1440px;
  height: auto;
  min-height: 185px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

.featured-products .container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(280px, 1fr));
  gap: 24px;
  width: 100%;
  justify-content: center;
  max-width: 1440px;
  margin: 0 auto;
}

/* ====== HOMEPAGE FEATURED PRODUCT CARDS ====== */
.featured-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  height: 121px;
  width: 100%;
  max-width: 326px;
  box-sizing: border-box;
  background-size: auto 100%, contain;
  background-position: center, right center;
  background-repeat: no-repeat, no-repeat;
}

.featured-item--blue {
  background: radial-gradient(circle 50px at 70% center, #5A69C0 0%, #273694 100%);
}

.featured-item--blue::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 70px;
  border-radius: 8px 0 0 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(39,54,148,1) 0%, rgba(39,54,148,1) 30%, rgba(39,54,148,0.3) 70%, rgba(39,54,148,0) 100%);
  display: block;
}

.featured-item--blue .featured-image {
  width: 100%;
  max-width: 326px;
  aspect-ratio: 326 / 121;
  overflow: hidden;
}

.featured-item--blue .featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0 !important;
  right: 0 !important;
  transform: none !important;
}

.featured-item--green {
  background: radial-gradient(circle, #CDDEB6 0%, #F8FFEF 100%);
}

.featured-item--green .featured-image {
  width: 100%;
  max-width: 326px;
  aspect-ratio: 326 / 121;
  overflow: hidden;
}

.featured-item--green .featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0 !important;
  right: 0 !important;
  transform: none !important;
}

.featured-item--teal {
  background: radial-gradient(circle 50px at 70% center, #83CBD4 0%, #0592A4 100%);
}

.featured-item--teal::before {
  display: none !important;
}

.featured-item--teal::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 70px;
  border-radius: 8px 0 0 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(5,146,164,1) 0%, rgba(5,146,164,1) 30%, rgba(5,146,164,0.3) 70%, rgba(5,146,164,0) 100%);
  display: block;
}

.featured-item--teal .featured-image {
  width: 325px;
  height: 325px;
}

.featured-item--teal .featured-image img {
  width: 325px !important;
  height: 325px !important;
  top: 0 !important;
  right: 0 !important;
  transform: none !important;
}

.featured-item--orange {
  background: radial-gradient(circle 50px at 65% 60%, #D9CBB5 0%, #D7952C 100%);
}

.featured-item--orange::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 70px;
  border-radius: 8px 0 0 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(215,149,44,1) 0%, rgba(215,149,44,1) 30%, rgba(215,149,44,0.3) 70%, rgba(215,149,44,0) 100%);
  display: block;
}

.featured-item--orange .featured-image {
  width: 245px;
  height: 245px;
}

.featured-item--orange .featured-image img {
  width: 245px !important;
  height: 245px !important;
  top: 0 !important;
  right: 20px !important;
  transform: none !important;
}

.featured-item--red {
  background: radial-gradient(circle 50px at 65% 60%, #F5AE92 0%, #EE571B 100%);
}

.featured-item--red::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 70px;
  border-radius: 8px 0 0 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(238,87,27,1) 0%, rgba(238,87,27,1) 30%, rgba(238,87,27,0.3) 70%, rgba(238,87,27,0) 100%);
  display: block;
}

.featured-item--red .featured-image {
  width: 245px;
  height: 245px;
}

.featured-item--red .featured-image img {
  width: 245px !important;
  height: 245px !important;
  top: 0 !important;
  right: 20px !important;
  transform: none !important;
}

/* Homepage featured content styling */
.featured-item .featured-content {
  flex: 1;
  z-index: 2;
  /* max-width: 200px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: -10px;
  position: relative;
  top: 0px;
}

.featured-item .featured-content h3 {
  font-family: 'Lexend', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 125%;
  margin-left: 10px;
  color: #FFFFFF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  top: -20px;
}

.featured-item .featured-price {
  font-family: 'Lexend', sans-serif;
  font-size: 10px;
  font-weight: 300;
  line-height: 106%;
  letter-spacing: 0%;
  color: #FFFFFF;
  margin-left: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  top: -20px;
}

.featured-price strong {
  font-family: 'Lexend', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0%;
  color: #FFFFFF;
}

.featured-item .featured-cta {
  font-family: 'Lexend', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 125%;
  letter-spacing: 0%;
  color: #FFFFFF;
  text-decoration: none;
  margin-left: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 150px;
  display: inline-block;
  position: relative;
  top: 10px;
}

.featured-image {
  flex-shrink: 0;
  z-index: 2;
  width: 147px;
  height: 147px;
  position: relative;
}

.featured-image img {
  position: absolute;
  top: 20px;
  right: 0;
  transform: none;
  width: 147px !important;
  height: 147px !important;
  object-fit: contain;

}

.featured-bg-image {
  position: absolute;

  right: 0;
  width: 113px;
  height: 113px;
  z-index: 1;
  overflow: hidden;
}

.featured-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  mix-blend-mode: multiply;
}

.featured-unit-image {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  width: 107px;
  height: 107px;
  z-index: 3;
  overflow: hidden;
  border-radius: 10px;
}

.featured-unit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CCTV-specific sizing */
.featured-item--orange .featured-unit-image,
.featured-item--red .featured-unit-image {
  width: 70px;
  height: 70px;
  top: 60%;
  right: 55px;
}

/* Commercial building specific sizing */
.featured-item--blue .featured-bg-image,
.featured-item--red .featured-bg-image {
  width: 113px !important;
  height: 113px !important;
  right: -15px !important;
  top: 4px !important;
}

.featured-item--blue .featured-bg-image img,
.featured-item--red .featured-bg-image img {
  object-fit: contain;
}

/* === AC CAPACITY === */
.ac-capacity {
  width: 100%;
  max-width: 1440px;
  height: auto;
  min-height: 145px;
  margin: 0 auto;
  padding: 20px 32px;
  background: white;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ac-capacity .container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.capacity-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  overflow-x: visible;
}

.capacity-pill {
  background: white url('./assets/images/background-pk.png') no-repeat center;
  background-size: cover;
  color: var(--text-dark);
  padding: 14px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #E2E5F1;
  min-width: 140px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

.pk-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.capacity-pill:hover,
.capacity-pill.active {
  background: white url('./assets/images/background-pk.png') no-repeat center;
  background-size: cover;
  color: var(--text-dark);
  border-color: #E2E5F1;
  transform: translateY(-1px);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* === CHANNEL CCTV === */
.channel-cctv {
  width: 100%;
  max-width: 1440px;
  height: auto;
  min-height: 160px;
  margin: 0 auto;
  padding: 20px 32px;

  display: flex;
  flex-direction: column;
  gap: 20px;
}

.channel-cctv .container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.channel-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  overflow-x: visible;
}

.channel-pill {
  background: white;
  color: #191919;
  padding: 14px 24px;
  border-radius: 8px;
  font-family: 'Lexend', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
  letter-spacing: 0%;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #E2E5F1;
  min-width: 180px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

.cctv-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.channel-pill:hover,
.channel-pill.active {
  background: white;
  color: #191919;
  border-color: #E2E5F1;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-decoration: none;
}

/* === POPULAR PRODUCTS === */
.popular-products,
.popular-cooling-products,
.popular-security-products {
  width: 100%;
  max-width: 1440px;
  height: auto;
  min-height: 469px;
  background: white;
  display: flex;
  flex-direction: column;
  overflow: visible;
  position: relative;
  margin: 0 auto;
}

/* Ensure popular products title is limited to 2 lines */
.popular-products .popular-info h3 {
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.popular-products .container,
.popular-cooling-products .container,
.popular-security-products .container {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  padding-left: 30px;
  padding-right: 30px;
  overflow: visible;
  gap: 14px;
  margin: 0 auto;
}

.popular-products .sale-grid,
.popular-cooling-products .sale-grid,
.popular-security-products .sale-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  overflow-x: visible;
  overflow-y: visible;
  padding: 10px 0;
  justify-content: flex-start;
}

.popular-products .sale-grid::-webkit-scrollbar,
.popular-cooling-products .sale-grid::-webkit-scrollbar,
.popular-security-products .sale-grid::-webkit-scrollbar {
  height: 0px; /* Hide scrollbar completely */
  width: 0px;
}

.popular-products .sale-grid::-webkit-scrollbar-track,
.popular-cooling-products .sale-grid::-webkit-scrollbar-track,
.popular-security-products .sale-grid::-webkit-scrollbar-track {
  background: transparent;
}

.popular-products .sale-grid::-webkit-scrollbar-thumb,
.popular-cooling-products .sale-grid::-webkit-scrollbar-thumb,
.popular-security-products .sale-grid::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 4px;
}

.popular-products .sale-grid::-webkit-scrollbar-thumb:hover,
.popular-cooling-products .sale-grid::-webkit-scrollbar-thumb:hover,
.popular-security-products .sale-grid::-webkit-scrollbar-thumb:hover {
  background: transparent;
}

/* Removed hover effect for popular cards */

/* Main price current styling - consolidated from duplicates */
.price-current {
  font-family: 'Lexend', sans-serif;
  font-size: 22px;
  font-weight: 500;
  font-style: normal;
  line-height: 125%;
  letter-spacing: 0%;
  color: #FF3F62;
}

/* Price span for larger numbers (like 3.319.000 part) */
.price-current span,
.current-price span {
  font-family: 'Lexend', sans-serif;
  font-size: 22px;
  font-weight: 600;
  font-style: normal;
  line-height: 125%;
  letter-spacing: 0%;
  color: #dc3545;
}

.popular-price span {
  font-family: 'Lexend', sans-serif;
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  line-height: 125%;
  letter-spacing: 0%;
  color: #191919;
}

/* ========== PRODUCT CATEGORIES ========== */
.product-categories-section {

  width: 100%;
  max-width: 1440px;
  height: auto;
  min-height: 160px;
  padding: 22px 32px 22px 32px;
  margin: 0 auto;
}

/* Make it responsive on mobile */
@media (max-width: 480px) {
  .product-categories-section {
    width: 100% !important;
    height: auto !important;
    padding: 20px 0 !important;
  }
  
  /* Monitoring page mobile layout */
  .monitoring-security-page {
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 0 !important;
    overflow-x: hidden !important;
  }

  /* Homepage and Product detail page mobile layout */
  .homepage,
  .product-detail-page {
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 0 !important;
    overflow-x: hidden !important;
  }
}

/* Homepage categories grid - Desktop */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 335px);
  gap: 16px;
  width: 100%;
  justify-content: center;
  margin: 0 auto;
}

/* Desktop specific (to be sure desktop keeps 4 columns) */
@media (min-width: 769px) {
  .categories-grid {
    grid-template-columns: repeat(4, 335px);
    gap: 16px;
  }
}

/* ====== HOMEPAGE CATEGORY CARD ====== */
.homepage .category-card {
  background: white;
  border-radius: 8px;
  padding: 20px 16px;
  text-align: center;
  border: 1px solid #E5E7EB;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 335px;
  height: 116px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.homepage .category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  text-decoration: none;
}

.homepage .category-icon {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.homepage .category-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.homepage .category-card h3 {
  font-family: 'Lexend', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: #191919;
  margin: 0;
  white-space: nowrap;
}

/* Mobile: up to 480px */
@media (max-width: 480px) {
  .categories-grid {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-around !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 !important;
    width: 375 !important;
    flex-wrap: nowrap !important;
  }
  
  .category-card {
    width: auto !important;
    height: 100px !important;
    background: white !important;
    border: 1px solid #E5E7EB !important;
    border-radius: 8px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 8px 4px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }
  
  .category-card .category-icon {
    margin-bottom: 4px !important;
  }
  
  .category-card .category-icon img {
    width: 38px !important;
    height: 38px !important;
  }
  
  .category-card h3 {
    font-size: 12px !important;
    font-weight: 400 !important;
    margin: 0 !important;
    line-height: 100% !important;
    color: #191919 !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

/* === MOBILE BRANDS LAYOUT === */
@media (max-width: 480px) {
  /* Override brands section for mobile */
  .brands-section {
    width: 100% !important;
    height: auto !important;
    padding: 20px 16px !important;
  }
  
  .mobile-brands-title {
    font-size: 16px !important;
    font-weight: 600 !important;
    text-align: center !important;
    margin-bottom: 20px !important;
    color: #333 !important;
  }
  
  /* AC Brands Banner */
  .mobile-ac-banner {
    background: radial-gradient(circle 120px at center center, #488ABF 0%, #16588D 100%) !important;
    width: 343px !important;
    height: 100px !important;
    border-radius: 6px !important;
    padding: 20px 16px !important;
    margin-bottom: 16px !important;
    color: white !important;
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
  
  .mobile-ac-banner .banner-content {
    flex: 1 !important;
  }
  
  .mobile-ac-banner .banner-image {
    width: 200px !important;
    height: 150px !important;
    flex-shrink: 0 !important;
    margin-right: -15px !important;
    margin-bottom: -10px !important;
  }
  
  .mobile-ac-banner .banner-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }
  
  .mobile-ac-banner h3 {
    font-size: 14px !important;
    font-weight: 600 !important;
    margin: 0 0 8px 0 !important;
    line-height: 1.3 !important;
  }
  
  .mobile-ac-banner .banner-btn {
    background: white !important;
    color: #1e40af !important;
    padding: 6px 12px !important;
    border-radius: 6px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    border: none !important;
    margin-top: 8px !important;
  }
  
  /* AC Brand Grid */
  .mobile-ac-brands {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    margin-bottom: 16px !important;
  }
  
  .mobile-brand-card {
    background: white !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    padding: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 60px !important;
  }
  
  .mobile-brand-card img {
    max-width: 80px !important;
    max-height: 40px !important;
    object-fit: contain !important;
  }
  
  /* CCTV Brands Banner */
  .mobile-cctv-banner {
    background: radial-gradient(circle 120px at center center, #AFD67B 0%, #74A92D 100%) !important;
    width: 343px !important;
    height: 100px !important;
    border-radius: 6px !important;
    padding: 20px 16px !important;
    margin-bottom: 16px !important;
    color: white !important;
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
  
  .mobile-cctv-banner .banner-content {
    flex: 1 !important;
  }
  
  .mobile-cctv-banner .banner-image {
    width: 150px !important;
    height: 130px !important;
    flex-shrink: 0 !important;
    margin-right: -15px !important;
    margin-bottom: -5px !important;
  }
  
  .mobile-cctv-banner .banner-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }
  
  .mobile-cctv-banner h3 {
    font-size: 14px !important;
    font-weight: 600 !important;
    margin: 0 0 8px 0 !important;
    line-height: 1.3 !important;
  }
  
  .mobile-cctv-banner .banner-btn {
    background: white !important;
    color: #16a34a !important;
    padding: 6px 12px !important;
    border-radius: 6px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    border: none !important;
    margin-top: 8px !important;
  }
  
  /* CCTV Brand Grid */
  .mobile-cctv-brands {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }
  
  /* Hide desktop brands layout on mobile */
  .brands-layout,
  .brands-sidebar,
  .brands-grid-container {
    display: none !important;
  }
  
  /* === MOBILE ARTICLES AND MAPS LAYOUT === */
  /* Mobile testimonials section */
  .testimonials-section {
    padding: 20px 16px !important;
    background: #ffffff !important;
  }
  
  /* Mobile Articles Container */
  .mobile-articles-container {
    display: block !important;
    width: 100% !important;
  }
  
  /* Mobile Articles Grid */
  .mobile-articles-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    margin-bottom: 20px !important;
  }
  
  /* Mobile Article Cards */
  .mobile-article-card {
    background: white !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
  }
  
  .mobile-article-image {
    width: 100% !important;
    height: 180px !important;
    overflow: hidden !important;
  }
  
  .mobile-article-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
  
  .mobile-article-content {
    padding: 12px 16px !important;
  }
  
  .mobile-article-meta {
    font-size: 10px !important;
    color: #666 !important;
    margin-bottom: 6px !important;
    text-transform: uppercase !important;
    font-weight: 500 !important;
  }
  
  .mobile-article-title {
    font-size: 14px !important;
    font-weight: 600 !important;
    margin: 0 !important;
    line-height: 1.3 !important;
  }
  
  .mobile-article-title a {
    color: #333 !important;
    text-decoration: none !important;
  }
  
  .mobile-article-title a:hover {
    color: #16588D !important;
  }
  
  /* Mobile Maps Container */
  .mobile-maps-container {
    margin-top: 20px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    background: #f8f9fa !important;
    height: 250px !important;
    width: 100% !important;
  }
  
  .mobile-maps-container iframe {
    width: 100% !important;
    height: 250px !important;
    border: 0 !important;
    border-radius: 12px !important;
  }
  
  .mobile-maps-placeholder {
    height: 250px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f0f0f0 !important;
    border-radius: 12px !important;
  }
  
  .maps-placeholder-content {
    text-align: center !important;
    color: #666 !important;
  }
  
  .maps-placeholder-content h4 {
    margin: 0 0 8px 0 !important;
    font-size: 16px !important;
  }
  
  .maps-placeholder-content p {
    margin: 0 !important;
    font-size: 14px !important;
  }
  
  /* Hide desktop testimonials on mobile */
  .testimonials-grid,
  .map-section {
    display: none !important;
  }
  
  /* === MOBILE NEWSLETTER LAYOUT === */
  /* Mobile Newsletter Container */
  
  .mobile-newsletter-container {
    width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
  }
  
  .mobile-newsletter-banner {
    margin: 20px 0 0 0 !important;
    background: var(--primary-blue) !important;
    height: 159px !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 15px 16px !important;
    color: white !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: stretch !important;
    box-sizing: border-box !important;
  }
  
  .mobile-newsletter-content {
    margin-bottom: 8px !important;
  }
  
  .mobile-newsletter-content h3 {
    font-size: 18px !important;
    font-weight: 600 !important;
    line-height: 100% !important;
    color: white !important;
    font-family: 'Lexend', sans-serif !important;
    text-align: center !important;
    margin-bottom: 10px !important;
  }
  
  .mobile-newsletter-content p {
    font-size: 14px !important;
    margin-left: 50px !important;
    opacity: 0.9 !important;
    color: white !important;
    line-height: 100% !important;
    font-family: 'Lexend', sans-serif !important;
    font-weight: 300 !important;
    text-align: center !important;
    max-width: 242px !important;
    margin-bottom: 10px !important;
  }
  
  .mobile-newsletter-form {
    position: relative !important;
    display: block !important;
  }
  
  .mobile-newsletter-input {
    width: 100% !important;
    padding: 12px 120px 12px 16px !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    height: 48px !important;
    background: white !important;
    color: #333 !important;
    box-sizing: border-box !important;
    font-family: 'Lexend', sans-serif !important;
  }
  
  .mobile-newsletter-input::placeholder {
    color: #999 !important;
    font-size: 14px !important;
  }

  .mobile-newsletter-button {
    position: absolute !important;
    right: 4px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: var(--primary-green) !important;
    color: white !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 10px 16px !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-family: 'Lexend', sans-serif !important;
    white-space: nowrap !important;
  }

  .mobile-newsletter-button:hover {
    opacity: 0.9 !important;
  }
  
  /* Hide desktop newsletter on mobile by default */
  .newsletter-section {
    display: none !important;
  }

  /* Mobile Footer Layout */
  .mobile-footer-company {
    width: 375px !important;
    margin-left: -32px !important;
    padding: 20px !important;
  }
  

  .mobile-company-info {
    margin-bottom: 20px !important;
  }

  .mobile-footer-logo {
    margin-bottom: 12px !important;
  }

  .mobile-footer-logo-img {
    height: 32px !important;
    width: auto !important;
  }

  .mobile-company-info h4 {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #333 !important;
    margin-bottom: 6px !important;
    margin-top: 0 !important;
    font-family: 'Lexend', sans-serif !important;
  }

  .mobile-company-address {
    font-size: 12px !important;
    color: #666 !important;
    line-height: 1.4 !important;
    margin-bottom: 8px !important;
    margin-top: 0 !important;
    font-family: 'Lexend', sans-serif !important;
  }

  .mobile-google-maps {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-bottom: 20px !important;
  }

  .mobile-google-maps a {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 12px !important;
    color: #007bff !important;
    text-decoration: none !important;
    font-family: 'Lexend', sans-serif !important;
  }

  .mobile-maps-icon {
    width: 14px !important;
    height: 14px !important;
  }

  /* Mobile Footer Links Section */
  .mobile-footer-links {
    display: block !important;
    margin-bottom: 20px !important;
  }

  .mobile-footer-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 16px 0 !important;
    cursor: pointer !important;
    background: none !important;
    border: none !important;
    outline: none !important;
    width: 100% !important;
    text-align: left !important;
  }

  .mobile-footer-products,
  .mobile-footer-cooling,
  .mobile-footer-about {
    border-bottom: 1px solid #eee !important;
    margin-bottom: 0 !important;
  }

  .mobile-footer-products h4,
  .mobile-footer-cooling h4,
  .mobile-footer-about h4 {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #333 !important;
    margin: 0 !important;
    font-family: 'Lexend', sans-serif !important;
  }

  .mobile-contact-header {
    padding: 16px 0 !important;
    margin-bottom: 0 !important;
  }

  .mobile-contact-header h4 {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #333 !important;
    margin: 0 !important;
    font-family: 'Lexend', sans-serif !important;
  }

  .mobile-footer-arrow {
    display: flex !important;
    align-items: center !important;
    transition: transform 0.3s ease !important;
    color: #333 !important;
  }

  .mobile-footer-submenu {
    display: none;
    padding: 0 0 16px 0 !important;
    margin: 0 !important;
    list-style: none !important;
  }
  .mobile-footer-submenu.show {
    display: block !important;
  }

  .mobile-footer-submenu li {
    margin-bottom: 8px !important;
  }

  .mobile-footer-submenu li a {
    font-size: 12px !important;
    color: #666 !important;
    text-decoration: none !important;
    font-family: 'Lexend', sans-serif !important;
    line-height: 1.4 !important;
  }

  .mobile-footer-submenu li a:hover {
    color: #007bff !important;
  }

  /* Mobile Footer Contact Section */
  .mobile-footer-contact-section {
    padding-top: 0 !important;
  }
  
  

  /* Mobile contact items - updated for new clean layout */
  .mobile-contact-items {
    margin-bottom: 16px !important;
    padding: 16px 0 0 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
  }

  .mobile-contact-item {
    width: 100% !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    justify-content: flex-start !important;
    margin-bottom: 0 !important;
  }

  .mobile-contact-items .footer-phone-link {
    width: 100% !important;
    max-width: 100% !important;
  }

  .mobile-social-section {
    display: flex !important;
    gap: 12px !important;
    align-items: flex-start !important;
  }

  .mobile-qr-code {
    flex-shrink: 0 !important;
  }

  .mobile-qr-image {
    width: 60px !important;
    height: 60px !important;
  }

  .mobile-social-text h5 {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #333 !important;
    margin: 0 0 4px 0 !important;
    font-family: 'Lexend', sans-serif !important;
  }

  .mobile-social-text p {
    font-size: 10px !important;
    color: #666 !important;
    line-height: 1.3 !important;
    margin: 0 !important;
    font-family: 'Lexend', sans-serif !important;
  }

  /* Hide desktop footer on mobile */
  .footer-content {
    display: none !important;
  }
}

/* Hide mobile brands elements on desktop */
@media (min-width: 481px) {
  .mobile-brands-title,
  .mobile-ac-banner,
  .mobile-ac-brands,
  .mobile-cctv-banner,
  .mobile-cctv-brands,
  .mobile-articles-container,
  .mobile-newsletter-container,
  .mobile-footer-company,
  .mobile-sticky-bottom {
    display: none !important;
  }
}

/* === BRANDS === */
.brands-section {
  width: 100%;
  max-width: 1440px;
  height: auto;
  min-height: 629px;
  padding: 32px;
  gap: 18px;

  margin: 0 auto;
}

.brands-section .container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;

  
}

.brands-section .section-title {
  text-align: left;
  margin-bottom: 12px;
}

.brands-layout {
  display: flex;
  gap: 32px;
  height: 248px;

}

.brands-sidebar {
  width: 240px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand-category {
  padding: 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 240px;
  height: 248px;
}

.brand-category.active {
  background: radial-gradient(circle 120px at center center, #488ABF 0%, #16588D 100%);
}

.brand-category:not(.active) {
  background: radial-gradient(circle 120px at center center, #AFD67B 0%, #74A92D 100%);
}

.cctv-category {
  background: radial-gradient(circle 120px at center center, #AFD67B 0%, #74A92D 100%) !important;
}

.category-content {
  position: relative;
  z-index: 2;
}

.category-content h3 {
  color: #FFFFFF;
  font-family: 'Lexend', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 125%;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 16px;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}

.category-btn {
  background: #FFFFFF;
  color: #191919;
  border: none;
  padding: 4px 8px;
  border-radius: 44px;
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 0;
  transition: all 0.2s ease;
  width: auto;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.category-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* AC brand image */
.brand-category.active .category-image {
  position: absolute;
  bottom: -180px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 240px;
  height: 240px;
}

/* CCTV brand image */
.brand-category.cctv-category .category-image {
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 240px;
  height: 150px;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* .brands-grid-container {
  flex: 1;
  display: flex;
  align-items: flex-start;
  width: 1124px;
  height: 248px;
  background: black;
} */

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 272px);
  grid-template-rows: repeat(2, 118px);
  gap: 12px;
  width: 272px;
  height: 118px;
  padding: 14px;
  border-radius: 8px;
  margin-top: -15px;
  margin-left: -35px;
}

/* CCTV Brands Grid - 4 brands only with 272x248px */
.cctv-brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 272px);
  grid-template-rows: 248px;
  gap: 12px;
  width: 100%;
  height: auto;
  margin-left: -20px;
}

.cctv-brand-logo {
  background: white;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid #E2E5F1;
  width: 272px;
  height: 248px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  box-sizing: border-box;
}

.cctv-brand-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.cctv-brands-grid .cctv-brand-logo img {
  width: 178px;
  height: 28px;
  object-fit: contain;
}

.brand-logo {
  background: white;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid #E2E5F1;
  width: 272px;
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  box-sizing: border-box;
}

.brand-logo:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.brand-logo img {
  max-width: 160px;
  max-height: 34px;
  object-fit: contain;
  width: auto;
  height: auto;
}

/* === TESTIMONIALS === */
.testimonials-section {
  width: 100%;
  max-width: 1440px;
  height: auto;
  margin: 0 auto;
  padding: 20px 32px;
  background: white;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.testimonials-grid {
  display: flex;
  flex-direction: row;
  gap: 30px;
}

.testimonial-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 326px;
}

.testimonial-meta {
  font-family: "Lexend", sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 125%;
  letter-spacing: 0%;
  color: #4A5568;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.testimonial-content h3 {
  font-family: "Lexend", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0%;
  color: #191919;
  margin-bottom: 8px;
  width: 312px;
  height: auto;
  max-height: 42px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.testimonial-content h3 a {
  color: #191919;
  text-decoration: none;
  transition: color 0.3s ease;
}

.testimonial-content h3 a:hover {
  color: #1B517C;
}

.testimonial-content p {
  color: var(--text-light);
  font-size: 0.8rem;
  line-height: 1.4;
}

.testimonial-image {
  flex-shrink: 0;
}

.testimonial-image img {
  width: 100%;
  max-width: 326px;
  height: auto;
  aspect-ratio: 326 / 180;
  object-fit: cover;
  border-radius: 10px;
}

.map-section {
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  max-width: 676px;
  height: auto;
  min-height: 252px;
  aspect-ratio: 676 / 252;
  display: block;
}

/* === PRODUCT DETAIL PAGE === */
.product-detail-page {
  background: white;
  min-height: 100vh;
}

@media (min-width: 481px) {
  .breadcrumb-container {
    width: 100% !important;
    height: 48px !important;
    padding-top: 15px !important;
    margin-top: 0px !important;
  }
}

@media (max-width: 480px) {
  .breadcrumb-container {
    width: 100%;
    height: 35px;
    display: block !important;
    visibility: visible !important;
  }
  
  .breadcrumb-container .container {
    padding-left: 20px !important;
  }
}

.breadcrumb {
  font-family: 'Lexend', sans-serif;
  font-size: 12px;
  color: #4A5568;
  font-weight: 300;
  line-height: 125%;
  margin: 0;
  padding: 12px 0;
}

.breadcrumb a {
  color: #4A5568;
  text-decoration: none;
  margin-right: 10px;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb > * {
  margin-right: 10px;
}

.breadcrumb > *:last-child {
  color: #16588D;
  font-weight: 500;
}

.product-breadcrumb {
  font-family: 'Lexend', sans-serif;
  font-size: 12px;
  color: #4A5568;
  font-weight: 300;
  line-height: 125%;
  margin: 0;
  padding: 12px 0;
}

.product-breadcrumb a {
  color: #4A5568;
  text-decoration: none;
  margin-right: 10px;
}

.product-breadcrumb a:hover {
  text-decoration: underline;
}

.product-breadcrumb > * {
  margin-right: 10px;
}

.product-breadcrumb > *:last-child {
  color: #16588D;
  font-weight: 500;
}

/* Hide mobile breadcrumb on desktop */
.mobile-breadcrumb {
  display: none;
}

/* Hide mobile review button on desktop */
.give-review-btn {
  display: none;
}

/* Desktop reviews styling handled above */

/* Mobile breadcrumb styles (hidden on desktop) */
.mobile-breadcrumb .breadcrumb-ellipsis {
  color: #4A5568;
  font-weight: 400;
}

.mobile-breadcrumb .breadcrumb-separator {
  color: #4A5568;
  margin: 0 2px;
}

.mobile-breadcrumb .breadcrumb-brand {
  color: #4A5568;
  font-weight: 400;
}

.mobile-breadcrumb .breadcrumb-current {
  color: #16588D;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

.product-detail-content {
  display: flex;
  width: 100%;
  max-width: 1440px;
  height: auto;
  min-height: 1222px;

  margin: 0 auto;
}

.product-main-content {
  flex: 1;
  min-width: 0;
}

.purchase-sidebar {
  flex: 0 0 380px;
  width: 380px;
}

/* Product Main Content Styling */
.product-main-content {
  background: #FFFFFF;
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 7px;
}

.product-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  min-height: 600px;
  height: auto;
  align-items: start;
  background: #FFFFFF;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 420px;
  height: 500px;
  background: #FFFFFF;
}

.main-image {
  border-radius: 8px;
  overflow: hidden;
  background: #F5F5F5;
  width: 420px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail-images {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}

.thumbnail.active {
  border-color: #3b82f6;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Info Main */
.product-info-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  min-width: 0;
}

/* Product Details Section */
.product-details-section {

  margin-left: 0px;
  height: 450px;
  margin-top: -10px;
}

.detail-tabs {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #e0e0e0;
}

@media (max-width: 480px) {
  .detail-tabs {
    gap: 16px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 4px;
    margin-left: 0;
    width: 343px;
    justify-content: flex-start;
  }
}

.detail-tab-btn {
  flex: 1;
  padding: 12px;
  border: none;
  background: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 125%;
  color: #191919;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.detail-tab-btn.active {
  color: #68AB0F;
  border-bottom: 3px solid #68AB0F;
}

.detail-tab-content {
  position: relative;
}

.detail-tab-pane {
  display: none;
}

.detail-tab-pane.active {
  display: block;
}

.detail-info {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.detail-row {
  display: flex;

  border-bottom: 1px solid #f3f4f6;
}

.detail-label {
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 170%;
  color: #4A5568;
  width: 100px;
  flex-shrink: 0;
}

.detail-value {
  font-family: 'Lexend', sans-serif;
  color: #191919;
  font-size: 14px;
  font-weight: 500;
  line-height: 125%;
  margin-left: 12px;
}

.product-description {
  color: #6b7280;
  line-height: 1.6;
  margin: 20px 0;
  padding-top: 20px;
  max-height: 250px;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 #f1f5f9;
}

.specifications-image {
  margin-top: 20px;
  text-align: center;
}

.spec-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.spec-row {
  display: flex;
  padding: 8px 0;
  border-bottom: 1px solid #f3f4f6;
}

.spec-label {
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 170%;
  color: #4A5568;
  width: 100px;
  flex-shrink: 0;
}

.spec-value {
  font-family: 'Lexend', sans-serif;
  color: #191919;
  font-size: 14px;
  font-weight: 500;
  line-height: 125%;
  margin-left: 12px;
}

/* Reviews Container - Desktop */
.reviews-container {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 40px 30px 24px 30px;
  width: 100%;
  max-width: none;
  min-height: 460px;
  height: auto;
  margin: 40px 0 0 0;
  background: #FFFFFF;
  overflow-x: hidden;
}

.review-summary {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.rating-overview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.rating-score {
  display: flex;
  align-items: center;
  gap: 8px;
}

.score {
  font-size: 36px;
  font-weight: 700;
  color: #fbbf24;
}

.stars {
  color: #fbbf24;
  font-size: 16px;
}

.rating-text {
  font-size: 12px;
  color: #6b7280;
}

.total-reviews {
  font-size: 12px;
  color: #6b7280;
}

.rating-breakdown {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.rating-star {
  color: #f59e0b;
  font-size: 16px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
  line-height: 1;
}

.rating-label {
  font-weight: 500;
  color: #374151;
  width: 20px;
  flex-shrink: 0;
  text-align: center;
  line-height: 1;
}

.bar {
  flex: 1;
  height: 8px;
  background: #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
  min-width: 150px;
}

.rating-count {
  font-size: 14px;
  color: #6b7280;
  min-width: 35px;
  text-align: right;
  flex-shrink: 0;
}

.fill {
  height: 100%;
  background: #fbbf24;
  transition: width 0.3s ease;
}

.rating-count {
  font-size: 12px;
  color: #6b7280;
  min-width: 30px;
}

.review-item {
  padding: 12px 0;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.review-stars {
  color: #fbbf24;
  font-size: 14px;
}

.review-date {
  font-size: 12px;
  color: #6b7280;
}

.review-text {
  color: #4b5563;
  line-height: 1.4;
  font-size: 14px;
}

.submit-review:hover {
  background: #164065;
}

/* Purchase Sidebar */
.purchase-sidebar {
  position: sticky;
  height: 1222px;
  align-self: flex-start;

  padding-left: 10px;
}

.purchase-card {
  background: white;
  border-radius: 10px;
  width: 336px;
  height: 273px;
  padding: 16px 18px 16px 18px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  box-sizing: border-box;
  gap: 14px;
}

.purchase-card h3 {
  font-family: 'Lexend', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #191919;
  line-height: 125%;
  margin-bottom: 10px;
}

.product-variant-display {
  display: flex;
  align-items: center;
  width: 300px;
  height: 68px;
  gap: 10px;

  border-radius: 8px;
  /* margin-bottom: 20px; */
  flex-wrap: nowrap;
  overflow: hidden;
}

.variant-image {
  width: 68px;
  height: 68px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.variant-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.variant-info {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.variant-name {
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 125%;
  color: #1f2937;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.variant-stock {
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 125%;
  color: #4A5568;

}

.stock-available {
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 125%;
  color: #16588D;
}

.price-breakdown {
  margin-bottom: 20px;
  border-top: 1px solid #e5e7eb;
  padding-top: 20px;
}

.price-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.price-line.original-price {
  color: #767676;
  text-decoration: line-through;
  font-family: 'Lexend', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 170%;
  text-align: right;
  margin-bottom: 4px;
  display: block;
}

.price-line.subtotal {
  font-family: 'Lexend', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  color: #4A5568;
}

.price-line.subtotal .price-current {
  font-size: 22px;
  font-weight: 600;
  line-height: 125%;
  color: #FF3F62;
}

.btn-beli-langsung {
  width: 146px;
  height: 44px;
  background: white;
  color: #16588D;
  border: 1px solid #3b82f6;
  border-radius: 8px;

  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 125%;
  cursor: pointer;
  margin-bottom: 12px;
  transition: background-color 0.2s;
}

.btn-beli-langsung:hover {
  background: #eff6ff;
}

.purchase-sidebar .btn-keranjang {
  width: 146px;
  height: 44px;
  background: #16588D;
  color: white;
  border: none;
  border-radius: 8px;
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 125%;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.purchase-sidebar .btn-keranjang:hover {
  background: #2563eb;
}

.purchase-sidebar .chat-section {
  margin-top: 20px;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  display: flex;
  justify-content: center;
}

.purchase-sidebar .chat-avatar {
  width: 60px;
  height: 60px;
}

.product-title {
  font-family: 'Lexend', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #191919;
  margin: 0;
  line-height: 125%;
}

.product-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta-icon {
  width: 16px;
  height: 16px;
}

.meta-separator {
  color: #9ca3af;
  font-size: 16px;
}

.price-separator {
  border-bottom: 1px solid #e5e7eb;
  margin-top: -5px ;
}

.rating-text {
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  color: #191919;
  font-weight: 400;
  line-height: 125%;
}

.product-pricing {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}


.discount-badge {
  background: #E72B4D;
  color: #FFFFFF;
  width: 37px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 125%;
}

/* Fixed height area for variant to ensure consistent tab positioning */
.variant-area-placeholder {
  min-height: 75px;
  margin-bottom: 0px;
  border-bottom: 1px solid #E5E7EB;
  padding-bottom: 20px;
}

.variant-selection {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.variant-selection label {
  font-family: 'Lexend', sans-serif;
  font-weight: 500;
  color: #374151;
}

.variant-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.variant-btn {
  padding: 8px 16px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: white;
  font-family: 'Lexend', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 125%;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  color: #4A5568;
  display: inline-block;
}

.variant-btn:hover,
.variant-btn.active {
  border-color: #16588D;
  background: #F5F6FC;
  color: #16588D;
  font-weight: 500;
  text-decoration: none;
}

.variant-btn:disabled {
  background: white;
  border-color: #d1d5db;
  color: #6b7280;
  cursor: default;
  opacity: 1;
}

.purchase-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background: #f9fafb;
  border-radius: 12px;
}

.quantity-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quantity-section label {
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #191919;
}

.product-variant-display .quantity-controls {
  display: flex;
  align-items: center;
  gap: 18px;
  background: white;
  border: none;
  border-radius: 8px;
  padding: 11px 8px;
  width: 100px;
  height: 42px;
  box-sizing: border-box;
}

.product-variant-display .qty-btn {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 4px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 30px;
  font-weight: 50;
  color: #16588D;
  transition: all 0.2s;
  line-height: 1;
}

.product-variant-display .qty-btn:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
}

.product-variant-display .qty-btn.minus {
  color: #767676;
}

.product-variant-display .qty-btn.minus.active {
  color: #16588D;
}

.product-variant-display .qty-btn.plus {
  color: #16588D;
}

.product-variant-display .qty-btn.plus.disabled {
  color: #767676;
  cursor: not-allowed;
}

/* Cart Page Styles */
.cart-page .container {
  min-height: 80vh;
  padding: 40px 0;
}

.cart-header {
  margin-bottom: 40px;
  text-align: center;
}

.cart-header h1 {
  font-family: 'Lexend', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #1f2937;
}

.empty-cart {
  text-align: center;
  padding: 60px 20px;
  background: #f9fafb;
  border-radius: 12px;
  margin-bottom: 40px;
}

.empty-cart-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.empty-cart h2 {
  font-family: 'Lexend', sans-serif;
  font-size: 24px;
  color: #374151;
  margin-bottom: 12px;
}

.empty-cart p {
  color: #6b7280;
  margin-bottom: 30px;
}

.continue-shopping {
  display: inline-block;
  background: #16588D;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s;
}

.continue-shopping:hover {
  background: #1e40af;
  color: white;
  text-decoration: none;
}

.cart-table {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.cart-header-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 80px;
  gap: 20px;
  padding: 20px;
  background: #f8f9fa;
  font-weight: 600;
  color: #374151;
  border-bottom: 1px solid #e5e7eb;
}

.cart-item {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 80px;
  gap: 20px;
  padding: 20px;
  border-bottom: 1px solid #f3f4f6;
  align-items: center;
}

.cart-item:last-child {
  border-bottom: none;
}

.item-product {
  display: flex;
  align-items: center;
  gap: 15px;
}

.item-product .product-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.product-details h3 {
  font-family: 'Lexend', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 4px;
}

.product-details .product-brand {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

.item-price, .item-total {
  font-family: 'Lexend', sans-serif;
  font-weight: 500;
  color: #1f2937;
}

.item-quantity {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-page .qty-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #d1d5db;
  background: white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  color: #374151;
}

.cart-page .qty-btn:hover {
  background: #f3f4f6;
}

.qty-display {
  font-weight: 500;
  min-width: 30px;
  text-align: center;
}

.remove-btn {
  background: transparent;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 16px;
  transition: color 0.3s;
}

.remove-btn:hover {
  color: #ef4444;
}

.cart-summary {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  margin-left: auto;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-family: 'Lexend', sans-serif;
}

.summary-row.total {
  border-top: 1px solid #e5e7eb;
  padding-top: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
}

.cart-actions {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.cart-actions button {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.checkout-btn {
  background: #16588D;
  color: white;
  border: none;
}

.checkout-btn:hover {
  background: #1e40af;
}

.continue-shopping {
  background: transparent;
  color: #374151;
  border: 1px solid #d1d5db;
}

.continue-shopping:hover {
  background: #f3f4f6;
}

/* Related Products in Cart Page */
.related-products-section {
  margin-top: 60px;
}

.related-products-section h3 {
  font-family: 'Lexend', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 30px;
  text-align: center;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* ====== CART PAGE PRODUCT CARD ====== */
.cart-page .product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.cart-page .product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cart-page .product-card .product-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.cart-page .product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-page .product-card .product-info {
  padding: 20px;
}

.cart-page .product-card .product-brand {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 8px;
}

.cart-page .product-card .product-title {
  font-family: 'Lexend', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 12px;
  line-height: 1.3;
}

.cart-page .product-card .product-price {
  font-family: 'Lexend', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #16588D;
  margin-bottom: 15px;
}

.add-to-cart-btn {
  width: 100%;
  background: #16588D;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.add-to-cart-btn:hover {
  background: #1e40af;
}

.product-actions {
  padding: 20px;
}

.marketplace-options-mini {
  margin-top: 12px;
}

.mini-marketplace {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.mini-marketplace-btn {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.2s;
}

.mini-marketplace-btn:hover {
  transform: scale(1.1);
}

/* All Articles Page Styles */
.all-articles-page {
  background: #f8fafc;
  min-height: 100vh;
}

.all-articles-hero-section {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #164065 100%);
  color: white;
  text-align: center;
}

.all-articles-hero-section h1 {
  font-family: 'Lexend', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.all-articles-hero-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.all-articles-section {
  padding: 60px 0;
}

.all-articles-section .articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.mini-marketplace-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.marketplace-btn.disabled {
  background: #d1d5db;
  color: #6b7280;
  cursor: not-allowed;
  text-decoration: none;
}

  
  .item-product {
    margin-bottom: 10px;
  }
  
  .item-quantity {
    justify-content: center;
    margin: 10px 0;
  }
  
  .cart-actions {
    flex-direction: column;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

/* Ensure footer styles are not affected by cart page */

/* Cart Count Badge */
.cart-btn {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -9px;
  background: #ef4444;
  color: white;
  border-radius: 50%;
  min-width: 18px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
}

.product-variant-display .qty-input {
  width: 40px;
  height: 20px;
  border: none;
  border-radius: 4px;
  text-align: center;
  font-family: 'Lexend', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #191919;
  background: transparent;
}

.product-variant-display .qty-input::-webkit-outer-spin-button,
.product-variant-display .qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-variant-display .qty-input[type=number] {
  -moz-appearance: textfield;
}

.variant-current {
  font-family: 'Lexend', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 125%;
  color: #4A5568;
}

.stock-info {
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  color: #6b7280;
}

.action-buttons {
  display: flex;
  gap: 12px;
}

.btn-keranjang,
.btn-beli {
  flex: 1;
  height: 48px;
  border-radius: 8px;
  font-family: 'Lexend', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-keranjang {
  background: #3b82f6;
  color: white;
  border: none;
}

.btn-keranjang:hover {
  background: #2563eb;
}

.btn-beli {
  background: white;
  color: #3b82f6;
  border: 1px solid #3b82f6;
}

.btn-beli:hover {
  background: #eff6ff;
}

.chat-section {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: white;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.chat-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chat-info {
  flex: 1;
}

.chat-label {
  font-family: 'Lexend', sans-serif;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
}

.chat-actions {
  display: flex;
  gap: 8px;
}

.chat-btn {
  padding: 6px 12px;
  border-radius: 6px;
  border: none;
  font-family: 'Lexend', sans-serif;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.chat-btn.whatsapp {
  background: #25d366;
  color: white;
}

.chat-btn.telegram {
  background: #0088cc;
  color: white;
}

/* Product Tabs */
.product-tabs {
  background: white;
  border-radius: 12px;
  padding: 32px;
  margin: 20px 0;
}

.tab-nav {
  display: flex;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 24px;
}

.tab-btn {
  padding: 12px 24px;
  border: none;
  background: none;
  font-family: 'Lexend', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.tab-btn.active {
  color: #3b82f6;
  border-bottom-color: #3b82f6;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.detail-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.product-description {
  font-family: 'Lexend', sans-serif;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 24px;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 #f1f5f9;
}

.product-description::-webkit-scrollbar {
  width: 6px;
}

.product-description::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 3px;
}

.product-description::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

.product-description::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.specifications-image img {
  width: 100%;
  border-radius: 8px;
}

.spec-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Reviews Section */
.reviews-section {
  flex: 2;
  min-width: 0;
  height: auto;
  min-height: 460px;
  gap: 20px;
}

.reviews-section h3 {
  font-family: 'Lexend', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #191919;
  line-height: 125%;
  width: 179px;
  height: 23px;
}

.review-summary {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 24px;
  width: 100%;
  max-width: 700px;
  height: auto;
  min-height: 68px;
}

.rating-overview {
  width: 67px;
  height: 62px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 2px;
}

.rating-score {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0px;
}

.rating-score .score {
  font-family: 'Lexend', sans-serif;
  font-size: 36px;
  font-weight: 500;
  color: #191919;
  line-height: 125%;
}

.rating-score .score-divider {
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #191919;
  line-height: 125%;
}

.stars {
  width: 26px;
  height: 26px;
  background-image: url('assets/images/bintang.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Removed duplicate - using main definition above */

.reviews-list {
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 8px;
  width: 100%;
}

.review-item {
  padding: 11px 14px;
  width: 100%;
  min-height: 88px;
  height: auto;
  gap: 6px;
  box-sizing: border-box;
  border-radius: 8px;
  border: 1px solid #E2E5F1;
  margin-bottom: 10px;
}

.reviewer-info {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  width: auto;
  height: 18px;

}

.reviewer-info strong {
  font-family: 'Lexend', sans-serif;
  font-weight: 500;
  color: #191919;
  font-size: 14px;
  line-height: 125%;

  height: 18px;
}

.review-stars {
  color: #f59e0b;
  font-size: 14px;
}

.review-separator {
  font-size: 14px;
  color: #6b7280;
}

.review-date {
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  color: #6b7280;
  white-space: nowrap;
}

.review-text {
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  color: #191919;
  width: 100%;
  min-height: 42px;
  height: auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Review Form - Desktop */
@media (min-width: 481px) {
  .review-form-section {
    background: #FFFFFF;
    border-radius: 10px;
    width: 380px;
    min-height: 460px;
    height: auto;
    padding: 24px;
    border: 1px solid #E2E5F1;
    flex-shrink: 0;
  }
}

.review-form-section h3 {
  font-family: 'Lexend', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #68AB0F;
}

.review-form {
  display: flex;
  flex-direction: column;
  height: auto;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 2px;

}

.form-group.rating-group {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.form-group label {
  font-family: 'Lexend', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 125%;
  color: #191919;
  flex-shrink: 0;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #E2E5F1;
  border-radius: 8px;
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 100%;
  transition: border-color 0.2s;
  width: 100%;
  min-height: 44px;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.rating-input {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: flex-end;
}

.star {
  cursor: pointer;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.star img {
  width: 24px;
  height: 24px;
  opacity: 0.3;
  display: block;
}

.star:hover img,
.star.active img {
  opacity: 1;
}

.rating-star img {
  width: 16px;
  height: 16px;
}

.review-stars img {
  width: 14px;
  height: 14px;
  margin-right: 2px;
}

.submit-review {
  background: #3b82f6;
  color: white;
  width: 100%;
  min-height: 48px;
  border: none;
  border-radius: 8px;
  font-family: 'Lexend', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  transition: background-color 0.2s;
  align-self: flex-start;
}

.submit-review:hover {
  background: #2563eb;
}

/* Related Products */
.related-products {
  background: white;
  height: 470px;
  padding-bottom: 20px;
  padding-left: 30px;
}

.related-products h3 {
  font-family: 'Lexend', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  line-height: 1.2;
  white-space: normal;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  width: 100%;
  box-sizing: border-box;
}

.related-item {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.related-item:hover {
  transform: translateY(-4px);
}

.related-item a {
  text-decoration: none;
  color: inherit;
}

.related-image {
  aspect-ratio: 1;
  background: #f8f9fa;
  overflow: hidden;
}

.related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-info {
  padding: 12px;
  background: white;
  width: 100%;
  box-sizing: border-box;
}

.related-title {
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  max-width: 100%;
}

.related-price {
  font-family: 'Lexend', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #dc2626;
}

/* Marketplace Section */
.marketplace-card {
  background: white;
  border-radius: 12px;
  border: none;
  padding: 20px;
  margin-top: 20px;
  box-shadow: none;
}

.marketplace-card h4 {
  font-family: 'Lexend', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

.marketplace-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.marketplace-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  background: white;
  border-bottom: 1px solid #e5e7eb;
  width: 316px;
  height: 20px;
  box-sizing: content-box;
  margin-left: -10px;
}

.marketplace-item:last-child {
  border-bottom: none;
}

.marketplace-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.marketplace-logo {
  width: 96px;
  height: 20px;
  object-fit: contain;
  margin-left: -15px;
}

.marketplace-price {
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #191919;
  line-height: 125%;
  letter-spacing: 0%;
}

.marketplace-btn {
  background: none;
  color: #16588D;
  padding: 0;
  border: none;
  text-decoration: none;
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 125%;
  letter-spacing: 0%;
  cursor: pointer;
  transition: color 0.2s;
}

.marketplace-btn:hover {
  color: #2563eb;
}

.marketplace-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
}

.marketplace-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Related Products */
.related-products {

  margin: 0 auto;

  width: 100%;
  max-width: 1440px;

}

.related-products .section-title {
  font-family: 'Lexend', sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 125%;
  margin-bottom: 24px;
  color: #191919;
}

.related-products .sale-grid {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  /* padding-bottom: 10px; */
  /* padding-right: 32px; */
  scroll-behavior: smooth;
}

.related-products .sale-grid::-webkit-scrollbar {
  height: 8px;
}

.related-products .sale-grid::-webkit-scrollbar-track {
  background: white;
  border-radius: 4px;
}

.related-products .sale-grid::-webkit-scrollbar-thumb {
  background: white;
  border-radius: 4px;
}

.related-products .sale-grid::-webkit-scrollbar-thumb:hover {
  background: white;
}

/* Newsletter Subscription */
.newsletter-subscription {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 12px;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* gap: 40px; */
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
}

.newsletter-btn {
  background: white;
  color: #3b82f6;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: #f3f4f6;
}

/* Mobile Detail Produk */
@media (max-width: 480px) {
  /* Fix layout width issues on mobile */
  .product-detail-page {
    overflow-x: hidden;
  }
  
  .product-breadcrumb {
    margin-left: -10px;
    font-size: 12px;
    overflow: hidden;
  }
  
  /* Hide desktop breadcrumb on mobile, show mobile breadcrumb */
  .product-breadcrumb > *:not(.mobile-breadcrumb) {
    display: none;
  }
  
  .mobile-breadcrumb {
    display: flex !important;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
  }
  
  /* Show mobile review button on mobile */
  .give-review-btn {
    display: flex !important;
  }
  
  .mobile-breadcrumb .breadcrumb-current {
    font-size: 12px;
  }
  
  .product-detail-content {
    flex-direction: column;
    gap: 20px;
    padding: 0;
    width: 100%;
    height: auto;
    margin-left: 0;
  }
  
  .product-main-content {
    padding: 20px;
    background: white;
  }
  
  .product-content-wrapper {
    flex-direction: column;
    gap: 20px;
    height: auto;
  }
  
  .product-gallery {
    width: 375px;
    height: auto;
    padding: 0;
    margin-top: -20px;
    display: flex;
  }
  
  .main-image {
    width: 343px;
    height: 343px;
    border-radius: 8px;
    overflow: hidden;
    background: #F5F5F5;
    margin-left: -10px;
  }
  
  .main-image img {
    width: 343px;
    height: 343px;
    object-fit: cover;
  }
  
  .thumbnail-images {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin-top: 12px;
    justify-content: flex-start;
    margin-left: -10px;
  }
  
  .thumbnail {
    flex-shrink: 0;
    width: 68px;
    height: 68px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
  }
  
  .thumbnail.active {
    border-color: #16588D;
  }
  
  .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  
  .product-title {
    font-size: 24px;
    line-height: 1.3;
    margin-left: -10px;
  }
  
  .product-meta {
    gap: 12px;
    flex-wrap: wrap;
    margin-left: -10px;
  }
  
  .product-pricing {
    gap: 8px;
    flex-wrap: wrap;
    margin-left: -10px;
  }
  
  .product-details-section {
    height: auto;
    margin-top: -20px;
    margin-left: -10px;
  }
  

  /* Mobile detail dividers - 343px width */
  .detail-row {
    border-bottom: none;
    padding: 4px 0;
    display: flex;
    align-items: center;
    position: relative;
    gap: 20px;
  }
  
  .detail-row::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 343px;
    height: 1px;
    background: #e5e7eb;
  }
  
  .detail-label {
    width: auto;
    min-width: 80px;
  }

  .price-breakdown,
  .variant-selection,
  .product-pricing {
    width: 343px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 8px;
    margin-left: -10px;
  }
  
  .price-separator {
    display: none;
  }
  
  .variant-area-placeholder {
    border-bottom: none;
    min-height: auto;
  }
  
  .detail-tab-btn {
    padding: 12px 16px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
  }
  
  .detail-tab-btn.active {
    color: #68AB0F;
    border-bottom-color: #68AB0F;
  }
  
  
  .variant-selection label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
  }
  
  .variant-options {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin-top: 8px;
    padding-bottom: 4px;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .variant-options::-webkit-scrollbar {
    display: none;
  }
  
  .variant-btn {
    width: 129px;
    height: 40px;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    background: white;
    font-size: 14px;
    color: #374151;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .variant-btn.active {
    background: #3B82F6;
    color: white;
    border-color: #3B82F6;
    font-size: 14px;
    text-decoration: none;
    color: #374151;
    transition: all 0.3s ease;
  }
  
  .variant-btn.active,
  .variant-btn:hover {
    border-color: #16588D;
    background: #f0f9ff;
    color: #16588D;
  }
  
  .purchase-sidebar {
    position: relative;
    top: auto;
    order: -1;
    flex: 1;
    width: auto;
    height: auto;
    padding-left: 0;
  }
  
  .purchase-card {
    width: 100%;
    max-width: none;
    height: auto;
    min-height: auto;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
  }
  
  .purchase-card h3 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 600;
  }
  
  .product-variant-display {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    width: 100%;
    height: auto;
  }
  
  .variant-image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
  }
  
  .variant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
  }
  
  .variant-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  
  .variant-name {
    font-size: 14px;
    font-weight: 600;
    color: #191919;
  }
  
  .variant-stock {
    font-size: 12px;
    color: #68AB0F;
  }
  
  .quantity-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }
  
  .qty-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .qty-btn:hover {
    border-color: #16588D;
    background: #f0f9ff;
  }
  
  .qty-input {
    width: 50px;
    height: 32px;
    text-align: center;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
  }
  
  .price-breakdown {
    margin: 20px 0;
    padding: 16px 0;
    border-top: 1px solid #e5e7eb;
  }
  
  .price-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
  }
  
  .price-line.subtotal {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 0;
  }
  
  .action-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
  }
  
  .btn-beli-langsung,
  .btn-keranjang {
    flex: 1;
    height: 44px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .btn-beli-langsung {
    background: #16588D;
    color: white;
  }
  
  .btn-beli-langsung:hover {
    background: #1e40af;
  }
  
  .btn-keranjang {
    background: white;
    color: #16588D;
    border: 2px solid #16588D;
  }
  
  .btn-keranjang:hover {
    background: #16588D;
    color: white;
  }
  
  .marketplace-card {
    margin-top: 20px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: white;
  }
  
  .marketplace-card h4 {
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 600;
  }
  
  .marketplace-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .marketplace-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
  }
  
  .marketplace-info {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .marketplace-logo {
    width: 32px;
    height: 32px;
  }
  
  .marketplace-price {
    font-size: 14px;
    font-weight: 600;
    color: #191919;
  }
  
  .marketplace-btn {
    padding: 8px 16px;
    background: #16588D;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
  }
  
  .marketplace-btn.disabled {
    background: #9ca3af;
    color: white;
    cursor: not-allowed;
  }
  
  .product-title {
    font-size: 24px;
  }
  
  /* Mobile reviews styles moved to proper media queries below */
  
  .review-form-section,
  .reviews-section {
    margin-bottom: 0;
  }
  
  .reviews-section {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .reviews-section h3 {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .give-review-btn {
    background: none;
    border: none;
    color: #68AB0F;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  
  .give-review-btn:hover {
    text-decoration: underline;
  }
  
  .review-form-section {
    display: none; /* Initially hidden, shown when button clicked */
    padding: 12px;
    background: white;
    border-radius: 6px;
    position: relative;
    z-index: 10;
    width: 343px;
    height: 309px;
    overflow-y: auto;
    box-sizing: border-box;
  }
  
  .review-form-section.active {
    display: block;
  }
  
  .review-form-section h3 {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 600;
  }
  
  .review-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 13px;
    box-sizing: border-box;
  }
  
  .form-group textarea {
    min-height: 80px;
    resize: vertical;
  }
  
  .rating-input {
    display: flex;
    gap: 8px;
    margin-top: 8px;
  }
  
  .rating-input .star {
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .rating-input .star img {
    width: 24px;
    height: 24px;
  }
  
  .submit-review {
    padding: 12px 24px;
    background: #16588D;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
  }
  
  .submit-review:hover {
    background: #1e40af;
  }
  
  .review-summary {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    margin-bottom: 16px;
    width: 100%;
    height: 90px;
    box-sizing: border-box;
  }
  
  .rating-overview {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    flex-shrink: 0;
    width: 80px;
  }
  
  .rating-score {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 36px;
    font-weight: 700;
    color: #000;
    line-height: 1;
  }
  
  .rating-score .star-icon {
    font-size: 18px;
    color: #FFD700;
  }
  
  .rating-score .score-text {
    font-size: 14px;
    color: #666;
    font-weight: 400;
  }
  
  .total-reviews {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
  }
  
  .rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    padding-left: 8px;
    justify-content: center;
  }
  
  .rating-bar {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    min-width: 0;
    width: 100%;
    height: 16px;
  }
  
  .rating-bar .rating-star {
    width: 12px;
    height: 12px;
    font-size: 10px;
    color: #FFD700;
  }
  
  .rating-bar .rating-label {
    width: 6px;
    text-align: left;
    font-weight: 500;
    font-size: 10px;
  }
  
  .rating-bar .bar {
    flex: 1;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
    margin: 0 2px;
    min-width: 60px;
  }
  
  .rating-bar .fill {
    height: 100%;
    background: #FFD700;
    transition: width 0.3s ease;
  }
  
  .rating-bar .rating-count {
    font-size: 10px;
    color: #6b7280;
    min-width: 16px;
    text-align: right;
  }
  
  .reviews-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    overflow-y: auto;
    max-height: 160px;
  }
  
  .review-item {
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    margin-bottom: 12px;
  }
  
  .review-item:last-child {
    margin-bottom: 0;
  }
  
  .reviewer-info {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    flex-wrap: wrap;
    font-size: 12px;
  }
  
  .reviewer-info strong {
    font-weight: 600;
    color: #191919;
  }
  
  .review-separator {
    color: #9ca3af;
  }
  
  .review-stars {
    display: flex;
    gap: 1px;
  }
  
  .review-stars img {
    width: 12px;
    height: 12px;
  }
  
  .review-text {
    font-size: 12px;
    line-height: 1.4;
    color: #4b5563;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  
  .no-reviews {
    text-align: center;
    padding: 40px 20px;
    color: #6b7280;
    font-style: italic;
  }
  
  .related-products {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  
  .related-products .section-title {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
  }
  
  .related-products .sale-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 30px;
  }
  
  .related-products .sale-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .related-products .sale-card:hover {
    transform: translateY(-2px);
  }
  
  .related-products .sale-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
  }
  
  .related-products .sale-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .related-products .sale-info {
    padding: 12px;
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 4px;
  }
  
  .related-products .product-brand {
    font-size: 10px;
    color: #4A5568;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 4px;
  }
  
  .related-products .sale-info h3 {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    color: #191919;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .related-products .product-capacity {
    font-size: 10px;
    color: #16588D;
    background: #E3F2FD;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 8px;
  }
  
  .related-products .popular-price {
    font-size: 14px;
    font-weight: 500;
    color: #68AB0F;
    margin-top: auto;
  }
  
  .newsletter-section {
    margin-top: 30px;
    margin-left: 0;
    width: 100%;
  }
  
  .newsletter-banner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 30px 20px;
  }
  
  .newsletter-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }
  
  .newsletter-content p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 0;
  }
  
  .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 100%;
  }
  
  .newsletter-form input {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
  }
  
  .newsletter-btn {
    padding: 12px 24px;
    background: #68AB0F;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .newsletter-btn:hover {
    background: #5a9c08;
  }

  /* Mobile Reviews Container */
  .reviews-container {
    display: block !important;
    width: 365px !important;
    height: 309px !important;
    border: none;
    margin-left: -20px !important;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }

  .reviews-container h3,
  .reviews-container .reviewer-info,
  .reviews-container .review-text {
    color: #191919 !important;
    font-size: 18px !important;
  }

  .reviews-container .give-review-btn {
    color: #68AB0F !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    margin-left: 40px !important;
    white-space: nowrap;
  }

  .reviews-container .rating-score {
    color: #191919 !important;
    font-size: 36px !important;
  }

  .reviews-container .rating-score .score-text {
    color: #666 !important;
    font-size: 14px !important;
  }

  .reviews-container .total-reviews {
    color: #6b7280 !important;
  }
}

/* Additional responsive breakpoints for purchase card */
@media (max-width: 480px) {
  /* Further mobile optimization for very small screens */
  .mobile-breadcrumb {
    gap: 4px !important;
    font-size: 11px;
  }
  
  .mobile-breadcrumb .breadcrumb-current {
    max-width: 120px;
    font-size: 11px;
  }
  
  .product-main-content {
    padding: 16px;
  }
  
  .product-title {
    font-size: 18px;
    line-height: 1.2;
  }
  
  
  .purchase-card {
    margin: 0;
    padding: 16px;
    border-radius: 8px;
  }
  
  .purchase-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }
  
  .product-variant-display {
    gap: 10px;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
  }
  
  .variant-info {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .variant-image {
    width: 50px;
    height: 50px;
  }
  
  .quantity-controls {
    align-self: flex-end;
    flex-shrink: 0;
  }
  
  .qty-btn {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
  
  .qty-input {
    width: 45px;
    height: 28px;
    font-size: 12px;
  }
  
  .action-buttons {
    flex-direction: column;
    gap: 8px;
  }
  
  .btn-beli-langsung,
  .btn-keranjang {
    width: 100%;
    height: 40px;
    font-size: 13px;
  }
  
  .marketplace-card {
    padding: 16px;
  }
  
  .marketplace-card h4 {
    font-size: 14px;
  }
  
  .marketplace-item {
    padding: 10px;
  }
  
  .marketplace-logo {
    width: 28px;
    height: 28px;
  }
  
  .marketplace-price {
    font-size: 12px;
  }
  
  .marketplace-btn {
    padding: 6px 12px;
    font-size: 11px;
  }
  
  .main-image img {
    max-height: 300px;
  }
  
  .thumbnail {
    width: 50px;
    height: 50px;
  }
  
  .detail-tab-btn {
    padding: 8px 12px;
    font-size: 12px;
  }
  
  .variant-btn {
    padding: 6px 10px;
    font-size: 12px;
  }
  
  .review-form-section h3,
  .reviews-section h3 {
    font-size: 16px;
    white-space: nowrap;
  }
  
  .rating-score {
    font-size: 36px !important;
  }
  
  .rating-score .score-text {
    font-size: 14px !important;
  }
  
  /* Reviews container styling handled in main mobile section above */
  
  .review-summary {
    width: 343px !important;
    height: 116px !important;
    border: none !important;

  }
  
  .rating-overview {
    width: 67px !important;
    height: 62px !important;
    margin-left: -15px !important;

  }
  
  .rating-breakdown {
    height: 116px !important;
    margin-top: -15px !important;
    margin-left: 8px !important;

  }
  
  .rating-bar .bar {
    min-width: 173px !important;
    height: 4px !important;
    background: #E2E5F1;
  }
  
  .rating-bar {
    gap: 3px !important;
    height: 20px !important;
  }
  
  .rating-bar .rating-star {
    width: 16px !important;
    height: 16px !important;
  }
  
  .rating-bar .rating-label {
    font-size: 16px !important;
  }
  
  .rating-bar .rating-count {
    font-size: 14px !important;
  }
  
  .reviews-list {
    max-height: 130px !important;
  }
  
  .review-item {
    padding-left: 8px !important;
    height: 130px !important;
    width: 343px !important;
  }
  
  .reviewer-info {
    width: 281px !important;
    height: 18px !important;
    gap: 4px !important;
    white-space: nowrap;
    flex-wrap: nowrap !important;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .review-stars img {
    width: 10px !important;
    height: 10px !important;
  }
  
  .review-text {
    font-size: 14px !important;
    width: auto !important;
    -webkit-line-clamp: 2 !important;
    line-height: 1.3 !important;
  }
  
  .related-products .section-title {
    font-size: 18px;
  }
  
  .related-products .sale-grid {
    gap: 8px;
  }
  
  .related-products .sale-image {
    height: 120px;
  }
  
  .related-products .sale-info {
    padding: 10px;
  }
  
  /* Related Products Mobile - Same as Popular Products Typography */
  .related-products .sale-info h3 {
    font-size: 12px;
    line-height: 1.2;
    margin-bottom: 4px;
    height: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    font-weight: 500;
    color: #333;
  }
  
  .related-products .product-brand {
    font-size: 10px;
    margin-bottom: 2px;
    height: 12px;
    color: #666;
    font-weight: 400;
  }
  
  .related-products .product-capacity {
    font-size: 10px;
    margin-bottom: 2px;
    height: 15px;
    color: #888;
    font-weight: 400;
  }
  
  .related-products .popular-price {
    font-size: 12px;
    margin-top: auto;
    color: #FF3F62;
    font-weight: 600;
  }

  .related-products .popular-price span {
    font-size: 14px;
    color: #FF3F62;
    font-weight: 600;
  }
  
  .newsletter-banner {
    padding: 20px 16px;
  }
  
  .newsletter-content h3 {
    font-size: 18px;
  }
  
  .newsletter-content p {
    font-size: 13px;
  }
  
  .newsletter-form input,
  .newsletter-btn {
    padding: 10px 14px;
    font-size: 13px;
  }

  /* Override desktop newsletter styling for mobile */
  .product-detail-page .newsletter-section {
    margin-left: 0 !important;
    width: 100% !important;
    margin: 30px 16px !important;
    padding: 0 !important;
  }

  .product-detail-page .newsletter-banner {
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding: 20px !important;
    flex-direction: column !important;
    text-align: center !important;
    gap: 16px !important;
    border-radius: 12px !important;
  }
}

/* Medium screen adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  .purchase-card {
    width: 300px;
    max-width: 300px;
  }
  
  .product-variant-display {
    padding: 14px;
    gap: 10px;
  }
}

/* === NEWSLETTER === */
.newsletter-section {
  padding: 0;
  margin: 0;
}

.product-detail-page .newsletter-section {
  margin: 0 auto;
  width: 100%;
  max-width: 1440px;
}

.newsletter-banner {
  background: var(--primary-blue);
  width: 100%;
  max-width: 1440px;
  height: auto;
  min-height: 90px;
  margin: 0 auto;
  padding: 15px 32px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.newsletter-content {
  width: 403px;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.newsletter-form input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  padding: 0;
  color: #666;
  font-size: 14px;
}

.newsletter-btn {
  width: 127px;
  height: 40px;
  background: #8BC43F;
  color: white;
  border: none;
  padding: 11px 14px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 14px;
}

.newsletter-btn:hover {
  background: #6ba639;
}

/* === Buttons === */
.c-btn {
  display: inline-block;
  padding: 14px 28px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-size: 16px;
  margin: 8px;
}

.c-btn--primary {
  background: var(--primary-blue);
  color: white;
}

.c-btn--primary:hover {
  background: #164161;
}

.c-btn--outline {
  background: white;
  color: var(--text-dark);
  border: 2px solid var(--border-light);
}

.c-btn--outline:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

/* === Footer === */
.site-footer {
  background: #ffffff;
  color: var(--text-dark);
  width: 100%;
  max-width: 1440px;
  height: auto;
  min-height: 278px;
  margin: 0 auto;
  padding: 20px 32px;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
  gap: 20px;
  flex: 1;
}

.footer-content > *:nth-child(1) {
  padding-left: 0;
}

/* Menggeser kolom Produk, Cooling System, Tentang ke kanan */
.footer-content > *:nth-child(2),
.footer-content > *:nth-child(3), 
.footer-content > *:nth-child(4) {
  margin-left: 30px;
}

.footer-logo-img {
  height: 36px !important;
  width: auto !important;
  max-width: 155px !important;
  margin-bottom: 10px;
}

.footer-content h4 {
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #191919;
  line-height: 125%;
  margin-bottom: 10px;
}

.footer-content h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  margin-top: 20px;
}

.company-address {
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  font-weight: 50;
  line-height: 150%;
  color: #4A5568;
  margin-bottom: 10px;
}

.google-maps {
  display: flex;
  align-items: center;
  /* gap: 8px; */
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #16588D;
  line-height: 125%;
  text-transform: none;
  cursor: pointer;
  white-space: nowrap;
  width: auto;
  height: 18px;
}

.maps-icon {
  width: 18px;
  height: 18px;
  vertical-align: top;
  margin-right: 5px;
}

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

.footer-content ul li {
  margin-bottom: 8px;
}

.footer-content ul li a {
  font-family: 'Lexend', sans-serif;
  color: #4A5568;
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  line-height: 125%;
  transition: color 0.3s ease;
}

.footer-content ul li a:hover {
  color: var(--primary-blue);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact h4 {
  margin-bottom: 12px;
}

.contact-items {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.contact-item {
  width: 180px;
  height: 38px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  line-height: 125%;
  font-family: 'Lexend', sans-serif;
  font-weight: 400;
  color: #191919;
  padding: 8px 12px 8px 10px;
  border: 1px solid #E2E5F1;
  border-radius: 8px;
  white-space: nowrap;
}

.contact-icon {
  width: 20px;
  height: 20px;
}

.contact-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.social-section {
  width: 281px;
  height: 80px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateY(-4px);
}

.social-section h5 {
  font-family: 'Lexend', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 125%;
  color: #191919;
  width: 189px;
  height: 18px;
  margin: 0 0 8px 0;
}

.social-section p {
  font-family: 'Lexend', sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 125%;
  color: #4A5568;
  width: 189px;
  height: 45px;
  margin: 0;
}

.qr-code {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.qr-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
}

.qr-placeholder {
  width: 80px;
  height: 80px;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.qr-squares {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  width: 60%;
  height: 60%;
}

.qr-square {
  background: var(--text-dark);
  border-radius: 1px;
}

.qr-square:nth-child(1),
.qr-square:nth-child(4) {
  background: var(--text-dark);
}

.qr-square:nth-child(2),
.qr-square:nth-child(3) {
  background: var(--border-light);
}

/* ===== ABOUT PAGE STYLES ===== */

.about-page {
  font-family: 'Lexend', sans-serif;
}

.about-page .container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}

/* Hero Section */
.about-hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #164065 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-content p {
  font-size: 20px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Company Story Section */
.company-story-section {
  padding: 40px 0;
  background: #fafafa;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: center;
}

.story-content h2 {
  font-size: 36px;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 16px;
}

.story-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 16px;
}

.image-placeholder {
  background: white;
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(27, 81, 124, 0.1);
  border: 1px solid #f0f0f0;
}

.company-logo {
  max-width: 200px;
  height: auto;
  object-fit: contain;
}

/* Vision Mission Section */
.vision-mission-section {
  padding: 40px 0;
  background: white;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.vision-card, .mission-card {
  background: #fafafa;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.vision-card:hover, .mission-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(27, 81, 124, 0.15);
}

.card-icon {
  font-size: 60px;
  margin-bottom: 20px;
}

.vision-card h3, .mission-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 16px;
}

.vision-card p {
  color: #666;
  line-height: 1.7;
  font-size: 16px;
}

.mission-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.mission-card li {
  padding: 8px 0;
  color: #666;
  position: relative;
  padding-left: 20px;
  line-height: 1.6;
}

.mission-card li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: bold;
}

/* Products Services Section */
.products-services-section {
  padding: 40px 0;
  background: #fafafa;
}

.products-services-section h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 30px;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* ====== SERVICES/FEATURES PAGE PRODUCT CARD ====== */
.services-page .product-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.services-page .product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.product-icon {
  font-size: 60px;
  margin-bottom: 20px;
}

.product-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.product-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.product-card li {
  padding: 6px 0;
  color: #666;
  position: relative;
  padding-left: 20px;
  line-height: 1.6;
}

.product-card li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: bold;
}

/* Team Section */
.team-section {
  padding: 40px 0;
  background: white;
  text-align: center;
}

.team-section h2 {
  font-size: 36px;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 16px;
}

.team-intro {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.stat-item {
  padding: 30px 20px;
  background: #fafafa;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(27, 81, 124, 0.1);
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

/* Contact Info Section */
.contact-info-section {
  padding: 40px 0;
  background: #fafafa;
}

.contact-info-section h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 30px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 40px;
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.detail-card {
  background: white;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(27, 81, 124, 0.08);
  border: 2px solid #f8f9fa;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #4CAF50 100%);
  transition: width 0.3s ease;
}

.detail-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(27, 81, 124, 0.15);
  border-color: rgba(27, 81, 124, 0.2);
}

.detail-card:hover::before {
  width: 6px;
}

.detail-card:nth-child(1)::before {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #164065 100%);
}

.detail-card:nth-child(2)::before {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #164065 100%);
}

.detail-card:nth-child(3)::before {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #164065 100%);
}

.detail-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #164065 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  margin-bottom: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(27, 81, 124, 0.3);
}

.detail-card:nth-child(1) .detail-icon {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #164065 100%);
}

.detail-card:nth-child(2) .detail-icon {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #164065 100%);
}

.detail-card:nth-child(3) .detail-icon {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #164065 100%);
}

.detail-card-content {
  flex: 1;
}

.detail-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.detail-card p {
  color: #5a6c7d;
  line-height: 1.7;
  margin: 0;
  font-size: 15px;
  font-weight: 400;
}

.phone-numbers {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.phone-numbers p {
  background: #f8f9fa;
  padding: 12px 16px;
  border-radius: 12px;
  margin: 0;
  font-weight: 600;
  color: var(--primary-blue);
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.phone-numbers p:hover {
  background: #e9ecef;
  transform: scale(1.02);
}

.operating-hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.operating-hours p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9fa;
  padding: 10px 16px;
  border-radius: 10px;
  margin: 0;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.operating-hours p:hover {
  background: #e9ecef;
}

.operating-hours span:first-child {
  font-weight: 500;
  color: #2c3e50;
  font-size: 14px;
}

.operating-hours span:last-child {
  font-weight: 700;
  color: var(--primary-blue);
  font-size: 14px;
  background: white;
  padding: 4px 12px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(27, 81, 124, 0.1);
}

/* Maps Container */
.maps-container {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border: 1px solid #f0f0f0;
}

.maps-wrapper {
  width: 100%;
  height: 300px;
  position: relative;
}

.maps-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.no-maps-message {
  padding: 60px 40px;
  text-align: center;
  color: #666;
}

.maps-placeholder {
  font-size: 60px;
  margin-bottom: 16px;
}

.maps-button {
  display: block;
  width: 100%;
  padding: 20px;
  background: var(--primary-blue);
  color: white;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  transition: all 0.3s ease;
}

.maps-button:hover {
  background: #164065;
  color: white;
}

.maps-button span {
  margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 36px;
  }
  
  .hero-content p {
    font-size: 18px;
  }
  
  .vm-grid {
    grid-template-columns: 1fr;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .team-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-hero {
    padding: 60px 0;
  }
  
  .company-story-section,
  .vision-mission-section,
  .products-services-section,
  .team-section,
  .contact-info-section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .team-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .hero-content h1 {
    font-size: 28px;
  }
  
  .story-content h2,
  .products-services-section h2,
  .team-section h2,
  .contact-info-section h2 {
    font-size: 28px;
  }
}

/* ===== ARTICLES PAGE STYLES ===== */

.articles-page {
  font-family: 'Lexend', sans-serif;
}

.articles-page .container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}

/* Articles Hero Section */
.articles-hero-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #164065 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.articles-hero-section .hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.articles-hero-section .hero-content p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ====== QUICK TIPS SECTION ====== */
.quick-tips-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
}

.tips-header {
  text-align: center;
  margin-bottom: 50px;
}

.tips-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 12px;
}

.tips-header p {
  font-size: 16px;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1440px;
  margin: 0 auto;
}

.tip-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(27, 81, 124, 0.08);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid #f0f0f0;
}

.tip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(27, 81, 124, 0.15);
}

.tip-card.tip-cooling {
  border-top: 4px solid #2196F3;
}

.tip-card.tip-security {
  border-top: 4px solid #FF9800;
}

.tip-card.tip-maintenance {
  border-top: 4px solid #4CAF50;
}

.tip-card.tip-emergency {
  border-top: 4px solid #F44336;
}

.tip-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.tip-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.tip-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
  font-size: 14px;
}

.tip-category {
  background: #f8f9fa;
  color: var(--primary-blue);
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
}

/* ====== CATEGORY PAGE ====== */
.category-page {
  background: #fafafa;
}

/* Article Category Page Styles */
.category-artikel-page {
  min-height: 100vh;
}

.article-category-hero-section {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #164065 100%);
  color: white;
}

.article-category-hero-section .hero-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.article-category-hero-section h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.article-category-hero-section p {
  font-size: 18px;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 20px;
}

.article-category-content-section {
  padding: 60px 0;
}

/* Legacy category styles (keep for compatibility) */
.category-hero-section {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #164065 100%);
  color: white;
}

.category-hero-section .hero-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.category-hero-section h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.category-hero-section p {
  font-size: 18px;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 20px;
}

.category-hero-section .category-meta {
  margin-top: 20px;
}

.category-hero-section .post-count {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.category-articles-section {
  padding: 60px 0;
}

.no-posts-message {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
}

.no-posts-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.no-posts-message h2 {
  color: var(--text-dark);
  margin-bottom: 12px;
  font-size: 28px;
}

.no-posts-message p {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.6;
}

.back-to-articles {
  display: inline-block;
  background: var(--primary-blue);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.back-to-articles:hover {
  background: #164065;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 81, 124, 0.3);
}

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

.pagination-wrapper .page-numbers {
  display: inline-block;
  padding: 8px 16px;
  margin: 0 4px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

.pagination-wrapper .page-numbers:hover,
.pagination-wrapper .page-numbers.current {
  background: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
}

.article-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.article-date, .article-category {
  font-size: 14px;
  color: #666;
  background: #f8f9fa;
  padding: 6px 12px;
  border-radius: 16px;
  font-weight: 500;
}

.article-category {
  color: var(--primary-blue);
  background: rgba(27, 81, 124, 0.1);
}

.artikel-page .featured-content h3 {
  font-size: 28px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 16px;
  line-height: 1.3;
}

.artikel-page .featured-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 16px;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  color: #2c3e50;
  font-size: 14px;
}

.author-info small {
  color: #888;
  font-size: 12px;
}

/* Categories Section */
.categories-section {
  padding: 60px 0;
  background: white;
}

.categories-section h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 40px;
  text-align: center;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: 100%;
  margin: 0 auto;
}

.articles-page .category-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  border: 2px solid #f8f9fa;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.articles-page .category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #164065 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.articles-page .category-card:hover::before {
  transform: scaleX(1);
}

.articles-page .category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(27, 81, 124, 0.15);
  border-color: rgba(27, 81, 124, 0.2);
}

.category-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.category-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px !important;
  color: white;
  font-weight: bold;
}

.category-icon.cooling {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  font-size: 24px !important;
}

.category-icon.security {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  font-size: 24px !important;
}

.category-icon.energy {
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.category-icon.maintenance {
  background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.category-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 12px;
}

.category-card h4 a {
  color: var(--primary-blue);
  text-decoration: none;
}

.category-card h4 a:hover {
  color: var(--primary-blue);
  text-decoration: none;
}

.category-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
  font-size: 14px;
}

.article-count {
  background: var(--primary-blue);
  color: white;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.article-count:hover {
  background: #164065;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(27, 81, 124, 0.3);
}

/* Latest Articles Section */
.latest-articles-section {
  padding: 60px 0;
  background: #fafafa;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--primary-blue);
}

.view-all-btn {
  background: var(--primary-blue);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  background: #164065;
  color: white;
  transform: translateY(-2px);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

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

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(27, 81, 124, 0.15);
}

.card-image {
  position: relative;
  overflow: hidden;
}

.article-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.article-card:hover .article-thumb {
  transform: scale(1.05);
}

.article-category-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-blue);
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
}

.card-content {
  padding: 24px;
}

.card-content .article-meta {
  justify-content: space-between;
  margin-bottom: 16px;
}

.reading-time {
  color: #888;
  font-size: 12px;
  background: #f8f9fa;
  padding: 4px 8px;
  border-radius: 12px;
}

.card-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 12px;
  line-height: 1.4;
}

.card-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 14px;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-footer .author {
  color: #888;
  font-size: 12px;
}

.read-more {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: #164065;
}

/* Newsletter Subscription Section */
.newsletter-subscription-section {
  padding: 60px 0;
  background: white;
}

.newsletter-card {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #164065 100%);
  border-radius: 20px;
  padding: 48px;
  color: white;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.newsletter-content h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
}

.newsletter-content p {
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 32px;
  font-size: 16px;
}

.newsletter-form-wrapper {
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 16px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
}

.newsletter-form button {
  padding: 14px 24px;
  background: white;
  color: var(--primary-blue);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

.newsletter-form-wrapper small {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .featured-article-card {
    grid-template-columns: 1fr;
    max-width: 600px;
    height: auto;
  }
  
  .featured-image .article-image {
    height: 250px;
  }
}

@media (max-width: 1024px) {
  .tips-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .tips-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .articles-page .articles-hero-section {
    margin-top: -56px !important;
    padding-top: 56px !important;
    text-align: center !important;
  }
  
  .articles-page .articles-hero-section .container {
    text-align: center !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
  }
  
  .articles-page .articles-hero-section .hero-content {
    text-align: center !important;
    margin: 0 auto !important;
    display: block !important;
  }
  
  .articles-page .articles-hero-section .hero-content h1 {
    font-size: 32px;
    text-align: center !important;
    margin: 0 auto !important;
    display: block !important;
  }
  
  .articles-page .articles-hero-section .hero-content p {
    font-size: 16px;
    text-align: center !important;
    margin: 0 auto !important;
    max-width: 100% !important;
  }
  
  .articles-grid {
    grid-template-columns: 1fr;
  }
  
  .section-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-card {
    padding: 32px 24px;
  }
  
  .articles-page .categories-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    padding: 0 16px !important;
  }
  
  .articles-page .categories-section .category-card {
    padding: 24px 20px !important;
    height: auto !important;
    min-height: unset !important;
    width: 100% !important;
    border-radius: 12px !important;
    margin-bottom: 0 !important;
    overflow: visible !important;
    display: block !important;
  }
  
  .articles-page .categories-section .category-icon-wrapper {
    margin-bottom: 16px !important;
  }
  
  .articles-page .categories-section .category-card h3 {
    font-size: 18px !important;
    margin-bottom: 12px !important;
    line-height: 1.3 !important;
  }
  
  .articles-page .categories-section .category-card p {
    font-size: 14px !important;
    line-height: 1.5 !important;
    height: auto !important;
    overflow: visible !important;
    white-space: normal !important;
    text-overflow: none !important;
    -webkit-line-clamp: none !important;
    display: block !important;
  }
  
  .articles-hero-section,
  .quick-tips-section,
  .categories-section,
  .latest-articles-section,
  .newsletter-subscription-section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .articles-hero-section .hero-content h1 {
    font-size: 28px;
  }
  
  .quick-tips-section h2,
  .categories-section h2,
  .section-header h2 {
    font-size: 24px;
  }
  
  .artikel-page .featured-content {
    padding: 24px;
  }
  
  .artikel-page .featured-content h3 {
    font-size: 22px;
  }
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.footer-copyright {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

/* === Skip Link === */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  width: auto;
  height: auto;
  padding: 0.5rem 0.75rem;
  background: #111;
  color: #fff;
  z-index: 10000;
}

/* === Mobile Responsive === */
@media (max-width: 768px) {
  .header-container {
    padding: 16px 20px;
  }
  
  .header-nav {
    display: none;
  }
  
  .nav-menu {
    gap: 24px;
  }
  
  .header-logo a {
    font-size: 24px;
  }
  
  .hero-banner {
    text-align: center;
    margin-top: -56px !important;
    padding-top: 0 !important;
  }

  .hero-slider {
    height: 400px;
  }

  .hero-slide {
    padding: 40px 0;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-text {
    order: 1;
    max-width: none;
  }

  .hero-image {
    order: 2;
    margin-left: 0;
    margin-top: 30px;
  }
  
  .hero-image img {
    max-width: 300px;
  }

  .hero-nav {
    display: none;
  }

  .hero-dots {
    bottom: 15px;
  }
  
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0 16px;
  }

  .featured-item {
    flex-direction: row;
    text-align: left;
    padding: 12px;
    width: 343px;
    height: 92px;
    align-items: center;
    gap: 12px;
    position: relative;
  }

  .featured-content h3 {
    font-size: 16px;
    margin-top: 10px;
    line-height: 1.2;
    font-weight: 600;
  }

  .featured-content .price {
    font-size: 14px;
    font-weight: 500;
  }

  .featured-content .featured-cta {
    font-size: 12px;
    padding: 6px 16px;
    border-radius: 4px;
    margin-top: -20px;
    margin-left: -5px;
  }

  .featured-image {
    margin-top: 0;
    flex-shrink: 0;
    order: 2;
    width: 70px;
    height: 70px;
  }

  .featured-image img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
  }
  
  .featured-item--teal .featured-bg-image,
  .featured-item--orange .featured-bg-image {
    width: 100px !important;
    height: 100px !important;
    margin-top: 20px !important;
  }
  
  .featured-item--blue .featured-bg-image,
  .featured-item--red .featured-bg-image {
    width: 120px !important;
    height: 120px !important;
  }
  
  .featured-bg-image img {
    width: 100% !important;
    height: 100% !important;
    opacity: 1 !important;
  }
  
  .featured-item::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    right: 0 !important;
    width: 96px !important;
    height: 34px !important;
    border-radius: 8px 0 0 0 !important;
    z-index: 2 !important;
  }
  
  .featured-item--teal::after {
    display: block !important;
    background: linear-gradient(to top, rgba(36,160,176,1) 0%, rgba(36,160,176,0) 100%) !important;
  }
  
  .featured-item--blue::after {
    background: linear-gradient(to top, rgba(48,63,155,1) 0%, rgba(48,63,155,0) 100%);
  }
  
  .featured-item--orange::after {
    background: linear-gradient(to top, rgba(216,157,63,1) 0%, rgba(216,157,63,0) 100%);
  }
  
  .featured-item--red::after {
    background: linear-gradient(to top, rgba(239,101,46,1) 0%, rgba(239,101,46,0) 100%);
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .capacity-pills {
    width: 375px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    margin-left: -16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 8px;
  }
  
  .capacity-pills::-webkit-scrollbar {
    display: none;
  }
  
  .capacity-pill {
    white-space: nowrap;
    background-size: cover !important;
    background-position: center !important;
    padding: 10px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    width: auto !important;
    height: 42px !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .capacity-pill .pk-icon {
    width: 22px !important;
    height: 22px !important;
  }
  
  .channel-pills {
    width: 375px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-right: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 12px;
    margin-left: -16px;
  }
  
  .channel-pills::-webkit-scrollbar {
    display: none;
  }
  
  .channel-pill {
    white-space: nowrap;
    padding: 10px !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    width: auto !important;
    height: 42px !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .channel-pill .cctv-icon {
    width: 22px !important;
    height: 22px !important;
  }
  
  .sale-card {
    flex: 0 0 180px;
    width: 180px;
    height: 280px;
  }
  
  .sale-image {
    height: 180px !important;
    width: 180px !important;
  }
  
  .sale-image img {
    width: 180px !important;
    height: 180px !important;
  }
  
  .brands-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .feature-item {
    padding: 12px;
  }
  
  .feature-item h3 {
    font-size: 0.8rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-company {
    text-align: center;
  }
  
  .company-address {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .container {
    width: 95%;
  }
  
  .c-btn {
    display: block;
    margin: 8px auto;
    text-align: center;
    width: 200px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-stats {
    gap: 24px;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .hero-image img {
    max-width: 250px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input,
  .newsletter-btn {
    width: 100%;
  }
  
  .testimonial-item {
    flex-direction: column;
    text-align: center;
  }
  
  .sale-card {
    flex: 0 0 160px;
    width: 160px;
    height: 250px;
  }
  
  .sale-image {
    height: 160px !important;
    width: 160px !important;
  }
  
  .sale-image img {
    width: 160px !important;
    height: 160px !important;
  }
  
  .sale-info h3 {
    font-size: 0.7rem;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  
  .sale-info .price-current,
  .popular-price {
    font-size: 0.75rem !important;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .feature-item {
    padding: 10px;
  }
  
  .feature-item h3 {
    font-size: 0.75rem;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .feature-icon img {
    width: 40px;
    height: 40px;
  }

  /* Related Products Mobile - Detail Page */
  .product-detail-page .related-products {
    margin-left: -25px !important;
    height: 350px !important;
    width: 390px !important;
    overflow: visible !important;
  }

  .product-detail-page .related-products .section-title {
    font-size: 16px;
    margin-bottom: 10px;
    margin-left: 0;
  }

  .product-detail-page .related-products .sale-grid {
    gap: 12px !important;
    overflow-x: scroll !important;
    overflow-y: hidden !important;
    width: 100% !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    margin-left: 0 !important;
    height: auto !important;
    padding-bottom: 10px !important;
    padding-right: 25px !important;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
  }

  .product-detail-page .related-products .sale-grid::-webkit-scrollbar {
    height: 0px;
    width: 0px;
  }

  .product-detail-page .related-products .sale-card {
    flex: 0 0 164px !important;
    width: 164px !important;
    height: 284px !important;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .product-detail-page .related-products .sale-image {
    height: 164px !important;
    width: 164px !important;
    overflow: hidden;
  }

  .product-detail-page .related-products .sale-image img {
    width: 164px !important;
    height: 164px !important;
    object-fit: cover;
  }

  .product-detail-page .related-products .sale-info {
    padding: 0px !important;
    display: flex !important;
    flex-direction: column !important;
    height: 106px !important;
    gap: 0px !important;
    margin-top: -10px;
  }

  .product-detail-page .related-products .sale-info h3 {
    font-size: 12px;
    line-height: 1.2;
    height: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    font-weight: 500;
    color: #333;
  }

  .product-detail-page .related-products .product-capacity,
  .product-detail-page .related-products .product-channel,
  .product-detail-page .related-products .product-resolution {
    font-size: 10px;
    color: #16588D;
    background: #E3F2FD;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
    font-weight: 500;
    margin-bottom: 4px;
  }

  .product-detail-page .related-products .product-brand {
    font-size: 10px;
    color: #4A5568;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  .product-detail-page .related-products .popular-price {
    font-size: 14px;
    font-weight: 500;
    color: #191919;
    margin-top: auto;
  }

  .product-detail-page .related-products .popular-price span {
    color: #191919;
  }

  /* Hide purchase card and marketplace section on mobile */
  .purchase-card,
  .marketplace-card {
    display: none !important;
  }

  /* Mobile Sticky Bottom Section */
  .mobile-sticky-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 375px;
    height: 113px;
    background: white;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: bottom 0.3s ease;
  }

  .mobile-sticky-bottom.dropdown-open {
    bottom: 135px;
  }
  
  /* Make sticky bottom transparent when over footer */
  .page-detail-produk .mobile-sticky-bottom {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
  }

  .sticky-action-buttons {
    display: flex;
    gap: 12px;
    padding: 10px 16px;
    border-bottom: 1px solid #e5e7eb;
    height: 64px;
    box-sizing: border-box;
  }

  .mobile-btn-beli,
  .mobile-btn-keranjang {
    flex: 1;
    height: 44px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .mobile-btn-beli {
    background: white;
    color: #16588D;
    border: 2px solid #16588D;
  }

  .mobile-btn-beli:hover {
    background: #16588D;
    color: white;
  }

  .mobile-btn-keranjang {
    background: #16588D;
    color: white;
  }

  .mobile-btn-keranjang:hover {
    background: #1e40af;
  }

  .sticky-marketplace-dropdown {
    position: relative;
    z-index: 1001;
    margin: 0;
    padding: 0;
  }

  .marketplace-toggle {
    width: 100%;
    padding: 12px 16px;
    background: white;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Lexend', sans-serif;
    color: #374151;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 49px;
  }

  .marketplace-toggle:hover {
    background: #f9fafb;
  }

  .marketplace-toggle svg {
    transition: transform 0.3s ease;
  }

  .dropdown-open .marketplace-toggle svg {
    transform: rotate(180deg);
  }

  .marketplace-dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: 200px;
    overflow-y: auto;
    display: none !important;
    z-index: 1002;
    width: 100%;
    box-sizing: border-box;
  }

  .marketplace-dropdown-content.show,
  .sticky-marketplace-dropdown .marketplace-dropdown-content.show {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .marketplace-item-mobile {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
    margin: 0;
    line-height: 1;
  }
  
  .marketplace-item-mobile:last-child {
    border-bottom: none;
    padding-bottom: 12px;
  }

  .marketplace-item-mobile:hover {
    background: #f9fafb;
  }

  .marketplace-item-mobile.disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  .marketplace-logo-mobile {
    width: 63px;
    height: 20px;
    margin-right: 12px;
  }

  .marketplace-price-mobile {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: #16588D;
    text-align: left;
    margin-left: 8px;
  }
  
  .marketplace-btn-mobile {
    font-size: 14px;
    font-weight: 500;
    color: #16588D;
    text-decoration: none;
  }

  .marketplace-unavailable {
    font-size: 12px;
    color: #9ca3af;
  }

}

/* ========== COOLING SYSTEM PAGE ========== */
.cooling-system-page {
  background: #ffffff;
}

/* Hero Section - Responsive */
.cooling-hero,
.monitoring-hero {

  margin: 20px auto;

  overflow: hidden;
  /* border-radius: 8px; */
  width: 100%;
  max-width: 1320px;
  height: auto;
  min-height: 174px;
}

.hero-full-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cooling-hero .container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0 30px;
}

.hero-content {
  flex: 1;
}

.hero-badge {
  background: #CAE8FF;
  color: #333;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  margin-bottom: 12px;
  width: 128px;
  text-align: center;
}

.hero-image {
  flex: 0 0 200px;
  margin-right: 20px;
}

.hero-image img {
  width: 100%;
  height: auto;
}

/* Main Content Layout */
.cooling-content,
.monitoring-content {
  padding: 0;
}

.cooling-content .container,
.monitoring-content .container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
}

.content-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  align-items: start;
  margin-top: 0;
  width: 100%;
}

/* Sidebar - Responsive */
.product-sidebar {
  background: #ffffff;
  /* border-radius: 12px; */

  /* box-shadow: 0 2px 8px rgba(0,0,0,0.08); */
  position: sticky;
  top: 20px;
  margin-top: 0;
  margin-left: 0;
  transform: translateX(0);
  z-index: 10;
  width: 100%;
  max-width: 280px;
  min-height: 609px;
  height: auto;

}

.product-sidebar h3:first-child {
  font-family: 'Lexend', sans-serif;
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  line-height: 125%;
  letter-spacing: 0%;
  color: #191919;
  margin: 0 0 12px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-sidebar h3 {
  font-family: 'Lexend', sans-serif;
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  line-height: 125%;
  letter-spacing: 0%;
  color: #191919;
  margin: 0 0 12px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-sidebar h3:not(:first-child) {
  margin-top: 32px;
}

.filter-group {
  margin-bottom: 16px;
}

.filter-group h4 {
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 125%;
  letter-spacing: 0%;
  color: #191919;
  margin: 0 0 12px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.filter-group h4:hover {
  color: #16588D;
}

.filter-group h4.active,
.filter-group h4:active {
  color: #16588D;
  font-weight: 500;
}

.filter-group h4:focus {
  color: #16588D;
}

.toggle-icon {
  font-size: 0.8rem;
  transition: transform 0.2s;
}

.filter-options {
  display: none !important;
}

.filter-options.show {
  display: block !important;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 125%;
  color: #191919;
  cursor: pointer;
  transition: color 0.2s;
}

.filter-group label:hover {
  color: #191919;
}.filter-group label:has(input[type="checkbox"]:checked) {
    color: #16588D;
    font-weight: 500;
}

.filter-group input[type="checkbox"] {
  width: 13px;
  height: 13px;
  accent-color: #1B517C;
}

.filter-group .count {
  margin-left: auto;
  font-size: 12px;
  font-weight: 300;
  line-height: 150%;
  color: #4A5568;
}

/* Product Main Area - Responsive */
.product-main {
  background: #ffffff;
  /* border-radius: 12px; */
  padding: 0;
  /* padding-top: 20px; */
  margin: 0;
  margin-left: 0;
  margin-top: 10px;
  /* box-shadow: 0 2px 8px rgba(0,0,0,0.08); */
  min-height: 800px;
  height: auto;
  width: 100%;

}

/* Products Header - Responsive */
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* margin-top: 20px; */
  margin-bottom: 24px;
  /* margin-left: 10px; */
  margin-right: 0;

  /* border-bottom: 1px solid #e5e7eb; */
  width: 100%;
  min-height: 40px;
  background:#ffffff;

}

.results-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  color: #191919;
  line-height: 125%;
  font-weight: 300;
  font-style: normal;
}

.per-page-select, .sort-select {

  border-radius: 6px;
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  color: #191919;
  line-height: 125%;
  font-weight: 300;
  font-style: normal;
  background: #E2E5F1;
  white-space: nowrap;
  width: 148px;
  height: 30px;
  
}

.sort-options {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sort-options label {
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  color: #191919;
  line-height: 125%;
  font-weight: 500;
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

/* Products Grid - Responsive */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 210px));
  gap: 20px;
  margin-bottom: 40px;
  justify-content: flex-start;
  width: 100%;
  max-width: none;
}

/* Base Product Card Styles */
.product-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

/* ====== COOLING SYSTEM & MONITORING PAGE PRODUCT CARD ====== */
/* Override WooCommerce and other page styles */
.products-grid .product-card {
  background: white !important;
  border-radius: 10px !important;

  width: 210px !important;
  height: 338px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
  text-align: left !important;
  transition: none !important;
  transform: none !important;
}

/* Monitoring & Security page product info styling - same as sale-info */
.products-grid .product-info {
  padding: 0px 16px 0px 0;
  display: flex;
  flex-direction: column;
  width: 210px;
  height: 114px;
  justify-content: space-between;
}

.products-grid .product-info .product-brand {
  margin-bottom: 2px;
  height: 15px;
  display: flex;
  align-items: center;
}

.products-grid .product-info h3 {
  font-family: 'Lexend', sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 125%;
  letter-spacing: 0%;
  color: #191919;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  margin-bottom: 0;
  max-height: 40px !important;
  min-height: 40px !important;
  height: 40px !important;
}

.products-grid .product-info .product-capacity {
  margin-bottom: 4px;
  height: 20px;
  display: flex;
  align-items: center;
}

.products-grid .product-info .product-channel {
  margin-bottom: 4px;
  height: 20px;
  display: flex;
  align-items: center;
}

.products-grid .product-info .product-resolution {
  margin-bottom: 4px;
  height: 20px;
  display: flex;
  align-items: center;
}

.products-grid .product-info .resolution-wrapper {
  height: 20px;
  display: flex;
  align-items: center;
  min-height: 20px !important;
}

.products-grid .product-info .product-price {
  margin-top: auto;
}

/* Product image styling for grid layout - Responsive */
.products-grid .product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 10px;

  border-bottom: none;
  margin-bottom: 10px;
}

.products-grid .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Product info container */
.products-grid .product-info {
  padding: 0px 16px 0px 0;
  display: flex;
  flex-direction: column;
  height: 108px; /* Total card 338px - image 210px - gap 20px = 108px */
  justify-content: space-between;
}

/* Product text elements */
.products-grid .product-brand {
  font-family: 'Lexend', sans-serif;
  font-size: 12px;
  font-weight: 300;
  font-style: normal;
  line-height: 125%;
  letter-spacing: 0%;
  color: #4A5568;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.products-grid .product-title {
  font-family: 'Lexend', sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 125%;
  letter-spacing: 0%;
  margin-bottom: 4px;
  color: #191919;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.products-grid .product-capacity {
  font-family: 'Lexend', sans-serif;
  font-size: 12px;
  font-weight: 500;
  font-style: normal;
  line-height: 125%;
  letter-spacing: 0%;
  color: #16588D;
  background-color: #D7EDFF;
  padding: 2px 6px;
  border-radius: 2px;
  margin-bottom: 6px;
  text-transform: none;
  display: inline-block;
  width: fit-content;
}

.products-grid .product-price {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.products-grid .current-price {
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  line-height: 125%;
  letter-spacing: 0%;
  color: #68AB0F;
}

/* Removed hardcoded media queries - grid is now fully responsive with auto-fill */

.product-brand {
  font-family: 'Lexend', sans-serif;
  font-size: 12px;
  font-weight: 300;
  font-style: normal;
  line-height: 125%;
  letter-spacing: 0%;
  color: #4A5568;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.product-capacity {
  font-family: 'Lexend', sans-serif;
  font-size: 12px;
  font-weight: 500;
  font-style: normal;
  line-height: 125%;
  letter-spacing: 0%;
  color: #16588D;
  background-color: #D7EDFF;
  padding: 2px 6px;
  border-radius: 2px;
  margin-bottom: 6px;
  text-transform: none;
  display: inline-block;
  width: fit-content;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: -30px;
}

.page-btn {
  padding: 0;
  border: 1px solid #ddd;
  background: white;
  color: #333;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-btn:hover:not(:disabled) {
  background: #f5f5f5;
}

.page-btn.active {
  background: #1B517C;
  color: white;
  border-color: #1B517C;
}

/* Desktop pagination arrows - no background */
.page-btn.prev,
.page-btn.next {
  border: none;
  background: transparent;
  border-radius: 0;
}

.page-btn.prev:hover,
.page-btn.next:hover {
  background: transparent;
}

.page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Mobile pagination styling */
.mobile-monitoring-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 20px 0;
}

.mobile-monitoring-page-btn {
  padding: 0;
  border: 1px solid #ddd;
  background: white;
  color: #333;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.mobile-monitoring-page-btn:hover:not(:disabled) {
  background: #f5f5f5;
}

.mobile-monitoring-page-btn.mobile-monitoring-active {
  background: #1B517C;
  color: white;
  border-color: #1B517C;
}

.mobile-monitoring-page-btn.mobile-monitoring-prev,
.mobile-monitoring-page-btn.mobile-monitoring-next {
  border: none;
  background: transparent;
  border-radius: 0;
}

.mobile-monitoring-page-btn.mobile-monitoring-prev:hover,
.mobile-monitoring-page-btn.mobile-monitoring-next:hover {
  background: transparent;
}

.mobile-monitoring-page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Newsletter Section */

.newsletter-content h3 {
  font-family: 'Lexend', sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 125%;
  margin: 0;
}

.newsletter-content p {
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 100%;
  opacity: 0.9;
  margin: 0;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  width: 460px;
  height: 50px;
  padding: 5px 5px 5px 12px;
  border-radius: 10px;
  background: #FFFFFF;
  align-items: center;
  margin: 0 auto;
  margin-right: 10px;
}

.newsletter-form input {
  flex: 1;

  color: #767676;
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 100%;
  border: none;
  border-radius: 6px;
}

.newsletter-form button {

  background: #8BC43F;
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 125%;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  padding: 11px 14px;
  transition: background 0.2s;
}

.newsletter-form button:hover {
  background: #689F38;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .content-layout {
    grid-template-columns: 250px 1fr;
    gap: 30px;
  }
  
  .cooling-hero .container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .hero-image {
    flex: none;
  }
}

/* Tablet-specific styles (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  .products-sale .sale-grid,
  .popular-products .sale-grid {
    gap: 16px;
  }

  .sale-card {
    flex: 0 0 calc(25% - 12px);
    min-width: 180px;
  }

  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .capacity-pills,
  .channel-pills {
    gap: 8px;
  }

  .nav-menu {
    gap: 8px;
  }

  .nav-menu li a {
    padding: 0 12px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .content-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-sidebar {
    position: static;
    order: 2;
  }

  .product-main {
    order: 1;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
  }

  .products-header {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .hero-title {
    font-size: 2rem;
  }
}

.product-channel {
  font-family: 'Lexend', sans-serif;
  font-size: 12px;
  font-weight: 500;
  font-style: normal;
  line-height: 125%;
  letter-spacing: 0%;
  color: #16588D;
  background-color: #D7EDFF;
  padding: 2px 6px;
  border-radius: 2px;
  margin-bottom: 6px;
  text-transform: none;
  display: inline-block;
  width: fit-content;
}

.product-resolution {
  font-family: 'Lexend', sans-serif;
  font-size: 12px;
  font-weight: 500;
  font-style: normal;
  line-height: 125%;
  letter-spacing: 0%;
  color: #16588D;
  background-color: #D7EDFF;
  padding: 2px 6px;
  border-radius: 2px;
  margin-bottom: 6px;
  text-transform: none;
  display: inline-block;
  width: fit-content;
}

/* ============================
   SINGLE ARTICLE PAGE
   ============================ */
.single-article {
  background: #FFFFFF;
  min-height: 100vh;
}

/* Article Breadcrumb - aligned with product breadcrumb */
.article-breadcrumb {
  font-family: 'Lexend', sans-serif;
  font-size: 12px;
  color: #4A5568;
  font-weight: 300;
  line-height: 125%;
  margin: 0;
  padding: 12px 0;
}

.article-breadcrumb a {
  color: #4A5568;
  text-decoration: none;
  transition: color 0.2s;
}

.article-breadcrumb a:hover {
  color: #16588D;
}

.article-breadcrumb .breadcrumb-separator {
  color: #4A5568;
  margin: 0 8px;
}

.article-breadcrumb .breadcrumb-current {
  color: #16588D;
  font-weight: 500;
}

.breadcrumb {
  padding: 20px 0;
  font-size: 14px;
  color: #666;
}

.breadcrumb a {
  color: var(--primary-blue);
  text-decoration: none;
}

.breadcrumb .current {
  color: #333;
  font-weight: 500;
}

.article-container {
  background: white;
  margin: 0;
  overflow: visible;
}

.article-container .container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  padding: 40px 30px;
  max-width: 1440px;
  margin: 0 auto;
}

.article-header {
  margin-bottom: 30px;
}

.article-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.article-category {
  background: #16588D;
  color: white;
  padding: 4px 14px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Lexend', sans-serif;
}

.article-date, .reading-time {
  background: transparent;
  padding: 0;
  border-radius: 0;
  font-size: 13px;
  color: #6B7280;
  font-family: 'Lexend', sans-serif;
  font-weight: 300;
}

.article-title {
  font-family: 'Lexend', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #191919;
  line-height: 1.3;
  margin-bottom: 20px;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E5E7EB;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #16588D;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 16px;
  font-family: 'Lexend', sans-serif;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author-name {
  font-family: 'Lexend', sans-serif;
  font-weight: 500;
  color: #191919;
  font-size: 14px;
}

.publish-date {
  font-family: 'Lexend', sans-serif;
  font-size: 12px;
  color: #6B7280;
  font-weight: 300;
}

.article-featured-image {
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}

.featured-img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  display: block;
}

.article-body {
  font-family: 'Lexend', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 30px;
  font-weight: 300;
}

.article-body p {
  margin-bottom: 18px;
}

.article-body h2 {
  font-family: 'Lexend', sans-serif;
  color: #191919;
  margin: 32px 0 16px 0;
  font-size: 22px;
  font-weight: 600;
}

.article-body h3 {
  font-family: 'Lexend', sans-serif;
  color: #191919;
  margin: 28px 0 14px 0;
  font-size: 18px;
  font-weight: 600;
}

.article-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tags-label {
  font-weight: 600;
  color: #666;
}

.tag {
  background: #f1f3f4;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  color: #666;
}

.article-share {
  border-top: 1px solid #eee;
  padding-top: 30px;
}

.article-share h4 {
  color: #2c3e50;
  margin-bottom: 15px;
}

.share-buttons {
  display: flex;
  gap: 12px;
}

.share-btn {
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.share-btn.facebook {
  background: #3b5998;
  color: white;
}

.share-btn.twitter {
  background: #1da1f2;
  color: white;
}

.share-btn.whatsapp {
  background: #25d366;
  color: white;
}

.share-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Sidebar */
.article-sidebar {
  background: #F9FAFB;
  padding: 24px;
  border-radius: 8px;
  height: fit-content;
  position: sticky;
  top: 100px;
  border: 1px solid #E5E7EB;
}

.sidebar-widget {
  margin-bottom: 32px;
}

.sidebar-widget:last-child {
  margin-bottom: 0;
}

.sidebar-widget h3 {
  font-family: 'Lexend', sans-serif;
  color: #191919;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #E5E7EB;
}

.recent-article {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E5E7EB;
}

.recent-article:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.recent-thumb {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 6px;
  overflow: hidden;
  background: #F3F4F6;
}

.recent-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.no-thumb {
  background: #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #9CA3AF;
  height: 100%;
  font-family: 'Lexend', sans-serif;
}

.recent-content h4 {
  margin-bottom: 6px;
}

.recent-content h4 a {
  font-family: 'Lexend', sans-serif;
  color: #191919;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recent-content h4 a:hover {
  color: var(--primary-blue);
}

.recent-date {
  font-family: 'Lexend', sans-serif;
  font-size: 11px;
  color: #9CA3AF;
  font-weight: 300;
}

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

.category-list li {
  margin-bottom: 12px;
}

.category-list li:last-child {
  margin-bottom: 0;
}

.category-list a {
  font-family: 'Lexend', sans-serif;
  color: #4B5563;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.category-list a:hover {
  color: #16588D;
}

/* Related Articles */
.related-articles {
  background: white;
  padding: 60px 0;
}

.related-articles h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 40px;
  font-size: 32px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.related-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.related-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.no-image {
  height: 200px;
  background: #f1f3f4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}

.related-content {
  padding: 20px;
}

.related-content h3 {
  margin-bottom: 10px;
}

.related-content h3 a {
  color: #2c3e50;
  text-decoration: none;
  font-size: 18px;
}

.related-content h3 a:hover {
  color: var(--primary-blue);
}

.related-content p {
  color: #666;
  line-height: 1.5;
  margin-bottom: 15px;
}

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

/* ============================
   ARCHIVE PAGE (Category, Tags, etc)
   ============================ */
.archive-page {
  background: #FFFFFF;
  min-height: 100vh;
  padding: 0;
}

.archive-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  padding: 40px 30px;
  max-width: 1440px;
  margin: 0 auto;
}

.archive-main {
  min-width: 0;
}

.archive-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid #E5E7EB;
}

.archive-title {
  font-family: 'Lexend', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #191919;
  margin-bottom: 12px;
}

.archive-description {
  font-family: 'Lexend', sans-serif;
  font-size: 15px;
  color: #6B7280;
  line-height: 1.6;
  font-weight: 300;
}

/* Posts Grid */
.posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.post-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: row;
  gap: 0;
}

.post-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.post-card .post-thumbnail {
  flex-shrink: 0;
  width: 280px;
  height: 200px;
  overflow: hidden;
  background: #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.post-card .post-thumbnail.no-thumb {
  background: #E5E7EB;
}

.post-card .post-thumbnail.no-thumb span {
  font-family: 'Lexend', sans-serif;
  font-size: 12px;
  color: #9CA3AF;
  font-weight: 400;
}

.post-card-content {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-category {
  background: #16588D;
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Lexend', sans-serif;
  display: inline-block;
  width: fit-content;
  margin-bottom: 12px;
}

.post-card .post-title {
  font-family: 'Lexend', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.post-card .post-title a {
  color: #191919;
  text-decoration: none;
  transition: color 0.2s ease;
}

.post-card .post-title a:hover {
  color: #16588D;
}

.post-meta {
  font-family: 'Lexend', sans-serif;
  font-size: 12px;
  color: #6B7280;
  margin-bottom: 12px;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta-separator {
  color: #D1D5DB;
}

.post-excerpt {
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  color: #4B5563;
  line-height: 1.6;
  margin-bottom: 16px;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.readmore {
  font-family: 'Lexend', sans-serif;
  color: #16588D;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
  margin-top: auto;
}

.readmore:hover {
  color: #0F4264;
}

.no-posts {
  font-family: 'Lexend', sans-serif;
  text-align: center;
  color: #6B7280;
  padding: 60px 20px;
  font-size: 16px;
}

/* Archive Sidebar */
.archive-sidebar {
  min-width: 0;
}

/* Sidebar Widget Styling (for WordPress Widgets) */
.sidebar,
.archive-sidebar .sidebar,
aside.sidebar {
  background: #F9FAFB;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
}

.sidebar .widget,
.sidebar section {
  margin-bottom: 32px;
  background: transparent;
  padding: 0;
  border: none;
  border-radius: 0;
}

.sidebar .widget:last-child,
.sidebar section:last-child {
  margin-bottom: 0;
}

.sidebar .widget-title,
.sidebar h2,
.sidebar h3,
.sidebar h4 {
  font-family: 'Lexend', sans-serif !important;
  color: #191919 !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  margin-bottom: 16px !important;
  margin-top: 0 !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid #E5E7EB !important;
  line-height: 1.3 !important;
}

/* Widget Search */
.sidebar .widget_search .search-form,
.sidebar form[role="search"],
.sidebar .search-form {
  display: flex !important;
  gap: 8px !important;
  margin: 0 !important;
}

.sidebar .widget_search .search-field,
.sidebar input[type="search"],
.sidebar .search-field {
  font-family: 'Lexend', sans-serif !important;
  flex: 1 !important;
  padding: 10px 14px !important;
  border: 1px solid #E5E7EB !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  font-weight: 300 !important;
  transition: border-color 0.2s !important;
  box-sizing: border-box !important;
}

.sidebar .widget_search .search-field:focus,
.sidebar input[type="search"]:focus,
.sidebar .search-field:focus {
  outline: none !important;
  border-color: #16588D !important;
}

.sidebar .widget_search .search-submit,
.sidebar input[type="submit"],
.sidebar .search-submit {
  font-family: 'Lexend', sans-serif !important;
  padding: 10px 20px !important;
  background: #16588D !important;
  color: white !important;
  border: none !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
}

.sidebar .widget_search .search-submit:hover,
.sidebar input[type="submit"]:hover,
.sidebar .search-submit:hover {
  background: #0F4264 !important;
}

/* Widget Recent Posts */
.sidebar .widget_recent_entries ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.sidebar .widget_recent_entries li {
  margin-bottom: 16px !important;
  margin-left: 0 !important;
  padding-bottom: 16px !important;
  padding-left: 0 !important;
  border-bottom: 1px solid #E5E7EB !important;
  list-style: none !important;
}

.sidebar .widget_recent_entries li:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
}

.sidebar .widget_recent_entries li a {
  font-family: 'Lexend', sans-serif !important;
  color: #191919 !important;
  text-decoration: none !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
  font-weight: 500 !important;
  display: block !important;
  margin-bottom: 6px !important;
  transition: color 0.2s !important;
}

.sidebar .widget_recent_entries li a:hover {
  color: #16588D !important;
}

.sidebar .widget_recent_entries .post-date {
  font-family: 'Lexend', sans-serif !important;
  font-size: 11px !important;
  color: #9CA3AF !important;
  font-weight: 300 !important;
}

/* Widget Categories & Archives */
.sidebar .widget_categories ul,
.sidebar .widget_archive ul,
.sidebar ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.sidebar .widget_categories li,
.sidebar .widget_archive li,
.sidebar ul li {
  margin-bottom: 12px !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
  list-style: none !important;
}

.sidebar .widget_categories li:last-child,
.sidebar .widget_archive li:last-child,
.sidebar ul li:last-child {
  margin-bottom: 0 !important;
}

.sidebar .widget_categories li a,
.sidebar .widget_archive li a,
.sidebar ul li a {
  font-family: 'Lexend', sans-serif !important;
  color: #4B5563 !important;
  text-decoration: none !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  transition: color 0.2s !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 4px 0 !important;
}

.sidebar .widget_categories li a:hover,
.sidebar .widget_archive li a:hover,
.sidebar ul li a:hover {
  color: #16588D !important;
}

/* Widget Recent Comments */
.sidebar .widget_recent_comments ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.sidebar .widget_recent_comments li {
  font-family: 'Lexend', sans-serif !important;
  font-size: 13px !important;
  color: #4B5563 !important;
  margin-bottom: 14px !important;
  margin-left: 0 !important;
  padding-bottom: 14px !important;
  padding-left: 0 !important;
  border-bottom: 1px solid #E5E7EB !important;
  line-height: 1.5 !important;
  list-style: none !important;
}

.sidebar .widget_recent_comments li:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
}

.sidebar .widget_recent_comments li a {
  color: #191919 !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  transition: color 0.2s !important;
}

.sidebar .widget_recent_comments li a:hover {
  color: #16588D !important;
}

/* Widget Tag Cloud */
.sidebar .widget_tag_cloud .tagcloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sidebar .widget_tag_cloud .tagcloud a {
  font-family: 'Lexend', sans-serif;
  display: inline-block;
  padding: 6px 12px;
  background: #F3F4F6;
  color: #4B5563;
  text-decoration: none;
  border-radius: 6px;
  font-size: 12px !important;
  font-weight: 400;
  transition: all 0.2s;
}

.sidebar .widget_tag_cloud .tagcloud a:hover {
  background: #16588D;
  color: white;
}

/* Widget Calendar */
.sidebar .widget_calendar table {
  width: 100%;
  font-family: 'Lexend', sans-serif;
  font-size: 13px;
  border-collapse: collapse;
}

.sidebar .widget_calendar caption {
  font-weight: 600;
  margin-bottom: 12px;
  color: #191919;
}

.sidebar .widget_calendar th {
  padding: 8px 4px;
  color: #6B7280;
  font-weight: 500;
  font-size: 12px;
}

.sidebar .widget_calendar td {
  padding: 8px 4px;
  text-align: center;
  color: #4B5563;
}

.sidebar .widget_calendar td a {
  color: #16588D;
  text-decoration: none;
  font-weight: 500;
}

.sidebar .widget_calendar td a:hover {
  text-decoration: underline;
}

/* Pagination */
.archive-pagination {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #E5E7EB;
}

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

.archive-pagination .page-numbers {
  font-family: 'Lexend', sans-serif;
  padding: 8px 16px;
  border: 1px solid #E5E7EB;
  border-radius: 6px;
  color: #4B5563;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.archive-pagination .page-numbers:hover {
  background: #F9FAFB;
  border-color: #16588D;
  color: #16588D;
}

.archive-pagination .page-numbers.current {
  background: #16588D;
  border-color: #16588D;
  color: white;
}

.archive-pagination .page-numbers.dots {
  border: none;
  pointer-events: none;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .article-container .container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px;
  }
  
  .article-title {
    font-size: 28px;
  }
  
  .share-buttons {
    flex-direction: column;
  }
  
  .share-btn {
    text-align: center;
  }
  
  .related-grid {
    grid-template-columns: 1fr;
  }

  /* Archive Page Mobile */
  .archive-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px;
  }

  .archive-title {
    font-size: 22px;
  }

  .post-card {
    flex-direction: column;
  }

  .post-card .post-thumbnail {
    width: 100%;
    height: 180px;
  }

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

  .archive-sidebar {
    display: none;
  }
}

/* === Hide Mobile-only Elements on Desktop === */
.mobile-cooling-hero,
.mobile-cooling-filters,
.mobile-cooling-products,
.mobile-pagination-section,
.mobile-monitoring-hero,
.mobile-monitoring-filters,
.mobile-monitoring-products,
.mobile-monitoring-pagination-section {
  display: none !important;
}

/* === Mobile Responsive Design === */
@media (max-width: 768px) {
  /* Show mobile cooling sections only on mobile */
  .mobile-cooling-hero,
  .mobile-cooling-filters,
  .mobile-cooling-products,
  .mobile-pagination-section,
  .mobile-monitoring-hero,
  .mobile-monitoring-filters,
  .mobile-monitoring-products,
  .mobile-monitoring-pagination-section {
    display: block !important;
  }
  .header-container {
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .header-logo a {
    font-size: 20px;
  }
  
  /* Hide desktop navigation on mobile */
  .header-nav {
    display: none;
  }

  /* Mobile Menu Full Screen Modal - Only for mobile screens */
  .mobile-menu-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }

  .mobile-menu-modal.show {
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu-modal.show .mobile-menu-content {
    transform: translateY(0);
  }

  .mobile-menu-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: white;
    display: flex;
    flex-direction: column;
    padding: 20px;
    padding-top: 60px;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    border-radius: 0;
  }

  .mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background: white;
    position: relative;
    z-index: 10;
    margin-bottom: 20px;
    padding: 16px;
  }

  .mobile-menu-close {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    color: #191919;
    border-radius: 8px;
    transition: background-color 0.2s ease;
  }

  .mobile-menu-close:hover {
    background: #f3f4f6;
  }

  .mobile-menu-nav {
    flex: 1;
    margin-top: 24px;
    padding: 0 20px;
  }

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

  .mobile-nav-list li {
    margin-bottom: 24px;
  }

  .mobile-nav-link {
    display: flex;
    align-items: center;
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #191919;
    text-decoration: none;
    transition: color 0.2s ease;
    margin-bottom: 30px;
  }

  .mobile-nav-link:hover {
    color: #16588D;
  }

  .mobile-nav-cart {
    margin-top: 20px;
    padding-top: 20px;
  }

  .mobile-nav-link.cart-link svg {
    color: #16588D;
  }

}

/* Hide mobile menu on desktop */
@media (min-width: 769px) {
  .mobile-menu-modal {
    display: none !important;
  }
  
  .mobile-menu-modal.show {
    display: none !important;
  }
}

@media (max-width: 768px) {
  /* Hamburger Menu */
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    gap: 6px;
  }
  
  .mobile-menu-toggle span {
    display: block;
    height: 2px;
    width: 24px;
    background: #333;
    border-radius: 1px;
    transition: all 0.3s ease;
  }
  
  .mobile-menu-toggle:hover span {
    background: var(--primary-blue);
  }
  
  /* Transform hamburger to X when active */
  .mobile-menu-toggle.active {
    gap: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(50deg) translateY(3.2px);
    position: relative;
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-50deg) translateY(-3.2px);
    position: relative;
  }
  
  .hero-slider {
    height: 300px;
  }
  
  .hero-slide {
    padding: 20px 0;
  }
  
  /* Mobile hero background images */
  .hero-slide-1,
  .hero-slide-2, 
  .hero-slide-3 {
    background-image: url('./assets/images/gambar_hero_mobile.png') !important;
    background-size: cover;
    background-position: center;
  }
  
  /* Hide hero overlay on mobile */
  .hero-overlay {
    display: none;
  }
  
  .hero-content {
    padding: 16px;
    align-items: flex-start;
  }
  
  .hero-text-container {
    width: 100%;
    max-width: 340px;
    /* margin-left: 16px; */
    margin-top: 200px;
    text-align: center;
  }
  
  /* Mobile-only hero container override */
  .hero-text-container {
    gap: 0px !important;
  }

  /* Mobile-only hero title styling */
  .hero-slide .hero-title {
    font-size: 28px !important;
    font-weight: 600 !important;
    line-height: 1.1 !important;
    margin-bottom: 2px !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    color: white !important;
    text-align: center !important;
  }
  
  /* Mobile-only hero subtitle styling */  
  .hero-slide .hero-subtitle {
    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
    margin-bottom: 12px !important;
    margin-top: 0px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    color: white !important;
    word-wrap: break-word;
    hyphens: auto;
    text-align: center !important;
  }
  
  .hero-cta {
    font-size: 14px;
    font-weight: 500;
    padding: 12px 24px;
    margin-top: 16px;
    margin-left: 100px;
    text-align: center;
    background: white;
    color: #1B517C;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: fit-content;
    line-height: 1;
  }
  
  /* Mobile hero navigation arrows */
  .hero-nav {
    display: block !important;
    width: 28px !important;
    height: 28px !important;
    padding: 6px !important;
    font-size: 16px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
  }
  
  .hero-prev {
    left: 15px !important;
  }
  
  .hero-next {
    right: 15px !important;
  }
  
  /* Products Sale Mobile */
  .products-sale {

    width: 375px;
    min-height: auto;
    height: auto;
  }
  
  .section-title {
    font-size: 18px;
    margin-left: -20px;
  }
  
  .products-sale .sale-grid {
    gap: 12px;
    width: 375px;
    overflow-x: auto;
    display: flex;
    margin-left: -30px;
  }
  
  .sale-card {
    width: 164px;
    height: 304px;
  }
  
  .sale-image {
    height: 164px !important;
    width: 164px !important;
  }
  
  .sale-image img {
    width: 164px !important;
    height: 164px !important;
  }
  
  .sale-info {
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 132px;
  }
  
  .sale-info h3 {
    font-size: 12px;
    line-height: 1.2;
    margin-bottom: 4px;
    height: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  
  .product-brand {
    font-size: 10px;
    margin-bottom: 2px;
    height: 12px;
  }
  
  .product-capacity,
  .product-channel {
    font-size: 10px;
    margin-bottom: 2px;
    height: 12px;
  }
  
  .product-specs {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 8px;
  }
  
  .popular-price {
    font-size: 12px;
    margin-top: auto;
  }
  
  .popular-price span {
    font-size: 14px;
  }
  
  /* Mobile Featured Products container */
  .featured-products {
    width: 375px !important;
    position: static !important;
    display: block !important;

    height: auto !important;
  }

  /* Mobile Popular Products Section - Force positioning */
  .popular-products,
  .popular-cooling-products, 
  .popular-security-products {
    width: 100% !important;
    max-width: 375px !important;
    min-height: auto !important;
    height: auto !important;
    position: static !important;
    display: block !important;
    clear: both !important;
    transform: none !important;
    float: none !important;
    overflow: visible !important;
    z-index: auto !important;
  }

  .popular-products .sale-grid,
  .popular-cooling-products .sale-grid,
  .popular-security-products .sale-grid {
    gap: 12px !important;
    overflow-x: auto !important;
    width: 375px !important;
    margin-left: -20px !important;
    height: auto !important;
  }
  
  /* Features Mobile */
  .features {
    padding: 20px 16px;
  }
  
  .container .features-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 4px !important;
    justify-content: stretch !important;
    margin-top: -40px;
  }
  
  .container .feature-item {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 6px !important;
    width: auto !important;
    text-align: left !important;
  }
  
  .container .feature-item .feature-icon img {
    width: 18px !important;
    height: 18px !important;
  }
  
  .container .feature-item h3 {
    font-size: 10px !important;
    margin: 0 !important;
    font-weight: 600 !important;
    line-height: 1.1 !important;
  }
  
  /* Newsletter Mobile */
  .newsletter-section {
    margin: 30px 16px 0;
  }
  
  .newsletter-banner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 20px;
  }
  
  .newsletter-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .newsletter-content p {
    font-size: 12px;
  }
  
  .newsletter-form {
    width: 100%;
  }
  
  .newsletter-form input {
    width: 100%;
    margin-bottom: 8px;
    font-size: 14px;
  }
  
  .newsletter-btn {
    width: 100%;
    font-size: 14px;
  }

  /* ========== MOBILE COOLING SYSTEM PAGE ========== */
  .cooling-system-page {
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 0 !important;
    overflow-x: hidden !important;
  }

  /* Hide desktop hero, show mobile */
  .cooling-hero {
    display: none !important;
  }

  /* Mobile Hero Banner - Same as desktop but 343x120 */
  .mobile-cooling-hero {
    overflow: visible !important;
    margin-top: 16px !important;
    position: relative;
    z-index: 1;
    height: auto !important;
    padding: 0 12px !important;
  }

  .mobile-hero-full-image {
    width: 100% !important;
    max-width: 350px !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center !important;
    margin: 0 !important;
    border-radius: 12px !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  /* Mobile Filter & Sort Section */
  .mobile-cooling-filters {
    width: 100% !important;
    max-width: 100% !important;
    height: 40px !important;
    box-sizing: border-box !important;
    margin: 0 auto !important;
    padding: 0 16px !important;
  }

  .mobile-filter-row {
    display: flex !important;
    gap: 8px !important;
    margin-bottom: 0 !important;
  }

  .mobile-filter-btn,
  .mobile-sort-btn {
    flex: 1 !important;
    padding: 8px 12px !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    background: #fff !important;
    font-size: 12px !important;
    color: #333 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    cursor: pointer !important;
  }

  .mobile-filter-btn:after,
  .mobile-sort-btn:after {
    content: '▼' !important;
    font-size: 10px !important;
    color: #666 !important;
  }

  /* Hide desktop content layout on mobile */
  .cooling-content .content-layout {
    display: none !important;
  }

  /* Mobile Product Grid */
  .mobile-cooling-products {
    width: 100% !important;
    max-width: 100% !important;
    padding: 16px !important;
    box-sizing: border-box !important;
    margin: 0 auto !important;
    max-height: 908px !important;
    overflow: hidden !important;
  }

  .mobile-product-grid {
    display: grid !important;
    grid-template-columns: 164px 164px !important;
    gap: 15px !important;
    justify-content: center !important;
  }

  .mobile-product-card {
    background: #fff !important;
    border: 1px solid #eee !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05) !important;
    width: 164px !important;
    height: 284px !important;
  }

  .mobile-product-image {
    width: 100% !important;
    height: 164px !important;
    overflow: hidden !important;
  }

  .mobile-product-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .mobile-product-link {
    text-decoration: none !important;
    color: inherit !important;
  }

  .mobile-product-link * {
    text-decoration: none !important;
  }

  .mobile-product-info {
    display: flex !important;
    flex-direction: column !important;
    height: 120px !important;
    box-sizing: border-box !important;
  }

  .mobile-product-brand {
    font-size: 12px !important;
    color: #5B7081 !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
  }

  .mobile-product-title {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #191919 !important;
    line-height: 1.3 !important;
    margin-bottom: 8px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    flex-grow: 1 !important;
    text-decoration: none !important;
  }

  .mobile-product-capacity {
    font-size: 12px !important;
    color: #16588D !important;
    margin-bottom: 8px !important;
    font-weight: 600 !important;
    background: #E3F2FD !important;
    padding: 4px 8px !important;
    border-radius: 4px !important;
    display: inline-block !important;
    width: fit-content !important;
    text-decoration: none !important;
  }

  .mobile-product-price {
    font-size: 16px !important;
    font-family: 'Lexend', sans-serif !important;
    font-weight: 500 !important;
    line-height: 125% !important;
    color: #68AB0F !important;
  }

  /* Mobile Pagination */
  .mobile-pagination {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 20px 16px !important;
    margin: 0 auto !important;
    max-width: 100% !important;
  }

  .mobile-page-btn {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    border: 1px solid #ddd !important;
    background: #fff !important;
    color: #333 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  .mobile-page-btn:hover {
    background: #f5f5f5 !important;
  }

  .mobile-page-btn.mobile-active {
    background: #B3D9FF !important;
    color: #16588D !important;
    border-color: #B3D9FF !important;
  }

  .mobile-page-btn:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
  }

  .mobile-prev,
  .mobile-next {
    font-size: 18px !important;
    border: none !important;
    background: transparent !important;
    border-radius: 0 !important;
  }

  .mobile-prev:hover,
  .mobile-next:hover {
    background: transparent !important;
  }

  /* Hide desktop elements on mobile */
  .product-sidebar,
  .products-header,
  .products-grid,
  .pagination {
    display: none !important;
  }

  /* ========== MOBILE MONITORING & SECURITY PAGE ========== */
  /* Move this CSS inside mobile media query to not affect desktop */

  /* Hide desktop hero, show mobile - only on mobile */
  .monitoring-hero {
    display: none !important;
  }

  /* Mobile Hero Banner - Monitoring & Security 343x120 */
  .mobile-monitoring-hero {
    overflow: visible !important;
    margin-top: 16px !important;
    position: relative;
    z-index: 1;
    height: auto !important;
    padding: 0 12px !important;
  }
  
  .mobile-hero-full-image {
    width: 100% !important;
    max-width: 350px !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center !important;
    margin: 0 !important;
    border-radius: 12px !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  /* Mobile Filter & Sort Section */
  .mobile-monitoring-filters {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 16px !important;
    background: #fff !important;
    box-sizing: border-box !important;
    border-bottom: 1px solid #eee !important;
    margin: 0 auto !important;
  }

  .mobile-filter-row {
    display: flex !important;
    gap: 8px !important;
    margin-bottom: 0 !important;
  }

  .mobile-filter-btn,
  .mobile-sort-btn {
    flex: 1 !important;
    padding: 8px 12px !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    background: #fff !important;
    font-size: 12px !important;
    color: #333 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    cursor: pointer !important;
  }

  .mobile-filter-btn:after,
  .mobile-sort-btn:after {
    content: '▼' !important;
    font-size: 10px !important;
    color: #666 !important;
  }

  /* Hide desktop content layout on mobile */
  .monitoring-content .content-layout {
    display: none !important;
  }

  /* Mobile Product Grid */
  .mobile-monitoring-products {
    width: 100% !important;
    max-width: 100% !important;
    padding: 16px !important;
    box-sizing: border-box !important;
    margin: 0 auto !important;
    max-height: 908px !important;
    overflow: hidden !important;
  }

  .mobile-monitoring-grid {
    display: grid !important;
    grid-template-columns: 164px 164px !important;
    gap: 15px !important;
    justify-content: center !important;
  }

  .mobile-monitoring-card {
    background: #fff !important;
    border: 1px solid #eee !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05) !important;
    width: 164px !important;
    height: 284px !important;
  }

  .mobile-monitoring-image {
    width: 100% !important;
    height: 164px !important;
    overflow: hidden !important;
  }

  .mobile-monitoring-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .mobile-monitoring-link {
    text-decoration: none !important;
    color: inherit !important;
  }

  .mobile-monitoring-link * {
    text-decoration: none !important;
  }

  .mobile-monitoring-info {
    display: flex !important;
    flex-direction: column !important;
    height: 120px !important;
    box-sizing: border-box !important;
    padding: 8px !important;
    justify-content: space-between !important;
  }

  .mobile-monitoring-brand {
    font-size: 10px !important;
    color: #666 !important;
    margin-bottom: 4px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
  }

  .mobile-monitoring-title {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #191919 !important;
    line-height: 1.3 !important;
    margin-bottom: 8px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    flex-grow: 1 !important;
    text-decoration: none !important;
  }

  .mobile-monitoring-resolution {
    font-size: 12px !important;
    color: #16588D !important;
    margin-bottom: 8px !important;
    font-weight: 600 !important;
    background: #E3F2FD !important;
    padding: 4px 8px !important;
    border-radius: 4px !important;
    display: inline-block !important;
    width: fit-content !important;
    text-decoration: none !important;
  }

  .mobile-monitoring-price {
    font-size: 16px !important;
    font-family: 'Lexend', sans-serif !important;
    font-weight: 500 !important;
    line-height: 125% !important;
    color: #68AB0F !important;
  }

  /* Mobile Pagination */
  .mobile-monitoring-pagination {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 20px 16px !important;
    margin: 0 auto !important;
    max-width: 375px !important;
  }

  .mobile-monitoring-page-btn {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    border: 1px solid #ddd !important;
    background: #fff !important;
    color: #333 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  .mobile-monitoring-page-btn:hover {
    background: #f5f5f5 !important;
  }

  .mobile-monitoring-page-btn.mobile-monitoring-active {
    background: #B3D9FF !important;
    color: #16588D !important;
    border-color: #B3D9FF !important;
  }

  .mobile-monitoring-page-btn:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
  }

  .mobile-monitoring-prev,
  .mobile-monitoring-next {
    font-size: 18px !important;
    border: none !important;
    background: transparent !important;
    border-radius: 0 !important;
  }

  .mobile-monitoring-prev:hover,
  .mobile-monitoring-next:hover {
    background: transparent !important;
  }
}

/* Mobile Filter Modal */
.mobile-filter-modal {
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 50000;
  transform: translateY(-100%);
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  visibility: hidden;
  opacity: 0;
}

.mobile-filter-modal.show {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

.mobile-filter-content {
  height: calc(100vh - 56px);
  display: flex;
  flex-direction: column;
}

.mobile-filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 16px;
  border-bottom: 1px solid #e5e7eb;
  background: white;
  position: relative;
  z-index: 10;
}

.mobile-filter-header h3 {
  font-family: "Lexend", sans-serif;
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  color: #191919;
}

.mobile-filter-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #6b7280;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: background-color 0.2s ease;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  position: relative;
}

.mobile-filter-close:hover {
  background: #f3f4f6;
}

.mobile-filter-body {
  flex: 1;
  overflow-y: auto;
  padding: 0 20px;
}

.mobile-filter-section {
  border-bottom: 1px solid #f3f4f6;
  margin-bottom: 16px;
}

.mobile-filter-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  cursor: pointer;
}

.mobile-filter-title h4 {
  font-family: "Lexend", sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  color: #374151;
}

.filter-arrow {
  display: none;
}

.mobile-filter-options {
  padding-bottom: 16px;
  max-height: none;
  overflow: visible;
}

.filter-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-family: "Lexend", sans-serif;
  font-size: 14px;
  color: #1B517C;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.filter-option:hover {
  background: #f8f9fa;
  padding-left: 8px;
  border-radius: 4px;
}

.filter-option.selected {
  color: #1E40AF;
  font-weight: 600;
}

.filter-option svg {
  transition: transform 0.3s ease;
}

.filter-sub-options {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-left: 16px;
  border-left: 2px solid #e5e7eb;
  padding-left: 12px;
}

.filter-sub-options.show {
  max-height: 200px;
  margin-top: 8px;
  margin-bottom: 12px;
}

.sub-option {
  display: flex;
  align-items: center;
  padding: 8px 0;
  font-family: "Lexend", sans-serif;
  font-size: 13px;
  color: #6b7280;
  cursor: pointer;
}

.sub-option input[type="checkbox"] {
  margin-right: 8px;
  accent-color: #1B517C;
}

.sub-option:hover {
  color: #1B517C;
}

/* Mobile Filter Capacity Pills */
.mobile-filter-capacity.capacity-pills {
  display: grid;
  width: 343px;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 8px 0;
  margin: 0;
}

.mobile-filter-capacity .capacity-pill {
  width: 109px !important;
  height: 42px !important;
  font-size: 12px !important;
  cursor: pointer;
  white-space: nowrap;
}

.mobile-filter-capacity .capacity-pill.selected {
  border-color: #1B517C;
  box-shadow: 0 2px 8px rgba(27, 81, 124, 0.2);
  transform: translateY(-1px);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 8px 0;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 60px;
}

.brand-item:hover {
  border-color: #3b82f6;
  background: #f8fafc;
}

.brand-item.selected {
  border-color: #16588D;
  background: #eff6ff;
}

.brand-item img {
  max-width: 100%;
  max-height: 40px;
  object-fit: contain;
}

.capacity-tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px 0;
}

.capacity-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  background: #DBEAFE;
  border: 1px solid #93C5FD;
  border-radius: 20px;
  font-family: "Lexend", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #1E40AF;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.capacity-tag:hover {
  background: #BFDBFE;
  border-color: #60A5FA;
}

.capacity-tag.selected {
  background: #1E40AF;
  border-color: #1E40AF;
  color: white;
}

.mobile-filter-footer {
  padding: 20px;
  border-top: 1px solid #e5e7eb;
  background: white;
}

.apply-filter-btn {
  width: 100%;
  padding: 14px;
  background: white;
  color: #16588D;
  border: 2px solid #16588D;
  border-radius: 8px;
  font-family: "Lexend", sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.apply-filter-btn:hover {
  background: #f8fafc;
}

.apply-filter-btn.active {
  background: #16588D;
  color: white;
  border-color: #16588D;
}

.apply-filter-btn.active:hover {
  background: #1e40af;
  border-color: #1e40af;
}

/* Ensure header stays visible over mobile modals */
.site-header,
header,
.main-nav,
.navbar {
  z-index: 100000 !important;
  position: relative !important;
}

/* Make header fixed on mobile */
@media (max-width: 768px) {
  .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    z-index: 100000 !important;
  }
  
  /* Add top padding to body to account for fixed header */
  body {
    padding-top: 0 !important;
  }
  
  /* Remove any default spacing from main content */
  main,
  #site-content {
    margin: 0 !important;
    padding: 0 !important;
  }
  
  /* Fix spacing for all page classes and hero sections */
  .homepage,
  .product-detail-page,
  .cooling-system-page,
  .monitoring-security-page,
  .artikel-page,
  .about-page,
  .contact-page,
  .cart-page,
  .product-page,
  [class*="-page"] {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  
  /* Fix spacing for all hero sections that might be at the top */
  .p-hero,
  .all-articles-hero-section,
  section[class*="hero"]:first-child,
  main > section:first-child {
    margin-top: -56px !important;
    padding-top: 56px !important;
  }
}

/* Hide mobile filter modal and buttons on desktop */
@media (min-width: 769px) {
  .mobile-filter-modal {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
  
  .mobile-filter-btn, 
  .mobile-sort-btn,
  .mobile-monitoring-filters,
  .mobile-cooling-filters {
    display: none !important;
  }
}

/* Mobile Sort Modal Styles */
.mobile-sort-options {
  padding: 0;
}

.mobile-sort-option {
  display: flex;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #f1f1f1;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.mobile-sort-option:last-child {
  border-bottom: none;
}

.mobile-sort-option:hover {
  background-color: #f8f9fa;
}

.mobile-sort-option input[type="radio"] {
  margin-right: 12px;
  width: 20px;
  height: 20px;
  accent-color: #1B517C;
}

.mobile-sort-option span {
  font-family: 'Lexend', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1f2937;
  flex: 1;
}

.mobile-sort-option input[type="radio"]:checked + span {
  color: #1B517C;
  font-weight: 500;
}

/* Mobile Sort Close Button - same as Filter Close Button */
.mobile-sort-close {
  background: none;
  border: none;
  font-size: 32px;
  font-weight: 300;
  color: #666;
  cursor: pointer;
  padding: 0;
  width: auto;
  height: auto;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Filter Toggle Styles */
.filter-toggle {
  cursor: pointer !important;
  user-select: none !important;
  transition: all 0.3s ease !important;
}

.filter-toggle.expanded {
  background-color: #e3f2fd !important;
  color: #1976d2 !important;
}

.toggle-icon {
  transition: transform 0.3s ease !important;
  display: inline-block !important;
}

.filter-toggle.expanded .toggle-icon {
  transform: rotate(180deg) !important;
}

.filter-options {
  margin-top: 8px !important;
  padding-left: 12px !important;
}

/* === Back to Top Button === */
.back-to-top-btn {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--primary-blue);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(27, 81, 124, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  background: #0f3a5c;
  box-shadow: 0 6px 16px rgba(27, 81, 124, 0.4);
  transform: translateY(-2px);
}

.back-to-top-btn svg {
  width: 24px;
  height: 24px;
}

/* === Sold Badge === */
.product-image {
  position: relative;
}

.sold-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #28a745;
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  font-family: 'Lexend', sans-serif;
  z-index: 2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Mobile version for monitoring cards */
.mobile-monitoring-image {
  position: relative;
}

/* Sale image positioning for badges */
.sale-image {
  position: relative;
}

/* Mobile product image positioning for badges */
.mobile-product-image {
  position: relative;
}

.mobile-monitoring-image .sold-badge,
.mobile-product-image .sold-badge {
  top: 6px;
  right: 6px;
  font-size: 10px;
  padding: 3px 6px;
  border-radius: 10px;
}

/* Mobile responsive for back to top button */
@media (max-width: 768px) {
  .back-to-top-btn {
    width: 45px;
    height: 45px;
    bottom: 80px;
    right: 15px;
  }
  
  .back-to-top-btn svg {
    width: 20px;
    height: 20px;
  }
}


/* ========================================
   Fancy WhatsApp Button Styling
   ======================================== */

/* WhatsApp Button - Apple-inspired Design */
.whatsapp-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white !important;
  padding: 10px 20px;
  border-radius: 12px;
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.whatsapp-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: white !important;
}

.whatsapp-btn:hover::before {
  opacity: 1;
}

.whatsapp-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.whatsapp-btn-text {
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}

/* Phone number display (non-clickable) */
.phone-display {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  color: #191919 !important;
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none !important;
}

.phone-display-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.phone-display-text {
  font-size: 14px;
  line-height: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .whatsapp-btn {
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 10px;
  }
  
  .whatsapp-btn-icon {
    width: 18px;
    height: 18px;
  }
  
  .whatsapp-btn-text {
    font-size: 12px;
  }
  
  .phone-display {
    font-size: 12px;
  }
  
  .phone-display-icon {
    width: 18px;
    height: 18px;
  }
  
  .phone-display-text {
    font-size: 12px;
  }
}

/* Footer Contact Items - Update for fancy buttons */
.contact-items .contact-item {
  width: auto !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
}

.mobile-contact-items .mobile-contact-item {
  width: auto !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  justify-content: flex-start !important;
}

/* Tentang Kami Page Phone Numbers */
.phone-numbers p {
  margin-bottom: 12px;
}

.phone-numbers .whatsapp-btn {
  padding: 8px 16px;
}


/* ========================================
   Clean Phone Number Layout - Tentang Kami
   ======================================== */

.phone-numbers .phone-item {
  margin-bottom: 12px;
  line-height: 1;
}

.phone-numbers .phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 8px;
  background: #F8F9FA;
  border: 1px solid #E2E5F1;
  text-decoration: none;
  color: #191919;
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.2s ease;
}

.phone-numbers .phone-link.whatsapp-link {
  background: #FFFFFF;
  border: 2px solid #25D366;
  color: #25D366;
  font-weight: 500;
}

.phone-numbers .phone-link.whatsapp-link:hover {
  background: #E8F8F0;
  border-color: #128C7E;
  color: #128C7E;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.phone-numbers .phone-link .phone-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.phone-numbers .phone-link .phone-number {
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .phone-numbers .phone-link {
    padding: 8px 14px;
    font-size: 13px;
  }
  
  .phone-numbers .phone-link .phone-icon {
    width: 18px;
    height: 18px;
  }
  
  .phone-numbers .phone-link .phone-number {
    font-size: 13px;
  }
}


/* ========================================
   Clean Footer Phone Layout
   ======================================== */

.contact-items .contact-item {
  width: auto !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  margin-bottom: 8px;
}

.footer-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 8px;
  background: #F8F9FA;
  border: 1px solid #E2E5F1;
  text-decoration: none;
  color: #191919;
  font-family: 'Lexend', sans-serif;
  font-size: 13px;
  font-weight: 400;
  transition: all 0.2s ease;
}

.footer-phone-link.whatsapp {
  background: #FFFFFF;
  border: 2px solid #25D366;
  color: #25D366;
  font-weight: 500;
}

.footer-phone-link.whatsapp:hover {
  background: #E8F8F0;
  border-color: #128C7E;
  color: #128C7E;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.footer-phone-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer-phone-number {
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

/* Mobile Footer - Responsive adjustments */
@media (max-width: 768px) {
  .mobile-contact-items .mobile-contact-item {
    width: 100% !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    justify-content: flex-start !important;
    margin-bottom: 10px !important;
  }

  .mobile-contact-items .footer-phone-link {
    width: 100% !important;
    padding: 10px 14px !important;
    font-size: 13px !important;
    display: flex !important;
  }

  .mobile-contact-items .footer-phone-icon {
    width: 20px !important;
    height: 20px !important;
  }

  .mobile-contact-items .footer-phone-number {
    font-size: 13px !important;
  }
}

