/* General Reset */
body, h1, h2, p, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Agdasima', Arial, sans-serif;
    background-color: #E5F3F5; /* Light blue background */
    color: #333;
    padding: 20px;
  }

  .flex-container {
    display: flex;;
    gap: 30px;
  }

  .flex-item {
    flex: 1 1 22%;
    background-color: #909fa1;
    padding: 20px;
    text-align: center;
  }

  /* Container */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #E5F3F5;

    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Header */
  header {
    text-align:left;
    margin-bottom: 100px;
    margin-top: 30px;
    font-family: 'Signika', Arial, sans-serif;
    letter-spacing: 3px;
  }
  
  header h1 {
    font-size: 38px;
    font-weight: 250;
    color: #706a6a;
  }
  
  header .filter-section {
    display: block;
    justify-content: left;
    align-items: left;
    gap: 5px;
    margin-top: 60px;
    margin-bottom: 30px;
  }
  
  header .price {
    font-size: 15px;
    font-weight: normal;
    color: #706a6a;
  }
  
  header .dropdown {
    font-size: 11px;
    color: #706a6a;
  }
  
  header .item-count {
    font-size: 12px;
    margin-left: 10px;
    color: #9b9b9b;
    margin-top: 10px;
  }
  
  /* Product Grid */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  
  .product {
    text-align: center;
    padding: 15px;
    background-color: #E5F3F5;
    border-radius: 8px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  }
  
  .product img {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
  }
  
  .product h2 {
    font-size: 20px;
    color: #635d5d;
    margin: 10px 0;
    line-height: 1.4;
  }
  
  .product .price {
    font-size: 20px;
    font-weight: 300;
    color: #272525;
  }
  
  /* Footer */
  footer {
    text-align: left;
    margin-top: 600px;
    padding-top: 10px;
    border-top: 1px solid #d4e2f1;
  }
  
  footer .footer-links {
    display: flex;
    justify-content: left;
    gap: 15px;
    margin-bottom: 10px;
    border-bottom: 1px solid #d4e2f1;
  }
  
  footer .footer-links a {
    font-size: 14px;
    color: #007bff;
    text-decoration: none;
  }

  footer p {
    font-size: 14px;
    color: #555;
    margin: 10px 0;
  }
  
  footer .payment-icons img {
    margin: 5px;
    height: 30px;
  }
  .col-4{
     flex-basis: 25%;
     padding: 10px;
     min-width: 200px;
     margin-bottom:50 px;
  }
  .col-4 img{
    width: 30%;
  }

  .custom-select {
    position: relative;
    font-family: Arial;
  }
  
  .custom-select select {
    display: none; /*hide original SELECT element:*/
  }
  
  .select-selected {
    background-color: transparent;
  }
  
  /*style the arrow inside the select element:*/
  .select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #b4b2b2 transparent transparent transparent;
  }
  
  /*point the arrow upwards when the select box is open (active):*/
  .select-selected.select-arrow-active:after {
    border-color: transparent transparent #000000 transparent;
    top: 7px;
  }
  
  /*style the items (options), including the selected item:*/
  .select-items div,.select-selected {
    color: #635d5d;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;
    font-size: 14px;
  }
  
  /*style items (options):*/
  .select-items {
    position: absolute;
    background-color: rgb(254, 254, 254);
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
  }
  
  /*hide the items when the select box is closed:*/
  .select-hide {
    display: none;
  }
  
  .select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
  }