    .logo1 {

      height: 100%;
      aspect-ratio: 1/1;
      text-align: center;
      overflow: hidden;
      float: left;
      display: flex;
      justify-content: center;
      margin: 0px;
      padding: 0px;
      border-radius: 50%;
    }
body{
  font-size: 4vmin;
  
}
    .logo {
      width: 100vw;
      height: 20vmin;
      background-color: rgb(34, 66, 208);
      border: solid rgb(207, 24, 207);
      overflow: hidden;
      text-align: center;
    }

    .tit {
      justify-content: center;
      align-items: center;
      color: rgb(251, 250, 250);
      margin: 0px;
      height: 100%;
      padding: 0px;
    }



    .profile {
      float: right;
      aspect-ratio: 1/1;
      height: 100%;
      border-radius: 50%;
      margin: 0%;
      overflow: hidden;
    }

    img {
      height: 100%;
      width: 100%;
      max-height: 500px;
      aspect-ratio: 1/1;
      object-fit: cover;
    }

    .nevbar {
      width: 100vw;
      height: 10vmin;
      background-color: #fcfbfc;
      border-radius: 4vmin;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .nevbar a {
      flex-grow: 1;
      display: flex;
      align-items: center;
    }

    .nevbar button {
      padding: 5px;
      font-size: 5vmin;
      height: 100%;
      border-radius: 3vmin;
      background-color: rgb(172, 169, 243);
      overflow: hidden;
      float: left;
    }




    .product-slider-container {
    width: 100%;
    overflow: hidden;
}

.product-slider {
    display: flex;
    gap: 15px;
    transition: transform 0.4s ease;
    will-change: transform;
}

.product-card {
    min-width: calc(20% - 12px); /* 5 per row */
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}

.product-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
}

