/* Importing Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins: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&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    background-color: #ffffff;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    font-family: "Poppins", sans-serif;
    font-style: normal;
  }
  
  /* Global */
  a {
    text-decoration: none;
    color: inherit;
  }
  
  input, button {
    outline: none;
  }
  
  /* Header */
  header {
    background-image: url("/assets/images/az-banner.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 30px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin:12.5px 12.5px;
    border-radius:20px;
  }
  
  .header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .header-container h1{
    font-size: 32px;
  }
  
  .logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    box-shadow: 0 4px 8px red;
  }
  
  header h1 {
    font-size: 24px;
    margin: 10px 0;
  }
  
  .social-links {
    margin-top: 10px;
  }
  
  .social-links a {
    font-size: 26px;
    color: white;
    margin:0px 5px;
  }

  .icon{
    padding:11px;
    border:1.5px solid #fff;
    border-radius: 30px;
  }

  .icon:hover{
    background-color: #fff;
    color:red;
    border:1.5px solid red;
  }
  
  .social-links a:hover {
    color: red;
    transform: scale(1.1);
  }
  
  /* Search Bar */
  #searchInput {
    width: 90%;
    max-width: 500px;
    padding: 12px 20px;
    margin: 30px auto 20px;
    display: block;
    font-size: 16px;
    border: 1px solid #000;
    border-radius: 5px;
  }
  
  #searchInput:focus {
    border-color: #61dafb;
  }
  
  /* Product Grid */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    padding: 0 20px 40px;
    max-width: 1200px;
    margin: auto;
  }
  
  /* Product Card */
  .product-card {
    background: #fff;
    border-radius: 2.5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  }
  
  .product-card img {
    width: 100%;
    height: 200px;
    object-fit:fill;
  }
  
  .product-card h3 {
    font-size: 18px;
    margin: 10px 0;
    color: #000;
    font-weight: 600;
  }
  
  .product-card button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease;
  }
  
  .product-card button:hover {
    background-color: #0056b3;
  }
  
  /* No Products Message */
  #productContainer p {
    font-size: 18px;
    color: #777;
    text-align: center;
    grid-column: 1 / -1;
  }
  
  .footer {
    position: relative;
    width: 100%;
    background-color: #000;
    color: #fff;
    padding: 15px 30px;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }
  
  .footer .center-text {
    width: 100%;
  }
  
  .footer .branding {
    width: 100%;
  }

  .footer-social-links{
    display:flex;
    text-align: left;
    width:350px;
    gap:10px;
    justify-content: center;
    align-items: center;
  }

  .footer-social-links a{
    font-size: 20px;
  }
  
  /* Desktop styles */
  @media (min-width: 768px) {
    .footer {
      flex-direction: row;
      justify-content: center;
      align-items: center;
      text-align: left;
      font-size: 16px;
    }
  
    .footer .center-text {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      text-align: center;
      width: auto;
    }
  
    .footer .branding {
      margin-left: auto;
      text-align: right;
    }

    .footer-social-links{
        display:flex;
        text-align: left;
        align-items: center;
        width:350px;
        gap:10px;
      }
    
      .footer-social-links a{
        font-size: 20px;
      }
  }
  