/* ==========================================================================
   DESIGN SYSTEM & RESET - AMRUT INTERNATIONAL
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Young+Serif&family=Great+Vibes&display=swap');

:root {
    --primary-color: #2E524A;
    --primary-dark: #0E4D27;
    --primary-light: #eef3f2;
    --whatsapp-color: #25d366;
    --text-color: #333333;
    --text-muted: #666666;
    --bg-color: #ffffff;
    --bg-tint: #f5f8f7;
    --border-color: #e2e8f0;

    --font-heading: 'Young Serif', serif;
    --font-body: 'Poppins', sans-serif;

    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s ease;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;

    --max-width: 1500px;
    --header-height: 80px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
}

h4 {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
}

p {
    margin-bottom: 1.25rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

/* ==========================================================================
   REUSABLE UTILITIES
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section-tint {
    background-color: var(--bg-tint);
}

.text-center {
    text-align: center;
}

.section-title {
    margin-bottom: 3.5rem;
    position: relative;
}

.section-title h2 {
    margin-bottom: 0.5rem;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: var(--max-width);
    margin: 0 auto;

}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-colo);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-normal);
}

.btn-primary {
    background-color: var(--primary-dark);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--primary-dark);
    color: white;
    border: none;
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
    align-self: flex-start;
}

/* ==========================================================================
   TOP BAR & NAVIGATION HEADER
   ========================================================================== */
.top-bar {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 1.5rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.top-bar-item:hover {
    color: var(--primary-light);
}

.top-bar-right {
    display: flex;
    gap: 1rem;
}

.top-bar-social a {
    color: rgba(255, 255, 255, 0.8);
}

.top-bar-social a:hover {
    color: white;
}

.header {
    background-color: var(--bg-color);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    padding: 22px 0px;
}

.header.sticky {
    padding: 15px 0;
    box-shadow: var(--shadow-md);
}

@media (max-width:425px) {
    .header.sticky {
        padding: 25px 0;
        box-shadow: var(--shadow-md);
    }
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
}

.logo svg {
    height: 45px;
    width: auto;
}

.logo img {
    height: 100px;
    width: auto;
}

@media (max-width:1024px) {
    .logo img {
        height: 80px;
        width: auto;
    }
}

.nav {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-list {
    display: flex;
    gap: 2rem;
    height: 100%;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link {
    position: relative;
    font-weight: 500;
    color: #050b09;
    padding: 0.5rem 0;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link:hover,
.nav-item.active>.nav-link {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-item.active>.nav-link::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: var(--header-height);
    left: 0;
    background-color: white;
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-normal);
    z-index: 100;
    padding: 0.5rem 0;
    border-top: 3px solid var(--primary-color);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 400;
}

.dropdown-item a:hover {
    background-color: var(--primary-light);
    color: var(--primary-color);
    padding-left: 1.75rem;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.header-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-color);
    font-size: 1.15rem;
    position: relative;
}

.header-icon-btn:hover {
    color: var(--primary-colo);
}

.mobile-menu-btn {
    display: none;
}

/* ==========================================================================
   HERO / BANNER CAROUSEL
   ========================================================================== */
.hero-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: var(--primary-dark);
}

.carousel-container {
    position: relative;
    width: 100%;
    display: block;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.carousel-slide a {
    display: block;
    width: 100%;
}

.carousel-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
    transform: translateZ(0);
}

/* Carousel Buttons (prev/next) */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(46, 82, 74, 0.65);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-normal);
    font-size: 1.25rem;
}

.carousel-btn:hover {
    background-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    color: white;
}

.carousel-btn.prev-btn {
    left: 20px;
}

.carousel-btn.next-btn {
    right: 20px;
}

/* Dots Indicators */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-normal);
}

.carousel-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.carousel-dot.active {
    background-color: var(--primary-light);
    transform: scale(1.2);
}

/* Mobile Responsiveness adjust buttons */
@media (max-width: 768px) {
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .carousel-btn.prev-btn {
        left: 10px;
    }

    .carousel-btn.next-btn {
        right: 10px;
    }

    .carousel-dots {
        bottom: 10px;
        gap: 8px;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
    }
}

/* ==========================================================================
   FEATURE CARDS SECTION
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: -4rem;
    position: relative;
    z-index: 10;
    max-width: 1250px;
    width: 100%;
    margin: -4rem auto;
}

.feature-card {
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    transition: var(--transition-normal);
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

.feature-card h3 {
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}




/* ==========================================================================
   ABOUT INTRO REDESIGN (SAGE THEME & COLLAGE)
   ========================================================================== */
.about-intro-section {
    background-color: var(--bg-tint);
    padding: 5.5rem 0;
}

.about-intro-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.about-intro-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--primary-color);
    margin-top: 0.5rem;
    margin-bottom: 2.5rem;
    line-height: 1.25;
}

/* Unique Story Split-Grid */
.about-story-grid {
    /* display: grid;
    grid-template-columns: 1.15fr 0.85fr; */
    gap: 3.5rem;
    text-align: left;
    margin-bottom: 4.5rem;
    align-items: stretch;
}

.about-story-left {
    background: var(--bg-color);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--primary-color);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-story-left::before {
    content: "“";
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 6rem;
    font-family: var(--font-heading);
    color: rgba(46, 82, 74, 0.08);
    line-height: 1;
}

.about-story-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 1rem;
}

.about-story-right-title {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.about-story-right-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.about-story-grid p {
    font-family: var(--font-body);
    font-size: 1.02rem;
    line-height: 1.85;
    color: #4a4a4a;
    margin-bottom: 1.25rem;
}

.about-story-grid p:last-child {
    margin-bottom: 0;
}

/* Asymmetrical Facility Collage (5 Images) */
.facility-collage {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 230px);
    gap: 1.5rem;
    margin-top: 4rem;
}

.collage-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-slow);
}

.collage-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.collage-item:hover img {
    transform: scale(1.08);
}

.collage-item-1 {
    grid-column: span 4;
    grid-row: span 1;
}

.collage-item-2 {
    grid-column: span 4;
    grid-row: span 1;
}

.collage-item-3 {
    grid-column: span 4;
    grid-row: span 2;
}

.collage-item-4 {
    grid-column: span 5;
    grid-row: span 1;
}

.collage-item-5 {
    grid-column: span 3;
    grid-row: span 1;
}

.collage-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(to top, rgba(27, 53, 48, 0.95) 0%, rgba(27, 53, 48, 0.4) 65%, rgba(27, 53, 48, 0) 100%);
    color: white;
    text-align: left;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-normal);
}

.collage-item:hover .collage-overlay {
    opacity: 1;
    transform: translateY(0);
}

.collage-overlay h4 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.15rem;
    line-height: 1.2;
}

.collage-overlay p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

