﻿/* 
    ST-THEME: White, Pink, Green & Gold
    Project: Hero Section for soft-tech.uk 
*/
/* ==========================================================================
   ST-THEME: White, Pink, Green & Gold
   Project: Hero Section for soft-tech.uk 
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,300;0,700;0,900;1,400&display=swap');

:root {
    /* Core Theme Colors */
    --matcha-hero-white: #ffffff;
    --matcha-hero-pink-white: #FFF0F5; /* LavenderBlush: The soft pink-white base */
    --matcha-hero-accent-pink: #ffb7c5; /* Sakura Pink for accents */
    --matcha-hero-green: #2d6a4f; /* Deep Matcha/Forest Green */
    --matcha-hero-dark-green: #1b4332;
    --matcha-hero-gold: #d4af37; /* Metallic Gold for the text lining */
    /* Utilities */
    --matcha-hero-glass: rgba(255, 255, 255, 0.1);
    --matcha-hero-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --matcha-hero-font-main: 'Playfair Display', serif;
}

/* --- 1. GLOBAL OVERRIDES --- */
html, body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

/* --- 2. HERO CONTAINER (DESKTOP BACKDROP) --- */
.matcha-hero-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    font-family: var(--matcha-hero-font-main);
    /* Balanced desktop image load */
    background: url('/css/images/matchaHeroPinkBgBambo.png') center center no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
}

/* --- 3. OVERLAYS (The Theme Gradient) --- */
.matcha-hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Blending white-pink at top to deep green at bottom */
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.4) 0%, transparent 50%, rgba(27, 67, 50, 0.7) 100%);
    z-index: 1;
}

/* --- 4. POSITIONING LOGIC --- */
/* Top Left */
.matcha-hero-top-left {
    position: absolute;
    top: 20%;
    left: 5%;
    z-index: 10;
}

/* Center Content */
.matcha-hero-center {
    position: absolute;
    top: 50%; /* Center line on Desktop */
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    width: 100%;
    transition: top 0.4s ease; /* Fluid transition if viewport scales */
}

/* Top Right Info Box */
.matcha-hero-top-right {
    position: absolute;
    top: 15%;
    right: 3%;
    z-index: 10;
    max-width: 400px;
    text-align: right;
}

/* Bottom Right */
.matcha-hero-bottom-right {
    position: absolute;
    bottom: 8%;
    right: 5%;
    z-index: 10;
    text-align: right;
}

/* Bottom Left Socials */
.matcha-hero-socials {
    position: absolute;
    bottom: 8%;
    left: 5%;
    z-index: 10;
    display: flex;
    gap: 25px;
}

/* --- 5. TYPOGRAPHY & GOLD LINING --- */
/* Shared Stroke Property for Gold Lining */
.matcha-hero-gold-outline {
    -webkit-text-stroke: 1px var(--matcha-hero-gold);
    paint-order: stroke fill;
}

.matcha-hero-title {
    color: var(--matcha-hero-white);
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    margin: 0;
    -webkit-text-stroke: 1px var(--matcha-hero-gold);
}

.matcha-hero-center-text {
    color: white;
    font-size: clamp(7rem, 4vw, 3.5rem);
    text-transform: uppercase;
    letter-spacing: 12px;
    font-weight: 300;
    margin: 0;
    -webkit-text-stroke: 0.8px var(--matcha-hero-gold);
    text-shadow: var(--matcha-hero-shadow);
}

.matcha-hero-secondary-title {
    color: var(--matcha-hero-white);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    -webkit-text-stroke: 1px var(--matcha-hero-gold);
}

.matcha-hero-accent {
    color: var(--matcha-hero-accent-pink);
    font-weight: 400;
    font-style: italic;
    text-transform: none;
    letter-spacing: 2px;
    -webkit-text-stroke: 0.5px var(--matcha-hero-gold);
}

