/*
Theme Name: Eocute Inspired Theme
Theme URI: https://www.eocute.com
Author: Custom Theme
Author URI: https://yourdomain.com
Description: A fully accurate replica theme for eocute.com, minimal health supplement e-commerce style.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: eocute-inspired
Tags: e-commerce, minimal, clean, responsive, woocommerce, elementor, health, supplement
*/

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #faf8f5;
  color: #333333;
  line-height: 1.6;
}

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

/* Top Promo Bar */
.top-promo-bar {
  background-color: #2d5a3f;
  color: white;
  text-align: center;
  padding: 8px 0;
  font-size: 14px;
}

/* Header & Navigation */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
  position: sticky;
  top: 34px;
  z-index: 999;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 600;
  color: #2d5a3f;
  text-decoration: none;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 35px;
}

.main-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #2d5a3f;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(250,248,245,0.9), rgba(250,248,245,0.9)), url('https://via.placeholder.com/1920x600') center/cover;
  padding: 80px 0;
  text-align: center;
}

.hero-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #2d5a3f;
}

.hero-desc {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #555;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
}

/* Category Navigation */
.category-nav {
  padding: 40px 0;
  text-align: center;
}

.category-nav h3 {
  margin-bottom: 25px;
  color: #2d5a3f;
}

.category-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.category-item {
  background: white;
  padding: 15px 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.category-item:hover {
  transform: translateY(-3px);
  color: #2d5a3f;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* Product Grid & Cards */
.product-section {
  padding: 20px 0 60px;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  color: #2d5a3f;
  font-size: 24px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
}

.discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e74c3c;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.hot-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #f39c12;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.product-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-info {
  padding: 20px;
}

.product-categories {
  font-size: 12px;
  color: #888;
  margin-bottom: 8px;
}

.product-title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.4;
}

.product-price {
  display: flex;
  gap: 10px;
  align-items: center;
}

.current-price {
  color: #2d5a3f;
  font-weight: 600;
  font-size: 18px;
}

.original-price {
  color: #999;
  text-decoration: line-through;
  font-size: 14px;
}

/* Features Section */
.features-section {
  padding: 60px 0;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-item {
  text-align: center;
  padding: 20px;
}

.feature-item h4 {
  margin-bottom: 10px;
  color: #2d5a3f;
}

/* Reviews Section */
.reviews-section {
  padding: 60px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.review-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.review-text {
  margin-bottom: 15px;
  color: #555;
}

.review-author {
  font-weight: 500;
  color: #2d5a3f;
}

/* Newsletter Section */
.newsletter-section {
  padding: 60px 0;
  background: #2d5a3f;
  color: white;
  text-align: center;
}

.newsletter-title {
  margin-bottom: 20px;
  font-size: 24px;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 10px;
}

.newsletter-input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
}

.newsletter-btn {
  padding: 12px 25px;
  background: #faf8f5;
  color: #2d5a3f;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-btn:hover {
  background: white;
}

/* Footer */
.site-footer {
  background-color: #ffffff;
  border-top: 1px solid #eee;
  padding: 50px 0 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 20px;
  color: #2d5a3f;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #2d5a3f;
}

.footer-contact {
  color: #666;
  line-height: 1.8;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #eee;
  color: #888;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .top-promo-bar {
    font-size: 12px;
    padding: 6px 0;
  }
  
  .site-header {
    top: 28px;
    padding: 10px 0;
  }
  
  .main-nav ul {
    gap: 15px;
  }
  
  .main-nav a {
    font-size: 14px;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .hero-features {
    gap: 20px;
  }
  
  .category-list {
    gap: 15px;
  }
  
  .category-item {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }
  
  .newsletter-form {
    flex-direction: column;
    padding: 0 20px;
  }
}
