/* ---------- Hero Section ---------- */
.hero {
position: relative;
z-index: 1;
display: flex;
justify-content: center;
align-items: center;
min-height: 85vh;
padding: 100px 20px;
color: #fff;
overflow: hidden;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: scroll;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to bottom right, rgba(0,0,0,0.7), rgba(26,26,26,0.8));
z-index: 1;
pointer-events: none;
}

.hero-content {
position: relative;
z-index: 2;
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1200px;
width: 100%;
gap: 50px;
flex-wrap: wrap;
}

.hero-text {
flex: 1 1 500px;
}

.hero-text h1 {
font-size: clamp(34px, 5vw, 50px);
margin-bottom: 20px;
line-height: 1.2;
position: relative;
overflow: hidden;
height: 60px;
}

.hero-word {
display: block;
position: absolute;
opacity: 0;
animation: slideWords 9s linear infinite;
}

.hero-word:nth-child(2) { animation-delay: 3s; }
.hero-word:nth-child(3) { animation-delay: 6s; }

@keyframes slideWords {
0% { opacity: 0; transform: translateY(100%); }
10%,30% { opacity: 1; transform: translateY(0); }
40% { opacity: 0; transform: translateY(-100%); }
100% { opacity: 0; transform: translateY(-100%); }
}

.hero-text p {
font-size: clamp(16px, 2vw, 18px);
margin-bottom: 25px;
color: #e0e0e0;
}

.hero-btn {
display: inline-block;
background-color: #ff6347;
color: #fff;
padding: 12px 30px;
border-radius: 6px;
font-weight: bold;
text-decoration: none;
transition: all 0.3s ease;
}

.hero-btn:hover {
background-color: #fff;
color: #1a1a1a;
}

.hero-image {
flex: 1 1 400px;
text-align: center;
}

.hero-image img {
max-width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 8px 20px rgba(0,0,0,0.5);
animation: float 6s ease-in-out infinite;
}

@keyframes float {
0% { transform: translateY(0); }
50% { transform: translateY(-15px); }
100% { transform: translateY(0); }
}

.scroll-down {
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
font-size: 32px;
color: #fff;
animation: bounce 2s infinite;
z-index: 2;
}

.scroll-down a {
color: #fff;
text-decoration: none;
}

@keyframes bounce {
0%,20%,50%,80%,100% { transform: translate(-50%, 0); }
40% { transform: translate(-50%, 10px); }
60% { transform: translate(-50%, 5px); }
}

/* ---------- Our Essence Section ---------- */
.mvv-section {
background: #fafafa;
color: #222;
padding: 80px 10%;
text-align: center;
}

.mvv-section .section-title {
font-size: 2.2rem;
font-weight: 700;
margin-bottom: 40px;
color: #b81e1e;
}

.mvv-row {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 30px;
}

.mvv-card {
background: #fff;
border-radius: 16px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
padding: 30px 20px;
flex: 1 1 300px;
max-width: 350px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mvv-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.mvv-icon {
font-size: 2.5rem;
margin-bottom: 15px;
}

.mvv-card h3 {
color: #b81e1e;
margin-bottom: 15px;
font-size: 1.3rem;
}

.mvv-card p {
color: #333;
font-size: 0.95rem;
line-height: 1.7;
}

/* ---------- Featured Products Slider ---------- */
.featured-products-section {
text-align: center;
padding: 80px 0;
background: #fffdfb;
}

.featured-products-section h2 {
font-family: "Poppins", "Open Sans", sans-serif !important;
font-weight: 700 !important;
font-size: 2.2rem !important;
color: #b81e1e !important;
letter-spacing: 0.5px !important;
text-transform: none !important;
margin-bottom: 40px !important;
}

.swiper {
max-width: 1000px;
margin: 0 auto;
}

.swiper-slide {
background: #fff;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 6px 15px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
}

.swiper-slide:hover {
transform: translateY(-8px);
}

.swiper-slide img {
width: 100%;
height: 250px;
object-fit: cover;
}

.swiper-pagination {
margin-top: 25px;
position: relative !important;
}

.swiper-pagination-bullet {
background: #ff6347;
opacity: 0.6;
width: 12px;
height: 12px;
}

.swiper-pagination-bullet-active {
opacity: 1;
background: #ff3c1a;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
.hero-content {
flex-direction: column-reverse;
text-align: center;
}
}

@media (max-width: 992px) {
.mvv-row {
flex-direction: column;
align-items: center;
}

.mvv-card {
width: 80%;
}
}

/* ---------- FINAL MOBILE COLOR + FONT FIX (UPDATED) ---------- */
@media (max-width: 768px) {
#essence,
.mvv-section,
.essence {
background: #fafafa !important;
}

#essence h2,
.mvv-section h2,
.mvv-section .section-title {
color: #b81e1e !important;
font-family: "Poppins", "Open Sans", sans-serif !important;
font-weight: 600 !important;
letter-spacing: 0.5px !important;
}

#featured-products,
.featured-products-section {
background: #fffdfb !important;
}

#featured-products h2,
.featured-products-section h2,
#featured-products .section-title,
.featured-products-section > h2,
.featured-products-section .swiper-container + h2 {
color: #b81e1e !important;
font-family: "Poppins", "Open Sans", sans-serif !important;
font-weight: 600 !important;
font-size: 1.9rem !important;
letter-spacing: 0.5px !important;
}
}

section {
position: relative;
}
