.aree-about {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  align-items: center;
  padding: 7rem 3rem;
  background: #353535;
  color: white;
  flex-wrap: wrap;
}

.aree-about-text {
  flex: 1;
  margin-right: 1.5rem;
}

.aree-about-img {
  flex: 1;
  margin-left: 1.5rem;
  max-width: 550px;
}

.aree-about-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  margin-bottom: 2rem;
  color: white;
}

.aree-about p {
  margin-bottom: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .aree-about {
    flex-direction: column;
    padding: 4rem 2rem;
  }

  .aree-about-text,
  .aree-about-img {
    margin: 0;
  }

  .aree-about-img {
    margin-top: 2rem;
  }
}

/* === Blog Section Styling === */
.tp-blog-area {
  padding: 5rem 2rem;
  background: #0b0b0b; /* match product section */
  color: #fff;
  text-align: center;
}

/* Section title */
.tp-blog-area .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: #fff;
  font-weight: 400;
}

/* Blog Card */
.tp-blog-item-2 {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.tp-blog-item-2:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

/* Thumbnail image */
.tp-blog-thumb-2 img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 12px 12px 0 0;
}

/* Black footer for content */
.tp-blog-content-2 {
  background: #000;
  color: #fff;
  padding: 16px;
  text-align: left;
  border-radius: 0 0 12px 12px;
  flex: 1;
}

/* Meta (tags + date) */
.tp-blog-meta-2 {
  font-size: 0.85rem;
  color: #bbb;
  margin-bottom: 8px;
}
.tp-blog-meta-2 a {
  color: #bbb;
  text-decoration: none;
}
.tp-blog-meta-2 a:hover {
  color: #fff;
}

/* Title */
.tp-blog-title-2 {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}
.tp-blog-title-2 a {
  color: #fff;
  text-decoration: none;
}
.tp-blog-title-2 a:hover {
  color: #ddd;
}

/* Read more button (below posts) */
.tp-blog-more-2 .tp-btn {
  display: inline-block;
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.tp-blog-more-2 .tp-btn:hover {
  background: #fff;
  color: #000;
}

/* Responsive */
@media (max-width: 991px) {
  .tp-blog-area {
    padding: 3.5rem 1rem;
  }
  .tp-blog-thumb-2 img { height: 180px; }
  .tp-blog-title-2 { font-size: 0.95rem; }
}
@media (max-width: 480px) {
  .tp-blog-area .row > div {
    margin-bottom: 1.25rem;
  }
  .tp-blog-thumb-2 img { height: 160px; }
  .tp-blog-title-2 { font-size: 0.9rem; }
}
/* Footer base */
.tp-footer-area {
  background: #000; /* black background */
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}

.tp-footer-top .container .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* Left column (logo + socials) */
.tp-footer-top .widget:nth-child(1) {
  flex: 0 0 auto;
  width: 100%;
  max-width: 41.6667%; /* col-xl-5 */
  text-align: left;
}
.tp-footer-top .widget:nth-child(1) img {
  max-width: 180px;
  margin-bottom: 1.2rem;
}
.tp-footer-top .widget:nth-child(1) .social-links {
  display: flex;
  gap: 0.8rem;
}
.tp-footer-top .widget:nth-child(1) .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
}
.tp-footer-top .widget:nth-child(1) .social-links a:hover {
  background: #fff;
  color: #000;
}

/* Middle column (Quick Links) */
.tp-footer-top .widget:nth-child(2) {
  flex: 0 0 auto;
  width: 100%;
  max-width: 25%; /* col-xl-3 */
}
.tp-footer-top .widget:nth-child(2) h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.tp-footer-top .widget:nth-child(2) ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tp-footer-top .widget:nth-child(2) ul li {
  margin-bottom: 0.6rem;
}
.tp-footer-top .widget:nth-child(2) ul li a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s ease;
}
.tp-footer-top .widget:nth-child(2) ul li a:hover {
  color: #fff;
}

/* Right column (Get in touch) */
.tp-footer-top .widget:nth-child(3) {
  flex: 0 0 auto;
  width: 100%;
  max-width: 33.3333%; /* col-xl-4 */
}
.tp-footer-top .widget:nth-child(3) h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.tp-footer-top .widget:nth-child(3) p {
  margin: 0 0 0.5rem 0;
  color: #aaa;
}

/* Footer bottom (copyright, etc.) */
.tp-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.2rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: #aaa;
}

/* Responsive */
@media (max-width: 991px) {
  .tp-footer-top .widget {
    max-width: 50% !important;
    margin-bottom: 2rem;
  }
}
@media (max-width: 600px) {
  .tp-footer-top .widget {
    max-width: 100% !important;
    text-align: center;
  }
  .tp-footer-top .widget:nth-child(1) .social-links {
    justify-content: center;
  }
}


/* === AREEM Product Section (Final Polished Version) === */
#aree-products {
  padding: 5rem 2rem;
  background: #0b0b0b;
  color: #fff;
  text-align: center;
}

/* Section Title */
#aree-products .aree-products-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: var(--aree-white, #fff);
  font-weight: 400;
  letter-spacing: 0.2px;
}

/* Product Grid */
#aree-products .aree-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

/* Single product centering */
#aree-products .aree-grid-single {
  grid-template-columns: 1fr;
  justify-items: center;
}

/* Card wrapper */
#aree-products .aree-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Hover lift */
#aree-products .aree-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

/* Image container */
#aree-products .aree-prod-img-wrap {
  width: 100%;
  background: #fff;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

/* Product image */
#aree-products .aree-prod-img {
  max-width: 230px;
  max-height: 230px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Black footer (title + price + button) */
#aree-products .aree-card-body.aree-card-dark {
  background: #000;
  color: #fff;
  padding: 16px;
  text-align: center;
  border-radius: 0 0 12px 12px;
}

/* Title */
#aree-products .aree-card-dark .aree-prod-title {
  font-weight: 500;
  font-size: 1rem;
  margin: 0;
  margin-bottom: 6px;
  color: #fff;
}

/* Price row */
#aree-products .aree-card-dark .aree-price-row {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 8px;
  margin-top: 6px;
}

#aree-products .aree-card-dark .aree-prod-price {
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
}

#aree-products .aree-card-dark .aree-price-old {
  color: #aaa;
  text-decoration: line-through;
  font-weight: 400;
  font-size: 0.95rem;
}

/* CTA */
#aree-products .aree-prod-cta {
  margin-top: 12px;
}

/* Buy Now button */
#aree-products .aree-card-dark .aree-btn.aree-btn-buy {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

#aree-products .aree-card-dark .aree-btn.aree-btn-buy:hover {
  background: #fff;
  color: #000;
}

/* Responsive */
@media (max-width: 991px) {
  #aree-products {
    padding: 3.5rem 1rem;
  }
  #aree-products .aree-prod-img-wrap { padding: 20px; }
  #aree-products .aree-prod-img { max-width: 190px; max-height: 190px; }
  #aree-products .aree-prod-title { font-size: 0.95rem; }
}

@media (max-width: 480px) {
  #aree-products .aree-grid { gap: 1.25rem; }
  #aree-products .aree-prod-img { max-width: 160px; max-height: 160px; }
  #aree-products .aree-prod-price { font-size: 1rem; }
  #aree-products .aree-btn.aree-btn-buy { padding: 9px 16px; }
}