* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #fff;
  color: #333;
}

.top {

  background: #fbb03b;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 10px;
}

.social-icons {
  width: 100vh;
}

/* Offer Bar */
.offer-bar {

  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(0, 50%);
  color: #000;
  text-align: center;
  font-size: 14px;
  /* padding: 8px 0; */
}

.offer-bar a {

  font-weight: 600;
  margin-left: 5px;
  text-decoration: underline;
}

/* Navbar */
.navbar {
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  flex-wrap: wrap;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.social-icons a img {
  width: 20px;
  margin-right: 10px;
}

.nav-links ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #f15a24;
}

.logo img {
  width: 60px;
}

.user-options {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-options a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

.user-options .cart {
  position: relative;
}

.user-options .cart span {
  position: absolute;
  top: -6px;
  right: -10px;
  background: #f15a24;
  color: #fff;
  font-size: 12px;
  border-radius: 50%;
  padding: 2px 5px;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 40px 0;
  gap: 20px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background-color: #dcdcdc; /* light gray line */
}

.divider-text {
  position: relative;
  text-align: center;
}

.divider-text h2 {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  color: #000;
  margin: 0;
  letter-spacing: 0.5px;
}

/* Small underline accent below the text */
.divider-underline {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #000;
  margin: 6px auto 0 auto;
}

/* Responsive design */
@media (max-width: 768px) {
  .section-divider {
    gap: 10px;
    margin: 30px 0;
  }

  .divider-text h2 {
    font-size: 14px;
  }

  .divider-underline {
    width: 18px;
  }
}


/* BLOG SECTION BASE */
.blog-section {
  padding: 80px 8%;
  background-color: #fff;
}

.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  justify-items: center;
}

/* BLOG CARD */
.blog-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* IMAGE STYLING */
.blog-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 220px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.08);
  filter: brightness(0.9);
}

/* CONTENT */
.blog-content {
  padding: 20px 20px 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-meta {
  font-size: 12px;
  color: #555;
  margin-bottom: 10px;
  font-weight: 500;
}

.blog-title {
  font-size: 18px;
  font-weight: 800;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.4;
  text-transform: uppercase;
}

/* BUTTON */
.blog-btn {
  align-self: flex-start;
  text-decoration: none;
  background-color: #fbb03b;
  color: #000;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.blog-btn:hover {
  background-color: #f15a24;
  color: #fff;
}



/* RESPONSIVE */
@media (max-width: 768px) {
  .blog-section {
    padding: 50px 5%;
  }

  .blog-title {
    font-size: 16px;
  }

  .blog-image {
    height: 200px;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 40px 0;
}

.page {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  text-decoration: none;
  color: #000;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  background-color: #fff;
}

.page:hover {
  background-color: #000;
  color: #fff;
}

.page.active {
  background-color: #000;
  color: #fff;
  border-color: #000;
}

/* Right arrow styling */
.page.next {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

/* Optional responsive tweak */
@media (max-width: 600px) {
  .page {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}


/* Footer Section */
.footer {
  background-color: #f5b344;
  color: #000;
  padding: 60px 8%;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h4 {
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #333;
}

.footer-column.about p {
  font-size: 14px;
  line-height: 1.7;
  font-weight: 400;
  color: #111;
}

/* Social Icons */
.social-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-icons img {
  width: 25px;
  height: 25px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
  opacity: 0.8;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-top: 15px;
  font-size: 13px;
  color: #000;
}

.footer-bottom strong {
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-column.about p {
    font-size: 13px;
  }
}