/* Responsiveness for Story and Collage */
@media (max-width: 991px) {
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-story-left {
        padding: 2.5rem;
    }

    .about-story-right {
        padding-left: 0;
    }

    .facility-collage {
        grid-template-rows: repeat(3, 200px);
    }

    .collage-item-1 {
        grid-column: span 6;
        grid-row: span 1;
    }

    .collage-item-2 {
        grid-column: span 6;
        grid-row: span 1;
    }

    .collage-item-3 {
        grid-column: span 6;
        grid-row: span 2;
    }

    .collage-item-4 {
        grid-column: span 6;
        grid-row: span 1;
    }

    .collage-item-5 {
        grid-column: span 6;
        grid-row: span 1;
    }
}

@media (max-width: 576px) {
    .about-story-left {
        padding: 2rem 1.5rem;
    }

    .facility-collage {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.25rem;
    }

    .collage-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        aspect-ratio: 4 / 3;
    }
}

/* ==========================================
   ABOUT BRIEF SECTION
   ========================================== */
.about-brief-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-brief-images {
    position: relative;
}

.about-brief-img-1 {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    width: 85%;
}

.about-brief-img-2 {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 50%;
    border-radius: var(--border-radius-lg);
    border: 8px solid white;
    box-shadow: var(--shadow-lg);
}

.about-brief-content h2 {
    margin-bottom: 1.5rem;
}

.about-brief-list {
    margin: 2rem 0;
}

.about-brief-list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.about-brief-list-item i {
    color: var(--primary-colo);
    font-size: 1.25rem;
    margin-top: 0.2rem;
}

/* ==========================================================================
   PRODUCTS GRID / CARDS (Featured & Trending)
   ========================================================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

.products-grid-1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

@media (max-width:1024px) {
    .products-grid-1 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
}

@media (max-width:768px) {
    .products-grid-1 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
}

@media (max-width:425px) {
    .products-grid-1 {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1.75rem;
    }
}

.product-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(46, 82, 74, 0.07);
    border: 1px solid rgba(46, 82, 74, 0.08);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
}

.product-card:hover {
    box-shadow: 0 16px 40px rgba(46, 82, 74, 0.15);
    transform: translateY(-6px);
    border-color: rgba(46, 82, 74, 0.15);
}

.product-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--primary-dark);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}

.product-image-container {
    position: relative;
    background: linear-gradient(145deg, #f5f9f8 0%, #eef3f1 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 240px;
    overflow: hidden;
}

.product-image {
    max-height: 190px;
    max-width: 90%;
    width: auto;
    object-fit: contain;
    transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scale effect when card has only one image */
.product-card:hover .product-image:only-child {
    transform: scale(1.1);
}

/* Primary / Hover dual image transition styling */
.product-image.primary-image {
    position: relative;
    z-index: 1;
    opacity: 1;
    transform: scale(1);
}

.product-image.hover-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%) scale(0.95);
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    width: auto;
    height: auto;
    max-height: 200px;
    max-width: 90%;
    object-fit: contain;
    transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* .product-card:hover .primary-image {
    opacity: 0;
    transform: scale(1.05);
}

.product-card:hover .hover-image {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
} */

.product-actions-overlay {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(46, 82, 74, 0.92) 0%, rgba(46, 82, 74, 0.7) 100%);
    display: flex;
    justify-content: center;
    padding: 0.85rem;
    transition: bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0.6rem;
    z-index: 5;
}

.product-card:hover .product-actions-overlay {
    bottom: 0;
}

.product-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: none;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition-fast);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.product-action-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.product-info {
    padding: 1.25rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 0.7rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-bottom: 0.4rem;
    opacity: 0.75;
}

.product-title {
    font-size: 0.92rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    min-height: 2.6rem;
    transition: color 0.2s ease;
}

.product-card:hover .product-title {
    color: var(--primary-color);
}

.product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.product-price {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.product-buy-btn {
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 17px;
    width: 100%;
    align-items: center;
    text-align: center;
    justify-content: center;
}

/* ==========================================================================
   COMFORTABLE / SANITARY PAD BENEFITS SECTION
   ========================================================================== */
.comfort-section {
    background-color: var(--primary-dark);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.comfort-section-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    /* opacity: 0.15; */
    background-size: cover;
    background-position: center;
}

@media (max-width:1024px) {
    .comfort-section-bg {
        position: absolute;
        top: 65px;
        right: 0;
        width: 40%;
        height: 60%;
        /* opacity: 0.15; */
        background-size: cover;
        background-position: center;
    }
}

@media (max-width:768px) {
    .comfort-section-bg {
        position: absolute;
        top: 0;
        right: 0;
        width: 25%;
        height: 30%;
        /* opacity: 0.15; */
        background-size: cover;
        background-position: center;
    }
}

@media (max-width:425px) {
    .comfort-section-bg {
        position: absolute;
        top: 75%;
        left: 54%;
        width: 53%;
        height: 25%;
        /* opacity: 0.15; */
        background-size: cover;
        background-position: center;
    }
}


.comfort-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.comfort-content h2,
.comfort-content h3 {
    color: white;
}

.comfort-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.comfort-item {
    display: flex;
    gap: 1rem;
}

.comfort-item-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary-colo);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.comfort-item-text h4 {
    color: white;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.comfort-item-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.comfort-image-container {
    display: flex;
    justify-content: center;
    position: relative;
}

.comfort-img {
    max-width: 320px;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5));
}

/* ==========================================================================
   TESTIMONIALS / REVIEWS SECTION
   ========================================================================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review-card {
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: var(--font-heading);
    font-size: 5rem;
    color: rgba(46, 82, 74, 0.08);
    line-height: 1;
}

.review-stars {
    color: #ffb800;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review-author-name {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
    margin: 0px;
}

.review-author-role {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0px;
}

/* ==========================================================================
   BLOG / NEWS SECTION
   ========================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.blog-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

.blog-date-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background-color: var(--primary-color);
    color: white;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: var(--border-radius-sm);
}

.blog-info {
    padding: 1.5rem;
}

.blog-category {
    font-size: 0.75rem;
    color: var(--primary-colo);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.blog-title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}

.blog-title a:hover {
    color: var(--primary-colo);
}

.blog-excerpt {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-read-more:hover {
    color: var(--primary-colo);
}

/* ==========================================================================
   BREADCRUMB HEADER (Subpages)
   ========================================================================== */
.breadcrumb-hero {
    background-color: var(--primary-dark);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.breadcrumb-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(14 77 39 / 54%);
}

.breadcrumb-hero .container {
    position: relative;
    z-index: 2;
}

.breadcrumb-hero h1 {
    color: white;
    margin-bottom: 0.5rem;
}

