/* CSS variables for Grove-inspired design system */
:root {
    --primary-color: #0b3b46;      /* Deep Editorial Teal */
    --primary-light: #165361;
    --primary-dark: #05232a;
    --accent-color: #d4ef8a;       /* Soft Lime/Yellow-Green Banner */
    --accent-dark: #819b38;
    --bg-sky: #d2e9fc;             /* Sky Blue Background Section */
    --bg-light: #f9fbfb;           /* Warm Muted White */
    --white: #ffffff;
    
    --text-primary: #0b3b46;       /* Deep Teal Text */
    --text-secondary: #4a6870;     /* Muted Teal Text */
    --border-color: #dbe7ea;
    
    --font-heading: 'Playfair Display', Georgia, serif; /* High-contrast editorial serif */
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 4px 10px rgba(11, 59, 70, 0.04);
    --shadow-md: 0 10px 25px rgba(11, 59, 70, 0.08);
    --shadow-lg: 0 20px 40px rgba(11, 59, 70, 0.12);
    
    --radius-sm: 4px;              /* Sharp, modern minimal rounded corners */
    --radius-md: 8px;
    --radius-lg: 16px;
    
    --transition: all 0.25s ease-in-out;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography styling */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* Buttons (Sharp, premium, flat style) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-light);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-block {
    width: 100%;
}

/* Promo Banner (Top Lime green bar) */
.promo-banner {
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 1px solid rgba(11, 59, 70, 0.1);
}

.promo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.promo-divider {
    opacity: 0.4;
}

/* Utility Header (Dark Teal Bar) */
.utility-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px 0;
    font-size: 0.85rem;
}

.utility-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.utility-left {
    display: flex;
    gap: 24px;
}

.utility-left a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.utility-left a:hover {
    color: var(--white);
}

.utility-brand a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
}

.utility-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.search-mock {
    position: relative;
    width: 220px;
}

.search-mock input {
    width: 100%;
    padding: 6px 32px 6px 12px;
    border-radius: var(--radius-sm);
    border: none;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 0.8rem;
    outline: none;
}

.search-mock input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-icon {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    pointer-events: none;
}

.cart-mock {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--white);
}

.cart-count {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
}

/* Main Navigation Header (White bar) */
.site-header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-container {
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-primary);
    transition: var(--transition);
    padding: 4px 0;
    border-bottom: 2px solid transparent;
}

.cat-item:hover {
    color: var(--primary-light);
    border-bottom-color: var(--primary-color);
}

.cat-icon {
    font-size: 1.35rem;
    margin-bottom: 4px;
}

