/* ChefSupply Dark Red Theme for OpenCart 4 */
/* Color palette from original so-ladaz theme */

:root {
  --primary-color: #850000;
  --primary-dark: #3a0000;
  --primary-gradient: linear-gradient(180deg, #862317, #3a0000);
  --accent-color: #b91513;
  --text-dark: #333;
  --text-light: #fff;
}

/* ========== TOP BAR ========== */
#top {
  background: var(--primary-gradient) !important;
  color: var(--text-light);
  padding: 8px 0;
}

#top a {
  color: var(--text-light) !important;
}

#top .dropdown-menu {
  background: #fff;
}

#top .dropdown-menu a {
  color: var(--text-dark) !important;
}

#top .list-inline-item {
  padding: 0 10px;
  border-right: 1px solid rgba(255,255,255,0.2);
}

#top .list-inline-item:last-child {
  border-right: none;
}

/* ========== HEADER ========== */
header {
  background: #fff;
  padding: 15px 0;
  border-bottom: none;
}

#logo img {
  max-height: 70px;
}

#search {
  margin-top: 10px;
}

#search .form-control {
  border: 2px solid #ddd;
  border-right: none;
  height: 45px;
}

#search .btn {
  background: var(--primary-gradient) !important;
  color: var(--text-light) !important;
  border: 2px solid var(--primary-color) !important;
  height: 45px;
  width: 50px;
}

#header-cart {
  margin-top: 10px;
}

#header-cart .btn {
  background: var(--primary-gradient) !important;
  height: 45px;
  font-size: 14px;
}

/* ========== MAIN MENU (Original Style) ========== */
#menu {
  background: var(--primary-color) !important;
  border-radius: 0 !important;
  padding: 0;
  margin-bottom: 0;
}

#menu .container {
  max-width: 1200px;
}

#menu .navbar-nav {
  width: 100%;
  justify-content: center;
}

#menu .nav-item {
  position: relative;
}

#menu .nav-link {
  color: var(--text-light) !important;
  padding: 12px 18px !important;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.3s ease;
}

#menu .nav-link:hover,
#menu .nav-item:hover > .nav-link {
  background: var(--primary-dark) !important;
}

#menu .dropdown-menu {
  background: #fff;
  border: none;
  border-radius: 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  padding: 10px 0;
  min-width: 220px;
  margin-top: 0;
}

#menu .dropdown-inner {
  display: block;
  max-height: 400px;
  overflow-y: auto;
}

#menu .dropdown-inner .dropdown-item {
  color: var(--text-dark) !important;
  padding: 8px 20px !important;
  font-size: 13px;
  text-transform: none;
  border: none;
}

#menu .dropdown-inner .dropdown-item:hover {
  color: var(--text-light) !important;
  background: var(--primary-color) !important;
}

/* Mobile menu */
#menu .navbar-toggler {
  color: var(--text-light);
  border-color: rgba(255,255,255,0.3);
  padding: 10px 15px;
}

#menu .navbar-toggler i {
  color: var(--text-light);
}

/* ========== BANNER SECTION ========== */
.banner-section {
  width: 100%;
  margin-bottom: 0;
}

.banner-section img {
  width: 100%;
  height: auto;
  display: block;
}

/* Buttons */
.btn-primary {
  background: var(--primary-gradient) !important;
  border-color: var(--primary-color) !important;
}

.btn-primary:hover {
  background: var(--primary-color) !important;
  border-color: var(--primary-dark) !important;
}

.btn-inverse {
  background: var(--primary-gradient) !important;
  border-color: var(--primary-color) !important;
  color: var(--text-light) !important;
}

.btn-inverse:hover {
  background: var(--primary-dark) !important;
}

/* Links */
a {
  color: var(--primary-color);
}

a:hover {
  color: var(--accent-color);
}

/* Product cards */
.product-thumb {
  border: 1px solid #eee;
  margin-bottom: 20px;
  transition: box-shadow 0.3s ease;
}

.product-thumb:hover {
  box-shadow: 0 5px 20px rgba(133, 0, 0, 0.15);
}

.product-thumb h4 a {
  color: var(--text-dark);
  font-size: 14px;
}

.product-thumb h4 a:hover {
  color: var(--primary-color);
}

.product-thumb .price,
.product-thumb .price-new {
  color: var(--primary-color) !important;
  font-weight: bold;
}

.product-thumb .price-old {
  color: #999;
  text-decoration: line-through;
}

.product-thumb .btn-primary {
  background: var(--primary-gradient) !important;
}

/* Footer */
footer {
  background: var(--primary-gradient) !important;
  color: var(--text-light);
}

footer a {
  color: var(--text-light) !important;
}

footer h5 {
  color: var(--text-light);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 10px;
}

/* Breadcrumb */
.breadcrumb {
  background: #f5f5f5;
  padding: 10px 15px;
  border-radius: 0;
}