.breadcrumb-list {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   PAGE SPECIFIC: FAQS ACCORDION
   ========================================================================== */
.faqs-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.faq-header {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.faq-header:hover {
    background-color: var(--bg-tint);
}

.faq-icon {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: var(--transition-normal);
}

.faq-card.active .faq-header {
    background-color: var(--primary-color);
    color: white;
}

.faq-card.active .faq-icon {
    background-color: var(--primary-colo);
    color: white;
    transform: rotate(45deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-content {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.95rem;
    background-color: var(--bg-tint);
}

/* ==========================================================================
   PAGE SPECIFIC: HISTORY TIMELINE (REDESIGNED)
   ========================================================================== */
.history-section {
    background: linear-gradient(180deg, #f7f9f8 0%, #ffffff 100%);
    padding-bottom: 6rem;
}

.history-timeline {
    position: relative;
    max-width: 1100px;
    margin: 4rem auto 0;
}

/* Vertical spine */
.history-spine {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-light));
    border-radius: 2px;
    z-index: 0;
}

/* Each row */
.history-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 5rem;
    position: relative;
    gap: 2rem;
}

/* LEFT: card on left, dot on right */
.history-left {
    flex-direction: row;
    justify-content: flex-start;
}

.history-left .history-content {
    width: calc(50% - 60px);
    text-align: right;
    margin-left: auto;
    margin-right: 60px;
}

.history-left .history-dot {
    position: absolute;
    right: calc(50% - 32px);
}

/* RIGHT: dot on left, card on right */
.history-right {
    flex-direction: row;
    justify-content: flex-end;
}

.history-right .history-content {
    width: calc(50% - 60px);
    text-align: left;
    margin-right: auto;
    margin-left: 60px;
}

.history-right .history-dot {
    position: absolute;
    left: calc(50% - 32px);
}

/* Year dot */
.history-dot {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 0 6px rgba(46, 82, 74, 0.15), 0 4px 15px rgba(46, 82, 74, 0.3);
    flex-shrink: 0;
}

.history-dot span {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 800;
    color: white;
    letter-spacing: 0.5px;
}

/* Content card */
.history-content {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 30px rgba(46, 82, 74, 0.07);
    border: 1px solid rgba(46, 82, 74, 0.08);
    padding: 2.5rem 2rem;
    transition: var(--transition-normal);
    position: relative;
}

.history-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(46, 82, 74, 0.12);
}

/* Icon circle */
.history-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 12px rgba(46, 82, 74, 0.25);
}

.history-left .history-content .history-icon-wrap {
    margin-left: auto;
}

/* Year tag above heading */
.history-year-tag {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--bg-tint);
    line-height: 1;
    margin-bottom: 0.5rem;
    -webkit-text-stroke: 2px rgba(46, 82, 74, 0.15);
}

.history-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.history-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Tags */
.history-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.history-left .history-content .history-tags {
    justify-content: flex-end;
}

.history-tags span {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    background-color: var(--bg-tint);
    color: var(--primary-color);
    border: 1px solid rgba(46, 82, 74, 0.12);
}

/* Responsive */
@media (max-width: 900px) {
    .history-spine {
        left: 28px;
    }

    .history-item,
    .history-left,
    .history-right {
        flex-direction: column;
        padding-left: 70px;
        align-items: flex-start;
    }

    .history-left .history-content,
    .history-right .history-content {
        width: 100%;
        text-align: left;
        margin: 0;
    }

    .history-left .history-dot,
    .history-right .history-dot {
        position: absolute;
        left: 0;
        right: auto;
        top: 0;
    }

    .history-left .history-content .history-icon-wrap,
    .history-left .history-content .history-tags {
        margin-left: 0;
        justify-content: flex-start;
    }
}



/* ==========================================================================
   PAGE SPECIFIC: CERTIFICATES GRID
   ========================================================================== */
.certificates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.certificate-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.certificate-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.certificate-icon {
    background-color: var(--primary-light);
    color: var(--primary-color);
    /* padding: 3rem 2rem; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    border-bottom: 1px solid var(--border-color);
}

.certificate-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.certificate-info h3 {
    margin-bottom: 1rem;
    font-size: 17px;
    text-transform: capitalize;
}

/* ==========================================================================
   PAGE SPECIFIC: OUR TEAM
   ========================================================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition-normal);
}

.team-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.team-image-wrapper {
    position: relative;
    height: 360px;
    background-color: var(--primary-light);
    overflow: hidden;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.team-card:hover .team-image {
    transform: scale(1.05);
}

.team-socials {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background-color: rgba(46, 82, 74, 0.9);
    padding: 0.75rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    transition: var(--transition-normal);
}

.team-card:hover .team-socials {
    bottom: 0;
}

.team-social-link {
    color: white;
    font-size: 1rem;
}

.team-social-link:hover {
    color: var(--primary-colo);
}

.team-info {
    padding: 1.5rem;
}

.team-name {
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.team-role {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   PAGE SPECIFIC: CONTACT US
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    gap: 1.25rem;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-info-text h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.contact-info-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.contact-form-panel {
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    background-color: var(--bg-tint);
    transition: var(--transition-fast);
    outline: none;
}

.form-control:focus {
    border-color: var(--primary-color);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(46, 82, 74, 0.15);
}

.map-container {
    height: 400px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    margin-top: 4rem;
}

/* ==========================================================================
   PAGE SPECIFIC: SHOP / PRODUCTS BROWSE
   ========================================================================== */
.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 25px;
}

.shop-sidebar {
    background-color: white;
    /* padding: 2rem; */
    border-radius: var(--border-radius-lg);
    /* border: 1px solid var(--border-color); */
    /* box-shadow: var(--shadow-sm); */
    align-self: start;
}

.sidebar-widget {
    margin-bottom: 2.5rem;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.widget-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
    color: var(--primary-color);
}

.category-list-item {
    /* margin-bottom: 0.5rem; */
}

.category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.category-link:hover,
.category-list-item.active .category-link {
    color: var(--primary-colo);
    padding-left: 0.25rem;
}

.category-count {
    font-size: 0.8rem;
    background-color: var(--bg-tint);
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    color: var(--text-muted);
}

.shop-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.search-box {
    position: relative;
    width: 300px;
}

.search-input {
    width: 100%;
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    outline: none;
    font-size: 0.9rem;
}

.search-input:focus {
    border-color: var(--primary-color);
}

.search-icon-btn {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
}

/* Product Detail Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background-color: white;
    width: 100%;
    max-width: 850px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    transform: scale(0.9);
    transition: var(--transition-normal);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--bg-tint);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: var(--transition-fast);
}

.modal-close-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.modal-content-inner {
    padding: 3rem;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

.modal-product-gallery {
    background-color: var(--bg-tint);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 350px;
}

.modal-product-img {
    max-height: 280px;
    width: auto;
    object-fit: contain;
}

.modal-product-info {
    display: flex;
    flex-direction: column;
}

.modal-product-category {
    font-size: 0.8rem;
    color: var(--primary-colo);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.modal-product-title {
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.modal-product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.modal-product-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.modal-product-meta {
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
    position: relative;
    background: radial-gradient(circle at 50% 0%, #1e3d36 0%, #0d1e1a 70%, #050b09 100%);
    color: rgba(255, 255, 255, 0.7);
    padding: 8rem 0 2.5rem;
    font-size: 0.9rem;
    overflow: hidden;
}

/* Decorative leaf icon at the top center of the footer border */
/* .footer::before {
    content: '\f4d8';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    z-index: 10;
    transition: var(--transition-normal);
} */

.footer:hover::before {
    transform: translateX(-50%) rotate(360deg);
}

