:root {
    --primary-color: #ff6b35;
    --primary-dark: #e55a2b;
    --secondary-color: #2b2d42;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
  }
  
  body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--secondary-color);
    padding-top: 76px;
  }
  
  /* General Styles */
  .section-title {
    position: relative;
    margin-bottom: 30px;
    color: var(--secondary-color);
    font-weight: 700;
  }
  
  .section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
  }
  
  .text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
  }
  
  .btn-primary:hover,
  .btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
  }
  
  /* Navbar */
  .navbar {
    padding: 10px 0;
    transition: all 0.3s ease;
  }
  
  .navbar-brand img {
    transition: all 0.3s ease;
  }
  
  .nav-link {
    color: var(--secondary-color) !important;
    font-weight: 500;
    padding: 8px 15px !important;
    transition: all 0.3s ease;
  }
  
  .nav-link:hover,
  .nav-link.active {
    color: var(--primary-color) !important;
  }
  
  /* Cart Icon */
  .cart-icon-container {
    position: relative;
  }
  
  .cart-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    text-decoration: none;
    position: relative;
  }
  
  .cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .cart-preview {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 15px;
    z-index: 1000;
    display: none;
  }
  
  .cart-icon-container:hover .cart-preview {
    display: block;
  }
  
  .cart-preview-items {
    max-height: 300px;
    overflow-y: auto;
  }
  
  .empty-cart-message {
    text-align: center;
    padding: 20px 0;
    color: var(--gray-color);
  }
  
  /* Carousel */
  .carousel-item {
    height: 500px;
    background-color: #f8f9fa;
  }
  
  .carousel-item img {
    object-fit: cover;
    height: 100%;
  }
  
  .carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 5px;
    bottom: 50px;
  }
  
  .carousel-caption h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  /* About Section */
  .about-image img {
    width: 100%;
    height: auto;
  }
  
  .value-item {
    margin-bottom: 20px;
  }
  
  .value-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 10px;
  }
  
  .value-item h5 {
    margin-top: 10px;
    font-weight: 600;
  }
  
  /* Products Section */
  .product-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .product-image {
    height: 200px;
    overflow: hidden;
    position: relative;
  }
  
  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
  }
  
  .product-card:hover .product-image img {
    transform: scale(1.1);
  }
  
  .product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
  }
  
  .product-details {
    padding: 15px;
  }
  
  .product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    height: 50px;
    overflow: hidden;
  }
  
  .product-stock {
    font-size: 0.8rem;
    color: var(--success-color);
    margin-bottom: 10px;
  }
  
  .product-stock.out-of-stock {
    color: var(--danger-color);
  }
  
  .product-price {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .original-price {
    text-decoration: line-through;
    color: var(--gray-color);
    margin-right: 10px;
    font-size: 0.9rem;
  }
  
  .current-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
  }
  
  .add-to-cart-btn {
    width: 100%;
    background-color: var(--primary-color);
    border: none;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .add-to-cart-btn:hover {
    background-color: var(--primary-dark);
  }
  
  .add-to-cart-btn i {
    margin-right: 5px;
  }
  
  /* Testimonials */
  .testimonial-item {
    padding: 20px;
  }
  
  .testimonial-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 5px solid rgba(255, 107, 53, 0.1);
  }
  
  .testimonial-item h5 {
    font-weight: 600;
    margin-bottom: 5px;
  }
  
  .stars {
    color: var(--warning-color);
    margin-bottom: 10px;
  }
  
  .testimonial-text {
    font-style: italic;
    color: var(--gray-color);
  }
  
  /* Contact Section */
  .contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
    text-align: center;
  }
  
  .social-links {
    margin-top: 20px;
  }
  
  .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
  }
  
  .social-link:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
  }
  
  .map-container {
    border-radius: 10px;
    overflow: hidden;
  }
  
  /* Footer */
  .footer {
    background-color: var(--secondary-color);
    color: white;
  }
  
  .footer-logo {
    height: 50px;
  }
  
  .footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
  }
  
  .footer h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
  }
  
  .footer ul li {
    margin-bottom: 10px;
  }
  
  .footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .footer ul li a:hover {
    color: white;
    padding-left: 5px;
  }
  
  .copyright {
    color: rgba(255, 255, 255, 0.7);
  }
  
  /* Cart Offcanvas */
  .cart-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }
  
  .cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 15px;
  }
  
  .cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .cart-item-details {
    flex: 1;
  }
  
  .cart-item-title {
    font-weight: 600;
    margin-bottom: 5px;
  }
  
  .cart-item-price {
    color: var(--primary-color);
    font-weight: 600;
  }
  
  .cart-item-quantity {
    display: flex;
    align-items: center;
    margin-top: 5px;
  }
  
  .quantity-btn {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f1f1;
    border: none;
    border-radius: 3px;
    font-weight: 600;
  }
  
  .quantity-input {
    width: 40px;
    text-align: center;
    border: 1px solid #eee;
    margin: 0 5px;
  }
  
  .cart-item-remove {
    color: var(--danger-color);
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
  }
  
  /* Products Page */
  .page-header {
    background-color: #f8f9fa;
    padding: 60px 0 30px;
    margin-bottom: 30px;
  }
  
  .page-header h1 {
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .breadcrumb {
    background: transparent;
    padding: 0;
  }
  
  .filters-container {
    position: sticky;
    top: 100px;
  }
  
  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .product-card {
    animation: fadeIn 0.5s ease forwards;
  }
  
  /* Responsive */
  @media (max-width: 991.98px) {
    .carousel-item {
      height: 400px;
    }
  
    .carousel-caption h2 {
      font-size: 2rem;
    }
  
    .about-image {
      margin-top: 30px;
    }
  }
  
  @media (max-width: 767.98px) {
    .carousel-item {
      height: 300px;
    }
  
    .carousel-caption h2 {
      font-size: 1.5rem;
    }
  
    .section-title {
      font-size: 1.8rem;
    }
  }
  
  @media (max-width: 575.98px) {
    .carousel-item {
      height: 250px;
    }
  
    .carousel-caption {
      bottom: 20px;
      padding: 10px;
    }
  
    .carousel-caption h2 {
      font-size: 1.2rem;
    }
  
    .carousel-caption p {
      font-size: 0.9rem;
    }
  
    .section-title {
      font-size: 1.5rem;
    }
  }
  
  /* Cart Preview */
  .cart-preview-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
  }
  
  .cart-preview-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
  }
  
  .cart-preview-price {
    font-size: 0.8rem;
    color: var(--primary-color);
  }
  
  .cart-preview-item {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
  }
  
  .cart-preview-item:last-child {
    border-bottom: none;
  }
  