.breadcrumb a {
  color: var(--primary-color);
}

/* Category page */
#product-category h2 {
  color: var(--text-dark);
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 10px;
}

/* Pagination */
.pagination > .active > a {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.pagination > li > a {
  color: var(--primary-color);
}

/* Search box */
#search .btn {
  background: var(--primary-gradient) !important;
  color: var(--text-light) !important;
  border-color: var(--primary-color) !important;
}

/* Cart dropdown */
#header-cart .btn {
  background: var(--primary-gradient) !important;
}

/* Form elements */
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(133, 0, 0, 0.25);
}

/* Alert styling */
.alert-success {
  background-color: #dff0d8;
  border-color: var(--primary-color);
}

/* Menu/Navigation hover */
.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
}

/* Product page */
#product .price-new,
#product .price {
  color: var(--primary-color) !important;
  font-size: 24px;
  font-weight: bold;
}

/* Sidebar */
.list-group-item.active {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

/* Tables */
.table-bordered th {
  background: var(--primary-color);
  color: var(--text-light);
}

/* ========== HOMEPAGE ========== */
#common-home {
  padding: 0;
  max-width: 100%;
}

#common-home > .row {
  margin: 0;
}

#common-home #content {
  padding: 0;
}

/* Carousel/Slideshow */
.carousel {
  margin-bottom: 30px;
}

.carousel-item img {
  width: 100%;
}

.carousel-indicators button {
  background-color: var(--primary-color) !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--primary-color);
  border-radius: 50%;
  padding: 20px;
}

/* Homepage sections */
#common-home .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Featured/Latest/Bestseller modules */
.module-title,
#content h3 {
  color: var(--text-dark);
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 15px;
  margin-bottom: 25px;
  border-bottom: 3px solid var(--primary-color);
  position: relative;
}

/* ========== PRODUCT GRID ========== */
.product-thumb {
  border: 1px solid #eee;
  background: #fff;
  margin-bottom: 20px;
  padding: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-thumb:hover {
  box-shadow: 0 5px 25px rgba(133, 0, 0, 0.2);
  transform: translateY(-5px);
}

.product-thumb .image {
  position: relative;
  overflow: hidden;
  text-align: center;
  margin-bottom: 15px;
}

.product-thumb .image img {
  max-width: 100%;
  transition: transform 0.3s ease;
}

.product-thumb:hover .image img {
  transform: scale(1.05);
}

.product-thumb .caption {
  text-align: center;
  padding: 10px 0;
}

.product-thumb h4 {
  font-size: 14px;
  min-height: 40px;
  margin-bottom: 10px;
}

.product-thumb h4 a {
  color: var(--text-dark);
  text-decoration: none;
}

.product-thumb h4 a:hover {
  color: var(--primary-color);
}

.product-thumb .price,
.product-thumb .price-new {
  color: var(--primary-color) !important;
  font-size: 18px;
  font-weight: 700;
}

.product-thumb .price-old {
  color: #999;
  font-size: 14px;
  text-decoration: line-through;
  margin-left: 5px;
}

.product-thumb .rating {
  margin-bottom: 10px;
}

.product-thumb .rating .fa-star {
  color: #ffc107;
}

/* Product buttons on hover */
.product-thumb .button-group {
  display: flex;
  justify-content: center;
  gap: 5px;
  padding: 10px 0;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

.product-thumb .button-group button {
  background: var(--primary-gradient);
  border: none;
  color: #fff;
  padding: 8px 15px;
  font-size: 13px;
  transition: all 0.3s ease;
}

.product-thumb .button-group button:hover {
  background: var(--primary-dark);
}

/* ========== CATEGORY SIDEBAR ========== */
.list-group {
  border-radius: 0;
}

.list-group-item {
  border-radius: 0 !important;
  border-color: #eee;
  padding: 12px 15px;
}

.list-group-item:hover {
  background: #f9f9f9;
  color: var(--primary-color);
}

.list-group-item.active {
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

/* Category page improvements */
#product-category {
  padding: 20px 0;
}

#product-category h2 {
  color: var(--text-dark);
  font-size: 22px;
  border-bottom: 3px solid var(--primary-color);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

#product-category .refine-search {
  margin-bottom: 20px;
}

/* ========== FOOTER ========== */
footer {
  background: var(--primary-gradient) !important;
  color: var(--text-light);
  padding: 40px 0 20px;
  margin-top: 40px;
}

footer a {
  color: rgba(255,255,255,0.8) !important;
}

footer a:hover {
  color: var(--text-light) !important;
}

footer h5 {
  color: var(--text-light);
  font-size: 16px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

footer .list-unstyled li {
  margin-bottom: 8px;
}

/* Footer bottom copyright */
footer > div:last-child {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
  margin-top: 20px;
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
  background: #f5f5f5;
  padding: 12px 20px;
  border-radius: 0;
  margin-bottom: 20px;
}

.breadcrumb-item a {
  color: var(--primary-color);
}

.breadcrumb-item.active {
  color: var(--text-dark);
}

/* ========== PAGINATION ========== */
.pagination {
  margin-top: 20px;
}

.pagination .page-link {
  color: var(--primary-color);
  border-color: #ddd;
}

.pagination .page-item.active .page-link {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

/* ========== LEFT SIDEBAR CATEGORY MENU ========== */
#column-left {
  padding-right: 0;
}

#column-left .list-group {
  border: none;
  border-radius: 0;
  margin-bottom: 20px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#column-left .list-group::before {
  content: "CATEGORIES";
  display: block;
  background: var(--primary-color);
  color: var(--text-light);
  padding: 12px 15px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#column-left .list-group-item {
  border: none;
  border-bottom: 1px solid #eee;
  border-radius: 0 !important;
  padding: 8px 15px;
  font-size: 12px;
  color: var(--primary-color);
  transition: all 0.2s ease;
  background: #fff;
}

#column-left .list-group-item::before {
  content: "> ";
  color: var(--primary-color);
}

