/* Hide page title on homepage */
body.home .wd-page-title {
    display: none !important;
}

/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/

/* ============================================
   ESOMONDE HOMEPAGE - ZAVU.DEV INSPIRED
   ============================================ */

/* Hero Section */
.esomonde-hero {
  background: linear-gradient(135deg, #0A472E 0%, #13A89E 100%);
  color: #fff;
  padding: 120px 0 100px;
  text-align: center;
}

.esomonde-hero-title {
  font-family: "League Spartan", sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: #fff;
  line-height: 1.2;
}

.esomonde-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.esomonde-hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.esomonde-btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background: #fff;
  color: #0A472E;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid #fff;
}

.esomonde-btn-primary:hover {
  background: transparent;
  color: #fff;
}

.esomonde-btn-secondary {
  display: inline-block;
  padding: 16px 40px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid rgba(255,255,255,0.3);
}

.esomonde-btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* Section Title */
.esomonde-section-title {
  font-family: "League Spartan", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 60px;
  color: #0A472E;
}

/* Categories Section */
.esomonde-categories {
  padding: 100px 0;
  background: #fff;
}

.esomonde-categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.esomonde-category-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.esomonde-category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border-color: #13A89E;
}

.esomonde-category-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.esomonde-category-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #0A472E;
}

.esomonde-category-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

/* Products Section */
.esomonde-products {
  padding: 100px 0;
  background: #f8f8f8;
}

.esomonde-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.esomonde-product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.esomonde-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.esomonde-product-image {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
  background: #f8f8f8;
}

.esomonde-product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.esomonde-product-card:hover .esomonde-product-image img {
  transform: scale(1.05);
}

.esomonde-product-info {
  padding: 24px;
}

.esomonde-product-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}

.esomonde-product-title a {
  color: #0A472E;
  text-decoration: none;
}

.esomonde-product-title a:hover {
  color: #13A89E;
}

.esomonde-product-price {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #13A89E;
  margin-bottom: 16px;
}

.esomonde-product-btn {
  display: inline-block;
  padding: 10px 24px;
  background: #0A472E;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.esomonde-product-btn:hover {
  background: #13A89E;
  color: #fff;
}

.esomonde-products-cta {
  text-align: center;
}

/* About Section */
.esomonde-about {
  padding: 100px 0;
  background: #fff;
}

.esomonde-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.esomonde-about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.esomonde-link {
  display: inline-block;
  color: #13A89E;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.esomonde-link:hover {
  color: #0A472E;
}

.esomonde-about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

/* Values Section */
.esomonde-values {
  padding: 100px 0;
  background: #f8f8f8;
}

.esomonde-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.esomonde-value-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.esomonde-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.esomonde-value-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.esomonde-value-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #0A472E;
}

.esomonde-value-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* Testimonials Section */
.esomonde-testimonials {
  padding: 100px 0;
  background: #fff;
}

.esomonde-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.esomonde-testimonial-card {
  background: #f8f8f8;
  border-radius: 16px;
  padding: 40px;
  transition: all 0.3s ease;
}

.esomonde-testimonial-card:hover {
  background: #fff;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.esomonde-testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 24px;
  font-style: italic;
}

.esomonde-testimonial-author strong {
  display: block;
  font-weight: 600;
  color: #0A472E;
  margin-bottom: 4px;
}

.esomonde-testimonial-author span {
  font-size: 0.9rem;
  color: #999;
}

/* CTA Section */
.esomonde-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, #0A472E 0%, #13A89E 100%);
  color: #fff;
  text-align: center;
}

.esomonde-cta h2 {
  font-family: "League Spartan", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.esomonde-cta p {
  font-size: 1.25rem;
  opacity: 0.95;
  margin-bottom: 40px;
}

.esomonde-cta .esomonde-btn-primary {
  background: #fff;
  color: #0A472E;
  border-color: #fff;
}

.esomonde-cta .esomonde-btn-primary:hover {
  background: transparent;
  color: #fff;
}

/* Container */
.esomonde-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Responsive */
@media (max-width: 1024px) {
  .esomonde-categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .esomonde-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .esomonde-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .esomonde-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .esomonde-about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .esomonde-hero-title {
    font-size: 2.5rem;
  }
  .esomonde-hero {
    padding: 80px 0 60px;
  }
  .esomonde-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .esomonde-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .esomonde-values-grid {
    grid-template-columns: 1fr;
  }
  .esomonde-testimonials-grid {
    grid-template-columns: 1fr;
  }
  .esomonde-section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .esomonde-hero-title {
    font-size: 2rem;
  }
  .esomonde-hero-subtitle {
    font-size: 1rem;
  }
  .esomonde-categories-grid {
    grid-template-columns: 1fr;
  }
  .esomonde-product-grid {
    grid-template-columns: 1fr;
  }

/* Footer Design */
.esomonde-footer {
    background: #0A472E;
    color: #fff;
    padding: 80px 0 40px;
}

.esomonde-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.esomonde-footer-title {
    font-family: "League Spartan", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    color: #fff;
}

.esomonde-footer-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
}

.esomonde-footer-social {
    display: flex;
    gap: 16px;
}

.esomonde-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.esomonde-footer-social a:hover {
    background: #13A89E;
    transform: translateY(-3px);
}

.esomonde-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.esomonde-footer-links li {
    margin-bottom: 12px;
}

.esomonde-footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.esomonde-footer-links a:hover {
    color: #13A89E;
    transform: translateX(5px);
}

.esomonde-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.esomonde-footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.esomonde-footer-contact i {
    color: #13A89E;
    width: 16px;
    text-align: center;
}

.esomonde-copyright {
    background: rgba(0,0,0,0.2);
    padding: 24px 0;
    margin-top: 60px;
}

.esomonde-copyright p {
    margin: 0;
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.esomonde-copyright a {
    color: #13A89E;
    text-decoration: none;
    font-weight: 600;
}

.esomonde-copyright a:hover {
    color: #fff;
}

@media (max-width: 1024px) {
    .esomonde-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .esomonde-footer {
        padding: 60px 0 30px;
    }
    .esomonde-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .esomonde-footer-col:first-child {
        text-align: center;
    }
    .esomonde-footer-social {
        justify-content: center;
    }
}
}