
      body,
      html {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
      }

      .navbar-brand img {
        height: 40px;
      }

      .carousel-item {
        height: 60vh;
        background-size: cover;
        background-position: center;
      }

      .carousel-caption {
        bottom: 50%;
        transform: translateY(50%);
        text-align: center;
      }

      .carousel-caption h1 {
        font-size: 4rem;
        font-weight: 900;
        text-transform: uppercase;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
      }

      .carousel-caption p {
        font-size: 1.2rem;
        text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
      }

      .product-grid {
        padding: 60px 20px;
      }

      .product-card {
        background-size: cover;
        background-position: center;
        height: 400px;
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        transition: transform 0.3s;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 20px;
        color: white;
      }

      .product-card:hover {
        transform: scale(1.02);
        cursor: pointer;
      }

      .product-name {
        background: rgba(0, 0, 0, 0.6);
        padding: 5px 10px;
        border-radius: 8px;
        font-weight: bold;
        margin-bottom: 10px;
        text-align: center;
      }

      .product-buttons {
        display: flex;
        gap: 10px;
      }

      .product-btn,
      .cart-btn {
        background: #fff;
        color: #000;
        padding: 8px 14px;
        border-radius: 20px;
        font-weight: 600;
        border: none;
        font-size: 14px;
        transition: 0.3s;
      }

      .cart-btn {
        background: #000;
        color: #fff;
      }

      .cart-btn:hover {
        background: #6e6e6e;
      }

      #cartSidebar {
        position: fixed;
        top: 0;
        right: -350px;
        width: 320px;
        height: 100%;
        background: #fff;
        box-shadow: -3px 0 8px rgba(0, 0, 0, 0.2);
        transition: right 0.4s ease;
        z-index: 1050;
        padding: 25px 20px;
        display: flex;
        flex-direction: column;
      }

      #cartSidebar.open {
        right: 0;
      }

      .cart-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid #eaeaea;
        font-size: 15px;
      }

      .item-controls {
        display: flex;
        gap: 5px;
        align-items: center;
      }

      .item-controls button {
        background: #eee;
        border: none;
        padding: 2px 8px;
        font-size: 14px;
        border-radius: 4px;
        cursor: pointer;
      }

      .cart-footer {
        font-size: 17px;
        font-weight: 600;
        border-top: 1px solid #ddd;
        padding-top: 15px;
      }

      #cartTotal {
        font-size: 18px;
        font-weight: bold;
        color: #111;
      }

      .btn-checkout {
        width: 100%;
        margin-top: 15px;
        padding: 12px;
        background: #0d6efd;
        color: white;
        font-weight: 600;
        border: none;
        border-radius: 30px;
        font-size: 16px;
        transition: 0.3s ease;
      }

      .btn-checkout:hover {
        background: #084298;
      }
      @media screen and (min-width: 480px) {
        
      }