#column-left .list-group-item:last-child {
  border-bottom: none;
}

#column-left .list-group-item:hover {
  background: #f5f5f5;
  color: var(--primary-color);
}

#column-left .list-group-item.active {
  background: var(--primary-color) !important;
  color: var(--text-light) !important;
  border-color: var(--primary-color) !important;
}

/* Add Products header link styling */
#column-left .list-group-item:first-child {
  font-weight: 700;
  color: var(--primary-color);
}

#column-left .list-group-item:first-child::before {
  content: "";
}

/* Gray page background like original */
#product-category {
  background: #e8e8e8;
  padding: 20px;
  margin: 0;
  max-width: 100%;
}

#product-category > .row {
  max-width: 1200px;
  margin: 0 auto;
}

/* Subcategories indent */
#column-left .list-group-item[href*="_"] {
  padding-left: 25px;
  font-size: 12px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
  #menu .dropdown-menu {
    min-width: 100%;
    position: static;
  }
  
  #menu .dropdown-inner {
    flex-direction: column;
  }
  
  #menu .dropdown-inner ul {
    flex: 0 0 100%;
  }
  
  #menu .nav-link {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  #column-left {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  header .row {
    text-align: center;
  }
  
  #logo {
    margin-bottom: 15px;
  }
  
  #search, #header-cart {
    margin-top: 0;
    margin-bottom: 10px;
  }
}

/* ========== ORIGINAL LAYOUT SIDEBAR BOXES ========== */
.sidebar-box {
  margin-bottom: 15px;
  border: 1px solid #333;
  background: #1a1a1a;
}

.sidebar-header {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 12px 15px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.sidebar-content {
  padding: 0;
  background: #1a1a1a;
}

/* Search box in sidebar */
.search-box .sidebar-content {
  padding: 15px;
}

.search-box .input-group {
  display: flex;
}

.search-box .form-control {
  border: 1px solid #444;
  border-radius: 0;
  padding: 8px 12px;
  font-size: 13px;
  background: #2a2a2a;
  color: #e0e0e0;
}

.search-box .form-control::placeholder {
  color: #888;
}

.search-box .btn-search {
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 0;
  padding: 8px 15px;
}

.search-box .btn-search:hover {
  background: var(--primary-dark);
}

/* Category box in sidebar */
.category-box .sidebar-content .list-group {
  border: none;
  margin: 0;
}

.category-box .sidebar-content .list-group::before {
  display: none;
}

.category-box .sidebar-content .list-group-item {
  border: none;
  border-bottom: 1px solid #333;
  padding: 10px 15px;
  font-size: 13px;
  background: #1a1a1a;
  color: #e0e0e0;
}

.category-box .sidebar-content .list-group-item:hover {
  background: #850000;
  color: #fff;
}

.category-box .sidebar-content .list-group-item:last-child {
  border-bottom: none;
}

/* ========== PILL-STYLE MENU BUTTONS ========== */
#menu .nav-link {
  color: var(--text-light) !important;
  padding: 8px 16px !important;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  margin: 5px 3px;
  border-radius: 20px;
  background: rgba(255,255,255,0.1);
}

#menu .nav-link:hover,
#menu .nav-item:hover > .nav-link {
  background: rgba(255,255,255,0.25) !important;
}

/* ========== MAIN BANNER ========== */
.main-banner {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
}

.main-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.main-banner .banner-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.main-banner .banner-text h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

/* ========== CATEGORY PROMO BOXES ========== */
.category-boxes {
  margin-bottom: 30px;
}

.category-box-link {
  display: block;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
}

.category-box-link img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-box-link:hover img {
  transform: scale(1.05);
}

.category-box-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 30px 15px 15px;
  text-align: center;
}

.category-box-overlay h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 5px;
  text-transform: uppercase;
}