.cat-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-nav-cta {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.btn-nav-cta:hover {
    background-color: var(--primary-light);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section (Sky Blue) */
.hero-section {
    padding: 80px 0;
    background-color: var(--bg-sky);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.hero-content {
    max-width: 580px;
    text-align: left;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-media {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
    z-index: 2;
}

.hero-image {
    width: 100%;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--white);
}

/* Stamp sticker style matching Beyond Plastic stamp */
.stamp-badge {
    position: absolute;
    bottom: 20px;
    left: -30px;
    width: 120px;
    height: 120px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px dashed rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-md);
    transform: rotate(-12deg);
    z-index: 3;
}

.stamp-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1.2;
}

.stamp-inner span {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.stamp-inner strong {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    display: block;
    margin: 2px 0;
}

/* Sections Shared */
section {
    padding: 90px 0;
    scroll-margin-top: 80px;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px auto;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.section-title.text-left {
    text-align: left;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Impact Section (See the impact of what you buy style) */
.impact-section {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 56px;
    text-align: center;
}

.impact-item-box {
    max-width: 340px;
    margin: 0 auto;
}

.circle-badge {
    width: 140px;
    height: 140px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px auto;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.circle-badge:hover {
    transform: scale(1.05);
}

.circle-inner {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.circle-inner span {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.circle-inner strong {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 800;
    margin: 3px 0;
    letter-spacing: 0.02em;
}

.impact-item-box h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.impact-item-box p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.impact-action {
    text-align: center;
    margin-top: 56px;
}

/* Problems Section */
.problems-section {
    background-color: var(--bg-sky);
    border-bottom: 1px solid var(--border-color);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.problem-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 36px 28px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.problem-icon {
    font-size: 2.25rem;
    margin-bottom: 20px;
    display: inline-block;
}

.problem-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.problem-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Solution Section (Consciously created homecare style) */
.solution-section {
    background-color: var(--white);
}

.solution-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.6;
}

.ingredients-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.ingredient-item {
    display: flex;
    gap: 16px;
}

.ing-icon {
    font-size: 1.75rem;
    background-color: #edf5f7;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ing-detail h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 4px;
    color: var(--primary-color);
}

.ing-detail p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.solution-visual {
    display: flex;
    justify-content: center;
}

.visual-deco-box {
    background-color: var(--bg-sky);
    padding: 48px;
    border-radius: var(--radius-sm);
    text-align: center;
    max-width: 320px;
    box-shadow: var(--shadow-md);
}

.visual-circle {
    font-size: 3rem;
    margin-bottom: 16px;
}

.visual-deco-box h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.visual-deco-box p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Benefits Section */
.benefits-section {
    background-color: var(--bg-sky);
    border-bottom: 1px solid var(--border-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.benefit-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.benefit-icon-wrapper {
    font-size: 2rem;
    background-color: #edf5f7;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Usage Section */
.usage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.usage-col-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 28px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 8px;
}

.usage-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-card {
    display: flex;
    gap: 20px;
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.step-num {
    font-family: var(--font-body);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    background-color: var(--primary-color);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-info h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.step-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.safety-card {
    padding: 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    border-left: 4px solid transparent;
}

.safety-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.safety-header h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.safety-icon {
    font-size: 1.15rem;
}

.safety-card p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.safety-card.warning {
    background-color: #faf7e8;
    border-left-color: #d1b846;
    color: #63541c;
}

.safety-card.alert {
    background-color: #faf0ed;
    border-left-color: #d15638;
    color: #69291a;
}

.safety-card.info {
    background-color: #edf5f7;
    border-left-color: var(--primary-color);
    color: var(--primary-color);
}

/* FAQ Section */
.faq-section {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
}

.faq-question:hover {
    background-color: #fafcfc;
}

.faq-toggle-icon {
    font-size: 1.35rem;
    color: var(--primary-light);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 0 24px 20px 24px;
    max-height: 800px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0), padding 0.3s ease;
    border-top: 1px solid var(--border-color);
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
}

/* CTA & Order Form Section (Dark Teal matching Grove style) */
.order-section {
    background-color: var(--primary-color);
    color: var(--white);
    position: relative;
}

.order-box {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
}

.order-title {
    font-size: 2.75rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.order-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    line-height: 1.6;
}

.promo-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
}

.order-form-container {
    background-color: var(--white);
    color: var(--text-primary);
    padding: 40px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
}

.form-group label .required {
    color: #d15638;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.form-group select {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-light);
}

.btn-submit {
    margin-top: 8px;
    padding: 14px 28px;
}

/* Footer Section */
.site-footer {
    background-color: #05232a;
    color: rgba(255, 255, 255, 0.65);
    padding: 64px 0 20px 0;
    font-size: 0.85rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand p {
    max-width: 480px;
    line-height: 1.6;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-links p {
    margin-bottom: 10px;
}

.footer-links strong {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    text-align: center;
}

/* Modal success style */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 35, 42, 0.5);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius-sm);
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: zoomIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes zoomIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-icon {
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.modal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.modal-content p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive design queries */
@media (max-width: 992px) {
    .hero-container,
    .solution-wrapper,
    .order-box {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .solution-visual {
        order: -1;
    }

    .order-info {
        text-align: center;
    }
    
    .category-nav {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    html, body {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        position: relative;
    }

    .site-header {
        position: sticky;
        top: 0;
    }

    .header-container {
        height: 65px;
    }

    .category-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 65px;
        left: 0;
        background-color: var(--white);
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-md);
        gap: 12px;
        align-items: flex-start;
    }

    .category-nav.active {
        display: flex;
    }

    .cat-item {
        flex-direction: row;
        gap: 12px;
        width: 100%;
        padding: 8px 0;
        align-items: center;
        border-bottom: none;
    }

    .cat-item:hover {
        border-bottom-color: transparent;
        padding-left: 4px;
    }

    .cat-icon {
        font-size: 1.2rem;
        margin-bottom: 0;
    }

    .cat-label {
        font-size: 0.85rem;
    }

    .btn-nav-cta {
        margin-left: auto;
        margin-right: 16px;
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .promo-container {
        flex-direction: column;
        gap: 4px;
        font-size: 0.75rem;
    }
    
    .promo-divider {
        display: none;
    }
    
    .utility-header {
        padding: 10px 0;
    }
    
    .utility-left, .search-mock {
        display: none;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .order-title {
        font-size: 1.45rem;
        line-height: 1.4;
        margin-bottom: 16px;
        padding: 0 12px;
    }

    .order-desc {
        font-size: 0.92rem;
        line-height: 1.6;
        padding: 0 24px;
        margin-bottom: 24px;
    }

    .order-info {
        text-align: center;
        padding: 0 16px;
    }

    .stamp-badge {
        left: -10px;
        width: 90px;
        height: 90px;
        bottom: 10px;
    }

    .stamp-inner span {
        font-size: 0.5rem;
    }

    .stamp-inner strong {
        font-size: 0.7rem;
    }

    .ingredients-list {
        grid-template-columns: 1fr;
    }

    .usage-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .order-form-container {
        padding: 24px;
    }

    .promo-badge {
        display: block;
        max-width: 100%;
        font-size: 0.85rem;
        line-height: 1.4;
        text-align: center;
    }
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--bg-sky);
    border-bottom: 1px solid var(--border-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.testimonial-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.stars {
    color: #f39c12;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 4px;
    font-weight: 700;
}

.testimonial-meta {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 60px;
    height: 60px;
    background-color: #2ecc71;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
    z-index: 999;
    font-size: 1.6rem;
    transition: var(--transition);
}

.floating-call-btn:hover {
    transform: scale(1.1);
    background-color: #27ae60;
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.6);
}

.floating-call-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #2ecc71;
    border-radius: 50%;
    top: 0;
    left: 0;
    animation: pulseRing 1.8s infinite ease-in-out;
    pointer-events: none;
    box-sizing: border-box;
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

