body {
  width: 100%;
  height: 100%;
  background-color: #d99c9c10;
}
h1, h2, h3, h4, h5, h6 {
  color: #444;
}
legend {
  padding: 7px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}
label {
  font-size: 12px;
  font-weight: normal;
}
/* Chrome border line */
button:focus {
  outline: none !important;
}
/* container */
#container {
  width: 100%;
  min-height: 100%;
  position: absolute;
  margin-bottom: 300px;
}
/* content */
#content, #column-left, #column-right {
  padding-bottom: 730px;
}
@media (min-width: 576px) {
  #content, #column-left, #column-right {
    padding-bottom: 400px;
  }
}
#alert {
  z-index: 9999;
  position: fixed;
  top: 30%;
  left: 50%;
  width: 400px;
  margin-left: -200px;
}
@media (min-width: 992px) {
  #alert {
    width: 600px;
    margin-left: -300px;
  }
}
@media (min-width: 1140px) {
  #alert {
    width: 600px;
    margin-left: -300px;
  }
}
@media (min-width: 1320px) {
  #alert {
    width: 600px;
    margin-left: -300px;
  }
}
#alert .alert {
  margin-bottom: 15px;
}
#alert .alert-primary {
  box-shadow: 0 0 0 5px rgb(var(--bs-primary-rgb), 0.1);
}
#alert .alert-secondary {
  box-shadow: 0 0 0 5px rgb(var(--bs-secondary-rgb), 0.1);
}
#alert .alert-success {
  box-shadow: 0 0 0 5px rgb(var(--bs-success-rgb), 0.1);
}
#alert .alert-warning {
  box-shadow: 0 0 0 5px rgb(var(--bs-warning-rgb), 0.1);
}
#alert .alert-danger {
  box-shadow: 0 0 0 5px rgb(var(--bs-danger-rgb), 0.1);
}
#alert .alert-info {
  box-shadow: 0 0 0 5px rgb(var(--bs-info-rgb), 0.1);
}
#alert .alert-light {
  box-shadow: 0 0 0 5px rgb(var(--bs-light-rgb), 0.1);
}
#alert .alert-dark {
  box-shadow: 0 0 0 5px rgb(var(--bs-dark-rgb), 0.1);
}
/* top */
#top {
  background: linear-gradient(135deg, #0d1b2a, #1e3a8a);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 15px; /* Slightly reduced */
  position: relative;
  padding-bottom: 6px; /* Reduced padding */
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.25);
  border-radius: 0 0 10px 10px;
  backdrop-filter: blur(8px);
  z-index: 1000;
}

#top ul.list-inline {
  margin-bottom: 0;
  padding: 0;
  position: relative;
  z-index: 1001;
}

#top .list-inline-item {
  position: relative;
}

#top .list-inline-item > a, 
#top .list-inline-item .dropdown > a {
  font-size: 1.1em; /* Slightly reduced */
  color: #ffffff;
  line-height: 38px; /* Reduced line-height */
  vertical-align: middle;
  padding: 10px 14px; /* More compact spacing */
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

#top .list-inline-item > a:hover, 
#top .list-inline-item .dropdown > a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #38bdf8;
  transform: scale(1.05);
  box-shadow: 0px 3px 10px rgba(56, 189, 248, 0.4);
}

/* Updated Dropdown Menu */
#top .list-inline-item .dropdown-menu {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.35);
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 160px; /* Auto-adjusting width */
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s ease-in-out;
  z-index: 1050;
}

#top .list-inline-item:hover .dropdown-menu,
#top .list-inline-item:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#top .list-inline-item .dropdown-menu a {
  color: #ffffff;
  padding: 8px 14px; /* More compact spacing */
  display: block;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

#top .list-inline-item .dropdown-menu a:hover {
  background: rgba(56, 189, 248, 0.2);
  border-radius: 4px;
  color: #38bdf8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  #top {
    padding-bottom: 5px;
  }

  #top .list-inline-item > a {
    font-size: 1em;
    padding: 8px 12px;
  }

  #top .list-inline-item .dropdown-menu {
    min-width: 140px;
  }
}
/* logo */
#logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1); /* Soft background for modern look */
  backdrop-filter: blur(12px); /* Glassmorphism effect */
  border-radius: 12px; /* Slightly rounded corners */
  transition: all 0.3s ease-in-out; /* Smooth transitions */
}

#logo img {
  max-width: 200px; /* Adjusted for better appearance */
  transition: transform 0.4s ease-in-out; /* Smooth scaling */
  filter: drop-shadow(0px 0px 5px rgba(255, 255, 255, 0.4)); /* Soft glow effect */
}

#logo:hover {
  transform: scale(1.05); /* Slightly enlarge on hover */
}

#logo img:hover {
  filter: drop-shadow(0px 0px 12px rgba(56, 189, 248, 0.8)); /* Glow effect on hover */
}

/* Desktop Alignment */
@media (min-width: 768px) {
  #logo {
    justify-content: left; /* Align left on larger screens */
  }
}