.category-box-overlay span {
  font-size: 12px;
  opacity: 0.8;
}

/* ========== FEATURED SECTION ========== */
.featured-section {
  margin-top: 20px;
}

.section-title {
  background: none !important;
  color: #ffffff !important;
  padding: 0 !important;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
  border: none !important;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.section-title i {
  color: #850000;
  margin-right: 10px;
}

/* ========== HOMEPAGE LAYOUT ========== */
#common-home .container {
  padding-top: 20px;
}

#common-home #column-left {
  padding-right: 15px;
  flex: 0 0 220px;
  max-width: 220px;
  min-width: 220px;
}

#common-home #content {
  padding-left: 15px;
  flex: 1;
  max-width: calc(100% - 220px);
}

/* ========== FOOTER ORIGINAL STYLE ========== */
.footer-container {
  background: #333 !important;
  color: #ccc;
  margin-top: 40px;
}

.footer-top {
  padding: 40px 0 30px;
}

.footer-container h5 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #444;
}

.footer-container ul.list-unstyled li {
  margin-bottom: 8px;
}

.footer-container a {
  color: #999 !important;
  font-size: 13px;
}

.footer-container a:hover {
  color: #fff !important;
  text-decoration: none;
}

/* Footer Contact Section */
.footer-contact-content p {
  margin-bottom: 10px;
  font-size: 13px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-content i {
  color: var(--primary-color);
  width: 16px;
  text-align: center;
  margin-top: 3px;
}

.footer-contact-content span {
  flex: 1;
}

/* Social Block */
.social-block {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  gap: 10px;
}

.social-block li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #444;
  border-radius: 50%;
  color: #fff !important;
  transition: all 0.3s ease;
}

.social-block li a:hover {
  background: var(--primary-color);
}

/* Footer Bottom */
.footer-bottom {
  background: #222;
  padding: 15px 0;
  text-align: center;
  border-top: 1px solid #444;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: #888;
}

/* ========== RESPONSIVE ADJUSTMENTS ========== */
@media (max-width: 991px) {
  .category-boxes .col-md-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  .main-banner .banner-text h2 {
    font-size: 20px;
  }
  
  #common-home #column-left {
    flex: 0 0 200px;
    max-width: 200px;
    min-width: 200px;
  }
  
  #common-home #content {
    max-width: calc(100% - 200px);
  }
}

@media (max-width: 767px) {
  #common-home #column-left {
    order: 2;
    margin-top: 20px;
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 100%;
  }
  
  #common-home #content {
    order: 1;
    max-width: 100%;
  }
  
  .category-boxes .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .category-box-link img {
    height: 150px;
  }
  
  .footer-contact {
    margin-bottom: 30px;
  }
}

/* ========== REFINE SEARCH CATEGORY GRID (Original Style) ========== */
.refine-search {
  margin: 0 0 35px 0;
}

.refine-search__content {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.refine-search__subitem {
  display: inline-block;
  width: 175px;
  margin-bottom: 20px;
  margin-right: 15px;
  text-align: center;
  vertical-align: top;
}

/* Category box - contains both image and text */
.refine-search__subitem .category-box {
  display: block;
  border: 5px solid var(--primary-color);
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: hidden;
}

.refine-search__subitem .category-box:hover {
  border-color: var(--primary-dark);
  box-shadow: 0 3px 10px rgba(133, 0, 0, 0.3);
}

.refine-search__subitem .category-box img {
  width: 100%;
  height: 130px;
  object-fit: contain;
  background: #fff;
  display: block;
  padding: 10px;
}

.refine-search__subitem .category-box .category-label {
  display: block;
  background: var(--primary-color);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  padding: 10px 5px;
}

.refine-search__subitem .category-box:hover .category-label {
  background: var(--primary-dark);
}

/* Responsive adjustments for category grid */
@media (max-width: 991px) {
  .refine-search__subitem {
    width: 160px;
    margin-right: 12px;
    margin-bottom: 15px;
  }
  
  .refine-search__subitem .category-box img {
    height: 110px;
  }
}

/* ===================================
   PRODUCT PAGE - ITEM SPECIFICS SIDEBAR
   =================================== */
.item-specifics-sidebar {
  padding-left: 15px;
}

.item-specifics-sidebar .specs-box {
  border: 1px solid #ddd;
  margin-bottom: 20px;
}

.item-specifics-sidebar .specs-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px 15px;
  margin: 0;
}

.item-specifics-sidebar .specs-content {
  background: #fff;
  padding: 0;
}

.item-specifics-sidebar .table {
  margin-bottom: 0;
  font-size: 13px;
}

.item-specifics-sidebar .table td {
  padding: 8px 12px;
  border-color: #eee;
  vertical-align: middle;
}

.item-specifics-sidebar .table tr:nth-child(even) {
  background: #f9f9f9;
}

.item-specifics-sidebar .table td:first-child {
  font-weight: 600;
  color: #333;
  width: 45%;
  background: #f5f5f5;
}

