/* Elegant Dark Theme for Shop */

body {
  background: #121212; /* Dark background */
  color: #e0e0e0; /* Light text */
  font-family: 'Poppins', sans-serif;
  margin-top: 4rem;
}

h1, h2, h3, h4, h5, h6 {
  color: #f0f0f0;
  font-weight: 700;
}

.navbar-brand{
  color: #1a73e8;
}
.navbar-toggler {
    background-color: #1a73e8;
    border: 1px solid #e0e0e0;
}

.head{
  color: #ffffff;
}

.bg-steel {
  background-color: rgba(40, 40, 40, 0.9);
}

.site-header .navbar-nav .nav-link {
  color: #e0e0e0;
  transition: color 0.3s ease-in-out;
}

.site-header .navbar-nav .nav-link:hover {
  color: #ffffff;
  background: #1a73e8;
  padding: 5px 10px;
  border-radius: 10px;
}

.site-header .navbar-nav .nav-link.active {
  font-weight: 600;
  color: #64b5f6;
}

.account-img2 {
  height: 25px;
  width: 25px;
  margin-right: 20px;
  margin-bottom: 16px;
}

.article-img {
    width: 30px;
    height: auto;
}

/* Carousel */
.carousel-item img {
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  filter: contrast(1.05) brightness(1.05);
}

.custom-caption {
  padding: 12px 18px;
  border-radius: 12px;
  color: #ffffff;
  font-weight: bold;
}
@media (max-width: 768px) {
  .carousel-item img {
    height: 250px;
  }

  .custom-caption {
    top: 10px;
    right: 10px;
    padding: 8px 12px;
    font-size: 14px;
    max-width: 150px;
  }
}
@media (max-width: 576px) {
  .carousel-item img {
    height: 200px;
  }

  .custom-caption {
    top: 8px;
    right: 8px;
    padding: 6px 6px;
    font-size: 12px;
    max-width: 180px;
    line-height: 1.0;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.container11 {
  background: #1e1e1e;
  padding: 5px;
  border-radius: 10px;
}

.search-box11 {
  flex-grow: 1;
  max-width: 350px;
}

.search-box11 form {
  display: flex;
  align-items: center;
}

.search-box11 input {
  border: 2px solid #1a73e8;
  border-radius: 10px;
  padding: 10px;
  background-color: #1a1a1a;
  color: #fff;
}

.search-box button {
  background-color: #1a73e8;
  color: #fff;
 
  border-radius: 5px;
  border: none;
  
  transition: 0.3s;
}

.search-box11 button:hover {
  background-color: #1a73e8;
}

.icon-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-group {
  background-color: #2c2c2c;
  padding: 10px;
  border-radius: 10px;
  margin-top: 0;
}

.icon-group .btn {
  background: #1a73e8;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 10px;
  transition: background 0.3s;
}

.icon-group .btn:hover {
  background: #0d47a1;
}

.content-section11 {
  max-width: 450px;
  margin: auto;
  background: #1f1f1f;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  animation: fadeIn 1s ease-in-out;
}

.section-title {
  color: #ffffff;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.product-item {
  padding: 5px;
  max-width: 150px;
  cursor: pointer;
}

.product-card {
  border: none;
  background-color: #2a2a2a;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 5px;
}

.image-container {
  position: relative;
  width: 100%;
}

.image-container img {
  height: 150px;
  object-fit: cover;
  transition: transform 0.3s ease;
  width: 100%;
}

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

.love-icon {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 1.2rem;
  padding: 5px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease;
  outline: none;
}

.love-icon:hover {
  transform: scale(1.2);
}

.love-icon.active {
  color: #1a73e8;
}

.card-body {
  padding: 10px;
  background: #212121;
  text-align: center;
}

.product-card:hover .card-body {
  background: white;
}

.card-title {
  color: #1a73e8;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #000;
  color: #fff;
}

.price {
  font-size: 1rem;
  font-weight: bold;
  color: #1a73e8;
  margin: 5px 0;
}

.sub {
  color: #1a73e8;
}

.btn-add-cart {
  background-color: #1a73e8;
  color: #ffffff;
  
  padding: 10px 16px;
  border: none;
  transition: background 0.3s ease-in-out;
}

.btn-add-cart:hover {
  background-color: #0d47a1;
}

.list-group-item {
  background-color: #2c2c2c;
  color: #e0e0e0;
}

.list-group-item:hover {
  background-color: #1a73e8;
  color: white;
}

.list-group-item a {
  color: inherit;
  text-decoration: none;
  font-weight: bold;
}

.content-section {
  background: #1f1f1f;
  padding: 10px 20px;
  border: 1px solid #444;
  border-radius: 3px;
  margin-bottom: 20px;
}

.header-title11 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color:#1a73e8;
  margin-bottom: 12px;
}

.sub-header11 {
  text-align: center;
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 25px;
}

.form-group11 label {
  font-weight: 600;
  color: #1a73e8;
}

.form-control11 {
  background: #1f1f1f;
  color: #e0e0e0;
  border: 1px solid #666;
  border-radius: 10px;
  padding: 12px;
}

.form-control11:focus {
  border-color: #1a73e8;
  box-shadow: 0 0 10px rgba(13, 110, 253, 0.5);
}

.sku {
  color: #888;
}

.selected {
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.3);
}

.cart-count {
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  font-weight: bold;
  color: white;
}

.quantity-container {
  display: flex;
  align-items: center;
  border-radius: 5px;
  overflow: hidden;
  width: 100px;
}

.quantity-container input {
  width: 40px;
  text-align: center;
  border: none;
  font-size: 13px;
  font-weight: bold;
  background: #1f1f1f;
  color: #fff;
}

.btn-quantity {
  background: #2c2c2c;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
}

.btn-quantity:hover {
  background: #444;
}

.icon-label {
  font-size: 10px;
  color: gray;
  margin-top: 2px;
  text-align: center;
}

.store-header {
  margin-top: 0rem;
  background: #1e1e1e;
  color: white;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 15px;
}

.store-name {
  font-size: 20px;
}

.store-motto {
  font-size: 12px;
  font-style: italic;
  opacity: 0.8;
}

.header-buttons .btn {
  font-size: 18px;
  padding: 6px 10px;
}

.cart-btn i, .search-btn i {
  font-size: 20px;
}

.article-img2 {
  height: 30px;
  width: 30px;
  margin-right: 10px;
}

.text-white1 {
  color: #1a73e8;
}

.top-title {
  text-align: center;
  font-size: 2.2rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #ffffff;
}

.top-subtitle {
  text-align: center;
  font-size: 0.95rem;
  font-family: 'Roboto', sans-serif;
  color: #cccccc;
}

.custom-spinner {
  margin: 20px auto;
  width: 40px;
  height: 40px;
  border: 4px solid #666;
  border-top-color: #1a73e8;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.modal-title{
  color: #3498db;
}

.icon-group1 .btn {
  background: #1a73e8;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 10px;
  transition: background 0.3s;
}

.table-hover1{
   color: #64b5f6;
}
.text1{
  color:black;
}

.fade-tip {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.fade-tip.show {
  opacity: 1;
}
