* {
  box-sizing: border-box;
}
/* ---------- Layout Wrapper ---------- */
.layout-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  max-width: 1200px;
  margin: 32px auto 48px;
  padding: 0 16px;
}

/* ---------- Left: Product Column ---------- */
.product-column {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ---------- Product Card ---------- */
.product-card {
  background: #ffffff;
  border-radius: 6px;
  padding: 24px 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.card-inner {
  display: flex;
  gap: 30px;
  align-items: center;
}

.card-image-right {
  flex-direction: row;
}

.card-image-left {
  flex-direction: row;
}

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

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

.product-img {
  border-radius: 6px;
  object-fit: cover;
  display: block;
  border: 1px solid #e5e5e5;
}

/* ---------- Card Typography ---------- */
.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 8px;
  line-height: 1.3;
}

.card-desc {
  font-size: 14px;
  color: #7A7A7A;
  line-height: 1.55;
  margin-bottom: 14px;
}

/* ---------- Product Table ---------- */
.product-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
  margin-bottom: 18px;
  border: 1px solid #d0d0d0;
}

.product-table thead tr {
  background-color: #f5f5f5;
}

.product-table th {
  padding: 8px 10px;
  text-align: left;
  font-weight: 600;
  color: #222222;
  border: 1px solid #d0d0d0;
  white-space: nowrap;
	font-size:15px;
}

.product-table td {
  padding: 7px 10px;
  border: 1px solid #d0d0d0;
  color: #333333;
  vertical-align: middle;
	font-size:14px;
}

.product-table tbody tr:nth-child(even) {
  background-color: #fafafa;
}

.area-cell {
  font-size: 0.78rem;
  color: #444444;
  line-height: 1.5;
}

/* ---------- Send Inquiry Button ---------- */
.btn-inquiry {
  display: inline-block;
  background-color: #c0392b;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 8px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background-color 0.18s ease;
	width:150px;
}

.btn-inquiry:hover {
  background-color: #a93226;
}

/* ---------- Right: Sticky Sidebar ---------- */
.sidebar {
  width: 230px;
  flex-shrink: 0;
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ---------- Sidebar Cards ---------- */
.sidebar-card {
  border-radius: 6px;
  padding: 18px 16px;
}

.sidebar-dark {
  background-color: #2b2b2b;
  color: #ffffff;
	width:300px;
}

.sidebar-heading {
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 8px;
}

.sidebar-subtext {
  font-size: 14px;
  color: #b0b0b0;
  line-height: 1.5;
  margin-bottom: 16px;
}

/* ---------- Contact List ---------- */
.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
	padding-left:0px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #dddddd;
  line-height: 1.5;
}

.address-item {
  align-items: flex-start !important;
}

.contact-icon-1 {
  flex-shrink: 0;
  margin-top: 1px;
  color: #bbbbbb;
  display: flex;
  align-items: center;
}

/* ---------- Contact Us Now Button ---------- */
.btn-contact {
  display: block;
  width: 100%;
  background-color: #c0392b;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 10px 0;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background-color 0.18s ease;
}

.btn-contact:hover {
  background-color: #a93226;
}

/* ---------- Other Products ---------- */
.sidebar-products {
  padding: 0;
  overflow: hidden;
}

.sidebar-products .sidebar-heading {
  padding: 24px;
  border-bottom: 1px solid #3e3e3e;
  margin-bottom: 0;
}

.products-list {
  list-style: none;
	padding:24px;
}

.product-item {
  padding: 12px 16px;
  font-size: 15px;
  color: #cccccc;
  border-bottom: 1px solid #3e3e3e;
  cursor: pointer;
  transition: background-color 0.15s ease;
  line-height: 1.4;
}

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

.product-item:hover {
  background-color: #3a3a3a;
}

.product-active {
  background-color: #c0392b !important;
  color: #ffffff !important;
  font-weight: 600;
}

.product-active:hover {
  background-color: #a93226 !important;
}

/* ---------- Responsive ---------- */
@media (max-width: 769px) {
  .layout-wrapper {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }

  /* .sidebar-card {
    flex: 1 1 280px;
  } */

  .card-inner {
    flex-direction: column !important;
  }

  .product-img {
    width: 100% !important;
    /* height: 180px !important; */
  }

  .hero-title {
    font-size: 1.8rem;
  }

	/* Prevent horizontal scroll */
  html,
  body {
    overflow-x: hidden;
    width: 100%;
  }

  .layout-wrapper {
    flex-direction: column;
    gap: 16px;
    margin: 16px auto 30px;
    padding: 0 10px;
    overflow-x: hidden;
  }

  /* Product column full width */
  .product-column {
    width: 100%;
  }

  /* Product Card */
  .product-card {
    padding: 16px 12px;
    overflow: hidden;
  }

  .card-inner {
    flex-direction: column !important;
    gap: 16px;
    /* align-items: stretch; */
  }

  /* Content */
  .card-content {
    width: 100%;
    overflow: hidden;
  }

  .card-title {
    font-size: 1.7rem;
    line-height: 1.3;
  }

  .card-desc {
    font-size: 14px;
    line-height: 1.7;
  }

  /* Image */
  .card-image {
    width: 100%;
    text-align: center;
  }

  .product-img {
    width: 100% !important;
    max-width: 100%;
    /* height: auto !important; */
    object-fit: cover;
    border-radius: 6px;
  }

  /* TABLE FIX */
  .product-table {
    /* display: block; */
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    font-size: 13px;
  }

  .product-table th,
  .product-table td {
    padding: 8px;
    font-size: 12px;
  }

  /* Button */
  .btn-inquiry {
    /* width: 100%; */
    text-align: center;
  }

  /* Sidebar */
  .sidebar {
    width: 100%;
    position: static;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .sidebar-card {
    width: 100%;
    padding: 18px 14px;
  }
	

  .sidebar-heading {
    font-size: 20px;
  }

  .products-list {
    padding: 14px;
  }

  .product-item {
    padding: 12px;
    font-size: 13px;
  }
  
	
}
@media (max-width: 556px) {
	.product-table{
		display:block;
	}
}
@media (max-width: 1024px) {

  .card-inner {
    flex-direction: column !important;
    align-items: stretch;
  }

  .card-image-1 {
    width: 100%;
	display: flex;
    justify-content: center;
    align-items: center;
  }

  .product-img {
    width: 100%;
  max-width: 300px;
  height: 250px;
  object-fit: cover;
  }

  .sidebar {
    width: 280px;
  }
}
.product-item{
  display:block;
  text-decoration:none;
  color:#d6d6d6;
  padding:14px 16px;
  border-bottom:1px solid rgba(255,255,255,.08);
  transition:.3s;
}

.product-item:hover,
.product-item.product-active{
  background:#cc1818;
  color:#fff;
}