.item-specifics-sidebar .table td:last-child {
  color: #666;
}

.item-specifics-sidebar .attr-group-header td {
  background: var(--primary-color) !important;
  color: #fff !important;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
}

/* Responsive - stack on smaller screens */
@media (max-width: 1199px) {
  .item-specifics-sidebar {
    padding-left: 0;
    margin-top: 25px;
  }
}

/* Product Sidebar - Details & Specs */
.product-sidebar {
  background: #fff;
}

/* Force 3-column layout on product page */
#product-info #content > .row.mb-3 {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: flex-start;
}

#product-info #content > .row.mb-3 > .col-xl-4 {
  flex: 0 0 30% !important;
  max-width: 30% !important;
  width: 30% !important;
}

#product-info #content > .row.mb-3 > .col-xl-5 {
  flex: 0 0 45% !important;
  max-width: 45% !important;
  width: 45% !important;
}

#product-info #content > .row.mb-3 > .col-xl-3 {
  flex: 0 0 25% !important;
  max-width: 25% !important;
  width: 25% !important;
}

@media (max-width: 767px) {
  #product-info #content > .row.mb-3 {
    flex-wrap: wrap !important;
  }
  #product-info #content > .row.mb-3 > div[class*="col-"] {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }
}

.product-sidebar .sidebar-section {
  margin-bottom: 15px;
  border: 1px solid #ddd;
}

.product-sidebar .sidebar-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px 15px;
  letter-spacing: 0.5px;
}

.product-sidebar .details-table,
.product-sidebar .specifics-table {
  margin-bottom: 0;
  font-size: 12px;
  border-collapse: collapse;
}

.product-sidebar .table td {
  padding: 8px 12px;
  border: none;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
}

.product-sidebar .table tr:last-child td {
  border-bottom: none;
}

.product-sidebar .table tr:nth-child(even) {
  background: #f9f9f9;
}

.product-sidebar .table td:first-child {
  font-weight: 600;
  color: #333;
  width: 45%;
  background: #f5f5f5;
  border-right: 1px solid #eee;
}

.product-sidebar .table td:last-child {
  color: #555;
}

/* Downloads list in sidebar */
.product-sidebar .downloads-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-sidebar .downloads-list li {
  padding: 8px 12px;
  border-bottom: 1px solid #eee;
}

.product-sidebar .downloads-list li:last-child {
  border-bottom: none;
}

.product-sidebar .downloads-list a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-sidebar .downloads-list a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.product-sidebar .downloads-list i {
  color: #c00;
  font-size: 16px;
}

@media (max-width: 576px) {
  .refine-search__subitem {
    width: calc(50% - 10px);
    margin-right: 10px;
    margin-bottom: 15px;
  }
  
  .refine-search__subitem .category-box img {
    height: 100px;
  }
}

/* Category Dropdown Menu */
#menu .dropdown-menu.category-dropdown {
    max-height: 400px;
    overflow-y: auto;
    min-width: 280px;
    background: #1a1a1a;
    border: 1px solid #850000;
    padding: 5px 0;
}

#menu .category-dropdown .dropdown-item {
    color: #e0e0e0;
    padding: 8px 20px;
    font-size: 14px;
    transition: all 0.2s ease;
}

#menu .category-dropdown .dropdown-item:hover {
    background: #850000;
    color: #fff;
}

#menu .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
}

#menu .dropdown-toggle::after {
    margin-left: 5px;
}

/* Sidebar Category List */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    border-bottom: 1px solid #333;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list li a {
    display: block;
    padding: 10px 15px;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.category-list li a:hover {
    background: #850000;
    color: #fff;
    padding-left: 20px;
}

/* ========== CONTACT PAGE STYLES ========== */
.contact-page-wrapper {
    margin-top: 20px;
}

.contact-map-section {
    margin-bottom: 30px;
}

.map-container {
    border: 1px solid #333;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
}

.contact-map {
    display: block;
    width: 100%;
    height: 450px;
}

.contact-info-box {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 5px;
    border: 1px solid #333;
}

.contact-info-box h3 {
    color: #850000;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.contact-info-item i {
    color: #850000;
    font-size: 18px;
    width: 30px;
    margin-right: 10px;
    margin-top: 3px;
}

.contact-info-item span {
    flex: 1;
}

.contact-info-item a {
    color: #e0e0e0;
    text-decoration: none;
}

.contact-info-item a:hover {
    color: #850000;
}

.contact-form-section {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 5px;
    border: 1px solid #333;
}

.contact-form fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

.contact-form legend h2 {
    color: #850000;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-form .form-intro {
    color: #999;
    margin-bottom: 25px;
    font-size: 14px;
}

.contact-form .form-control {
    background: #2a2a2a;
    border: 1px solid #444;
    color: #e0e0e0;
    padding: 12px 15px;
    font-size: 14px;
    border-radius: 4px;
}