.footer h3 {
    color: white;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--primary-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 0.8fr 0.8fr 1.4fr 1.2fr;
    gap: 3.5rem;
    margin-bottom: 4.5rem;
    position: relative;
    z-index: 2;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-links-list li {
    margin-bottom: 0.75rem;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    padding-left: 20px;
    /* Always indented */
    transition: var(--transition-normal);
    display: inline-block;
}

.footer-links-list a::before {
    content: '\f06c';
    /* FontAwesome leaf icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scale(1) rotate(15deg);
    /* Always visible */
    opacity: 0.7;
    color: #a4c2bb;
    transition: var(--transition-normal);
}

.footer-links-list a:hover {
    color: white;
    padding-left: 24px;
    /* Slight extra shift on hover */
}

.footer-links-list a:hover::before {
    opacity: 1;
    transform: translateY(-50%) scale(1.15) rotate(30deg);
    color: #c8dfda;
}

/* Middle Column Styles */
.footer-middle {
    align-items: center;
    text-align: center;
}

.footer-logo {
    margin-bottom: 1.25rem;
}

.footer-logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.footer-desc {
    font-size: 0.85rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.75rem;
    max-width: 380px;
}

.footer-certifications {
    background-color: rgba(255, 255, 255, 0.96);
    padding: 10px 20px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition-normal);
}

.footer-certifications:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background-color: #ffffff;
}

.footer-certifications img {
    max-height: 36px;
    width: auto;
    object-fit: contain;
}

/* Subscribe & Social Column */
.subscribe-text {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.75);
}

.subscribe-form {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 4px 4px 4px 18px;
    display: flex;
    align-items: center;
    transition: var(--transition-normal);
    max-width: 320px;
    margin-bottom: 2rem;
}

.subscribe-form:focus-within {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 15px rgba(46, 82, 74, 0.4);
}

.subscribe-form input {
    background: transparent;
    border: none;
    outline: none;
    color: white;
    width: 100%;
    font-size: 0.9rem;
    padding-right: 10px;
}

.subscribe-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.subscribe-btn {
    background: var(--primary-color);
    border: none;
    outline: none;
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    flex-shrink: 0;
}

.subscribe-btn:hover {
    background: white;
    color: var(--primary-color);
    transform: scale(1.05);
}

.footer-socials {
    display: flex;
    gap: 0.85rem;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    transition: var(--transition-normal);
}

.footer-social-icon:hover {
    background-color: white;
    border-color: white;
    color: var(--primary-color);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    margin: 0;
}

.shopno-link {
    font-weight: 600;
    color: white;
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
}

.shopno-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--primary-light);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.shopno-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Dynamic Wave Header & Particles styling */
.footer-wave-wrapper {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
    line-height: 0;
    pointer-events: none;
    z-index: 1;
    transform: translateY(-100%);
}

.footer-wave {
    position: relative;
    display: block;
    width: calc(100% + 100px);
    height: 100%;
    margin-left: -50px;
}

@keyframes waveBgAnim {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-40px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes waveFgAnim {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(30px);
    }

    100% {
        transform: translateX(0);
    }
}

.footer-wave-wrapper .wave-bg {
    animation: waveBgAnim 15s ease-in-out infinite;
}

.footer-wave-wrapper .wave-fg {
    animation: waveFgAnim 10s ease-in-out infinite;
}

.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    color: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

@keyframes floatParticle1 {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.03;
    }

    50% {
        transform: translateY(-40px) rotate(45deg);
        opacity: 0.08;
    }

    100% {
        transform: translateY(-80px) rotate(90deg);
        opacity: 0;
    }
}

@keyframes floatParticle2 {
    0% {
        transform: translateY(0) scale(0.8) rotate(0deg);
        opacity: 0.03;
    }

    50% {
        transform: translateY(-60px) scale(1.1) rotate(-60deg);
        opacity: 0.09;
    }

    100% {
        transform: translateY(-120px) scale(0.8) rotate(-120deg);
        opacity: 0;
    }
}

.particle-1 {
    left: 10%;
    bottom: 10%;
    font-size: 1.5rem;
    animation: floatParticle1 12s infinite ease-in-out;
}

.particle-2 {
    left: 30%;
    bottom: 25%;
    font-size: 1rem;
    animation: floatParticle2 16s infinite ease-in-out 2s;
}

.particle-3 {
    left: 55%;
    bottom: 15%;
    font-size: 1.2rem;
    animation: floatParticle1 14s infinite ease-in-out 1s;
}

.particle-4 {
    left: 75%;
    bottom: 30%;
    font-size: 1.6rem;
    animation: floatParticle2 18s infinite ease-in-out 3s;
}

.particle-5 {
    left: 85%;
    bottom: 5%;
    font-size: 0.8rem;
    animation: floatParticle1 10s infinite ease-in-out 4s;
}

.particle-6 {
    left: 20%;
    bottom: 40%;
    font-size: 1.4rem;
    animation: floatParticle2 15s infinite ease-in-out 5s;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-middle {
        grid-column: span 2;
        order: -1;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 575px) {
    .footer {
        padding: 6rem 0 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-middle {
        grid-column: span 1;
    }

    .footer h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-list a {
        padding-left: 20px;
        /* Keep leaf indentation on mobile too */
    }

    .footer-links-list a:hover {
        padding-left: 24px;
    }

    .footer-socials {
        justify-content: center;
    }

    .subscribe-form {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ==========================================================================
   FLOATING WHATSAPP CHAT WIDGET
   ========================================================================== */
.whatsapp-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    font-family: var(--font-body);
}

.whatsapp-trigger-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--whatsapp-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: var(--transition-normal);
    border: none;
    outline: none;
}

.whatsapp-trigger-btn:hover {
    transform: scale(1.08) rotate(8deg);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

.whatsapp-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition-normal);
    border: 1px solid var(--border-color);
}

.whatsapp-widget.active .whatsapp-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-box-header {
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.whatsapp-box-header i {
    font-size: 2.2rem;
    color: var(--whatsapp-color);
}

.whatsapp-box-header h3 {
    color: white;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 0.15rem;
}

.whatsapp-box-header p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.whatsapp-box-body {
    padding: 1.25rem;
    background-color: var(--bg-tint);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.whatsapp-agent-card {
    background-color: white;
    padding: 1rem;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-fast);
    border: 1px solid var(--border-color);
}

.whatsapp-agent-card:hover {
    border-color: var(--whatsapp-color);
    transform: translateX(3px);
}

.whatsapp-agent-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.whatsapp-agent-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.whatsapp-agent-details h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.15rem;
}

.whatsapp-agent-details p {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.whatsapp-agent-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(37, 211, 102, 0.15);
    color: var(--whatsapp-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}



/* ==========================================================================
   EXPERIENCE SECTION & SLIDER
   ========================================================================== */
.experience-section {
    /* padding: 6rem 0; */
    background-color: var(--bg-color);
    overflow: hidden;
}

.experience-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 35px;
}

.experience-content {
    max-width: 480px;
}

.experience-badge {
    color: #e07a5f;
    /* Orange tone matching mockup badge */
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 1rem;
}

.experience-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    line-height: 1.25;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    width: 470px;
}

