:root {
  --primary-color: #243667;
  --secondary-color: #ffffff;
  --accent-color: #000000;
  --text-color: #333333;
  --light-gray: #f5f5f5;
  --theme-orange: #E5681F;
}

/* Utility Classes */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Full Width Layout */
.main-content {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Main Content Styles */
.hero-section {
  background-color: var(--theme-orange);
  padding: 180px 0;
  position: relative;
  z-index: 0;
  margin-top: 80px;
  width: 100%;
}

@media only screen and (max-width: 991px) {
  .hero-section {
    margin-top: 70px;
    padding: 140px 0;
  }
}

@media only screen and (max-width: 767px) {
  .hero-section {
    margin-top: 65px;
    padding: 100px 0;
  }
}

@media only screen and (max-width: 480px) {
  .hero-section {
    padding: 80px 0;
  }
}

.hero-content {
  width: 100%;
  padding: 0 20px;
}

.hero-title {
  color: var(--secondary-color);
  font-size: 4rem;
  font-weight: 700;
  text-shadow: 4px 4px 20px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

@media only screen and (max-width: 1199px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media only screen and (max-width: 991px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media only screen and (max-width: 767px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

@media only screen and (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
}

/* Side Panel */
.side-panel-container {
  width: 100%;
  padding: 20px;
}

@media only screen and (max-width: 991px) {
  .side-panel-container {
    padding: 15px;
  }
}

.side-panel {
  background-color: var(--light-gray);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 20px;
}

@media only screen and (max-width: 1199px) {
  .side-panel {
    padding: 1.5rem;
  }
}

@media only screen and (max-width: 991px) {
  .side-panel {
    position: static;
    margin-bottom: 2rem;
  }
}

/* Category Navigation */
.category-header {
  padding: 1rem 1.5rem;
  border-top: 1px solid #d3d1d1;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
  margin-bottom: 2px;
  width: 100%;
}

@media only screen and (max-width: 1199px) {
  .category-header {
    padding: 0.8rem 1.2rem;
  }
}

.category-header:hover {
  background-color: var(--theme-orange);
  transform: translateX(5px);
}

.category-header:hover a {
  color: white;
}

.category-header.rad-top {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.category-header.rad-bottom {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom: 1px solid #d3d1d1;
}

.category-header a {
  display: block;
  text-decoration: none;
  color: var(--text-color);
  font-weight: 600;
  transition: color 0.3s ease;
  width: 100%;
  font-size: 1rem;
}

@media only screen and (max-width: 1199px) {
  .category-header a {
    font-size: 0.9rem;
  }
}

.category-header.active {
  background-color: var(--theme-orange);
}

.category-header.active a {
  color: white;
}

/* Subcategories */
.subcategory-list {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 0 0 8px 8px;
  width: 100%;
}

@media only screen and (max-width: 1199px) {
  .subcategory-list {
    padding: 0.8rem;
  }
}

.subcategory-item {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e9ecef;
  width: 100%;
}

.subcategory-item:last-child {
  border-bottom: none;
}

.subcategory-item a {
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  margin-left: 0.5rem;
  display: block;
  width: 100%;
}

@media only screen and (max-width: 1199px) {
  .subcategory-item a {
    font-size: 0.85rem;
  }
}

.subcategory-item a:hover {
  color: var(--theme-orange);
}

.subcategory-item a.on {
  color: var(--theme-orange);
  font-weight: 600;
}

/* Product Cards */
.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
  width: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(234, 85, 1, 0.2);
  border-color: var(--theme-orange);
}

.alink {
  text-decoration: none;
  display: block;
  width: 100%;
}

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

@media only screen and (max-width: 767px) {
  .product-image {
    height: 180px;
  }
}

@media only screen and (max-width: 480px) {
  .product-image {
    height: 160px;
  }
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  position: relative;
  padding-bottom: 4rem;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .product-content {
    padding: 1.2rem;
    padding-bottom: 3.5rem;
  }
}

@media only screen and (max-width: 480px) {
  .product-content {
    padding: 1rem;
    padding-bottom: 3rem;
  }
}

.product-title {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  line-height: 1.3;
}

@media only screen and (max-width: 767px) {
  .product-title {
    font-size: 1.2rem;
  }
  .prod-marg {
    margin-bottom: 3.5rem;
  }
}

@media only screen and (max-width: 480px) {
  .product-title {
    font-size: 1.1rem;
  }
}

.product-description {
  
  color: #666;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

@media only screen and (max-width: 767px) {
  .product-description {
    font-size: 0.9rem;
    margin-bottom: 4.5rem;
  }

  .side-panel {
    position: static;
    margin-bottom: 2rem;
  }

  .product-content {
    padding: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

/* Section Spacing */
.section-space {
  padding: 60px 0;
}

/*subcategories */
.subcategory-list {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 0 0 8px 8px;
}

.subcategory-item {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e9ecef;
}

.subcategory-item:last-child {
  border-bottom: none;
}

.subcategory-item a {
  color: #666;
  text-decoration: none;
  font-size: 1.5rem;
  transition: color 0.3s ease;
  margin-left: 0.5rem;
}

.subcategory-item a:hover {
  color: var(--theme-orange);
}

.subcategory-item a.on {
  color: var(--theme-orange);
  font-weight: 600;
}

.category-header.active {
  background-color: var(--theme-orange);
}

.category-header.active a {
  color: white;
}

.read-more-btn {  
  background-color: var(--theme-orange);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
  font-weight: 500;
  text-align: center;
  font-size: 0.95rem;
}

@media only screen and (max-width: 767px) {
  .read-more-btn {
    padding: 0.4rem 1.2rem;
    font-size: 0.9rem;
  }
}

.read-more-btn:hover {
  background-color: #d44a01;
  color: white;
}

.btn-container {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  width: calc(100% - 3rem);
}

@media only screen and (max-width: 767px) {
  .btn-container {
    bottom: 1.2rem;
    left: 1.2rem;
    right: 1.2rem;
    width: calc(100% - 2.4rem);
  }
}

/* Section Spacing */
.section-space {
  padding: 60px 0;
  width: 100%;
}

@media only screen and (max-width: 991px) {
  .section-space {
    padding: 50px 0;
  }
}

@media only screen and (max-width: 767px) {
  .section-space {
    padding: 40px 0;
  }
}

@media only screen and (max-width: 480px) {
  .section-space {
    padding: 30px 0;
  }
}

/* Container Fluid Full Width */
.container-fluid {
  width: 100%;
  max-width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media only screen and (max-width: 767px) {
  .container-fluid {
    padding-right: 10px;
    padding-left: 10px;
  }
}

@media only screen and (max-width: 480px) {
  .container-fluid {
    padding-right: 8px;
    padding-left: 8px;
  }
}

/* Grid System Responsive */
@media only screen and (max-width: 1199px) {
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }
}

@media only screen and (max-width: 991px) {
  .col-xxl-4,
  .col-xl-4,
  .col-lg-4 {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media only screen and (max-width: 767px) {
  .col-xxl-4,
  .col-xl-4,
  .col-lg-4,
  .col-md-6 {
    flex: 0 0 auto;
    width: 100%;
  }
}

/* Row Gutters */
.row.g-4 {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

@media only screen and (max-width: 767px) {
  .row.g-4 {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
  }
}

@media only screen and (max-width: 480px) {
  .row.g-4 {
    --bs-gutter-x: 0.8rem;
    --bs-gutter-y: 0.8rem;
  }
}

/* CSS for product detail subcategory page */
.pro-sec-pad {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.product-imgs {
  border-radius: 8px;
  object-fit: cover;
}

.thumbnail-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.thumbnail-img:hover,
.thumbnail-img.active {
  border-color: var(--theme-orange);
}

.main-product-img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  border-radius: 10px;
}

.trademark {
  font-size: 0.7em;
  vertical-align: super;
}

.tagline {
  font-style: italic;
  color: #666;
  margin-top: 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.8px;
}

.image-gallery {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.thumbnail-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.main-image-container {
  flex: 1;
  background: #f8f9fa;
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-detail-content h6 {
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.product-detail-content ul {
  margin-bottom: 1rem;
}

.product-detail-content li {
  margin-bottom: 0.25rem;
}

.table-bordered {
  border-color: #dee2e6;
}

.table-bordered td {
  padding: 0.75rem;
}

@media (max-width: 768px) {
  .image-gallery {
    flex-direction: column-reverse;
  }

  .thumbnail-container {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .thumbnail-img {
    width: 60px;
    height: 60px;
  }

  .main-product-img {
    max-height: 300px;
  }

  .panel-col {
    padding-right: 1rem;
  }
}

.bg-theme {
  background-color: var(--theme-orange) !important;
  color: #fff !important;
}

.custom-list {
  list-style: none;
  padding-left: 0;
}
.custom-list li::before {
  content: "– ";
  margin-right: 5px;
}

.header-dark{
  background-color: #000;
}

/* .rs-header-two .rs-header-inner{
  padding: 0 45px;
} */

.orgi{
  background-color: var(--theme-orange) !important;
}

.rs-breadcrumb-two {
    padding-top: 100px;
    padding-bottom: 130px;
}


