/* styles.css */

@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Madimi+One&display=swap');

body {
    background: rgb(2,0,36);
    background-image: linear-gradient(to right bottom, #565657, #464647, #373737, #282828, #1a1a1a, #242124, #31282c, #3e2f30, #6c504d, #9c7469, #cd9c84, #fbc79e);    font-family: "Kanit", sans-serif;
  color: white;
  font-weight: 400;
  font-style: normal;
    padding-bottom: 50px;
  }
/* styles.css */

.category-imagee {
  width: 100%;
  margin-bottom: 20px;
  
  
}
.title {
  text-align: center;
  padding-left: 30px;
  padding-bottom: 30px;
  font-weight: 400;
  font-style: normal;
}

  .container {
    padding-top: 20px; /* Add some space at the top */
    min-height: 1000px;
    padding-bottom: 40px;
  }
  .container h1 {
    text-align: center;
    
  }
  
  .category-item,
  .product-item {
    text-align: left; /* Center align text */
    margin-bottom: 10px; /* Add space between items */
    border: 1px solid #1e1d1d; /* White border around products */
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 10px;
    text-shadow: 5px, 5px, #1e1d1d;
    background-color: #333;
    box-shadow: -1px 0px 2px 3px rgba(255,255,255,0.75);
    -webkit-box-shadow: -1px 2px 5px 3px rgba(255,255,255,0.75);
    -moz-box-shadow: -1px 0px 2px 3px rgba(255,255,255,0.75);

  }
  .product-item :hover {
    background-color: rgb(255, 235, 210);
    color: #000000;
    transition: 300ms;
  }

  .category-item :hover {
    background-color: rgb(42, 32, 19);
    color: #ffffff;
    border-radius: 10px;
    transition: 300ms;
  }
  
  .product-item {
    border: 1px solid #1e1d1d; /* White border around products */
    margin-left: 10px;
    margin-right: 10px;
    background-color: #333;
    border-radius: 10px;

  }
  .category-item {
    border: 1px solid #1e1d1d; /* White border around products */
    border-radius: 10px;
    margin-left: 10px;
    margin-right: 10px;
    background-color: #333;
    border-radius: 10px;
    text-align: center;
    padding: 10px;;
    text-shadow: 5px, 5px, #000000;

  }
  
  
  .butoni.full-width {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: beige;
    color: black;
    font-size: large;
    padding: 20px;
    z-index: 4;
  }
  
  .butoni :hover {
    background-color: #fff; /* Transparent background */
    color: #333; /* White text color */
    transition: 400ms;

  }
  
  .category-container {

    position: fixed; /* Stick the category container */
    top: 0; /* Stick to the top */
    left: 0; /* Align to the left */
    width: 100%; /* Take full width */
    background-color: #333; /* Dark background */
    margin-bottom: 50px;
  }
  
  .categories {
    display: flex; /* Use flexbox layout */
    justify-content: center; /* Center align items horizontally */
    padding: 10px; /* Add padding */
  }
  