/* --- 6. GLASSMORPHISM COMPONENTS --- */
.matcha-hero-info-box {
    padding: 35px;
    background: var(--matcha-hero-glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-right: 5px solid var(--matcha-hero-gold);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.matcha-hero-subtitle {
    color: var(--matcha-hero-pink-white);
    font-size: 1.6rem;
    margin-bottom: 15px;
    -webkit-text-stroke: 0.5px var(--matcha-hero-gold);
}

.matcha-hero-description {
    color: var(--matcha-hero-white);
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 25px;
    font-family: sans-serif;
}

/* --- 7. BUTTONS & INTERACTIVE --- */
.matcha-hero-btn {
    background: transparent;
    border: 1px solid var(--matcha-hero-gold);
    color: var(--matcha-hero-gold);
    padding: 14px 35px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

    .matcha-hero-btn:hover {
        background: var(--matcha-hero-gold);
        color: var(--matcha-hero-dark-green);
        transform: scale(1.05) translateY(-3px);
    }

.matcha-hero-social-link {
    color: var(--matcha-hero-pink-white);
    font-size: 1.5rem;
    transition: 0.3s ease;
    text-decoration: none;
}

    .matcha-hero-social-link:hover {
        color: var(--matcha-hero-gold);
        transform: translateY(-5px);
    }

/* ==========================================================================
   8. MOBILE RESPONSIVENESS & IMAGE TARGETING
   ========================================================================== */
@media (max-width: 768px) {

    .matcha-hero-container {
        /* Swap out the image entirely for a portrait-optimized version */
        background: url('/css/images/matchaHeorPinkBamboMobile2.png') center center no-repeat;
        background-size: cover;
    }

    /* Shift Title Higher Up on Mobile Screen */
    .matcha-hero-center {
        top: 35%; /* Moved up from 50% so it clears mobile thumbs and stays visible */
    }

    .matcha-hero-top-left {
        top: 80px;
        width: 90%;
        text-align: center;
        left: 5%;
    }

    .matcha-hero-top-right {
        top: 25%;
        left: 5%;
        right: 5%;
        max-width: 90%;
        text-align: center;
    }

    .matcha-hero-info-box {
        border-right: none;
        border-bottom: 5px solid var(--matcha-hero-gold);
        padding: 20px;
    }

    .matcha-hero-center-text {
        letter-spacing: 5px;
        font-size: 4rem;
    }

    .matcha-hero-bottom-right {
        bottom: 12%;
        width: 100%;
        text-align: center;
        right: 0;
    }

    .matcha-hero-socials {
        bottom: 5%;
        left: 50%;
        transform: translateX(-50%);
    }
}







/*product display----------------------------------------------*/
/* THEME: MO&CHA - White, Pink, Green
    Product: Elegant Matcha Selection Grid
*/

/* --- 1. SECTION & BACKGROUND --- */
.product-display-section {
    position: relative;
    padding: 50px 5%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* BACKGROUND IMAGE SETUP */
    /* Ensure this path matches your folder structure on IONOS */
    background-color: #FFD3B6;
    background-size: cover;
    background-attachment: fixed; /* Creates the stylish parallax effect */
}

    /* THE OVERLAY: Adds a soft theme-colored tint over the photo */
    .product-display-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient( 135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 240, 245, 0.2) 50%, rgba(45, 106, 79, 0.3) 100% );
        z-index: 1;
    }

/* --- 2. CONTAINER & GRID --- */
.product-display-container {
    position: relative;
    z-index: 2; /* Sits above the background overlay */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 70px;
    width: 100%;
    max-width: 1200px;
}

/* --- 3. CARD ARCHITECTURE --- */
.product-display-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

    .product-display-card:hover {
        transform: translateY(-15px);
    }

/* Image Frame */
.product-display-image-wrapper {
    width: 100%;
    height: 380px;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: -50px; /* Overlap for the floating info box */
    z-index: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-display-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-display-card:hover .product-display-img {
    transform: scale(1.1);
}

/* --- 4. GLASSMORPHISM INFO BOXES --- */
.product-display-info {
    width: 88%;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    z-index: 2;
    /* High-end blur effect */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* THEME COLOR VARIATIONS (Translucent versions) */
.product-display-green-theme .product-display-info {
    background-color: rgba(219, 233, 211, 0.85);
}

.product-display-pink-theme .product-display-info {
    background-color: rgba(251, 228, 232, 0.85);
}

.product-display-berry-theme .product-display-info {
    background-color: rgba(236, 224, 226, 0.85);
}

/* --- 5. TYPOGRAPHY --- */
.product-display-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1b4332; /* Deep Matcha Green */
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.product-display-ingredients {
    font-size: 0.85rem;
    color: #4a4a4a;
    margin-bottom: 15px;
    font-style: italic;
    line-height: 1.4;
}

.product-display-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: #2d6a4f;
    display: block;
    font-family: 'Inter', sans-serif;
}

/* --- 6. INTERACTIVE BUTTON --- */
.product-display-order-btn {
    margin-top: 25px;
    background-color: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.2); /* Subtle Gold border */
    color: #2d6a4f;
    padding: 12px 55px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

    .product-display-order-btn:hover {
        background-color: #2d6a4f;
        color: #ffffff;
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(45, 106, 79, 0.3);
    }

/* --- 7. MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .product-display-section {
        padding: 60px 20px;
        background-attachment: scroll; /* Disabling parallax on mobile for performance */
    }

    .product-display-container {
        gap: 80px; /* More space between stacked items */
    }

    .product-display-image-wrapper {
        height: 320px;
    }

    .product-display-name {
        font-size: 1.3rem;
    }
}