.experience-title span {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    color: var(--primary-color);
}

.experience-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Slider Wrapper and Container */
.experience-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.experience-slider-container {
    overflow: hidden;
    width: 67%;
}

.experience-slider {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Cards style */
.experience-card {
    flex: 0 0 calc((100% - 4rem) / 3);
    /* 3 cards visible on desktop */
    min-width: 250px;
    /* height: 308px; */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 4rem;
    text-align: center;
    transition: var(--transition-normal);
}

/* Rounded beige shape behind the image */
.card-bg-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    /* Covers bottom 70% of card */
    background-color: #ede2d3;
    /* Soft beige shape */
    border-radius: 120px 120px 20px 20px;
    /* Arched top, flat/slightly rounded bottom */
    z-index: 1;
    transition: var(--transition-normal);
}

.experience-card:hover .card-bg-shape {
    background-color: #e5d7c4;
    transform: scale(1.02);
}

.experience-card .card-img {
    height: 100%;
    width: 250px;

    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.15));
}

.experience-card:hover .card-img {
    transform: translateY(-8px) scale(1.05);
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.2));
}

.experience-card .card-title {
    position: relative;
    z-index: 2;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: #2E524A;
    margin-bottom: 1.5rem;
}

/* Controls */
.slider-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #ede2d3;
    border: none;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.slider-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.slider-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ==========================================================================
   SHOWCASE SECTION (GREEN CONTAINER)
   ========================================================================== */
.showcase-section {
    padding: 2rem 0 6rem;
    background-color: var(--bg-color);
}

.showcase-card-container {
    background-color: #204037;
    /* Forest green shade matching mockup */
    border-radius: 16px;
    padding: 3.5rem 3.5rem;
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.showcase-col {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.showcase-col-center {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100%;
}

.showcase-product-img {
    max-height: 480px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.4));
    transition: var(--transition-slow);
    z-index: 2;
}

.showcase-card-container:hover .showcase-product-img {
    transform: scale(1.03) translateY(-5px);
}

/* Feature Item layout */
.showcase-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    color: white;
    position: relative;
    padding-bottom: 2.5rem;
}

/* Divider lines */
.showcase-item:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    width: 100%;
}

.showcase-col-left .showcase-item::after {
    left: 0;
}

.showcase-col-right .showcase-item::after {
    right: 0;
}

.showcase-info h4 {
    color: white;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.showcase-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* White circle icon */
.showcase-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: white;
    color: #204037;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: var(--transition-normal);
}

.showcase-item:hover .showcase-icon {
    transform: scale(1.1);
    background-color: var(--primary-light);
    color: var(--primary-color);
}

/* Alignments */
.showcase-col-left {
    text-align: left;
}

.showcase-col-right {
    text-align: right;
}

.showcase-col-right .showcase-item {
    justify-content: flex-end;
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */

/* Laptop/Desktop (Medium screens) */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .experience-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .experience-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .experience-card {
        flex: 0 0 calc((100% - 2rem) / 2);
    }

    .showcase-card-container {
        grid-template-columns: 1fr 1fr;
        padding: 3.5rem 2.5rem;
        gap: 3rem;
    }

    .showcase-col-center {
        grid-column: 1 / -1;
        order: -1;
        margin-bottom: 1rem;
    }

    .showcase-product-img {
        max-height: 380px;
    }
}

/* Tablet / Mobile (Medium & Small screens) */
@media (max-width: 991px) {
    :root {
        --header-height: 70px;
    }

    .section {
        padding: 4rem 0;
    }

    .top-bar {
        display: none;
        /* Hide top bar on mobile/tablet to save space */
    }

    /* Navigation drawer for mobile */
    .nav {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 280px;
        /* height: calc(100vh - var(--header-height)); */
        background-color: white;
        box-shadow: var(--shadow-lg);
        transition: var(--transition-normal);
        z-index: 999;
        display: block;
        padding: 2rem 1.5rem;
        overflow-y: auto;
    }

    .nav.active {
        left: 0;
        top: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
        height: auto;
    }

    .nav-item {
        display: block;
        height: auto;
    }

    .nav-link {
        padding: 0.5rem 0;
        font-size: 1.05rem;
        justify-content: space-between;
    }

    .nav-link::after {
        display: none;
        /* Disable underline effect on mobile menu */
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 1.25rem;
        border-top: none;
        display: none;
        /* Controlled by JS accordion */
        background-color: var(--bg-tint);
        margin-top: 0.5rem;
        border-radius: var(--border-radius-sm);
    }

    .nav-item.open .dropdown-menu {
        display: block;
    }

    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        font-size: 31px;
        color: var(--primary-color);
        cursor: pointer;
    }

    .header .hero-actions {
        display: none !important;
    }

    /* Hero */
    .hero {
        padding: 4rem 0;
        min-height: auto;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image-wrapper {
        order: -1;
        /* Move image to top on mobile */
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        margin-top: 2rem;
        gap: 1.5rem;
    }

    /* Experience Slider Tablet */
    .experience-card {
        /* flex: 0 0 100%; */
        flex: 0 0 calc((100% - 2rem) / 2);
    }

    .slider-btn {
        width: 32px;
        height: 32px;
    }

    /* Showcase Section Tablet */
    .showcase-card-container {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
        gap: 2.5rem;
    }

    .showcase-col {
        gap: 2rem;
    }

    .showcase-col-right {
        text-align: left;
    }

    .showcase-col-right .showcase-item {
        /* justify-content: flex-start; */
        flex-direction: row-reverse;
        /* Put icon on the left on mobile for consistency */
    }

    .showcase-item {
        padding-bottom: 2rem;
        gap: 1.25rem;
    }

    /* About Brief */
    .about-brief-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-brief-images {
        margin-bottom: 2rem;
    }

    /* Products Grid */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Comfort section */
    .comfort-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .comfort-image-container {
        order: -1;
    }

    /* Reviews & Blog */
    .reviews-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Shop layout */
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        display: none;
        /* Hide sidebar filter on mobile, or toggle later */
    }

    .shop-toolbar {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .search-box {
        width: 100%;
    }

    /* Timeline */
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
        text-align: left;
    }

    .timeline-item::after {
        left: 21px;
        right: auto;
    }

    .left-item {
        text-align: left;
    }

    /* Certificates */
    .certificates-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Team */
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Modal */
    .modal-content-inner {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 1.5rem;
    }

    .modal-product-gallery {
        height: 250px;
    }
}

