:root {
      --primary: #e63946;
      --secondary: #1d3557;
      --dark: #0f172a;
      --light: #f8f9fa;
      --accent: #ff9e00;
    }
    
    body {
       font-family: 'Poppins', sans-serif;
  background-color: #f8f9fa;
  color: #333;
  overflow-x: hidden;
    }
    
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 700;
    }
    
    /* Navbar Styling */
    .navbar {
      background: linear-gradient(90deg, var(--dark) 0%, var(--secondary) 100%);
      box-shadow: 0 2px 15px rgba(0,0,0,0.1);
      padding: 0.8rem 0;
    }
    
    .navbar-brand {
      font-weight: 800;
      font-size: 1.8rem;
      letter-spacing: 1px;
      color: var(--light) !important;
    }
    
    .navbar-brand span {
      color: var(--primary);
    }
    
    .navbar-nav .nav-link {
      color: rgba(255,255,255,0.85) !important;
      font-weight: 500;
      padding: 0.5rem 1.2rem !important;
      transition: all 0.3s ease;
      position: relative;
    }
    
    .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
      color: white !important;
    }
    
    .navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 1.2rem;
      right: 1.2rem;
      height: 3px;
      background: var(--primary);
      border-radius: 10px;
    }
    
    .navbar .btn-outline-light:hover {
      background: var(--primary);
      border-color: var(--primary);
    }
    
    /* Hero Section */
    .hero-slide {
      position: relative;
    }
    
    .hero-slide img {
      height: 500px;
      object-fit: cover;
    }
    
    .carousel-caption {
      background: rgba(29, 53, 87, 0.85);
      border-radius: 15px;
      padding: 2rem;
      max-width: 600px;
      text-align: left;
      left: 10%;
      right: auto;
      bottom: 15%;
      backdrop-filter: blur(4px);
      border-left: 5px solid var(--primary);
    }
    
    .carousel-caption h2 {
      font-size: 2.8rem;
      font-weight: 800;
      margin-bottom: 1rem;
      line-height: 1.2;
    }
    
    .carousel-caption p {
      font-size: 1.2rem;
      margin-bottom: 1.5rem;
    }
    
    .btn-primary {
      background: var(--primary);
      border: none;
      padding: 0.75rem 2rem;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    
    .btn-primary:hover {
      background: #c1121f;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
    }
    
    /* Categories */
    .section-title {
      position: relative;
      margin-bottom: 3rem;
      text-align: center;
    }
    
    .section-title h3 {
      display: inline-block;
      background: white;
      padding: 0 1.5rem;
      position: relative;
      z-index: 2;
      font-size: 2rem;
      color: var(--secondary);
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--primary), transparent);
      z-index: 1;
    }
    
    .category-card {
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
      margin-bottom: 2rem;
    }
    
    .category-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    }
    
    .category-card img {
      height: 200px;
      object-fit: cover;
      transition: all 0.5s ease;
    }
    
    .category-card:hover img {
      transform: scale(1.1);
    }
    
    .category-card h6 {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(29, 53, 87, 0.9);
      color: white;
      padding: 1rem;
      margin: 0;
      text-align: center;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
    }
    
    .category-card:hover h6 {
      background: rgba(230, 57, 70, 0.95);
    }
    
    /* Products */
    .nav-tabs .nav-link {
      font-weight: 600;
      color: var(--secondary);
      padding: 1rem 2rem;
      border: none;
      position: relative;
    }
    
    .nav-tabs .nav-link.active {
      color: var(--primary);
      background: transparent;
    }
    
    .nav-tabs .nav-link.active::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--primary);
      border-radius: 10px;
    }
    
    .product-card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
      margin-bottom: 2rem;
    }
    
    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    }
    
    .product-card img {
      height: 200px;
      object-fit: contain;
      padding: 1.5rem;
      background: #f8f9fa;
    }
    
    .product-card .card-body {
      padding: 1.5rem;
    }
    
    .product-card h6 {
      font-weight: 600;
      color: var(--secondary);
      margin-bottom: 0.5rem;
      font-size: 1.1rem;
    }
    
    .product-card .price {
      font-weight: 700;
      color: var(--primary);
      font-size: 1.3rem;
      margin-bottom: 0.5rem;
    }
    
    .product-card .btn {
      width: 100%;
      background: var(--secondary);
      border: none;
      font-weight: 500;
      transition: all 0.3s ease;
    }
    
    .product-card .btn:hover {
      background: var(--primary);
    }
    
    /* Brands */
    .brand-logos {
      background: white;
      padding: 3rem 0;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      margin: 4rem 0;
    }
    
    .brand-logos img {
      max-height: 60px;
      object-fit: contain;
      margin: 0 20px;
      filter: grayscale(100%);
      opacity: 0.7;
      transition: all 0.3s ease;
    }
    
    .brand-logos img:hover {
      filter: grayscale(0);
      opacity: 1;
      transform: scale(1.1);
    }
    
    /* Newsletter */
    .newsletter {
      background: linear-gradient(90deg, var(--secondary) 0%, var(--dark) 100%);
      padding: 4rem 0;
      margin: 4rem 0;
      border-radius: 15px;
      color: white;
    }
    
    .newsletter h3 {
      font-size: 2.2rem;
      margin-bottom: 1rem;
    }
    
    .newsletter p {
      font-size: 1.1rem;
      opacity: 0.9;
      max-width: 600px;
      margin: 0 auto 2rem;
    }
    
    .newsletter .form-control {
      padding: 1.2rem;
      border-radius: 50px;
      border: none;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .newsletter .btn {
      padding: 1.2rem 2.5rem;
      border-radius: 50px;
      font-weight: 600;
      background: var(--primary);
      border: none;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
    }
    
    .newsletter .btn:hover {
      background: #c1121f;
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
    }
    
    
      /* Section Styling */
    .section-title {
      position: relative;
      margin-bottom: 3rem;
      text-align: center;
    }
    
    .section-title h2 {
      display: inline-block;
      background: white;
      padding: 0 1.5rem;
      position: relative;
      z-index: 2;
      font-size: 2.2rem;
      color: var(--secondary);
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--primary), transparent);
      z-index: 1;
    }
    
    /* Cards */
    .category-card, .product-card {
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
      margin-bottom: 2rem;
    }
    
    .category-card:hover, .product-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    }
    
    .category-card img {
      height: 200px;
      object-fit: cover;
      transition: all 0.5s ease;
    }
    
    .category-card:hover img {
      transform: scale(1.1);
    }
    
    .category-card h6 {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(29, 53, 87, 0.9);
      color: white;
      padding: 1rem;
      margin: 0;
      text-align: center;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
    }
    
    .category-card:hover h6 {
      background: rgba(230, 57, 70, 0.95);
    }
    
    .product-card img {
      height: 200px;
      object-fit: contain;
      padding: 1.5rem;
      background: #f8f9fa;
    }
    
    .product-card .card-body {
      padding: 1.5rem;
    }
    
    .product-card h6 {
      font-weight: 600;
      color: var(--secondary);
      margin-bottom: 0.5rem;
      font-size: 1.1rem;
    }
    
    .product-card .price {
      font-weight: 700;
      color: var(--primary);
      font-size: 1.3rem;
      margin-bottom: 0.5rem;
    }
    
    .sale-badge {
      position: absolute;
      top: 15px;
      left: 15px;
      background: var(--primary);
      color: white;
      padding: 5px 15px;
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: 600;
      z-index: 2;
    }
    
    /* About Page */
    .about-hero {
      background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(29, 53, 87, 0.9)), url('https://images.unsplash.com/photo-1601924635307-782b5386d150?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1920&h=500&q=80');
      background-size: cover;
      background-position: center;
      padding: 120px 0 80px;
      color: white;
      text-align: center;
    }
    
    .mission-section {
      background: var(--light);
      padding: 80px 0;
    }
    
    .team-member {
      text-align: center;
      margin-bottom: 30px;
    }
    
    .team-member img {
      width: 200px;
      height: 200px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 20px;
      border: 5px solid var(--light);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .values-section {
      background: linear-gradient(90deg, var(--secondary) 0%, var(--dark) 100%);
      color: white;
      padding: 80px 0;
    }
    
    .value-card {
      background: rgba(255,255,255,0.1);
      border-radius: 12px;
      padding: 30px;
      height: 100%;
      transition: all 0.3s ease;
    }
    
    .value-card:hover {
      background: rgba(230, 57, 70, 0.2);
      transform: translateY(-5px);
    }
    
    .value-card i {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: var(--accent);
    }
    
    /* Contact Page */
    .contact-hero {
      background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(29, 53, 87, 0.9)), url('https://images.unsplash.com/photo-1580273916550-e323be2ae537?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1920&h=500&q=80');
      background-size: cover;
      background-position: center;
      padding: 120px 0 80px;
      color: white;
      text-align: center;
    }
    
    .contact-section {
      padding: 80px 0;
    }
    
    .contact-card {
      background: white;
      border-radius: 12px;
      box-shadow: 0 5px 25px rgba(0,0,0,0.08);
      padding: 30px;
      height: 100%;
    }
    
    .contact-info {
      display: flex;
      align-items: flex-start;
      margin-bottom: 25px;
    }
    
    .contact-icon {
      width: 50px;
      height: 50px;
      background: rgba(230, 57, 70, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
      color: var(--primary);
      font-size: 1.2rem;
      flex-shrink: 0;
    }
    
    .contact-form .form-control {
      padding: 12px 15px;
      border-radius: 8px;
      border: 1px solid #ddd;
      margin-bottom: 20px;
      transition: all 0.3s ease;
    }
    
    .contact-form .form-control:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 0.25rem rgba(230, 57, 70, 0.15);
    }
    
    .contact-form textarea {
      min-height: 150px;
    }
    
    /* Sale Page */
    .sale-hero {
      background: linear-gradient(rgba(230, 57, 70, 0.85), rgba(193, 18, 31, 0.9)), url('https://images.unsplash.com/photo-1558981403-c5f9899a28bc?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1920&h=500&q=80');
      background-size: cover;
      background-position: center;
      padding: 120px 0 80px;
      color: white;
      text-align: center;
    }
    
    .sale-countdown {
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(10px);
      padding: 20px;
      border-radius: 12px;
      max-width: 600px;
      margin: 30px auto;
    }
    
    .countdown-box {
      display: inline-block;
      padding: 15px;
      margin: 0 10px;
      min-width: 70px;
    }
    
    .countdown-value {
      font-size: 2rem;
      font-weight: 800;
      margin-bottom: 5px;
    }
    
    .sale-products {
      padding: 80px 0;
    }
    
    /* Footer */
    footer {
      background: var(--dark);
      color: white;
      padding: 4rem 0 2rem;
    }
    
    .footer-logo {
      font-size: 2rem;
      font-weight: 800;
      margin-bottom: 1.5rem;
      display: inline-block;
    }
    
    .footer-logo span {
      color: var(--primary);
    }
    
    .footer-links h5 {
      color: white;
      font-weight: 700;
      margin-bottom: 1.5rem;
      position: relative;
      padding-bottom: 0.5rem;
    }
    
    .footer-links h5::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 3px;
      background: var(--primary);
      border-radius: 10px;
    }
    
    .footer-links ul {
      list-style: none;
      padding: 0;
    }
    
    .footer-links ul li {
      margin-bottom: 0.8rem;
    }
    
    .footer-links ul li a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: all 0.3s ease;
    }
    
    .footer-links ul li a:hover {
      color: white;
      padding-left: 5px;
    }
    
    .social-icons a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: rgba(255,255,255,0.1);
      color: white;
      border-radius: 50%;
      margin-right: 0.8rem;
      transition: all 0.3s ease;
    }
    
    .social-icons a:hover {
      background: var(--primary);
      transform: translateY(-3px);
    }
    
    .copyright {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 1.5rem;
      margin-top: 3rem;
      text-align: center;
      color: rgba(255,255,255,0.6);
    }
    
    
    
     .product-detail {
      background: white;
      border-radius: 15px;
      box-shadow: 0 5px 25px rgba(0,0,0,0.08);
      overflow: hidden;
      margin-top: 30px;
    }
    
    .product-gallery {
      position: relative;
      background: #f8f9fa;
      padding: 30px;
    }
    
    .main-image {
      height: 400px;
      object-fit: contain;
    }
    
    .thumbnails {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }
    
    .thumbnail {
      width: 80px;
      height: 80px;
      object-fit: cover;
      border: 2px solid transparent;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .thumbnail:hover, .thumbnail.active {
      border-color: var(--primary);
    }
    
    .product-info {
      padding: 30px;
    }
    
    .product-title {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--secondary);
      margin-bottom: 15px;
    }
    
    .price {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 20px;
    }
    
    .rating {
      color: var(--accent);
      margin-bottom: 20px;
    }
    
    .description {
      margin-bottom: 30px;
      line-height: 1.8;
    }
    
    .specs {
      margin-bottom: 30px;
    }
    
    .spec-item {
      display: flex;
      padding: 10px 0;
      border-bottom: 1px solid #eee;
    }
    
    .spec-label {
      width: 40%;
      font-weight: 500;
      color: var(--secondary);
    }
    
    .spec-value {
      width: 60%;
    }
    
    .quantity-selector {
      display: flex;
      align-items: center;
      margin-bottom: 25px;
    }
    
    .qty-btn {
      width: 40px;
      height: 40px;
      background: #eee;
      border: none;
      font-size: 1.2rem;
      cursor: pointer;
    }
    
    .qty-input {
      width: 60px;
      height: 40px;
      text-align: center;
      border: 1px solid #ddd;
      margin: 0 10px;
    }
    
    .action-buttons {
      display: flex;
      gap: 15px;
    }
    
    .btn-cart {
      flex: 1;
      background: var(--primary);
      color: white;
      border: none;
      padding: 12px;
      font-weight: 600;
      border-radius: 8px;
      transition: all 0.3s ease;
    }
    
    .btn-cart:hover {
      background: #c1121f;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
    }
    
    .btn-wishlist {
      width: 50px;
      background: var(--secondary);
      color: white;
      border: none;
      border-radius: 8px;
      transition: all 0.3s ease;
    }
    
    .btn-wishlist:hover {
      background: var(--dark);
    }
    
    .features {
      background: white;
      border-radius: 15px;
      box-shadow: 0 5px 25px rgba(0,0,0,0.08);
      padding: 30px;
      margin-top: 30px;
    }
    
    .feature-item {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }
    
    .feature-icon {
      width: 50px;
      height: 50px;
      background: rgba(230, 57, 70, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
      color: var(--primary);
      font-size: 1.2rem;
    }
    
    .reviews {
      background: white;
      border-radius: 15px;
      box-shadow: 0 5px 25px rgba(0,0,0,0.08);
      padding: 30px;
      margin-top: 30px;
    }
    
    .review-item {
      padding: 20px 0;
      border-bottom: 1px solid #eee;
    }
    
    .review-header {
      display: flex;
      justify-content: space-between;
      margin-bottom: 10px;
    }
    
    .related-products {
      margin: 50px 0;
    }
    
    .section-title {
      position: relative;
      margin-bottom: 2rem;
      padding-bottom: 1rem;
      border-bottom: 3px solid var(--primary);
    }
    
    
    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .animate {
      animation: fadeIn 0.8s ease forwards;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
      .carousel-caption {
        left: 5%;
        right: 5%;
        bottom: 5%;
        text-align: center;
      }
      
      .carousel-caption h2 {
        font-size: 1.8rem;
      }
      
      .carousel-caption p {
        font-size: 1rem;
      }
      
      .navbar-nav .nav-link {
        padding: 0.5rem 0 !important;
      }
    }
    
    