/*seporator titel-----------------------*/

/* --- SECTION SEPARATOR TITLE --- */
.section-separator-title-wrap {
    position: relative;
    width: 100%; /* Full screen width */
    background-color: #FFD3B6; /* Sakura Pink */
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* The "Fancy" Decorative Green Lines */
.section-separator-title-line-top,
.section-separator-title-line-bottom {
    position: absolute;
    width: 150px;
    height: 4px;
    background-color: #FFFACD; /* Matcha Green */
    border-radius: 2px;
}

.section-separator-title-line-top {
    top: 20px;
    left: 10%;
    transform: rotate(-2deg);
    box-shadow: 20px 5px 0px rgba(45, 106, 79, 0.2); /* Ghost line effect */
}

.section-separator-title-line-bottom {
    bottom: 20px;
    right: 10%;
    transform: rotate(2deg);
    box-shadow: -20px -5px 0px rgba(45, 106, 79, 0.2);
}

/* Typography Container */
.section-separator-title-content {
    text-align: center;
    z-index: 2;
}

/* "Discover the Art of" - Fancy Script Style */
.section-separator-title-fancy {
    display: block;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: -10px;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* "Matcha Perfection" - Bold and Elegant */
.section-separator-title-main {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    color: #ffffff;
    font-size: clamp(2.5rem, 8vw, 4.5rem); /* Responsive sizing */
    text-transform: uppercase;
    letter-spacing: 8px;
    margin: 0;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Floating Green Accent Circles (Subtle) */
.section-separator-title-wrap::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(45, 106, 79, 0.1) 0%, transparent 70%);
    top: -150px;
    right: -50px;
    z-index: 1;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .section-separator-title-wrap {
        padding: 40px 0;
    }

    .section-separator-title-main {
        letter-spacing: 4px;
        line-height: 1.1;
    }

    .section-separator-title-line-top,
    .section-separator-title-line-bottom {
        width: 80px; /* Shorter lines for smaller screens */
    }
}





/*special offers------------------------------*/

/* --- SPECIAL OFFERS SECTION CONFIGURATION --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Playfair+Display:ital,wght@0,600;0,900;1,400&display=swap');

.special-offers-container {
    position: relative;
    padding: 120px 5%;
    font-family: 'Playfair Display', serif;
    background-color: #faf9f6; /* Elegant Off-White/Alabaster Base */
    background-image: radial-gradient(circle at 90% 10%, rgba(255, 183, 197, 0.15) 0%, transparent 40%), radial-gradient(circle at 10% 80%, rgba(45, 106, 79, 0.05) 0%, transparent 50%);
    overflow: hidden;
}

.special-offers-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.special-offers-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #d4af37; /* Champagne Gold */
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.special-offers-main-title {
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    color: #1b4332; /* Deep Matcha Green */
    font-weight: 900;
    margin: 0;
    letter-spacing: -1px;
}

.special-offers-accent-pink {
    color: #ffb7c5; /* Sakura Pink */
    font-style: italic;
    font-weight: 400;
}

.special-offers-divider {
    width: 60px;
    height: 2px;
    background: #d4af37;
    margin: 25px auto 0;
    position: relative;
}

/* Structural Layout Grid */
.special-offers-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Trendy asymmetrical desktop layout */
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Card Styling Rules */
.special-offers-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}

    .special-offers-card:hover {
        transform: translateY(-8px);
        border-color: #ffb7c5;
        box-shadow: 0 20px 40px rgba(27, 67, 50, 0.06);
    }