/* Mobile (Extra small screens) */
@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .comfort-list {
        grid-template-columns: 1fr;
    }

    /* Experience & Showcase Mobile */
    .experience-section {
        padding: 4rem 0;
    }

    .experience-card .card-img {
        height: 140px;
    }

    .showcase-section {
        padding: 1rem 0 4rem;
    }

    .showcase-card-container {
        padding: 2.5rem 1.25rem;
    }

    .showcase-product-img {
        max-height: 280px;
    }

    .certificates-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .whatsapp-widget {
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

/* ==========================================================================
   WHY CHOOSE US / VALUE PROPOSITION REDESIGN
   ========================================================================== */
.about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.pillar-card {
    background-color: var(--bg-color);
    padding: 2.5rem 1.75rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    text-align: left;
    border-top: 4px solid var(--primary-color);
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pillar-icon-wrapper {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    display: inline-block;
}

.pillar-card h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.pillar-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Divider leaf icon */
.section-leaf-divider {
    text-align: center;
    margin: 5rem 0;
    position: relative;
}

.section-leaf-divider::before,
.section-leaf-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background-color: var(--border-color);
}

.section-leaf-divider::before {
    left: 0;
}

.section-leaf-divider::after {
    right: 0;
}

.section-leaf-divider i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background-color: var(--bg-color);
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

/* Why Choose Us Split Layout */
.why-choose-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.why-choose-content {
    text-align: left;
}

.why-choose-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.25rem;
    font-family: var(--font-heading);
    color: var(--primary-color);
}

.why-choose-intro {
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.why-choose-subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.why-choose-attributes-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 1.5rem;
    list-style: none;
    padding: 0;
}

.why-choose-attribute-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
}

.why-choose-attribute-item i {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-top: 0.1rem;
}

.why-choose-visual {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-choose-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-slow);
}

.why-choose-visual:hover img {
    transform: scale(1.05);
}

/* Responsive styles */
@media (max-width: 991px) {
    .about-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .about-pillars-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-attributes-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ==========================================================================
   ABOUT INFRASTRUCTURE & STATS SECTION
   ========================================================================== */
.about-infra-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    text-align: left;
}

.about-infra-image {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-normal);
}

.about-infra-image img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-normal);
}

.about-infra-image img:hover {
    transform: scale(1.03);
}

.about-infra-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-infra-content .badge {
    align-self: flex-start;
}

.about-infra-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-infra-content p {
    font-family: var(--font-body);
    font-size: 1.02rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

/* Stat row layout */
.about-stats-container {
    background-color: var(--bg-tint);
    padding: 3.5rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.about-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--primary-color);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.about-stat-label {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Media Queries for Infrastructure & Stats */
@media (max-width: 991px) {
    .about-infra-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ==========================================================================
   ABOUT TESTIMONIAL SPOTLIGHT SECTION
   ========================================================================== */
.about-testimonial-section {
    background: linear-gradient(135deg, #f7f9f8 0%, #eef3f1 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.about-testimonial-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: var(--primary-light);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 0;
}

.about-testimonial-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 250px;
    height: 250px;
    background-color: var(--primary-light);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 0;
}

.about-testimonial-wrapper {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
    background-color: white;
    padding: 2rem 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 15px 30px rgba(46, 82, 74, 0.08);
    border: 1px solid rgba(46, 82, 74, 0.05);
}

.about-testimonial-quote-icon {
    font-size: 3rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.about-testimonial-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background-color: var(--bg-tint);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.about-testimonial-text {
    font-family: var(--font-heading);
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    font-style: italic;
    font-weight: 500;
}

.about-testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.about-testimonial-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.about-testimonial-avatar:hover {
    transform: scale(1.05);
}

.about-testimonial-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.about-testimonial-role {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

@media (max-width: 768px) {
    .about-testimonial-wrapper {
        padding: 3rem 1.5rem;
    }
}

/* ==========================================================================
   PAGE SPECIFIC: OUR TEAM — PORTRAIT CARDS
   ========================================================================== */
.team-section {
    background: linear-gradient(180deg, #f5f8f7 0%, #ffffff 100%);
}

/* Row containers */
.team-leadership-row,
.team-dept-row,
.team-staff-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
}

.team-staff-row {
    margin-bottom: 0;
}

/* The individual portrait card */
.team-portrait-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 240px;
    transition: var(--transition-normal);
}

.team-portrait-card.team-portrait-sm {
    width: 200px;
}

/* Outer ring / circle */
.team-portrait-ring {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    box-shadow: 0 0 0 6px rgba(46, 82, 74, 0.08), 0 10px 30px rgba(46, 82, 74, 0.15);
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
    background-color: var(--bg-tint);
}

.team-portrait-card.team-portrait-sm .team-portrait-ring {
    width: 170px;
    height: 170px;
}

.team-portrait-card:hover .team-portrait-ring {
    border-color: var(--primary-colo);
    box-shadow: 0 0 0 8px rgba(46, 82, 74, 0.12), 0 15px 40px rgba(46, 82, 74, 0.2);
    transform: translateY(-5px);
}

.team-portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    filter: grayscale(30%);
    transition: var(--transition-normal);
}

.team-portrait-card:hover .team-portrait-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Role badge */
.team-portrait-role-badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    background-color: var(--bg-tint);
    border: 1px solid rgba(46, 82, 74, 0.15);
    color: var(--primary-color);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
}

/* Name */
.team-portrait-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

/* Department */
.team-portrait-dept {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Socials */
.team-portrait-socials {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
}

.team-portrait-socials a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--bg-tint);
    border: 1px solid rgba(46, 82, 74, 0.12);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    transition: var(--transition-fast);
}

.team-portrait-socials a:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Responsive: Team */
@media (max-width: 768px) {
    .team-portrait-card {
        width: 180px;
    }

    .team-portrait-card.team-portrait-sm {
        width: 160px;
    }

    .team-portrait-ring {
        width: 160px;
        height: 160px;
    }

    .team-portrait-card.team-portrait-sm .team-portrait-ring {
        width: 140px;
        height: 140px;
    }

    .team-leadership-row,
    .team-dept-row,
    .team-staff-row {
        gap: 2rem;
    }
}

@media (max-width: 480px) {

    .team-leadership-row,
    .team-dept-row {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }

    .team-staff-row {
        gap: 2rem;
    }
}

/* ==========================================================================
   GLOBAL RESPONSIVE IMPROVEMENTS — ALL PAGES
   ========================================================================== */



/* Certificates grid responsive */
@media (max-width: 900px) {
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .certificates-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer responsive */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

/* Top bar responsive */
@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
    }

    .top-bar-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Breadcrumb hero responsive */
@media (max-width: 576px) {
    .breadcrumb-hero {
        padding: 3rem 0;
    }

    .breadcrumb-hero h1 {
        font-size: 1.8rem;
    }
}

/* Section title responsive */
@media (max-width: 576px) {
    .section-title h2 {
        font-size: 1.6rem;
    }

    .section {
        padding: 3.5rem 0;
    }
}

/* Product grid responsive */
@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   WHY CHOOSE US / PERFECTION SECTION
   ========================================================================== */
.why-choose-perfection {
    padding: 6rem 0;
    background-color: var(--bg-color);
}

.perfection-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.perfection-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.perfection-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
}

.perfection-image {
    width: 100%;
    height: auto;
    display: block;
}

.perfection-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.perfection-badge {
    color: #e27c3e;
    /* Matches the custom orange color in screenshot */
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.perfection-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 0;
}

.perfection-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.perfection-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.perfection-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.perfection-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.perfection-item:hover .perfection-icon {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.perfection-text h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-family: var(--font-body);
}