.contact-form .form-control::placeholder {
    color: #777;
}

.contact-form .form-control:focus {
    background: #2a2a2a;
    border-color: #850000;
    color: #e0e0e0;
    box-shadow: 0 0 0 0.2rem rgba(133, 0, 0, 0.25);
}

.contact-form textarea.form-control {
    min-height: 180px;
    resize: vertical;
}

.contact-form .form-actions {
    margin-top: 20px;
}

.contact-form .btn-submit {
    background: #850000;
    border: none;
    color: #fff;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact-form .btn-submit:hover {
    background: #a00000;
    transform: translateY(-2px);
}

.contact-form .btn-submit i {
    margin-right: 8px;
}

@media (max-width: 991px) {
    .contact-map-section,
    .contact-form-section {
        margin-bottom: 30px;
    }
    
    .contact-map {
        height: 350px;
    }
}

/* reCAPTCHA Styling */
.captcha-fieldset {
    border: none;
    padding: 0;
    margin: 20px 0;
}

.captcha-fieldset legend {
    color: #999;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 15px;
}

.contact-form .captcha-fieldset {
    margin-top: 20px;
}

/* ================================================
   HOMEPAGE REDESIGN STYLES
   ================================================ */

/* Hero Banner Section */
.hero-banner {
    position: relative;
    background: linear-gradient(135deg, #1a0000 0%, #3a0000 50%, #850000 100%);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>') repeat;
    background-size: 100px 100px;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 2px;
}

.hero-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-cta {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    color: #850000;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero-cta:hover {
    background: #f0f0f0;
    color: #850000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    text-decoration: none;
}

.hero-cta span:first-child {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-cta .cta-sub {
    font-size: 12px;
    font-weight: 400;
    color: #666;
    letter-spacing: 1px;
}

/* Services Section */
.services-section {
    margin-bottom: 40px;
}

.service-item {
    margin-bottom: 20px;
}

.service-item a {
    text-decoration: none;
}

.service-box {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 25px 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #2a2a2a;
}

.service-box:hover {
    background: #252525;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(133, 0, 0, 0.3);
    border-color: #850000;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #850000, #a00000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.service-box:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    font-size: 28px;
    color: #fff;
}

.service-box h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-box p {
    color: #999;
    font-size: 12px;
    margin: 0;
    line-height: 1.4;
}

/* Recent Projects Section */
.projects-section {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid #2a2a2a;
}

.section-title {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    color: #ffffff !important;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.section-title i {
    color: #850000;
    margin-right: 10px;
}

.section-subtitle {
    color: #999;
    font-size: 14px;
    margin-bottom: 25px;
}

.projects-grid {
    margin-top: 20px;
}

.project-card {
    background: #252525;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.project-thumbnail {
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 1px solid #3a3a3a;
    border-radius: 8px;
}

.project-thumbnail i {
    font-size: 40px;
    color: #850000;
    margin-bottom: 10px;
}

.project-thumbnail span {
    color: #ccc;
    font-size: 12px;
    text-align: center;
    padding: 0 10px;
}

/* Showroom Section */
.showroom-section {
    background: linear-gradient(135deg, #1a1a1a, #252525);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid #2a2a2a;
}

.showroom-section p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 15px;
}

.showroom-info {
    background: rgba(133, 0, 0, 0.1);
    border-left: 3px solid #850000;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.showroom-info p {
    margin: 8px 0;
    color: #e0e0e0;
    font-size: 14px;
}

.showroom-info i {
    color: #850000;
    width: 20px;
    margin-right: 8px;
}

.btn-showroom {
    background: #850000;
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 10px;
}

.btn-showroom:hover {
    background: #a00000;
    color: #fff;
    transform: translateY(-2px);
}

.showroom-image {
    height: 100%;
    min-height: 100%;
    border-radius: 8px;
    overflow: hidden;
}

/* Shop Online Section */
.shop-section {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid #2a2a2a;
}

.product-grid {
    margin-top: 20px;
}

.product-card {
    background: #252525;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    border: 1px solid #3a3a3a;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(133, 0, 0, 0.2);
    border-color: #850000;
}

.product-card a {
    text-decoration: none;
}

.product-image {
    background: #fff;
    padding: 15px;
    text-align: center;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 100%;
    max-height: 150px;
    object-fit: contain;
}

.product-info {
    padding: 15px;
}

.product-name {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    margin: 0 0 8px 0;
    line-height: 1.4;
    height: 36px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-price {
    color: #850000;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.product-price .price-old {
    color: #666;
    text-decoration: line-through;
    font-size: 13px;
    font-weight: 400;
    margin-right: 8px;
}

.product-price .price-new {
    color: #850000;
}

.btn-shop-more {
    background: transparent;
    border: 2px solid #850000;
    color: #850000;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-shop-more:hover {
    background: #850000;
    color: #fff;
}

/* Portfolio Section */
.portfolio-section {
    background: linear-gradient(135deg, #1a1a1a, #252525);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid #2a2a2a;
}

.portfolio-grid {
    margin-top: 20px;
}

.portfolio-card {
    background: #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    border: 1px solid #3a3a3a;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.portfolio-image {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-image i {
    font-size: 50px;
    color: #850000;
}

.portfolio-info {
    padding: 15px;
    background: #1a1a1a;
}

.portfolio-info h5 {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.portfolio-info p {
    color: #999;
    font-size: 12px;
    margin: 0;
}

.btn-portfolio {
    background: transparent;
    border: 2px solid #850000;
    color: #850000;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-portfolio:hover {
    background: #850000;
    color: #fff;
}

/* Responsive adjustments for homepage */
@media (max-width: 767px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-banner {
        min-height: 100%;
    }
    
    .service-box {
        padding: 20px 10px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-icon i {
        font-size: 20px;
    }
    
    .service-box h4 {
        font-size: 12px;
    }
    
    .service-box p {
        font-size: 10px;
    }
    
    .projects-section,
    .showroom-section,
    .shop-section,
    .portfolio-section {
        padding: 20px 15px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .product-image {
        height: 140px;
    }
    
    .product-image img {
        max-height: 110px;
    }
}

/* Video wrapper styling */
.video-wrapper {
    position: relative;
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    background: #000;
}

.video-wrapper .video-label {
    display: block;
    padding: 10px;
    text-align: center;
    color: #ccc;
    font-size: 13px;
    background: #252525;
}

.project-card .video-wrapper:hover video {
    opacity: 0.9;
}

/* Hero banner with background image */
.hero-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Showroom note styling */
.showroom-note {
    color: #999;
    font-size: 13px;
    font-style: italic;
    margin-top: 15px;
}

.showroom-note i {
    color: #850000;
    margin-right: 5px;
}

.showroom-info a {
    color: #850000;
    text-decoration: none;
}

.showroom-info a:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .video-wrapper video {
        height: 140px;
    }
}

/* ================================================
   PORTFOLIO / PROJECTS PAGE STYLES
   ================================================ */

.portfolio-page {
    background: #121212;
    padding-bottom: 60px;
}

.portfolio-header {
    text-align: center;
    padding: 60px 20px 40px;
    background: linear-gradient(135deg, #1a0000 0%, #3a0000 50%, #850000 100%);
    margin: -20px -15px 40px;
    border-radius: 8px;
}

.portfolio-header h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 15px 0;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.portfolio-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    margin: 0;
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
    padding: 0 15px;
}

.project-section {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}

.project-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(133, 0, 0, 0.3);
    border-color: #850000;
}

.project-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 20px;
    margin: 0;
    background: linear-gradient(135deg, #850000, #5a0000);
    text-align: center;
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    position: relative;
}

.gallery-item {
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(133, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: #fff;
    font-size: 40px;
}

/* Portfolio CTA Section */
.portfolio-cta {
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a, #252525);
    padding: 50px 30px;
    margin: 60px 15px 0;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
}

.portfolio-cta h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.portfolio-cta p {
    color: #999;
    font-size: 16px;
    margin: 0 0 25px 0;
}

.btn-portfolio-cta {
    background: #850000;
    color: #fff;
    padding: 15px 40px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-portfolio-cta:hover {
    background: #a00000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(133, 0, 0, 0.4);
}

/* Lightbox customization */
.lb-data .lb-caption {
    font-size: 16px;
    font-weight: 600;
}

.lb-nav a.lb-prev,
.lb-nav a.lb-next {
    opacity: 0.8;
}

.lb-nav a.lb-prev:hover,
.lb-nav a.lb-next:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 767px) {
    .portfolio-header h1 {
        font-size: 32px;
        letter-spacing: 3px;
    }
    
    .portfolio-subtitle {
        font-size: 14px;
    }
    
    .projects-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .portfolio-cta {
        padding: 30px 20px;
        margin: 40px 15px 0;
    }
    
    .portfolio-cta h3 {
        font-size: 22px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .projects-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .projects-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .projects-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   CONTACT PAGE - IMPROVED READABILITY
   ============================================ */

.contact-info-box h3 {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* ============================================
   INFORMATION PAGES - CONSISTENT THEME
   ============================================ */

#information-information {
    padding-bottom: 60px;
}

#information-information #content {
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #333;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

#information-information h1,
#information-information h2,
#information-information h3 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #850000;
}

#information-information h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
}

#information-information h2 {
    font-size: 1.8rem;
    margin-top: 30px;
}

#information-information h3 {
    font-size: 1.4rem;
}

#information-information p,
#information-information li,
#information-information span,
#information-information div {
    line-height: 1.8;
    font-size: 16px;
}

#information-information a {
    text-decoration: none;
    transition: color 0.3s ease;
}

#information-information a:hover {
    text-decoration: underline;
}

#information-information img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

#information-information ul,
#information-information ol {
    padding-left: 25px;
    margin-bottom: 20px;
}