/* Asymmetric design enhancement for the main feature bundle card */
.special-offers-featured {
    grid-column: span 1;
    border-left: 4px solid #2d6a4f;
}

/* Badges */
.special-offers-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #2d6a4f; /* Matcha Leaf Green */
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    padding: 6px 16px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(45, 106, 79, 0.2);
}

.special-offers-featured .special-offers-badge {
    background: #ffb7c5;
    color: #1b4332;
    box-shadow: 0 4px 10px rgba(255, 183, 197, 0.3);
}

/* Media Displays */
.special-offers-image-wrapper {
    position: relative;
    height: 320px;
    background: #fdfdfd;
    overflow: hidden;
}

.special-offers-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.special-offers-card:hover .special-offers-img {
    transform: scale(1.05);
}

/* Card Details Typography */
.special-offers-content {
    padding: 35px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.special-offers-item-title {
    font-size: 1.6rem;
    color: #1b4332;
    margin: 0 0 12px 0;
    font-weight: 600;
}

.special-offers-item-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

/* Dynamic Checkout Strip */
.special-offers-pricing-row {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding-top: 25px;
    border-top: 1px dashed rgba(0, 0, 0, 0.08);
}

.special-offers-price-box {
    display: flex;
    flex-direction: column;
}

.special-offers-old-price {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #aaa;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.special-offers-current-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2d6a4f;
}

    .special-offers-current-price small {
        font-family: 'Inter', sans-serif;
        font-size: 0.85rem;
        color: #666;
        font-weight: 400;
    }

/* Premium Buttons */
.special-offers-cta-btn {
    background: #1b4332;
    color: #ffffff;
    border: 1px solid #1b4332;
    font-family: 'Inter', sans-serif;
    padding: 12px 28px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

    .special-offers-cta-btn:hover {
        background: #ffb7c5;
        color: #1b4332;
        border-color: #ffb7c5;
        transform: scale(1.03);
    }

.special-offers-outline {
    background: transparent;
    color: #d4af37;
    border-color: #d4af37;
}

    .special-offers-outline:hover {
        background: #d4af37;
        color: #ffffff;
        border-color: #d4af37;
    }

/* --- ADAPTIVE CELLULAR RESPONSIVENESS RULES --- */
@media (max-width: 992px) {
    .special-offers-grid {
        grid-template-columns: 1fr; /* Switch to balanced 1-column layout on iPad/tablets */
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .special-offers-container {
        padding: 80px 24px;
    }

    .special-offers-header {
        margin-bottom: 45px;
    }

    .special-offers-image-wrapper {
        height: 240px; /* Reduce media scaling on small handheld screens */
    }

    .special-offers-content {
        padding: 25px;
    }

    .special-offers-pricing-row {
        flex-direction: column; /* Stack total pricing blocks and actions on small phone viewport dimensions */
        align-items: flex-start;
        gap: 20px;
    }

    .special-offers-cta-btn {
        width: 100%;
        text-align: center;
    }
}





/*mini collage images-------------------*/

/* --- SPECIAL OFFERS COLLAGE GALLERY CONFIGURATION --- */
/* --- SPECIAL OFFERS COLLAGE GALLERY CONFIGURATION --- */
.special-offers-collage-container {
    background-image: url('/css/images/sky1.jpg');
    /* FIXES FOR THE SHIFTING & OVERFLOW */
    background-repeat: no-repeat !important; /* Stops the image from repeating/tiling */
    background-size: cover !important; /* Scales the sky image perfectly to fill the entire section width/height */
    background-position: center center !important; /* Centers the image so it scales symmetrically */
    background-attachment: scroll !important; /* Keeps the asset structurally stable relative to its frame boundaries */

    padding: 120px 5%;
    background-color: #ffffff; /* Serves as a solid background baseline while the image loads */
    font-family: 'Playfair Display', serif;
    position: relative;
    overflow: hidden !important; /* Safety guard: Prevents any mosaic child elements from causing a horizontal scrollbar bleed */
}

.special-offers-collage-wrapper {

    display: grid;
    grid-template-columns: 1fr 1.3fr; /* Text left, asymmetric mosaic right */
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

/* --- Text Styling Left Side --- */
.special-offers-collage-text-side {
    max-width: 450px;
    /* 1. Transparent Background (White with low opacity) */
    background-color: rgba(255, 255, 255, 0.15);
    /* 2. The Frosted Blur Effect (Crucial) */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); /* Required for Safari support */
    /* 3. The Highlight Edge (Mimics light catching the glass corner) */
    border: 1px solid rgba(255, 255, 255, 0.25);
    /* 4. Soft Depth Shadow */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
    /* Optional: Smooth corners look best with glass */
    border-radius: 16px;
    padding: 30px;
}

.special-offers-collage-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #d4af37; /* Champagne Gold */
    font-weight: 600;
    display: block;
    margin-bottom: 16px;
}

.special-offers-collage-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #1b4332; /* Deep Matcha Green */
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.special-offers-collage-description {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #555555;
    line-height: 1.7;
    margin: 0 0 35px 0;
}

.special-offers-collage-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #1b4332;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 6px;
    border-bottom: 2px solid #ffb7c5; /* Sakura Pink Accent Underline */
    transition: all 0.3s ease;
}

    .special-offers-collage-link:hover {
        color: #ffb7c5;
        border-color: #1b4332;
    }

/* --- Mosaic Collage Layout Right Side --- */
.special-offers-collage-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 40px); /* Strict tracks for overlapping shapes */
    position: relative;
}