.perfection-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.perfection-action {
    margin-top: 1rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .perfection-grid {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .perfection-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .perfection-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   OUR VISION AND MISSION SECTION
   ========================================================================== */
.vision-mission-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: var(--primary-dark);
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: stretch;
    min-height: 380px;
}

.vision-content {
    padding: 6rem 10% 6rem 12.5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    color: white;
}

.vision-badge {
    color: #ffaa44;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.vision-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    color: white;
    margin-bottom: 0;
    line-height: 1.2;
}

.vision-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

.vision-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    width: 100%;
    height: 100%;
}

.vision-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   EMBRACE NATURES HEALING TOUCH / HOW TO USE
   ========================================================================== */
.how-to-use-section {
    padding: 6rem 0;
    background-color: var(--bg-tint);
}

.how-to-use-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
}

.how-to-use-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.how-to-use-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    color: var(--primary-color);
    line-height: 1.25;
    margin-bottom: 0;
}

.how-to-use-intro {
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.how-to-use-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.step-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.step-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

.how-to-use-action {
    margin-top: 1.5rem;
}

.how-to-use-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.how-to-use-img {
    width: 100%;
    /* max-width: 400px; */
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-slow);
}

.how-to-use-img:hover {
    transform: scale(1.03) rotate(1deg);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS FOR NEW SECTIONS
   ========================================================================== */
   @media (max-width: 1440px) {

    .vision-content {
        padding: 2rem 2rem;
    }
}
@media (max-width: 1200px) {
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
    
    .vision-content {
        padding: 4rem 6%;
    }
}

@media (max-width: 991px) {
    .how-to-use-grid {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .how-to-use-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .how-to-use-visual {
        order: -1;
        /* Place image on top in mobile */
    }

    .how-to-use-img {
        max-width: 320px;
    }
}

/* ==========================================================================
   OUR GUARANTEE SECTION
   ========================================================================== */
.guarantee-section {
    padding: 6rem 0;
    background-color: var(--bg-color);
}

.guarantee-leaf-divider {
    display: block;
    text-align: center;
    position: relative;
}

.guarantee-leaf-divider::before,
.guarantee-leaf-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background-color: var(--border-color);
}

.guarantee-leaf-divider::before {
    right: calc(50% + 20px);
}

.guarantee-leaf-divider::after {
    left: calc(50% + 20px);
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.guarantee-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    background-color: var(--bg-tint);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.guarantee-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background-color: white;
    border-color: var(--primary-color);
}

.guarantee-icon-wrapper {
    width: 130px;
    height: 90px;
    border-radius: var(--border-radius-md);
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 12px rgba(46, 82, 74, 0.05);
    border: 1px solid rgba(46, 82, 74, 0.08);
    transition: var(--transition-normal);
}

.guarantee-icon-img {
    height: 62px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-normal);
}

.guarantee-card:hover .guarantee-icon-wrapper {
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 6px 15px rgba(46, 82, 74, 0.1);
}

.guarantee-card:hover .guarantee-icon-img {
    transform: scale(1.05);
}

.guarantee-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 0;
    line-height: 1.3;
}

.guarantee-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Guarantee Section Tablet/Mobile adjustments */
@media (max-width: 991px) {
    .guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 650px) {
    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .guarantee-card {
        padding: 2rem 1.5rem;
    }
}

/* ==========================================================================
   PRODUCT CATEGORY HIGHLIGHTS
   ========================================================================= */
.category-highlights-section {
    padding: 6rem 0;
    background-color: var(--bg-color);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.category-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* Specific Card Backgrounds & Layout */
.category-card-soap {
    background: linear-gradient(135deg, #e4eae9 0%, #ffffff 100%);
}

.category-card-sanitary {
    background-image: url('../images/category_sanitary.png');
    background-size: cover;
    background-position: center;
}

.category-card-powder {
    background: linear-gradient(135deg, #e4eae9 0%, #ffffff 100%);
}

/* Card Image Styling */
.category-img-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    z-index: 1;
    padding: 2.5rem;
}

.category-card-soap .category-product-img {
    max-height: 240px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-normal);
}

.category-card-powder .category-product-img {
    max-height: 240px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-normal);
}

/* Hover Zoom for Images */
.category-card:hover .category-product-img {
    transform: scale(1.06) translateY(-4px);
}

/* Category Text Overlay */
.category-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    z-index: 3;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.45) 100%);
    transition: var(--transition-normal);
}