/* Responsive Sizing */
@media (max-width: 480px) {
  #logo img {
    max-width: 150px; /* Smaller logo on mobile */
  }
}
/* search */
#search {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

#search .search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: 50px;
  padding: 5px;
  transition: all 0.4s ease-in-out;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

/* Search Input Field */
#search .form-control-lg {
  height: 45px;
  font-size: 14px;
  width: 220px;
  max-width: 100%;
  padding: 10px 15px 10px 45px; /* Space for the icon */
  border: none;
  border-radius: 50px;
  background: transparent;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
  outline: none;
  box-shadow: inset 0px 0px 5px rgba(255, 255, 255, 0.2);
}

/* Icon Inside the Input */
#search .search-icon {
  position: absolute;
  left: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

/* Glow effect when focused */
#search .form-control-lg:focus {
  width: 280px; /* Expands on focus */
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0px 0px 15px rgba(56, 189, 248, 0.8);
}

/* Search Button */
#search .btn-lg {
  font-size: 16px;
  padding: 10px 18px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #38bdf8, #1e3a8a);
  color: #ffffff;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  margin-left: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

#search .btn-lg:hover {
  background: linear-gradient(135deg, #1e3a8a, #38bdf8);
  box-shadow: 0px 0px 15px rgba(56, 189, 248, 0.8);
  transform: scale(1.05);
}

/* Pulse animation around input */
@keyframes pulse {
  0% {
    box-shadow: 0 0 5px rgba(56, 189, 248, 0.4);
  }
  50% {
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.8);
  }
  100% {
    box-shadow: 0 0 5px rgba(56, 189, 248, 0.4);
  }
}

#search .form-control-lg:focus {
  animation: pulse 1.5s infinite;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  #search {
    flex-direction: column;
  }

  #search .form-control-lg {
    width: 100%;
    text-align: center;
  }

  #search .btn-lg {
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
  }
}
/* cart */
#cart {
  margin-bottom: 10px;
  position: relative; /* For dropdown positioning */
}

#cart .img-thumbnail {
  min-width: 100px;
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
}

#cart .btn-lg {
  font-size: 16px; /* Slightly larger for better readability */
  line-height: 20px;
  padding: 14px 35px;
  background: linear-gradient(135deg, #38bdf8, #1e3a8a); /* Modern gradient */
  color: white;
  border: none;
  border-radius: 30px; /* Rounded button */
  transition: all 0.3s ease-in-out; /* Smooth transition */
}

#cart .btn-lg:hover {
  background: linear-gradient(135deg, #1e3a8a, #38bdf8); /* Reversed gradient on hover */
  transform: scale(1.05); /* Slight scale effect */
}

/* Dropdown Menu */
#cart .dropdown-menu {
  background: rgba(223, 157, 14, 0.9); /* Translucent background */
  backdrop-filter: blur(10px); /* Glassmorphism effect */
  border-radius: 12px; /* Rounded corners */
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2); /* Soft shadow */
}

#cart .dropdown-menu li {
  min-width: 300px;
  padding: 10px; /* Padding for better spacing */
  transition: background 0.3s ease; /* Smooth background transition */
}

#cart .dropdown-menu li:hover {
  background: rgba(255, 255, 255, 0.1); /* Light hover effect */
  border-radius: 10px; /* Rounded corners on hover */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  #cart .dropdown-menu li {
    min-width: 100%; /* Full width on mobile */
  }

  #cart .btn-lg {
    width: 100%; /* Full width button on mobile */
  }
}
/* menu */
/* Modern Navbar for OpenCart */
#menu {
  background: linear-gradient(135deg, #1d2b64, #f8cdda);
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#menu .navbar-nav {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

#menu .navbar-nav > li {
  position: relative;
  margin: 0 15px;
}

#menu .navbar-nav > li > a {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 15px;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
}

#menu .navbar-nav > li > a:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Dropdown Menu */
#menu .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease-in-out;
  min-width: 200px;
  z-index: 1000;
}

#menu .navbar-nav > li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#menu .dropdown-menu li {
  list-style: none;
  padding: 10px 15px;
}

#menu .dropdown-menu li a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
  display: block;
}

#menu .dropdown-menu li a:hover {
  color: #fff;
  background: #1d2b64;
  border-radius: 5px;
}

/* Responsive Navbar */
@media (max-width: 768px) {
  #menu {
    flex-direction: column;
    align-items: flex-start;
  }
  
  #menu .navbar-nav {
    flex-direction: column;
    width: 100%;
  }
  
  #menu .navbar-nav > li {
    width: 100%;
    text-align: left;
  }
  
  #menu .navbar-nav > li > a {
    display: block;
    width: 100%;
    padding: 10px;
  }
}

#category {
  float: left;
  font-size: 16px;
  font-weight: 700;
  line-height: 40px;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}
