.zuni-eco-page {
 background: #ffffff;
 color: #111111;
}

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

/* Hero Section */
.eco-hero {
 background: #f4f4f4; /* Clean light background */
 display: flex;
 align-items: center;
 justify-content: center;
 text-align: center;
 padding-top: 100px;
 padding-bottom: 100px;
}

.hero-inner h1 {
 font-size: clamp(2.5rem, 8vw, 5rem);
 font-weight: 900;
 letter-spacing: -2px;
 line-height: 1;
 margin: 20px 0;
}

.tagline {
 text-transform: uppercase;
 letter-spacing: 4px;
 font-weight: 600;
 color: #666666;
}

/* Overlap Story Section */
.eco-story {
 padding: 70px 0;
}

.story-content {
 display: flex;
 align-items: center;
 position: relative;
}

.story-image {
 width: 65%;
 height: 550px;
 overflow: hidden;
}

.story-image img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 border-radius: 12px;
}

.story-card {
 width: 45%;
 background: #1a1a1a;
 color: #ffffff;
 padding: 60px;
 position: absolute;
 right: 0;
 box-shadow: 20px 20px 0px #e2e8e1; /* Decorative shadow */
 border-radius: 12px;
}

.story-card h2 {
 margin-bottom: 20px;
 text-transform: uppercase;
}

.icons-row {
 margin-top: 30px;
 display: flex;
 gap: 20px;
 font-weight: bold;
 color: #a3b899;
 font-size: 16px;
}

.story-card p {
 font-size: 16px;
}

.item-text p {
 font-size: 16px;
}

/* Feature Grid Cards */
.eco-features {
 background: #fbfbfb;
 padding: 70px 0;
}

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

.feature-item {
 background: #ffffff;
 border: 1px solid #eeeeee;
 overflow: hidden;
 transition: 0.3s;
}

.feature-item:hover {
 transform: translateY(-10px);
}

.item-img {
 height: 300px;
 background-size: cover;
 background-position: center;
}

.item-text {
 padding: 30px;
}

.item-text h3 {
 text-transform: uppercase;
 margin-bottom: 10px;
 font-size: 22px;
}

/* Featured Products Styles */
.eco-products {
 padding: 70px 0;
 background: #ffffff;
}

.section-title {
 text-align: center;
 text-transform: uppercase;
 font-size: 2.5rem;
 margin-bottom: 50px;
 letter-spacing: 2px;
}

.product-grid {
 display: flex;
 gap: 40px;
 justify-content: center;
 flex-wrap: wrap;
}

.product-item {
 flex: 1;
 min-width: 350px;
 max-width: 500px;
 border: 1px solid #f0f0f0;
 transition: all 0.4s ease;
 background: #fff;
 text-align: left;
}

.product-item:hover {
 box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.product-img {
 position: relative;
 /* height: 400px; */
 overflow: hidden;
}

.product-img img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition: transform 0.5s ease;
}

.product-item:hover .product-img img {
 transform: scale(1.05);
}

.product-img .badge {
 position: absolute;
 top: 30px;
 left: 20px;
 background: #2d5a27;
 color: white;
 padding: 5px 15px;
 font-size: 12px;
 text-transform: uppercase;
 font-weight: bold;
 border-radius: 20px;
}

.product-info {
 padding: 30px;
}

.product-info h3 {
 font-size: 22px;
 margin-bottom: 15px;
 text-transform: uppercase;
 font-weight: 700;
}

.product-info p {
 color: #666666;
 font-size: 16px;
 line-height: 1.6;
 margin-bottom: 25px;
}

.shop-btn {
 display: inline-block;
 padding: 12px 35px;
 background: #1a1a1a;
 color: #ffffff !important;
 text-decoration: none;
 text-transform: uppercase;
 font-weight: bold;
 font-size: 14px;
 letter-spacing: 1px;
 transition: 0.3s;
 border: 1px solid #000000;
}

.shop-btn:hover {
 background: #2d5a27;
 color: #ffffff;
}

.product-title {
 font-size: 20px;
 font-weight: bold;
 line-height: 6px;
}

.shop-btn:hover {
 background: #fff;
 color: #000 !important;
 border: 1px solid #000000;
 text-decoration: none;
}

.hero-inner p {
 font-size: 16px;
}

@media (max-width: 768px) {
 .product-item {
  min-width: 100%;
 }
 /* .product-img {
  height: 300px;
 } */
}

/* Mobile Fixes */
@media (max-width: 991px) {
 .story-content {
  flex-direction: column;
 }

 .story-image, .story-card {
  width: 100%;
  position: static;
 }

 .story-card {
  padding: 40px 20px;
  box-shadow: none;
 }
}

.rec-icon img:last-child {
 margin-right: 0;
}

.rec-icon img {
 width: 60px;
 margin-right: 20px;
}
