/*
* Template Name: UntreeStore
* Template Author: Untree.co
* Author URI: https://untree.co/
* License: https://creativecommons.org/licenses/by/3.0/
*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

body {
  overflow-x: hidden;
  position: relative;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 28px;
  color: #6a6a6a;
  font-size: 14px;
  background-color: #eff2f1;
  direction: ltr; /* Default direction for LTR languages */
}

/* Set direction to RTL for Arabic */
.rtl {
  direction: rtl;
  text-align: right; /* Align text to the right for RTL languages */
}
.ltr {
    direction: ltr;
  /* direction: rtl; */
  text-align: left; /* Align text to the right for RTL languages */
}


a {
  text-decoration: none;
  transition: .3s all ease;
  color: #2f2f2f;

}
a:hover {
  color: #2f2f2f;
  text-decoration: none;
}
a.more {
  font-weight: 600;
}

/* Navbar */
.custom-navbar {
  background: #564f89 !important;
  padding: 20px 0;
}
.custom-navbar .navbar-brand {
  font-size: 32px;
  font-weight: 600;
}
.custom-navbar .navbar-brand > span {
  opacity: .4;
}
.custom-navbar .navbar-toggler {
  border-color: transparent;
}
.custom-navbar .navbar-toggler:active,
.custom-navbar .navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}
.custom-navbar .custom-navbar-nav li a {
  font-weight: 500;
  color: #ffffff !important;
  opacity: .5;
  transition: .3s all ease;
  position: relative;
}
.custom-navbar .custom-navbar-nav li a:hover {
  opacity: 1;
}
.custom-navbar .custom-navbar-nav li.active a {
  opacity: 1;
}

/* Hero Section */
.hero {
  background: #bf756a;
  padding: 4rem 0;
}
.hero .intro-excerpt {
  position: relative;
  z-index: 4;
}
.hero h1 {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
}
.hero p {
    font-size:18px;
    color:#000;
  margin-bottom: 30px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  body {
    font-size: 12px;
    line-height: 24px;
  }

  .custom-navbar {
    padding: 10px 0;
  }
  .custom-navbar .navbar-brand {
    font-size: 24px;
  }
  .custom-navbar .custom-navbar-nav li a {
    font-size: 14px;
  }

  .hero {
    padding: 3rem 1rem;
  }
  .hero h1 {
    font-size: 28px;
  }
  .hero p {
    font-size: 14px;
  }
}

/* Button Styles */
.btn {
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  color: #ffffff;
  background: #2f2f2f;
  border-color: #2f2f2f;
}
.btn:hover {
  color: #ffffff;
  background: #222222;
  border-color: #222222;
}
.btn.btn-primary {
  background: #3b5d50;
  border-color: #3b5d50;
}
.btn.btn-primary:hover {
  background: #314d43;
  border-color: #314d43;
}

/* Section Title */
.section-title {
  color: #2f2f2f;
}

/* Product Section */
.product-section {
  padding: 7rem 0;
}
.product-section .product-item {
  text-align: center;
  text-decoration: none;
  display: block;
  position: relative;
  padding-bottom: 50px;
  cursor: pointer;
}

/* Responsive Product Section */
@media (max-width: 768px) {
  .product-section {
    padding: 3rem 1rem;
  }
  .product-section .product-item {
    padding-bottom: 20px;
  }
}

/* Why Choose Section */
.why-choose-section {
  padding: 7rem 0;
}
.why-choose-section .img-wrap {
  position: relative;
}

/* Responsive Why Choose Section */
@media (max-width: 768px) {
  .why-choose-section {
    padding: 3rem 1rem;
  }
  .why-choose-section .img-wrap img {
    max-width: 100%;
  }
}

/* Footer Section */
.footer-section {
  padding: 80px 0;
  background: #ffffff;
}
.footer-section .subscription-form h3 {
  font-size: 18px;
  font-weight: 500;
  color: #3b5d50;
}

/* Responsive Footer Section */
@media (max-width: 768px) {
  .footer-section {
    padding: 40px 20px;
  }
  .footer-section .subscription-form h3 {
    font-size: 16px;
  }
}

/* Table Styles */
.site-blocks-table {
  overflow: auto;
}
.site-blocks-table .product-thumbnail {
  width: 200px;
}
.site-blocks-table td, .site-blocks-table th {
  text-align: center;
  font-size: 14px;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3); /* Thin layer */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /* Spacing between buttons */
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Show overlay on hover */
.product-card:hover .overlay {
  opacity: 1;
}

/* Button Styling */
.imgchange {
  background-color: #a18fe0;
  color: #333;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.imgchange:hover {
  background-color: #f0f0f0;
}

/* Icon Button Specific Styling */
.cart-btn {
  padding: 10px; /* Smaller padding for icon-only button */
}

.preview-btn {
  padding: 10px 20px;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .imgchange {
    font-size: 12px;
    padding: 8px 12px;
  }
}

/* Responsive Table Adjustments */
@media (max-width: 768px) {
  .site-blocks-table .product-thumbnail {
    width: 120px;
  }
  .site-blocks-table td, .site-blocks-table th {
    font-size: 12px;
    padding: 10px;
}

/* Who We Are Section */
.who-we-are .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.who-we-are .row {
  display: flex;
  flex-direction: row;
  max-width: 1200px;
  width: 100%;
}

/* Column styling */
.image-col, .content-col {
  flex: 1;
  padding: 1rem;
}

/* Image styling */
.responsive-images {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 4px solid #e0e0e0; /* Light gray border */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
}

/* Content column styling */
.content-col h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.content-col p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  body.rtl {
    text-align: right; /* Align text to the right for RTL languages */
    direction: ltr;
  }
  
  
  .who-we-are .row {
    flex-direction: column;
  }

  .content-col, .image-col {
    padding: 0.5rem;
  }

  .content-col h2 {
    font-size: 1.5rem;
  }

  .content-col p {
    font-size: 0.9rem;
  }
}
}
