body {
    font-family: "Arial", sans-serif;
    font-weight: 400;
    line-height: 1.8;
    font-style: normal;
    color: #000000;
    font-size: 1rem;
    padding-top: 75px;
}

a:active {
  background-color: #cce0ff;
}

a {
  outline: none;
  text-decoration: none;
}
a:link { color: #369; }
a:visited { color: purple; }
a.line:hover {
  border-bottom: 2px solid #1679C6;
}

    h1 {
        font-size: 25px;
        line-height: 1.4;
    }

    @media screen and (max-width: 768px) {
        h1 {
            font-size: 20px;
        }
    }

    @media screen and (max-width: 480px) {
        h1 {
            font-size: 18px;
        }
    }


.parent {
  text-align: center;
}
.child {
  display: inline-block;
}

hr.new1 {
  border: 1px dashed #ddd;
}

  .fixed-top-bar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    padding: 10px;
    margin: 0 auto;
    background-image: linear-gradient(#1679C6, #409BDF);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }

  .logo-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    gap: 10px;
  }

 .logo-link {
   display: flex;
   align-items: center;
   gap: 8px;
   text-decoration: none;
  }

 .logo-img {
    height: 66px;
    display: block;
    margin-bottom: 0;
  }

.logo-text {
  font-weight: bold;
  font-size: 18px;
  color: #fff;
}

  .logo-container form {
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
  }

  .logo-container input[type="text"] {
    height: 32px;
    font-size: 16px;
    padding: 4px 8px;
    border: none;
    border-radius: 4px;
    min-width: 280px;
  }

  .logo-container input[type="submit"] {
    height: 32px;
    font-size: 18px;
    border: none;
    background: #fff;
    color: #1679C6;
    border-radius: 4px;
    cursor: pointer;
    padding: 0 12px;
  margin-right: 18px;

  }

  .logo-container input[type="text"],
  .logo-container input[type="submit"] {
  height: 36px;
  font-size: 16px;
  line-height: 1;
  padding: 4px 10px;
  border: none;
  border-radius: 4px;
  box-sizing: border-box;
}


  @media (max-width: 600px) {
    .logo-container {
      flex-direction: column;
      align-items: center;
    }

	.logo-container img {
	  height: 40px;
	  display: block;
	  margin-bottom: 0;
	}

	.logo-container form {
      width: 100%;
      justify-content: center;
    }

    .logo-container input[type="text"] {
      width: 80%;
      font-size: 18px;
    }

    .logo-container input[type="submit"] {
      font-size: 18px;
      padding: 0 16px;
    }
  }

  .parentend {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 16px 24px;
    background-color: #333;
    color: #FFFFFF;
    font-family: Arial, sans-serif;
    font-size: 14px;
  }

  .childend.logo {
    flex-shrink: 0;
  }

  .childend.logo img {
    max-height: 40px;
    height: auto;
    width: auto;
  }

  .childend.text {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
  }

  .childend.text span {
    margin-right: 10px;
    white-space: nowrap;
  }

  .childend.text a {
    color: #FFFFFF;
    text-decoration: none;
    margin: 0 6px;
    white-space: nowrap;
  }

  .childend.text a:hover {
    text-decoration: underline;
  }

  @media (max-width: 768px) {
    .parentend {
      flex-direction: column;
      align-items: flex-start;
    }

    .childend.text {
      flex-direction: column;
      align-items: flex-start;
      gap: 6px;
    }

    .childend.text span {
      margin: 0 0 6px 0;
    }

    .childend.text a {
      margin: 0;
    }
  }

.buy-button {
  display: inline-block;
  width: 200px;
  background-color: #FEE05D;
  color: #000;
  text-align: center;
  padding: 10px 0;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-top: 10px;
}

.buy-button:hover {
  background-color: #fcd34d;
}

.no-stock-btn {
  background-color: #ccc;
  color: #666;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: not-allowed;
  font-weight: bold;
  font-size: 14px;
  opacity: 0.7;
}



  .ad-container {
    position: relative;
    overflow: hidden;
    margin: 10px auto;
    width: 750px;
    height: 350px;
    max-width: 100%;
  }
  .ad-inner {
    width: 100%;
    height: 100%;
    background-color: white;
    transform-origin: top left;
    transition: transform 0.2s ease;
  }