/* ===== SWADVIR — PREMIUM HOME 2026 ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --espresso: #1a0f0a;
    --sienna: #c0703a;
    --sienna-dark: #9a5628;
    --amber: #e8a84c;
    --cream: #faf6f0;
    --cream-dark: #f0e8db;
    --slate: #475569;
    --slate-light: #94a3b8;
    --white: #ffffff;
    --shadow-xs: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.06);
    --shadow-md: 0 12px 32px rgba(0,0,0,0.08);
    --shadow-lg: 0 24px 48px rgba(0,0,0,0.12);
    --shadow-brand: 0 12px 32px rgba(192,112,58,0.2);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 40px;
    --radius-pill: 100px;
}

/* ===== HERO HEADER ===== */
.home-hero-header {
    position: relative;
    width: 100%;
    padding: 32px 20px;
    background: linear-gradient(160deg, var(--cream) 0%, var(--cream-dark) 50%, #e8dfd3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.home-hero-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(192,112,58,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.home-hero-header::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232,168,76,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.brand-block {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand-logo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-md), 0 0 0 4px rgba(192,112,58,0.15);
    object-fit: cover;
    transition: transform 0.4s ease;
}

.brand-logo:hover {
    transform: scale(1.08) rotate(-3deg);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text .brand-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--sienna);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.brand-text .brand-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 2.4rem;
    color: #6B3410 !important;
    letter-spacing: 0.04em;
    margin: 0;
    line-height: 1;
}

/* ===== HERO CAROUSEL ===== */
.home-carousel {
    position: relative;
    width: 100%;
    background: var(--cream);
}

.home-carousel .swiper {
    width: 100%;
    height: 520px;
}

.home-carousel .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.home-carousel .swiper-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,15,10,0.08) 0%, rgba(26,15,10,0.50) 100%);
    z-index: 1;
    pointer-events: none;
}

.home-carousel .slide-bg-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    display: block;
}

.home-carousel .slide-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 24px;
    max-width: 700px;
}

.home-carousel .slide-inner h2 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 3.2rem;
    color: var(--white) !important;
    margin-bottom: 14px;
    text-shadow: 0 6px 30px rgba(0,0,0,0.5);
    line-height: 1.15;
}

.home-carousel .slide-inner p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 300;
    color: rgba(255,255,255,0.88) !important;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
    margin-bottom: 28px;
    line-height: 1.6;
}

.home-carousel .slide-inner .btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: var(--sienna);
    color: var(--white);
    border: none;
    border-radius: var(--radius-pill);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 8px 24px rgba(192,112,58,0.35);
}

.home-carousel .slide-inner .btn-hero:hover {
    background: var(--sienna-dark);
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(192,112,58,0.45);
}

.home-carousel .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
    transition: all 0.3s;
}

.home-carousel .swiper-pagination-bullet-active {
    background: var(--amber);
    transform: scale(1.4);
    box-shadow: 0 0 10px rgba(232,168,76,0.5);
}

.home-carousel .swiper-button-next,
.home-carousel .swiper-button-prev {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}

.home-carousel .swiper-button-next:hover,
.home-carousel .swiper-button-prev:hover {
    color: var(--white);
}

/* ===== FLOATING NAV PILL ===== */
.nav-pill-wrapper {
    position: relative;
    z-index: 20;
    display: flex;
    justify-content: center;
    margin-top: -32px;
    padding: 0 20px;
}

.nav-pill {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: var(--radius-pill);
    padding: 10px 16px;
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(0,0,0,0.03);
    max-width: 960px;
    width: 100%;
}

.nav-pill ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-pill ul li a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 18px;
    color: var(--espresso);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: var(--radius-pill);
    transition: all 0.25s ease;
    white-space: nowrap;
}

.nav-pill ul li a i {
    color: var(--sienna);
    font-size: 0.9rem;
    transition: transform 0.3s;
}

.nav-pill ul li a:hover {
    background: rgba(192,112,58,0.1);
    color: var(--sienna);
    transform: translateY(-1px);
}

.nav-pill ul li a:hover i {
    transform: scale(1.15);
}

/* ===== STORY / FEATURE SECTION ===== */
.story-section {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

.story-section .story-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.story-section .story-img-wrap img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.story-section .story-img-wrap:hover img {
    transform: scale(1.04);
}

.story-section .story-img-wrap .story-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--sienna);
    box-shadow: var(--shadow-sm);
}

.story-section .story-img-wrap .story-badge i {
    margin-right: 6px;
}

.story-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 20px 40px;
}

.story-content .story-eyebrow {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--sienna);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.story-content .story-heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 2.6rem;
    color: var(--espresso);
    line-height: 1.2;
    margin-bottom: 18px;
}

.story-content .story-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    color: var(--slate);
    line-height: 1.85;
    margin-bottom: 28px;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--sienna) 0%, var(--sienna-dark) 100%);
    color: var(--white) !important;
    border: none;
    border-radius: var(--radius-pill);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-brand);
    width: fit-content;
}

.btn-explore:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(192,112,58,0.3);
}

.btn-explore i {
    transition: transform 0.3s;
}

