* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
:root {
  --color-bg: #ffffff;
  --color-text: #111111;
  --color-accent: #0a84ff;
  --color-gray01: #afafaf;
  --color-gray02: #ddd;
  --color-gray03: #6a6a6a;
}

/* Base (mobile-first ~375w) */
body {
  max-width: 375px;
  padding-top: 60px;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
}
.container{
  width: 90%;
  margin: 0 auto;
}
h3 {
  margin: 0;
  font-weight: 700;
  font-size: 9.625px;
  text-transform: uppercase;
  text-align: center;
  padding: 7px;
  width: 100%;
  /* margin-bottom: 15px; */
}
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
}
.site-header {
  background: var(--color-bg);
  width: 100%;
}
.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 15px;
  /* padding: 12px 0px; */
}
.header-center {
  width: 40%;
}
.header-left,
.header-right {
  display: flex;
  align-items: center;
  width: 30%;
}
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  background: transparent;
  border: none;
  padding: 0;
  color: inherit;
}
.icon-btn img {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}
.icon {
  /* placeholder for your actual icons (SVG, font icon, etc.) */
  width: 18px;
  height: 18px;
  display: inline-block;
  /* no background to avoid colored blocks; replace with real SVGs later */
}
.site-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Header logo image centered and sized */
.header-row .site-logo {
  justify-self: center; /* center in the middle grid column */
  width: 140px;
  height: 30.23px;
  max-width: var(--width-140, 140px);
  display: block;
}
.notification {
  position: relative;
}
.notification-header {
  position: absolute;
  top: 4px;
  right: 1px;
  background: #000;
  color: #ffffff;
  border-radius: 50%;
  padding: 6.55px 0 4.45px 0;
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-section {
  margin: 15px;
  padding: 12px 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.all-articales {
  display: flex;
  align-items: center;
}
.all-articales svg,
.first-artical svg,
.second-artical svg {
  margin-right: 16px;
}
.first-artical,
.second-artical {
  display: flex;
  align-items: center;
}

.second-artical span {
  color: var(--color-gray);
}
.input-search {
  position: relative;
}
.input-search svg {
  position: absolute;
  top: 5px;
  left: 8px;
}
.input-search input {
  border: 1px solid var(--color-gray02);
  width: 100%;
  border-radius: 4px;
  padding: 7.5px 10px;
  padding-left: 35px;
}
.content-section {
  margin: 20px;
  /* padding:  20px; */
}
.content {
  border-bottom: 1px solid var(--color-gray02);
}
.content h1 {
  font-size: 45px;
  color: #000;
  margin-bottom: 0;
}
.content span {
  color: var(--color-gray03);
  font-size: 18px;
}
.content p {
  /* width: auto; */
  margin-top: 15px;
  font-size: 16px;
}
.content p.bold-text {
  padding-top: 25px;
  margin-top: 10px;
}
.liked-section {
  display: flex;
  justify-content: space-between;
  padding: 15px;
}
.liked-section span {
  width: 40%;
  text-align: center;
  color: var(--color-gray03);
}
.like,
.dislike {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.like span,
.dislike span {
  color: #000;
}
.slider-section {
  margin-top: 130px;
  margin-bottom: 40px;
  background: #000;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  overflow-x: auto;
}
.slider-section img {
  width: 63%;
}
footer {
  margin: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}
a {
  color: rgba(18, 18, 18, 0.75);
  text-decoration: none;
  display: block;
  padding: 10px;
}
footer .links-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 70px;
}
a.underline {
  text-decoration: underline;
  color: #121212;
}
.email-section {
  margin: 0px 12px;
}
.email-section span {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  margin: 22px 0;
  /* text-align: left; */
}
.email-section div {
  /* margin-left: 15px; */
  position: relative;
  padding: 15px 13px;
  border: 1px solid var(--color-gray03);
  border-radius: 4px;
}
.email-section div input {
  border: 0;
  font-weight: 700;
  /* color: #000; */
  /* padding: 10px; */
}
.email-section svg {
  position: absolute;
  top: 18px;
  right: 10px;
}
.email-section p {
  font-size: 9.5px;
}
.social-media-section {
  display: flex;
  justify-content: space-between;
  padding: 0px 50px;
  /* gap: 10; */
  /* padding: 50px 0010px; */
}
.social-media-section a {
  width: 25%;
  margin: 0 auto;
}
.social-media-section a svg{
  width: 100%;
}
.copyright{
  margin: 15px;
}
.copyright span{
  text-align: left;
  display: block;
  margin-bottom: 12px;
  font-size: 14px;

}
.copyright span.sm{
  font-size: 12px;
}
.payment-section{
  margin: 35px ;
  padding: 10px 22px 0 20px;
  display: flex;
  /* flex-direction: column; */
  justify-content: center;
  flex: 1 0 0;
  align-self: stretch;
  gap: 10px;
  flex-wrap: wrap;
}
.payment-section svg{
  width: 15%;
  /* margin: 0 auto; */
}