/* Slightly darken overlay on hover */
.category-card:hover .category-overlay {
    background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.category-cursive {
    font-family: 'Great Vibes', cursive;
    color: #ffffff;
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 0.9;
    margin-bottom: 0.75rem;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
    font-weight: 400;
}

.category-title {
    font-family: var(--font-body);
    font-weight: 600;
    color: #ffffff;
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin: 0;
    padding: 0 1rem;
    line-height: 1.4;
}

/* Responsive category highlights */
@media (max-width: 991px) {
    .category-highlights-section {
        padding: 4rem 0;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .category-card-sanitary {
        grid-column: span 1;
    }

    .category-card {
        height: 350px;
    }
}

@media (max-width: 650px) {
    .category-grid {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }

    .category-card-sanitary {
        grid-column: span 1;
    }

    .category-card {
        height: 300px;
    }

    .category-cursive {
        font-size: 3rem;
    }
}

/* ==========================================================================
   BLOG PAGES STYLING (LISTING & DETAILS)
   ========================================================================== */

/* Blog Hero / Header - UPGRADED with breadcrumb-hero pattern */
/* .blog-header is now replaced by .breadcrumb-hero in blog.html */

/* Breadcrumb hero subtitle */
.breadcrumb-hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin: 0.5rem auto 0;
    max-width: 600px;
    letter-spacing: 0.3px;
}

/* Blog Page Wrapper */
.blog-page-wrapper {
    padding: 5rem 0 3rem;
    background: linear-gradient(180deg, #f5f9f8 0%, #ffffff 60%);
}

/* Blog Section Heading */
.blog-section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-tag-line {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    background: rgba(46, 82, 74, 0.08);
    padding: 0.35rem 1rem;
    border-radius: 30px;
    margin-bottom: 1rem;
}

.blog-section-heading h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.blog-section-heading p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumbs (legacy) */
.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
}

.breadcrumbs a {
    color: var(--primary-color);
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Blog Layout Grid */
.blog-layout {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 3.5rem;
    padding: 5rem 0;
}

/* Blog Filter Bar - UPGRADED */
.blog-filters {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    background: white;
    border: 1.5px solid var(--border-color);
    padding: 0.6rem 1.6rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.filter-btn i {
    font-size: 0.8rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 6px 16px rgba(46, 82, 74, 0.25);
    transform: translateY(-2px);
}

/* Blog Grid - UPGRADED */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Featured card spans full width on first row */
.blog-card-featured {
    grid-column: 1 / -1;
    flex-direction: row !important;
    min-height: 360px;
}

.blog-card-featured .blog-card-img-wrapper {
    width: 55%;
    flex-shrink: 0;
    aspect-ratio: unset;
}

.blog-card-featured .blog-card-new-body {
    justify-content: center;
    padding: 2.5rem 3rem;
}

.blog-card-featured .blog-card-title-new {
    font-size: 1.5rem;
    line-height: 1.3;
}

.blog-card-featured .blog-excerpt {
    -webkit-line-clamp: 3;
    font-size: 0.95rem;
}

/* Featured tag badge */
.blog-card-featured-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #f0a500, #e07b00);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    z-index: 2;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Health badge - teal variant */
.badge-health {
    background: linear-gradient(135deg, #2E524A, #0E4D27);
}

.blog-card-new {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(46, 82, 74, 0.07);
    border: 1px solid rgba(46, 82, 74, 0.06);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.blog-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(46, 82, 74, 0.14);
    border-color: rgba(46, 82, 74, 0.15);
}

.blog-card-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.blog-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card-new:hover .blog-card-img-wrapper img {
    transform: scale(1.1);
}

/* Subtle image overlay on hover */
.blog-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(14, 77, 39, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.blog-card-new:hover .blog-card-img-overlay {
    opacity: 1;
}

.blog-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    z-index: 2;
    letter-spacing: 0.5px;
}

.blog-card-new-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.blog-meta span i {
    color: var(--primary-color);
    margin-right: 4px;
}

.blog-card-title-new {
    font-size: 1.25rem;
    line-height: 1.4;
    color: var(--primary-color);
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 0.75rem;
    transition: var(--transition-fast);
}

.blog-card-new:hover .blog-card-title-new {
    color: var(--primary-dark);
}

.blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-read-btn {
    margin-top: auto;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
}

.blog-read-btn i {
    transition: transform 0.3s ease;
}

.blog-card-new:hover .blog-read-btn i {
    transform: translateX(5px);
}

/* Pagination */
.pagination {
    display: flex;
    gap: 0.5rem;
    margin-top: 3.5rem;
}

.page-link-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 50%;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.page-link-btn:hover,
.page-link-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Sidebar Styling */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.sidebar-widget {
    background: var(--bg-tint);
    padding: 22px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.widget-title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

/* Search widget */
.search-form {
    position: relative;
}

.search-form input {
    width: 100%;
    padding: 0.8rem 2.5rem 0.8rem 1.25rem;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    outline: none;
    background: white;
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.search-form input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(46, 82, 74, 0.1);
}

.search-form button {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
}

/* Recent posts widget */
.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.recent-post-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.recent-post-img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-info {
    display: flex;
    flex-direction: column;
}

.recent-post-title {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.3;
    color: var(--text-color);
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recent-post-title:hover {
    color: var(--primary-color);
}

.recent-post-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Categories widget list */
.sidebar-categories-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar-categories-list a {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-color);
    transition: var(--transition-fast);
}

.sidebar-categories-list a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.sidebar-categories-list span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Tags cloud widget */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-btn {
    background: white;
    border: 1px solid var(--border-color);
    padding: 0.35rem 0.85rem;
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.tag-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* ==========================================
   BLOG DETAILS PAGE STYLING
   ========================================== */
.blog-details-header {
    background: var(--bg-tint);
    padding: 5rem 0 3.5rem;
    border-bottom: 1px solid var(--border-color);
}

.blog-details-header .blog-category-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    font-weight: 500;
    font-size: 0.8rem;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.blog-details-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.blog-details-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.blog-details-meta span i {
    color: var(--primary-color);
    margin-right: 6px;
}

/* Blog Content Styles */
.blog-post-content {
    background: white;
    border-radius: var(--border-radius-lg);
    margin-bottom: 3rem;
}

.main-post-img-wrapper {
    width: 100%;
    max-height: 500px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.main-post-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.75rem;
}

.blog-post-content h3 {
    color: var(--primary-color);
    margin: 2.5rem 0 1rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.5rem;
}

.blog-post-content blockquote {
    background: var(--bg-tint);
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--primary-dark);
    font-size: 1.1rem;
    line-height: 1.7;
}

.blog-post-content ul,
.blog-post-content ol {
    margin: 1.5rem 0 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.blog-post-content ul {
    list-style-type: none;
}

.blog-post-content ul li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.blog-post-content ul li::before {
    content: '\f06c';
    /* FontAwesome leaf */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 6px;
    color: var(--primary-color);
    font-size: 0.8rem;
}

.blog-post-content ol li {
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Share & Post Tags */
.post-footer-tags-share {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
    margin-top: 3.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.post-tags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-tags span {
    font-weight: 600;
    color: var(--primary-color);
}

.post-share {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.post-share span {
    font-weight: 600;
    color: var(--primary-color);
}

.share-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tint);
    color: var(--text-color);
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.share-icon-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* ==========================================================================
   BLOG NEWSLETTER CTA STRIP
   ========================================================================== */
.blog-newsletter-cta {
    background: linear-gradient(135deg, #1e3d36 0%, #2E524A 50%, #0E4D27 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.blog-newsletter-cta::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.blog-newsletter-cta::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -60px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.blog-newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.blog-newsletter-text {
    flex: 1;
    color: white;
}

.blog-newsletter-text h2 {
    color: white;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 0.75rem;
}

.blog-newsletter-text p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 480px;
}

.blog-newsletter-form {
    flex: 0 0 400px;
}

.blog-newsletter-input-group {
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.blog-newsletter-input-group input {
    flex: 1;
    padding: 0.9rem 1.5rem;
    border: none;
    outline: none;
    font-size: 0.9rem;
    background: transparent;
    color: var(--text-color);
    font-family: var(--font-body);
}

.blog-newsletter-input-group button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.9rem 1.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-normal);
    font-family: var(--font-body);
    white-space: nowrap;
}

.blog-newsletter-input-group button:hover {
    background: var(--primary-dark);
}

.blog-newsletter-note {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin-top: 0.75rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Responsive Blog Styles */
@media (max-width: 1100px) {
    .blog-card-featured {
        flex-direction: column !important;
        min-height: unset;
    }

    .blog-card-featured .blog-card-img-wrapper {
        width: 100%;
        aspect-ratio: 16/9;
    }

    .blog-card-featured .blog-card-new-body {
        padding: 2rem;
    }
}

@media (max-width: 991px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding: 4rem 0;
    }

    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-newsletter-inner {
        flex-direction: column;
        text-align: center;
    }

    .blog-newsletter-text p {
        margin: 0 auto;
    }

    .blog-newsletter-form {
        flex: 0 0 auto;
        width: 100%;
        max-width: 480px;
    }
}

@media (max-width: 650px) {
    .blog-posts-grid {
        grid-template-columns: 1fr;
    }

    .blog-details-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .blog-newsletter-input-group {
        flex-direction: column;
        border-radius: 12px;
    }

    .blog-newsletter-input-group input {
        border-radius: 12px 12px 0 0;
        padding: 1rem 1.25rem;
    }

    .blog-newsletter-input-group button {
        border-radius: 0 0 12px 12px;
        justify-content: center;
        padding: 1rem;
    }
}