/* Enhanced Product Page CSS */

:root {
  --primary-color: #f0542d;
  --primary-hover: #e04a25;
  --secondary-color: #6c757d;
  --dark-color: #343a40;
  --light-color: #f8f9fa;
  --sidebar-bg: #ffffff;
  --sidebar-hover: #f8f9fa;
  --border-color: #e9ecef;
  --text-color: #212529;
  --text-muted: #6c757d;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
}

/* Base Styles */

body {
  font-family: "Roboto", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: #f5f7fa;
}

/* Breadcrumb Area */

.breadcrumb-area {
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  background-color: var(--dark-color);
}

.breadcrumb-area::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.page-banner h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-breadcrumb {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.page-breadcrumb li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  font-size: 1rem;
}

.page-breadcrumb li a:hover {
  color: var(--primary-color);
}

.page-breadcrumb li:not(:last-child)::after {
  content: "/";
  color: rgba(255, 255, 255, 0.5);
  margin-left: 10px;
}

/* Main Content Container */

.container.my-5 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  margin: 0 -15px;
}

/* Sidebar Styles */

.product-sidebar {
  background-color: var(--sidebar-bg);
  padding: 25px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  height: 100%;
  position: sticky;
  top: 30px;
  margin-bottom: 30px;
  border: 1px solid var(--border-color);
}

.product-sidebar__heading {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
  display: flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-sidebar__heading i {
  margin-right: 10px;
  color: var(--primary-color);
  font-size: 1rem;
}

.product-sidebar__menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-sidebar__item {
  margin-bottom: 8px;
  transition: var(--transition);
  border-radius: 5px;
  overflow: hidden;
}

.product-sidebar__link {
  color: var(--text-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  transition: var(--transition);
  background-color: transparent;
  font-size: 0.95rem;
  border-left: 3px solid transparent;
}

.product-sidebar__link:hover {
  background-color: var(--sidebar-hover);
  color: var(--primary-hover);
  border-left: 3px solid var(--primary-color);
}

.product-sidebar__item--active .product-sidebar__link {
  background-color: rgba(240, 84, 45, 0.1);
  color: var(--primary-color);
  font-weight: 500;
  border-left: 3px solid var(--primary-color);
}

/* Content Area Styles */

.product-content {
  padding: 30px;
  background-color: white;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  border: 1px solid var(--border-color);
  margin-bottom: 30px;
}

.product-category-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  font-weight: 500;
}

.product-divider {
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 15px 0 25px;
}

.product-main-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  color: var(--dark-color);
  text-align: justify;
}

.product-sub-title {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  text-align: justify;
  color: var(--text-color);
}

.product-image-container {
  margin: 30px 0;
  text-align: center;
}

.product-image {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.product-image:hover {
  transform: scale(1.02);
}

.product-content-text {
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-color);
  text-align: justify;
}

/* Section Styles */

.product-section-header {
  margin: 40px 0 25px;
}

.product-section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-color);
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.product-section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

/* Features List */

.product-features-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.product-features-item {
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  font-size: 1rem;
  line-height: 1.6;
}

.product-features-item:before {
  content: "";
  position: absolute;
  left: 10px;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.product-feature-highlight {
  font-weight: 600;
  color: var(--dark-color);
}

/* Tables */

.product-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0 35px;
  box-shadow: var(--box-shadow);
  border-radius: 8px;
  overflow: hidden;
}

.product-specs-table th {
  background-color: var(--primary-color);
  color: white;
  padding: 15px;
  text-align: left;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.product-specs-table td {
  padding: 12px 15px;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
}

.product-specs-table tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.02);
}

.product-specs-table tr:hover {
  background-color: rgba(240, 84, 45, 0.05);
}

/* Responsive Adjustments */

@media (max-width: 991px) {
  .container.my-5 {
    padding: 0 20px;
  }
  .product-content {
    padding: 25px;
  }
  .product-sidebar {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .breadcrumb-area {
    padding: 60px 0;
  }
  .page-banner h1 {
    font-size: 2rem;
  }
  .product-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 30px;
  }
  .product-content {
    padding: 20px;
  }
  .product-main-title {
    font-size: 1.3rem;
  }
  .product-section-title {
    font-size: 1.3rem;
  }
  .product-specs-table th,
  .product-specs-table td {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
}

@media (max-width: 575px) {
  .container.my-5 {
    padding: 0 15px;
  }
  .product-content {
    padding: 15px;
  }
  .product-section-title {
    font-size: 1.2rem;
  }
  .product-specs-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* ######################################### */

/* Expertise Section Styles */

.expertise-section {
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.expertise-image-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: #f0542d;
  color: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  line-height: 1.2;
}

.experience-badge .years {
  font-size: 42px;
  font-weight: 700;
  display: block;
}

.experience-badge .text {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.expertise-content {
  padding-right: 50px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.section-title span {
  color: #f0542d;
  display: block;
}

.section-description {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

.expertise-features {
  margin-bottom: 40px;
}

.feature-box {
  display: flex;
  margin-bottom: 25px;
  align-items: flex-start;
}

.feature-icon {
  font-size: 30px;
  color: #2a5f8a;
  min-width: 50px;
}

.feature-content h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #222;
}

.feature-content p {
  color: #666;
  margin-bottom: 0;
}

.cta-button {
  display: inline-block;
  background: #f0542d;
  color: white;
  padding: 15px 35px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #1d4568;
  color: white;
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */

@media (max-width: 991px) {
  .expertise-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  .section-title {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 30px;
  }
  .experience-badge {
    padding: 15px;
  }
  .experience-badge .years {
    font-size: 32px;
  }
}