/* Base structural properties for individual images */
.special-offers-collage-item {
    position: relative;
    background: #f4f4f4;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

    .special-offers-collage-item:hover {
        transform: translateY(-5px) scale(1.01);
        z-index: 5; /* Forces hovered element cleanly above its siblings */
    }

.special-offers-collage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Positioning the overlapping collage blocks --- */

/* Main tall focal photo occupying the entire left wing of the subgrid */
.special-offers-collage-main {
    grid-column: 1 / span 7;
    grid-row: 1 / span 12;
    height: 520px;
}

/* Secondary upper right element positioned asymmetrically */
.special-offers-collage-secondary-top {
    grid-column: 8 / span 5;
    grid-row: 1 / span 6;
    height: 240px;
    margin-left: 20px;
}

/* Secondary lower right asset dropped down to complete the offset look */
.special-offers-collage-secondary-bottom {
    grid-column: 8 / span 5;
    grid-row: 7 / span 6;
    height: 260px;
    margin-left: 20px;
    margin-top: 20px;
}

/* Elegant minimalist overlay text tag on the primary photo */
.special-offers-collage-caption {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: #1b4332;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 16px;
    border-radius: 50px;
}

/* --- ADAPTIVE MOBILITY RULES --- */
@media (max-width: 992px) {
    .special-offers-collage-wrapper {
        grid-template-columns: 1fr; /* Switch to stacked column interface */
        gap: 60px;
    }

    .special-offers-collage-text-side {
        max-width: 100%;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .special-offers-collage-container {
        padding: 80px 24px;
    }

    /* Convert structural mosaic tracks into standard uniform layout on small phone viewports */
    .special-offers-collage-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .special-offers-collage-item,
    .special-offers-collage-main,
    .special-offers-collage-secondary-top,
    .special-offers-collage-secondary-bottom {
        grid-column: auto !important;
        grid-row: auto !important;
        margin: 0 !important;
        height: 280px !important;
        border-radius: 16px;
    }
}






/*matcha health linker-----------------------------------*/

/* ==========================================================================
   MATCHA HEALTH LINKER SYSTEM (Studio Precision Layout)
   Theme: Vibrant Modern Teahouse (Sunset Yellow to Sakura Pink Gradient)
   ========================================================================== */

.matcha-health-linker-panel {
    width: 100% !important;
    height: 30vh !important;
    min-height: 240px !important;
    /* VIBRANT BACKGROUND: Undeniable pastel blend of soft teahouse yellow shifting into warm sakura pink */
    background: #fff9e6 !important; /* Fallback */
    background: linear-gradient(135deg, #fffcf0 0%, #fff3cc 40%, #ffe3e8 100%) !important;
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    border-bottom: 1px solid rgba(255, 183, 197, 0.5) !important;
    position: relative !important;
    z-index: 1 !important;
}

.matcha-health-linker-wrapper {
    background: transparent !important;
    background-color: transparent !important;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    /* 3-Column Split matching the provided design layout perfectly */
    grid-template-columns: 2.5fr 1fr 2.2fr;
    align-items: center;
    height: 100%;
    gap: 20px;
    box-sizing: border-box;
}

/* --- LEFT COLUMN: COMPOSITION --- */
.matcha-health-linker-data-cell {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.matcha-health-linker-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 2.8vw, 2.4rem);
    color: #1b4332; /* Deep Matcha Green */
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 8px 0;
    line-height: 1.1;
}

.matcha-health-linker-pink-accent {
    color: #ff8fa3; /* Darker, high-contrast Sakura Pink for legibility over yellow */
    display: block;
}

.matcha-health-linker-copy {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.82rem, 1.1vw, 0.95rem);
    color: #2d3732; /* Deepened text contrast ratio */
    line-height: 1.6;
    margin: 0;
    max-width: 440px;
}

/* --- CENTER COLUMN: AXIS HUB --- */
.matcha-health-linker-hub-cell {
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.matcha-health-linker-line-top,
.matcha-health-linker-line-bottom {
    width: 1px;
    flex-grow: 1;
    background-color: rgba(27, 67, 50, 0.2); /* Clean green divider hairline trace */
}

.matcha-health-linker-circle-btn {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 1px solid #2d6a4f;
    background: #ffffff; /* Solid white background so the button pops off the gradient */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin: 10px 0;
    box-shadow: 0 4px 15px rgba(27, 67, 50, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.matcha-health-linker-btn-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: #1b4332;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.matcha-health-linker-btn-sub {
    font-family: 'Playfair Display', serif;
    font-size: 0.65rem;
    font-style: italic;
    color: #ff8fa3;
}

/* Hover Animation Framework rules */
.matcha-health-linker-circle-btn:hover {
    background-color: #1b4332;
    border-color: #1b4332;
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(27, 67, 50, 0.15);
}

    .matcha-health-linker-circle-btn:hover .matcha-health-linker-btn-text {
        color: #ffffff;
    }

    .matcha-health-linker-circle-btn:hover .matcha-health-linker-btn-sub {
        color: #ffe3e8;
    }

/* --- RIGHT COLUMN: VISUAL ENGINE --- */
.matcha-health-linker-media-cell {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
}

.matcha-health-linker-frame {
    width: 100%;
    height: 65%;
    overflow: hidden;
    border: 1px solid rgba(27, 67, 50, 0.1);
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.matcha-health-linker-graphic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.matcha-health-linker-frame:hover .matcha-health-linker-graphic {
    transform: scale(1.04);
}

.matcha-health-linker-caption {
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #2d6a4f;
    margin: 8px 0 0 0;
}
/* ==========================================================================
   MOBILE VIEWPORT RESPONSIVE LAYER
   ========================================================================== */
@media (max-width: 900px) {
    .matcha-health-linker-panel {
        height: auto !important;
        padding: 50px 0 !important;
        background: linear-gradient(180deg, #fffcf0 0%, #ffe3e8 100%) !important; /* Cascades vertically on small phone screens */
    }

    .matcha-health-linker-wrapper {
        grid-template-columns: 1fr !important;
        gap: 30px;
        text-align: center;
    }

    .matcha-health-linker-data-cell {
        align-items: center;
    }

    .matcha-health-linker-pink-accent {
        display: inline;
        margin-left: 5px;
    }

    .matcha-health-linker-hub-cell {
        flex-direction: row;
        width: 100%;
        height: auto;
    }

    .matcha-health-linker-line-top,
    .matcha-health-linker-line-bottom {
        width: auto;
        height: 1px;
        flex-grow: 1;
    }

    .matcha-health-linker-circle-btn {
        margin: 0 15px;
    }

    .matcha-health-linker-media-cell {
        align-items: center;
    }

    .matcha-health-linker-frame {
        height: 190px;
        max-width: 420px;
    }
}







/*image slide show-------------------*/

.image-slideshow-container {
    background-color: #AEC6CF;
    width: 100%;
    padding: 60px 0;
    display: flex;
    overflow-x: auto;
}

    .image-slideshow-container::-webkit-scrollbar {
        display: none;
    }


.image-slideshow-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    animation: spin 15s infinite linear; /*giving this class the animation*/
    padding-right: 1em; /*making sure there is a gap between card group 1 and 2*/
}

.image-slideshow-card {
    flex: 0 0 auto;
    height: 100%; /* Fills container height completely */
    border-radius: 4px; /* Modern, elegant subtle radius */
    overflow: hidden;
}
  

@keyframes spin {
    from {
        translate: 0;
    }

    to {
        translate: -100%;
    }
}