#information-information li {
    margin-bottom: 10px;
    position: relative;
}

#information-information ul li::marker {
    color: #850000;
}

/* Service/Feature boxes if present */
#information-information .service-box,
#information-information .feature-box,
#information-information [class*="box"],
#information-information [class*="card"] {
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#information-information .service-box:hover,
#information-information .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(133, 0, 0, 0.3);
}

/* Tables in information pages */
#information-information table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #1f1f1f;
    border-radius: 8px;
    overflow: hidden;
}

#information-information th,
#information-information td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #333;
}

#information-information th {
    background: #850000;
    font-weight: 600;
    text-transform: uppercase;
}

#information-information tr:hover {
    background: #2a2a2a;
}

/* Blockquotes */
#information-information blockquote {
    border-left: 4px solid #850000;
    padding: 20px 30px;
    margin: 30px 0;
    background: #1f1f1f;
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #information-information #content {
        padding: 20px;
    }
    
    #information-information h1 {
        font-size: 1.8rem;
    }
    
    #information-information h2 {
        font-size: 1.4rem;
    }
}


/* ============================================
   CONTACT PAGE - IMPROVED READABILITY
   ============================================ */

.contact-info-box h3 {
    color: #ffffff !important;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* ============================================
   INFORMATION PAGES - CONSISTENT THEME
   ============================================ */

#information-information {
    padding-bottom: 60px;
}