.btn-explore:hover i {
    transform: translateX(4px);
}

/* ===== WHY CHOOSE US ===== */
.choose-section {
    padding: 100px 0;
    background: var(--cream);
    position: relative;
}

.choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--sienna), transparent);
    border-radius: 2px;
}

.home-section-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 2.6rem;
    color: var(--espresso);
    text-align: center;
    margin-bottom: 16px;
}

.home-section-title .accent {
    color: var(--sienna);
    position: relative;
    display: inline-block;
}

.home-section-title .accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(232,168,76,0.25);
    z-index: -1;
    border-radius: 5px;
}

.home-section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    color: var(--slate);
    text-align: center;
    max-width: 560px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.choose-section .video-wrap {
    position: relative;
    width: 100%;
    max-width: 880px;
    margin: 0 auto 60px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}

.choose-section .video-wrap video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: calc(var(--radius-lg) - 5px);
}

/* Feature Point Cards */
.feature-points-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 20px;
}

.fp-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.35s ease;
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}

.fp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--sienna);
    border-radius: 0 0 3px 3px;
    opacity: 0;
    transition: all 0.3s;
}

.fp-card:hover::before {
    opacity: 1;
    width: 100%;
}

.fp-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.fp-card .fp-icon {
    width: 72px;
    height: 72px;
    background: rgba(192,112,58,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.8rem;
    color: var(--sienna);
    transition: all 0.35s ease;
}

.fp-card:hover .fp-icon {
    background: var(--sienna);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(192,112,58,0.3);
}

.fp-card h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--espresso);
    margin-bottom: 8px;
}

.fp-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--slate);
    margin: 0;
    line-height: 1.6;
}

/* ===== PRODUCT LISTING ===== */
.products-section {
    padding: 100px 0;
    background: var(--white);
}

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

.product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.product-card-link:hover {
    color: inherit;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-brand);
    border-color: rgba(192,112,58,0.15);
}

.product-card .card-img {
    height: 240px;
    overflow: hidden;
    padding: 16px;
    background: var(--cream);
    position: relative;
}

.product-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-sm);
    transition: transform 0.5s ease;
}

.product-card:hover .card-img img {
    transform: scale(1.06);
}

.product-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--sienna);
    color: var(--white);
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(192,112,58,0.3);
}

.product-card .card-body {
    padding: 22px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card .card-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--espresso);
    margin-bottom: 8px;
}

.product-card .card-price {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--sienna);
    margin-bottom: 16px;
    margin-top: auto;
}

.product-card .btn-view {
    background: var(--cream);
    color: var(--espresso);
    border: 1px solid rgba(0,0,0,0.06);
    padding: 11px 24px;
    border-radius: var(--radius-pill);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    text-align: center;
}

.product-card:hover .btn-view {
    background: var(--sienna);
    color: var(--white);
    border-color: var(--sienna);
    box-shadow: 0 6px 16px rgba(192,112,58,0.25);
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 42px;
    background: var(--espresso);
    color: var(--white) !important;
    border: none;
    border-radius: var(--radius-pill);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 28px rgba(26,15,10,0.18);
}

.btn-view-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 38px rgba(26,15,10,0.25);
    background: #2a1f18;
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 80px 0;
    background: var(--cream);
}

.stats-card {
    background: linear-gradient(135deg, var(--sienna) 0%, var(--sienna-dark) 50%, #7a4520 100%);
    border-radius: var(--radius-xl);
    padding: 60px 24px;
    color: var(--white);
    box-shadow: 0 24px 48px rgba(192,112,58,0.25);
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.stats-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232,168,76,0.12) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.stat-item {
    text-align: center;
    padding: 16px;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 4px;
    line-height: 1;
    text-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.9;
}

/* ===== REVIEWS CAROUSEL ===== */
.reviews-section {
    padding: 100px 0;
    background: var(--white);
}

.reviews-carousel-wrap {
    position: relative;
    padding: 0 50px;
}

.reviews-carousel-wrap .reviewsSwiper {
    overflow: hidden;
    padding-bottom: 50px;
}

.reviews-carousel-wrap .swiper-slide {
    height: auto;
}

.reviews-carousel-wrap .swiper-button-next,
.reviews-carousel-wrap .swiper-button-prev {
    color: var(--sienna);
    width: 44px;
    height: 44px;
    background: var(--cream);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    top: calc(50% - 25px);
}

.reviews-carousel-wrap .swiper-button-next::after,
.reviews-carousel-wrap .swiper-button-prev::after {
    font-size: 1rem;
    font-weight: 700;
}

.reviews-carousel-wrap .swiper-button-next:hover,
.reviews-carousel-wrap .swiper-button-prev:hover {
    background: var(--sienna);
    color: var(--white);
    box-shadow: var(--shadow-brand);
    transform: scale(1.08);
}

.reviews-carousel-wrap .swiper-button-prev {
    left: 0;
}

.reviews-carousel-wrap .swiper-button-next {
    right: 0;
}

.reviews-carousel-wrap .reviews-pagination {
    bottom: 0 !important;
}

.reviews-carousel-wrap .reviews-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--slate-light);
    opacity: 0.4;
    transition: all 0.3s;
}