/* Mobile */
@media (max-width: 768px) {
    .product-card {
        min-width: calc(50% - 12px); /* 2 per row */
    }
}

    .image-slider {

      height: 300px;
      width: 300px;
      overflow-x: auto;
    }

    .image-slider img {
      height: 100%;
      width: 100%;
      object-fit: cover;
    }

    body {
      background: #f5f5f5;
    }

    /* GRID */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
    }

    @media (max-width: 1200px) {
      .products-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 900px) {
      .products-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 500px) {
      .products-grid {
        grid-template-columns: 1fr;
      }
    }

    /* PRODUCT CARD */
    .product {
width: 20vmax;
      background: #fff;
      padding: 15px;
      overflow: auto;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
      display: inline-block;
      flex-direction: column;
    }

    /* PRODUCT TEXT */
    .product h2 {
      margin-bottom: 10px;
      color: #333;
    }

    .product p {
      margin: 5px 0;
      color: #555;
    }

    /* IMAGE SLIDER */
    .image-slider {
      position: relative;
      height: 230px;
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 10px;
    }

    .slider-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: none;
      cursor: pointer;
    }

    .slider-image.active {
      display: block;
    }

    /* SLIDER ARROWS */
    .nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.6);
      color: #fff;
      border: none;
      padding: 8px 12px;
      cursor: pointer;
      border-radius: 50%;
      font-size: 7vmin;
      z-index: 5;
    }

    .nav.prev {
      left: 8px;
    }

    .nav.next {
      right: 8px;
    }

    .nav:hover {
      background: rgba(0, 0, 0, 0.8);
    }

    /* ADD TO CART BUTTON */
    .add-cart-btn {
      margin-top: auto;
      padding: 10px;
      background: #007bff;
      color: white;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-size: 5vmin;
      transition: 0.3s ease;
    }

    .add-cart-btn:hover {
      background: #0056b3;
    }

    /* LIGHTBOX */
    .lightbox {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.9);
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    .lightbox-content {
      background: #fff;
      padding: 15px;
      border-radius: 10px;
      max-width: 90%;
      max-height: 90%;
      text-align: center;
      position: relative;
    }

    .lightbox img {
      max-width: 100%;
      max-height: 70vh;
      border-radius: 8px;
    }

    .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 8vmin;
      border: none;
      background: none;
      cursor: pointer;
    }

    /* LIGHTBOX NAV ARROWS */
    .lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.6);
      color: white;
      border: none;
      font-size: 8vmin;
      padding: 10px 14px;
      cursor: pointer;
      border-radius: 50%;
      z-index: 10;
    }

    .lightbox-nav.prev {
      left: 10px;
    }

    .lightbox-nav.next {
      right: 10px;
    }

    .lightbox-nav:hover {
      background: rgba(0, 0, 0, 0.8);
    }

    /* PROFILE CONTAINER */
    .profile-container {
      max-width: 700px;
      margin: 50px auto;
      padding: 25px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      font-family: Arial, sans-serif;
    }

    /* PROFILE IMAGE */
    .profile-container img {
      width: 240px;
      height: 240px;
      object-fit: cover;
      border-radius: 50%;
      margin-bottom: 15px;
      border: 3px solid #007bff;
    }

    /* WELCOME TEXT */
    .profile-container h2 {
      font-size: 8vmin;
      color: #333;
      margin-bottom: 20px;
    }

    /* BUTTONS */
    .profile-container button {
      background: #007bff;
      color: white;
      border: none;
      border-radius: 6px;
      padding: 10px 20px;
      margin: 8px 0;
      cursor: pointer;
      font-size: 28px;
      transition: 0.3s ease;
    }

    .profile-container button:hover {
      background: #0056b3;
    }

    /* LINKS */
    .profile-container a {
      text-decoration: none;
      display: block;
    }

    /* CART CONTAINER */
    .cart-container {
      max-width: 900px;
      margin: 40px auto;
      padding: 20px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
      font-family: Arial, sans-serif;
    }

    /* CART HEADER */
    .cart-container h1 {
      text-align: center;
      margin-bottom: 30px;
      color: #333;
    }

    /* CART ITEM */
    .cart-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 10px;
      border-bottom: 1px solid #eee;
      flex-wrap: wrap;
    }

    .item-info {
      flex: 2;
    }

    .item-info h3 {
      font-size: 6vmin;
      color: #333;
      margin-bottom: 5px;
    }

    /* PRICE & TOTAL */
    .price,
    .total {
      flex: 1;
      text-align: center;
      font-weight: bold;
      color: #555;
    }

    /* QUANTITY */
    .qty {
      display: flex;
      align-items: center;
      flex: 1;
      justify-content: center;
      margin: 5px 0;
    }

    .qty input {
      width: 50px;
      text-align: center;
      margin: 0 5px;
      padding: 5px;
      border-radius: 6px;
      border: 1px solid #ccc;
      font-size: 4vmin;
    }

    .qty-btn {
      background: #007bff;
      color: #fff;
      border: none;
      padding: 5px 10px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 6vmin;
      transition: 0.3s;
    }

    .qty-btn:hover {
      background: #0056b3;
    }

    /* REMOVE BUTTON */
    .remove button {
      background: #dc3545;
      color: #fff;
      border: none;
      padding: 6px 12px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 6vmin;
      transition: 0.3s;
    }

    .remove button:hover {
      background: #a71d2a;
    }

    /* SUMMARY SECTION */
    .summary {
      margin-top: 30px;
      text-align: right;
    }

    .summary h2 {
      font-size: 6vmin;
      color: #333;
      margin-bottom: 15px;
    }

    .summary .checkout {
      background: #28a745;
      color: #fff;
      border: none;
      padding: 10px 25px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 5vmin;
      transition: 0.3s;
    }

    .summary .checkout:hover {
      background: #1e7e34;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .cart-item {
        flex-direction: column;
        align-items: flex-start;
      }

      .price,
      .qty,
      .total {
        text-align: left;
        margin-top: 8px;
      }

      .summary {
        text-align: center;
      }
    }

    /* CART CONTAINER */
    .cart-container {
      max-width: 900px;
      margin: 40px auto;
      padding: 25px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
      font-family: Arial, sans-serif;
    }

    /* CART HEADER */
    .cart-container h1 {
      text-align: center;
      margin-bottom: 30px;
      color: #333;
    }

    /* CART ITEM */
    .cart-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 10px;
      border-bottom: 1px solid #eee;
      flex-wrap: wrap;
    }

    .item-info {
      flex: 2;
    }

    .item-info h3 {
      font-size: 6vminpx;
      color: #333;
    }

    /* PRICE & TOTAL */
    .price,
    .total {
      flex: 1;
      text-align: center;
      font-weight: bold;
      color: #555;
    }

    /* QUANTITY DISPLAY */
    .qty {
      flex: 1;
      text-align: center;
      font-size: 5vmin;
      color: #555;
    }

    /* SUMMARY SECTION */
    .summary {
      margin-top: 30px;
      text-align: right;
    }

    .summary h2 {
      font-size: 8vmin;
      color: #333;
      margin-bottom: 15px;
    }

    /* CHECKOUT BUTTON */
    .summary .checkout {
      background: #28a745;
      color: #fff;
      border: none;
      padding: 10px 25px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 6vmin;
      transition: 0.3s;
    }

    .summary .checkout:hover {
      background: #1e7e34;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .cart-item {
        flex-direction: column;
        align-items: flex-start;
      }

      .price,
      .qty,
      .total {
        text-align: left;
        margin-top: 8px;
      }

      .summary {
        text-align: center;
      }
    }

    /* CONTAINER */
    .container {
      max-width: 900px;
      margin: 50px auto;
      background: #fff;
      padding: 25px 30px;
      border-radius: 12px;
      box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
      font-family: Arial, sans-serif;
    }

    /* TABS */
    .tabs {
      display: flex;
      margin-bottom: 25px;
      border-bottom: 2px solid #eee;
    }

    .tab-btn {
      flex: 1;
      padding: 10px 0;
      cursor: pointer;
      background: none;
      border: none;
      font-size: 6vmin;
      color: #555;
      transition: 0.3s;
      border-bottom: 3px solid transparent;
    }

    .tab-btn.active {
      color: #007bff;
      font-weight: bold;
      border-bottom: 3px solid #007bff;
    }

    .tab-btn:hover {
      color: #0056b3;
    }

    /* FORMS */
    .form {
      display: none;
      animation: fadeIn 0.3s ease;
    }

    .form.active {
      display: block;
    }

    .form h2 {
      text-align: center;
      margin-bottom: 20px;
      color: #333;
    }

    .form input,
    .form select {
      width: 100%;
      padding: 10px 12px;
      margin-bottom: 15px;
      border-radius: 6px;
      border: 1px solid #ccc;
      font-size: 5vmin;
      transition: 0.3s;
    }

    .form input:focus,
    .form select:focus {
      border-color: #007bff;
      outline: none;
    }

    /* BUTTONS */
    .form button {
      width: 100%;
      padding: 12px;
      background: #007bff;
      color: white;
      border: none;
      border-radius: 6px;
      font-size: 5vmin;
      cursor: pointer;
      transition: 0.3s;
    }

    .form button:hover {
      background: #0056b3;
    }

    /* LINKS */
    .form p {
      text-align: center;
      margin-top: 10px;
      font-size: 5vmin;
    }

    .form a {
      color: #007bff;
      text-decoration: none;
    }

    .form a:hover {
      text-decoration: underline;
    }

    /* PASSWORD STRENGTH BAR */
    .strength-bar-container {
      width: 100%;
      height: 6vmin;
      background: #eee;
      border-radius: 4px;
      margin-bottom: 5px;
    }

    .strength-bar {
      height: 100%;
      width: 0;
      border-radius: 4px;
      transition: 0.3s;
    }

    /* PASSWORD MESSAGE */
    #strengthMessage,
    #passwordMessage {
      font-size: 13px;
    }

    /* RADIO BUTTONS */
    .form input[type="radio"] {
      margin-right: 5px;
    }

    /* RESPONSIVE */
    @media (max-width: 1000px) {
      .container {
        padding: 20px;
        margin: 30px 15px;
      }
    }

    /* FORM CONTAINER */
    .form-container {
      max-width: 1000px;
      margin: 50px auto;
      background: #fff;
      padding: 25px 30px;
      border-radius: 12px;
      box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
      font-family: Arial, sans-serif;
    }

    /* FORM HEADER */
    .form-container h2 {
      text-align: center;
      margin-bottom: 25px;
      color: #333;
    }

    /* LABELS */
    .form-container label {
      display: block;
      margin-bottom: 5px;
      font-weight: bold;
      color: #555;
    }

    /* INPUTS & TEXTAREA */
    .form-container input[type="text"],
    .form-container input[type="number"],
    .form-container input[type="file"],
    .form-container select,
    .form-container textarea {
      width: 100%;
      padding: 10px 12px;
      margin-bottom: 15px;
      border-radius: 6px;
      border: 1px solid #ccc;
      font-size: 5vmin;
      transition: 0.3s;
    }

    .form-container input:focus,
    .form-container select:focus,
    .form-container textarea:focus {
      border-color: #007bff;
      outline: none;
    }

    /* BUTTON */
    .form-container button {
      width: 100%;
      padding: 12px;
      background: #007bff;
      color: white;
      border: none;
      border-radius: 6px;
      font-size: 6vmin;
      cursor: pointer;
      transition: 0.3s;
    }

    .form-container button:hover {
      background: #0056b3;
    }

    /* IMAGE PREVIEW CONTAINER */
    .image-preview {
      display: flex;
      flex-wrap: wrap;
      margin-bottom: 15px;
    }

    .image-preview img {
      width: 100px;
      height: 100px;
      object-fit: cover;
      margin: 5px;
      border-radius: 6px;
      border: 1px solid #ccc;
    }

    /* RESPONSIVE */
    @media (max-width: 1000px) {
      .form-container {
        margin: 30px 15px;
        padding: 20px;
      }

      .image-preview img {
        width: 70px;
        height: 70px;
      }
    }