#menu .navbar-toggler i {
  color: #fff;
  border-color: #fff;
  font-size: 0.9em;
}
/* default boostrap changes */
div.required .col-form-label:before, div.required .form-label:before {
  content: "* ";
  color: #F00;
  font-weight: bold;
}
.form-switch-lg {
  font-size: 20px;
  min-height: 30px;
  line-height: 30px;
}
.nav-tabs {
  margin-bottom: 15px;
}
.form-check .form-check-input {
  margin-top: 0.25rem;
}
@media (min-width: 768px) {
  .col-form-label {
    text-align: right;
  }
}
/* footer */
footer {
  background: linear-gradient(135deg, #0d1b2a, #1e3a8a); /* Dark navy to deep blue */
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  padding: 25px 0;
  color: #ffffff; /* Pure white for readability */
  position: relative;
  text-align: center;
  box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}

footer hr {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 15px auto;
  width: 80%;
}

footer a {
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}

footer a:hover {
  color: #38bdf8; /* Neon cyan hover */
  text-shadow: 0px 0px 5px rgba(56, 189, 248, 0.5);
}

footer h5 {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  margin: 12px 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Footer Icons */
footer .social-icons {
  margin-top: 15px;
}

footer .social-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  margin: 0 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease-in-out;
}

footer .social-icons a:hover {
  background: #38bdf8; /* Neon effect */
  color: #ffffff;
  box-shadow: 0px 0px 12px rgba(56, 189, 248, 0.6);
  transform: scale(1.1);
}

/* Responsive Footer Adjustments */
@media (max-width: 768px) {
  footer {
    padding: 20px 10px;
  }
  
  footer h5 {
    font-size: 13px;
  }
  
  footer a {
    font-size: 13px;
  }
}
/* breadcrumb */
.breadcrumb {
  margin: 0 0 20px 0;
  padding: 8px 0;
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  background-color: var(--bs-tertiary-bg);
}
.breadcrumb i {
  font-size: 15px;
}
.breadcrumb > li.breadcrumb-item {
  text-shadow: 0 1px 0 #FFF;
  padding: 0 20px;
  position: relative;
  white-space: nowrap;
}
.breadcrumb > li.breadcrumb-item > a {
  text-decoration: none;
}
.breadcrumb > li.breadcrumb-item:after {
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  right: -5px;
  width: 26px;
  height: 26px;
  border-right: 1px solid var(--bs-border-color);
  border-bottom: 1px solid var(--bs-border-color);
  transform: rotate(-45deg);
}
.breadcrumb > li.breadcrumb-item + li:before {
  content: "";
  padding: 0;
}
/* Modern Product Design for OpenCart */
.product-thumb {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  background: #fff;
  padding: 15px;
  text-align: center;
  width: 100%;
  max-width: 300px;
}

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

.product-thumb .image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  width: 100%;
  height: auto;
}

.product-thumb .image img {
  transition: transform 0.3s ease-in-out;
  border-radius: 12px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

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

.product-thumb .description {
  padding: 15px 10px;
}

.product-thumb .description h4 {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}

.product-thumb .price {
  font-size: 16px;
  font-weight: bold;
  color: #e74c3c;
  margin-bottom: 10px;
}

.product-thumb .button {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.product-thumb .button button {
  background: linear-gradient(45deg, #ff416c, #ff4b2b);
  border: none;
  border-radius: 25px;
  padding: 10px 20px;
  color: white;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
  width: 100%;
  max-width: 120px;
}

.product-thumb .button button:hover {
  background: linear-gradient(45deg, #ff4b2b, #ff416c);
}

/* Responsive Design */
@media (max-width: 768px) {
  .product-thumb {
    padding: 10px;
    max-width: 100%;
  }
  .product-thumb .description h4 {
    font-size: 16px;
  }
  .product-thumb .button button {
    padding: 8px 15px;
    font-size: 12px;
    max-width: 100px;
  }
}

.rating .fa-stack {
  width: 20px;
}
.rating .fa-star {
  color: #999;
  font-size: 15px;
}
.rating .fa-star {
  color: #FC0;
  font-size: 15px;
}
.rating .fa-star + .fa-star {
  color: #E69500;
}
/* product list */
.price {
  color: #444;
}
.price-new {
  font-weight: 600;
}
.price-old {
  color: #dc512c;
  text-decoration: line-through;
}
.price-tax {
  color: #999;
  font-size: 12px;
  display: block;
}
/* blog */
.blog-thumb {
  border: 1px solid #ddd;
  margin-bottom: 15px;
}
.blog-thumb h4 {
  font-weight: bold;
}
.blog-thumb .image {
  text-align: center;
  margin-bottom: 15px;
}
.blog-thumb .image a:hover {
  opacity: 0.8;
}
.blog-thumb .description {
  padding: 15px;
}
/* Theme Custom CSS */
#cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 9999;
  opacity: 0.95;
  color: #ecf0f1;
  background: #343a40;
}
#cookie div {
  font-size: 16px;
  color: #FFFFFF;
}