.reviews-carousel-wrap .reviews-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--sienna);
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(192,112,58,0.4);
}

.review-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all 0.35s ease;
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(192,112,58,0.12);
    line-height: 1;
    pointer-events: none;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.review-card .stars {
    color: var(--amber);
    margin-bottom: 16px;
    font-size: 1rem;
    letter-spacing: 2px;
}

.review-card .review-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--slate);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
    flex-grow: 1;
}

.review-card .reviewer {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 18px;
}

.review-card .reviewer-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(192,112,58,0.1);
    color: var(--sienna);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.review-card .reviewer-info h5 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--espresso);
    margin: 0 0 2px;
}

.review-card .reviewer-info span {
    font-size: 0.8rem;
    color: var(--slate-light);
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    padding: 100px 0;
    background: var(--cream);
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.04);
}

.newsletter-card {
    max-width: 640px;
    margin: 0 auto;
    background: var(--white);
    padding: 56px 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
}

.newsletter-card h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--espresso);
    margin-bottom: 10px;
}

.newsletter-card p {
    font-family: 'Poppins', sans-serif;
    color: var(--slate);
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 0;
    background: var(--cream);
    padding: 6px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(0,0,0,0.06);
}

.newsletter-form input {
    flex: 1;
    padding: 14px 22px;
    border: none;
    border-radius: var(--radius-pill);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    outline: none;
    background: transparent;
    color: var(--espresso);
    min-width: 0;
}

.newsletter-form input::placeholder {
    color: var(--slate-light);
}

.newsletter-form button {
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--sienna) 0%, var(--sienna-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius-pill);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(192,112,58,0.25);
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(192,112,58,0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .nav-pill-wrapper {
        margin-top: -24px;
    }

    .nav-pill {
        border-radius: var(--radius-md);
    }

    .nav-pill ul {
        gap: 2px;
    }

    .nav-pill ul li a {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .story-content {
        padding: 30px 20px;
    }

    .story-content .story-heading {
        font-size: 2rem;
    }

    .feature-points-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .stats-card {
        border-radius: var(--radius-lg);
        padding: 40px 16px;
    }

    .stat-number {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .home-hero-header {
        padding: 20px 16px;
    }

    .brand-logo {
        width: 56px;
        height: 56px;
    }

    .brand-text .brand-name {
        font-size: 1.8rem;
    }

    .home-carousel .swiper {
        height: 380px;
    }

    .home-carousel .slide-inner h2 {
        font-size: 2rem;
    }

    .home-carousel .slide-inner p {
        font-size: 0.95rem;
    }

    .home-carousel .slide-inner .btn-hero {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    .nav-pill-wrapper {
        display: none;
    }

    .story-section {
        padding: 60px 0;
    }

    .story-section .story-img-wrap img {
        height: 280px;
    }

    .story-content {
        padding: 24px 0;
    }

    .story-content .story-heading {
        font-size: 1.8rem;
    }

    .home-section-title {
        font-size: 2rem;
    }

    .choose-section {
        padding: 60px 0;
    }

    .feature-points-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .fp-card {
        display: flex;
        flex-direction: row;
        text-align: left;
        padding: 20px 24px;
        gap: 16px;
        align-items: center;
    }

    .fp-card .fp-icon {
        margin: 0;
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
        flex-shrink: 0;
    }

    .fp-card .fp-text h4 {
        margin-bottom: 4px;
        font-size: 1rem;
    }

    .fp-card .fp-text p {
        font-size: 0.85rem;
    }

    .products-section {
        padding: 60px 0;
    }

    .product-grid {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .product-card {
        flex-direction: row;
        border-radius: var(--radius-sm);
    }

    .product-card .card-img {
        width: 120px;
        height: 120px;
        padding: 10px;
        flex-shrink: 0;
    }

    .product-card .card-body {
        padding: 12px 14px;
        text-align: left;
    }

    .product-card .card-title {
        font-size: 0.95rem;
    }

    .product-card .card-price {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .product-card .btn-view {
        display: none;
    }

    .stats-section {
        padding: 40px 0;
    }

    .stats-card {
        padding: 36px 12px;
        border-radius: var(--radius-md);
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .reviews-section {
        padding: 60px 0;
    }

    .reviews-carousel-wrap {
        padding: 0 10px;
    }

    .reviews-carousel-wrap .swiper-button-next,
    .reviews-carousel-wrap .swiper-button-prev {
        display: none;
    }

    .review-card {
        padding: 24px 20px;
    }

    .newsletter-section {
        padding: 60px 0;
    }

    .newsletter-card {
        padding: 36px 24px;
        border-radius: var(--radius-lg);
    }

    .newsletter-card h3 {
        font-size: 1.5rem;
    }

    .newsletter-form {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        gap: 12px;
    }

    .newsletter-form input {
        background: var(--cream);
        border: 1px solid rgba(0,0,0,0.06);
        border-radius: var(--radius-pill);
    }

    .newsletter-form button {
        width: 100%;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-points-grid {
        gap: 20px;
    }
}