#information-information #content {
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #333;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

#information-information h1,
#information-information h2,
#information-information h3 {
    color: #ffffff !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #850000;
}

#information-information h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
}

#information-information h2 {
    font-size: 1.8rem;
    color: #e0e0e0 !important;
    margin-top: 30px;
}

#information-information h3 {
    font-size: 1.4rem;
    color: #cccccc !important;
}

#information-information p,
#information-information li,
#information-information span,
#information-information div {
    color: #c0c0c0 !important;
    line-height: 1.8;
    font-size: 16px;
}

#information-information a {
    color: #b91513 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

#information-information a:hover {
    color: #ff3333 !important;
    text-decoration: underline;
}

#information-information img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

#information-information ul,
#information-information ol {
    padding-left: 25px;
    margin-bottom: 20px;
}

#information-information li {
    margin-bottom: 10px;
    position: relative;
}

#information-information ul li::marker {
    color: #850000;
}

/* Tables in information pages */
#information-information table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #1f1f1f;
    border-radius: 8px;
    overflow: hidden;
}

#information-information th,
#information-information td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #333;
    color: #c0c0c0 !important;
}

#information-information th {
    background: #850000;
    color: #ffffff !important;
    font-weight: 600;
    text-transform: uppercase;
}

#information-information tr:hover {
    background: #2a2a2a;
}

/* Blockquotes */
#information-information blockquote {
    border-left: 4px solid #850000;
    padding: 20px 30px;
    margin: 30px 0;
    background: #1f1f1f;
    font-style: italic;
    color: #aaa !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #information-information #content {
        padding: 20px;
    }
    
    #information-information h1 {
        font-size: 1.8rem;
    }
    
    #information-information h2 {
        font-size: 1.4rem;
    }
}


/* ============================================
   HEADER SEARCH BAR - FULL WIDTH
   ============================================ */

#search {
    width: 100%;
}

#search input.form-control {
    width: 100%;
    flex: 1;
}

#search .input-group {
    width: 100%;
}


/* ============================================
   HEADER SEARCH BAR - IMPROVED STYLING
   ============================================ */

header .row {
    align-items: center;
}

header .col-md-6 {
    display: flex;
    justify-content: center;
}

#search {
    width: 100%;
    max-width: 100%;
}

#search .input-group {
    width: 100%;
    background: #f0f0f0;
    border-radius: 5px;
    border: 1px solid #ccc;
}

#search input.form-control {
    background: #f0f0f0;
    border: none;
    color: #333;
    padding: 10px 15px;
}

#search input.form-control::placeholder {
    color: #777;
}

#search input.form-control:focus {
    background: #e8e8e8;
    box-shadow: none;
    outline: none;
}


/* ============================================
   HEADER SEARCH BAR - DARK OUTLINE & LEFT ALIGNED
   ============================================ */

header .col-md-6 {
    display: flex;
    justify-content: flex-start !important;
    padding-left: 15px;
}

#search .input-group {
    border: 2px solid #333 !important;
    border-radius: 5px;
    background: #fff;
}

#search input.form-control {
    background: #fff !important;
    border: none !important;
}


/* ============================================
   SEARCH BAR - BLACK BORDER FIX
   ============================================ */

#search input.form-control,
#search .form-control-lg {
    border: 2px solid #333 !important;
    border-right: none !important;
    border-radius: 5px 0 0 5px !important;
}

