/**
 * AS Theme CSS - Rosie Farms Co. Custom Premium Styling
 * Based on Ecuadorian Flower Exporters Aesthetics
 */

:root {
    --color-crimson: #e0807b; /* Brand coral-pink */
    --color-crimson-dark: #d9736e; /* Darker brand coral-pink */
    --color-green: #375a40;
    --color-green-dark: #122416;
    --color-blush: #f7f9f7; /* Soft green-cream */
    --color-blush-dark: #eef2ee;
    --color-bg-light: #fcfaf7;
    --color-text-dark: #1c1c1c;
    --color-text-muted: #5c5c5c;
    --color-white: #ffffff;
    --color-border: #e8e2de;

    --font-primary:
        "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-serif: "Roboto", "Playfair Display", Georgia, serif;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.03);
    --shadow-medium: 0 10px 30px rgba(138, 28, 20, 0.05);
    --shadow-hover: 0 15px 40px rgba(138, 28, 20, 0.12);
}

/* Reset & Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.25;
    color: var(--color-text-dark);
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
}

h3 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: clamp(3rem, 8vw, 6rem) 0;
}

.text-center {
    text-align: center;
}

.highlight-text {
    color: #f48b8b;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
}

.btn i {
    margin: 0 8px;
    font-size: 12px;
    transition: transform 0.2s ease;
}

.btn-crimson {
    background-color: var(--color-green);
    color: var(--color-white);
}

.btn-crimson:hover {
    background-color: var(--color-green-dark);
    box-shadow: 0 8px 20px rgba(27, 54, 34, 0.25);
}

.btn-green {
    background-color: var(--color-green);
    color: var(--color-white);
}

.btn-green:hover {
    background-color: var(--color-green-dark);
    box-shadow: 0 8px 20px rgba(27, 54, 34, 0.25);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-crimson);
    border: 1px solid var(--color-crimson);
}

.btn-outline:hover {
    background-color: var(--color-crimson);
    color: var(--color-white);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
}

.btn-outline-white:hover {
    background-color: var(--color-white);
    color: var(--color-crimson);
}

/* WhatsApp Floating Button */
.as-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 99;
    transition: var(--transition);
}

.as-whatsapp-float::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    opacity: 0.5;
    z-index: -1;
    animation: pulse 2s infinite;
}

.as-whatsapp-float:hover {
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Page Headers / Banners */
.as-page-header {
    background-color: var(--color-green);
    color: var(--color-white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.as-page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.as-page-header-content {
    position: relative;
    z-index: 2;
}

.as-page-header h1 {
    color: #fff;
    margin-bottom: 12px;
    font-family: var(--font-serif);
}

.as-page-header p {
    font-size: 16px;
    /* max-width: 600px; */

    opacity: 0.8;
}

/* Torn Paper Watercolor Dividers (inspired by screenshot 1) */
.as-watercolor-divider {
    width: 100%;
    height: 25px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,42.4V0Z' fill='%23375a40'/%3E%3C/svg%3E") no-repeat center bottom;
    background-size: 100% 100%;
    position: relative;
    margin-top: -1px;
}

.as-watercolor-divider-top {
    width: 100%;
    height: 25px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,120V73.71c47.79-22.2,103.59-32.17,158-28,70.36,5.37,136.33,33.31,206.8,37.5,73.84,4.37,147.54-16.87,218.2-35.25,69.27-18,138.3-24.88,209.4-13.08,36.15,6,69.85,17.84,104.45,29.34C989.49,95,1113,134.29,1200,77.6V120Z' fill='%23375a40'/%3E%3C/svg%3E") no-repeat center top;
    background-size: 100% 100%;
    position: relative;
    margin-bottom: -1px;
}

/* Home Hero Section */
.as-hero {
    position: relative;
    background-color: var(--color-green);
    color: var(--color-white);
    padding: 120px 0 160px 0;
    overflow: hidden;
}

.as-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    z-index: 3;
}

.as-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(18, 36, 22, 0.95) 0%,
            rgba(18, 36, 22, 0.6) 50%,
            rgba(18, 36, 22, 0.9) 100%);
    z-index: 2;
}

.as-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.as-hero-tagline {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-crimson);
    background-color: var(--color-blush);
    display: inline-block;
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 24px;
}

.as-hero h1 {
    font-family: var(--font-serif);
    margin-bottom: 24px;
    font-weight: 400;
    color: #ffffff;
}

.as-hero-intro {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
}

.as-hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.as-hero-stat-item h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-white);
}

.as-hero-stat-item p {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.as-hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Home Preview Section */
.as-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.as-preview-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.as-preview-img-wrapper {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.as-preview-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.as-preview-img-wrapper:hover img {
    transform: scale(1.05);
}

.as-preview-info h4 {
    color: var(--color-crimson);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.as-preview-info h2 {
    margin-bottom: 24px;
}

.as-preview-info p {
    color: var(--color-text-muted);
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.8;
}

/* Featured Flowers & Products */
.as-section-header {
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.as-section-header h4 {
    /* color: var(--color-crimson); */
    color: #f48b8b;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.as-section-header h2 {
    margin-bottom: 16px;
}

.as-section-header p {
    color: var(--color-text-muted);
}

.as-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.as-category-card {
    background-color: var(--color-white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition);
    position: relative;
    height: 380px;
}

.as-category-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.as-category-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top,
            rgba(18, 36, 22, 0.95) 0%,
            rgba(18, 36, 22, 0.4) 50%,
            rgba(18, 36, 22, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: var(--color-white);
}

.as-category-card h3 {
    color: var(--color-white);
    margin-bottom: 8px;
}

.as-category-card p {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-bottom: 16px;
}

.as-category-card-link {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-crimson);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.as-category-card-link i {
    font-size: 11px;
}

.as-category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.as-category-card:hover .as-category-card-img {
    transform: scale(1.06);
}

/* Why Choose Us Cards */
.as-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.as-why-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    padding: 30px;
    border-radius: 4px;
    transition: var(--transition);
}

.as-why-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-blush);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-crimson);
    font-size: 24px;
    margin-bottom: 24px;
}

.as-why-card h3 {
    margin-bottom: 12px;
    font-size: 18px;
}

.as-why-card p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.as-why-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-crimson);
    box-shadow: var(--shadow-hover);
}

.as-why-card:hover .as-why-icon-wrapper {
    background-color: var(--color-crimson);
    color: var(--color-white);
}

/* Timeline Process (inspired by screenshot 3) */
.as-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.as-process-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    padding: 30px;
    border-radius: 4px;
    position: relative;
    transition: var(--transition);
}

.as-process-step {
    position: absolute;
    top: 24px;
    right: 30px;
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 700;
    color: rgba(138, 28, 20, 0.08);
    line-height: 1;
}

.as-process-icon {
    color: var(--color-crimson);
    font-size: 24px;
    margin-bottom: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-blush);
    display: flex;
    align-items: center;
    justify-content: center;
}

.as-process-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.as-process-card p {
    font-size: 14px;
    color: var(--color-text-muted);
}

.as-process-card:hover {
    border-color: var(--color-crimson);
    box-shadow: var(--shadow-hover);
}

.as-process-card:hover .as-process-step {
    color: rgba(138, 28, 20, 0.2);
}

/* Testimonials / Client Trust */
.as-testimonials {
    background-color: var(--color-blush);
}

.as-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.as-testimonial-card {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 4px;
    box-shadow: var(--shadow-subtle);
}

.as-stars {
    color: #d4af37;
    margin-bottom: 20px;
}

.as-testimonial-card p {
    font-style: italic;
    color: var(--color-text-dark);
    margin-bottom: 24px;
}

.as-buyer-info h4 {
    font-size: 16px;
    font-family: var(--font-primary);
    font-weight: 600;
}

.as-buyer-info span {
    font-size: 12px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Call To Action Banner */
.as-cta-banner {
    background-color: var(--color-crimson);
    color: var(--color-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.as-cta-banner-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.as-cta-banner h2 {
    color: var(--color-white);
    margin-bottom: 20px;
}

.as-cta-banner p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.as-cta-banner-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Flower Catalog Page Styles (inspired by screenshot 2) */
.as-catalog-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    margin-top: 40px;
}

.as-catalog-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.as-catalog-filter-title {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--color-crimson);
    padding-bottom: 8px;
}

.as-filter-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.as-filter-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    cursor: pointer;
    text-align: left;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    width: 100%;
}

.as-filter-btn:hover,
.as-filter-btn.active {
    background-color: var(--color-crimson);
    color: var(--color-white);
    border-color: var(--color-crimson);
}

.as-filter-count {
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--color-text-muted);
}

.as-filter-btn:hover .as-filter-count,
.as-filter-btn.active .as-filter-count {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.as-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.as-product-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border-radius: 15px;
}

.as-product-card-img-wrapper {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.as-product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.as-product-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--color-crimson);
    color: var(--color-white);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 8px;
    border-radius: 2px;
}

.as-product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.as-product-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.as-product-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-crimson);
    margin-bottom: 16px;
}

.as-product-meta-list {
    list-style: none;
    margin-bottom: 20px;
    border-top: 1px solid var(--color-border);
    padding-top: 16px;
}

.as-product-meta-list li {
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: var(--color-text-muted);
}

.as-product-meta-list li span:last-child {
    color: var(--color-text-dark);
    font-weight: 500;
}

.as-product-ctas {
    margin-top: auto;
}

.as-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-crimson);
}

.as-product-card:hover img {
    transform: scale(1.05);
}

/* Why Choose Us Page Details & Comparison */
.as-comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
    border-radius: 4px;
    box-shadow: var(--shadow-subtle);
}

.as-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--color-white);
    text-align: left;
    font-size: 15px;
}

.as-comparison-table th,
.as-comparison-table td {
    padding: 20px 24px;
    border-bottom: 1px solid var(--color-border);
}

.as-comparison-table th {
    font-family: var(--font-primary);
    font-weight: 600;
    background-color: var(--color-green);
    color: var(--color-white);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.as-comparison-table th:nth-child(2) {
    background-color: var(--color-crimson);
}

.as-comparison-table tr:last-child td {
    border-bottom: none;
}

.as-comparison-table td i.fa-check-circle {
    color: #25d366;
    font-size: 18px;
}

.as-comparison-table td i.fa-times-circle {
    color: #dc3545;
    font-size: 18px;
}

/* Gallery Lightbox */
.as-gallery-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.as-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.as-gallery-item {
    height: 280px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-subtle);
}

.as-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.as-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(27, 54, 34, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--color-white);
    padding: 20px;
    text-align: center;
}

.as-gallery-overlay i {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--color-crimson);
}

.as-gallery-overlay h4 {
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.as-gallery-overlay span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.as-gallery-item:hover img {
    transform: scale(1.06);
}

.as-gallery-item:hover .as-gallery-overlay {
    opacity: 1;
}

/* Lightbox Modal */
.as-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.as-lightbox.open {
    opacity: 1;
    pointer-events: auto;
}

.as-lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    position: relative;
}

.as-lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.as-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 28px;
    cursor: pointer;
}

.as-lightbox-caption {
    color: var(--color-white);
    text-align: center;
    margin-top: 15px;
    font-family: var(--font-serif);
    font-size: 18px;
}

/* Contact & Quote Pages Forms */
.as-form-layout {
    display: flex;
    /* grid-template-columns: 1.5fr 1fr; */
    gap: 60px;
    
    justify-content: center;
}

.as-form-container {
    background-color: #FAF0EC;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 40px;
    box-shadow: var(--shadow-subtle);
        max-width: 800px;
}

.as-form-group {
    margin-bottom: 24px;
}

.as-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.as-form-label {
    display: block;
   font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: #333;
}

.as-form-input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 14px;
    background-color: var(--color-bg-light);
    transition: var(--transition);
    color: var(--color-text-dark);
}

.as-form-input:focus {
    outline: none;
    border-color: var(--color-crimson);
    background-color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(138, 28, 20, 0.08);
}

.as-file-upload-wrapper {
    position: relative;
    border: 2px dashed var(--color-border);
    border-radius: 4px;
    padding: 24px;
    text-align: center;
    background-color: var(--color-bg-light);
    cursor: pointer;
    transition: var(--transition);
}

.as-file-upload-wrapper:hover {
    border-color: var(--color-crimson);
}

.as-file-upload-wrapper input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.as-file-upload-icon {
    font-size: 24px;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.as-file-upload-text {
    font-size: 13px;
    color: var(--color-text-muted);
}

.as-file-name-preview {
    margin-top: 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-crimson);
}

/* Sidebar Information Grid */
.as-sidebar-box {
    background-color: var(--color-blush);
    border-radius: 4px;
    padding: 40px;
    margin-bottom: 30px;
}

.as-sidebar-box h3 {
    margin-bottom: 20px;
    font-size: 20px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 12px;
}

.as-sidebar-info-list {
    list-style: none;
}

.as-sidebar-info-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.as-sidebar-info-list li:last-child {
    margin-bottom: 0;
}

.as-sidebar-info-list i {
    font-size: 20px;
    color: var(--color-crimson);
    margin-top: 2px;
}

.as-sidebar-info-list h4 {
    font-size: 15px;
    font-family: var(--font-primary);
    font-weight: 600;
    margin-bottom: 4px;
}

.as-sidebar-info-list p {
    font-size: 13px;
    color: var(--color-text-muted);
}

/* Form Response Alerts */
.as-form-response {
    padding: 16px;
    border-radius: 4px;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 500;
    display: none;
}

.as-form-response.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
    display: block;
}

.as-form-response.error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
    display: block;
}

/* Google Map Container */
.as-map-container {
    margin-top: 60px;
    border-radius: 4px;
    overflow: hidden;
    height: 450px;
    box-shadow: var(--shadow-subtle);
}

.as-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Styles */
@media (max-width: 1024px) {

    .as-category-grid,
    .as-why-grid,
    .as-process-grid,
    .as-gallery-grid,
    .as-testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .as-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .as-preview-grid,
    .as-form-layout,
    .as-catalog-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .as-catalog-layout {
        padding: 0 10px;
    }

    .as-catalog-sidebar {
        position: static;
    }

    .as-hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .as-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 580px) {

    .as-category-grid,
    .as-why-grid,
    .as-process-grid,
    .as-gallery-grid,
    .as-testimonial-grid,
    .as-product-grid,
    .as-footer-grid {
        grid-template-columns: 1fr;
    }

    .as-pre-header-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Pagination Styles */
.as-pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.as-pagination ul {
    display: inline-flex;
    list-style: none;
    gap: 6px;
    background: var(--color-white);
    padding: 8px 16px;
    border-radius: 30px;
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--color-border);
    margin: 0;
    align-items: center;
}

.as-pagination li {
    margin: 0;
    padding: 0;
    display: inline-flex;
}

.as-pagination a,
.as-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 50%;
    font-weight: 600;
    font-size: 13px;
    color: var(--color-text-muted);
    transition: var(--transition);
    text-decoration: none;
}

.as-pagination a:hover {
    background-color: var(--color-blush);
    color: var(--color-crimson);
}

.as-pagination span.current {
    background-color: var(--color-crimson);
    color: var(--color-white);
}

/* Cart-like Quote Request Styles */
.as-quote-cart-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.as-quote-cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    transition: var(--transition);
}

.as-quote-cart-item:hover {
    border-color: var(--color-crimson);
    background-color: #fff;
}

.as-quote-cart-item-details {
    display: flex;
    align-items: center;
    gap: 16px;
}

.as-quote-cart-item-img {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid var(--color-border);
}

.as-quote-cart-item-name {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-dark);
}

.as-quote-cart-item-price {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-top: 2px;
}

.as-quote-cart-remove-btn {
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    padding: 6px 12px;
    border-radius: 4px;
}

.as-quote-cart-remove-btn:hover {
    color: var(--color-crimson);
    background-color: rgba(138, 28, 20, 0.05);
}

/* Button Added State */
.btn-crimson.added {
    background-color: var(--color-green) !important;
    color: var(--color-white) !important;
    border-color: var(--color-green) !important;
    cursor: default;
}

.btn-crimson.added:hover {
    background-color: var(--color-green-dark) !important;
    box-shadow: none !important;
}

/* Trial Box Page Styles */
.as-trial-color-section {
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
}

.as-trial-color-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed var(--color-border);
}

.as-trial-color-row:last-child {
    border-bottom: none;
}

.as-trial-color-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
}

.as-color-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
}

.as-color-dot.red {
    background-color: #dc3545;
}

.as-color-dot.white {
    background-color: #ffffff;
    border: 1px solid #cccccc;
}

.as-color-dot.pink {
    background-color: #e28c8c;
}

.as-color-dot.purple {
    background-color: #6f42c1;
}

.as-color-dot.yellow {
    background-color: #ffc107;
}

.as-trial-bunch-input-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.as-trial-bunch-input {
    width: 80px;
    padding: 8px 12px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
}

.as-trial-bunch-input:focus {
    outline: none;
    border-color: var(--color-crimson);
}

/* Sticky Bottom Trial CTA Bar */
.as-sticky-trial-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    z-index: 98;
    padding: 12px 24px;
    border-top: 1px solid var(--color-border);
    transition: transform 0.3s ease;
}

.as-sticky-trial-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.as-sticky-trial-bar-text {
    font-size: 14px;
    color: var(--color-text-dark);
    font-weight: 500;
    margin: 0;
}

.as-sticky-trial-bar-text strong {
    color: var(--color-crimson);
}

.as-sticky-trial-bar-btn {
    padding: 10px 24px;
    font-size: 13px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .as-sticky-trial-bar {
        padding: 16px;
    }

    .as-sticky-trial-bar-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* Color Pills for Trial Form */
.as-color-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border: 1px solid var(--color-border);
    border-radius: 30px;
    background-color: var(--color-white);
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    user-select: none;
    min-width: 120px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.as-color-pill:hover {
    border-color: var(--color-crimson);
    background-color: var(--color-bg-light);
}

/* Color Pill Active States with specific matching color schemes */
.as-color-pill[data-color="red"].active {
    border-color: #dc3545;
    background-color: #faf0eb;
    color: #dc3545;
}

.as-color-pill[data-color="white"].active {
    border-color: #6c757d;
    background-color: #f8f9fa;
    color: #495057;
}

.as-color-pill[data-color="pink"].active {
    border-color: #e28c8c;
    background-color: #fff0f0;
    color: #c25c5c;
}

.as-color-pill[data-color="purple"].active {
    border-color: #6f42c1;
    background-color: #f3efff;
    color: #5a2b9a;
}

.as-color-pill[data-color="yellow"].active {
    border-color: #ffc107;
    background-color: #fffdf0;
    color: #856404;
}

/* Red Dot styling */
.as-color-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.as-color-dot.red {
    background-color: #dc3545;
}

.as-color-dot.white {
    background-color: #ffffff;
    border: 1px solid #cccccc;
}

.as-color-dot.pink {
    background-color: #e28c8c;
}

.as-color-dot.purple {
    background-color: #6f42c1;
}

.as-color-dot.yellow {
    background-color: #ffc107;
}

/* Product card description styling */
.as-product-description {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-top: 10px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.as-product-description p {
    margin-bottom: 6px;
}

.as-product-description p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   About Page Flexible Layouts styling
   ========================================================================== */

.as-about-header {
    padding: 150px 0;
    position: relative;
    background-size: cover;
    background-position: right center;
    display: flex;
    align-items: center;
}

.as-about-header-content {
    max-width: 600px;
    text-align: left;
}

.as-about-header-content h1 {
    color: var(--color-white) !important;
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    font-weight: 500;
    margin: 0 0 10px 0;
    line-height: 1.1;
}

.as-about-header-subtitle {
    font-family: var(--font-primary);
    font-size: 18px !important;
    color: var(--color-white);
    opacity: 0.9;
    margin-top: 5px !important;
    margin-bottom: 12px;
    font-weight: 400;
}

.as-about-header-tagline {
    font-family: var(--font-primary);
    font-size: 18px !important;
    font-style: italic;
    color: #f48b8b !important;
    /* soft rose color matching mockup */
    font-weight: 400;
    margin-top: 8px !important;
}

/* Who We Are Section styling */
.as-about-who-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.as-about-who {
    background-color: #fff;
}

.as-section-tagline {
    display: inline-block;
    color: #f48b8b;
    /* color: var(--color-crimson); */
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.as-about-who-content h2 {
    margin-bottom: 24px;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
}

.as-about-who-desc p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.8;
}

.as-about-who-image-wrapper {
    position: relative;
    padding-bottom: 40px;
}

.as-about-main-img {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.as-about-main-img img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.as-about-main-img:hover img {
    transform: scale(1.03);
}

.as-about-mission-box {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 440px;
    background-color: #ededeb;
    border-radius: 8px;
    padding: 20px 24px;
    display: flex;
    gap: 16px;
    align-items: center;
    z-index: 10;
    box-shadow: none;
}

.as-about-mission-icon {
    color: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.as-about-mission-text h3 {
    font-size: 18px;
    font-family: var(--font-serif);
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--color-text-dark);
}

.as-about-mission-text p {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.6;
    font-family: var(--font-primary);
}

/* Our Values Section styling */
.as-about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.as-about-value-col {
    text-align: center;
    padding: 10px;
}

.as-about-value-icon {
    font-size: 38px;
    color: #4e6557;
    /* color: var(--color-crimson); */
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.as-about-value-col:hover .as-about-value-icon {
    color: var(--color-green);
    transform: translateY(-5px);
}

.as-about-value-col h3 {
    font-size: 18px;
    font-family: var(--font-primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.as-about-value-col p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Our Process Section styling */
.as-about-process-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    gap: 20px;
}

.as-about-process-step {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.as-process-step-circle {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background-color: #4e6557;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    box-shadow: none;
    transition: var(--transition);
}

.as-about-process-step:hover .as-process-step-circle {
    transform: scale(1.08);
    background-color: #3b4c42;
}

.as-about-process-step h3 {
    font-size: 15px;
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text-dark);
}

.as-about-process-step p {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 200px;
    margin: 0 auto;
}

.as-process-arrow {
    align-self: flex-start;
    margin-top: 26px;
    color: #cccccc;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.as-process-arrow-svg {
    width: 20px;
    height: 20px;
    color: #bdbdbd;
}

/* More Than A Supplier Section styling */
.as-about-supplier-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.as-about-supplier-image {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.as-about-supplier-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.as-about-supplier-image:hover img {
    transform: scale(1.03);
}

.as-about-supplier-content h2 {
    margin-bottom: 24px;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
}

.as-about-supplier-desc p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.8;
}

/* Logos Section styling */
.as-about-logos-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.as-about-logo-item img {
    max-height: 80px;
    width: auto;
    opacity: 0.8;
    transition: var(--transition);
}

.as-about-logo-item:hover img {
    opacity: 1;
    filter: grayscale(0);
}

/* Fallback Logo Badges styling */
.as-about-logo-fallback-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    background-color: var(--color-white);
    border-radius: 4px;
    border: 1px solid var(--color-border);
    min-width: 150px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    user-select: none;
}

.as-about-logo-fallback-badge:hover {
    transform: translateY(-2px);
    border-color: #c25c5c;
    box-shadow: 0 6px 15px rgba(138, 28, 20, 0.05);
}

.as-about-logo-fallback-badge .badge-icon {
    font-size: 20px;
    margin-bottom: 8px;
}

.as-about-logo-fallback-badge .badge-title {
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-primary);
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.as-about-logo-fallback-badge .badge-subtitle {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: 2px;
}

/* Specific Badge Theme Colors */
.as-about-logo-fallback-badge.flori {
    border-left: 3px solid #28a745;
}

.as-about-logo-fallback-badge.flori .badge-icon,
.as-about-logo-fallback-badge.flori .badge-title {
    color: #28a745;
}

.as-about-logo-fallback-badge.basci {
    border-left: 3px solid #0056b3;
}

.as-about-logo-fallback-badge.basci .badge-icon,
.as-about-logo-fallback-badge.basci .badge-title {
    color: #0056b3;
}

.as-about-logo-fallback-badge.globali {
    border-left: 3px solid #1b3622;
}

.as-about-logo-fallback-badge.globali .badge-icon,
.as-about-logo-fallback-badge.globali .badge-title {
    color: #1b3622;
}

.as-about-logo-fallback-badge.raini {
    border-left: 3px solid #28a745;
}

.as-about-logo-fallback-badge.raini .badge-icon,
.as-about-logo-fallback-badge.raini .badge-title {
    color: #28a745;
}

.as-about-logo-fallback-badge.sgsi {
    border-left: 3px solid #ff8c00;
}

.as-about-logo-fallback-badge.sgsi .badge-icon,
.as-about-logo-fallback-badge.sgsi .badge-title {
    color: #ff8c00;
}

/* Responsive Media Queries */
@media (max-width: 991px) {

    .as-about-who-grid,
    .as-about-supplier-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .as-about-who-image-wrapper {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }

    .as-about-supplier-image {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }

    .as-about-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .as-about-process-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px 10px;
    }

    .as-about-process-step {
        flex: none;
        width: calc(33.33% - 10px);
    }

    .as-process-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .as-about-values-grid {
        grid-template-columns: 1fr;
    }

    .as-about-process-step {
        width: calc(50% - 10px);
    }

    .as-about-mission-box {
        left: 20px;
        right: 20px;
        bottom: -20px;
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .as-about-process-step {
        width: 100%;
    }
}

/* ==========================================================================
   Logistics Page Layouts Styling
   ========================================================================== */

.as-logistics-header {
        padding-top: 50px;
    color: var(--color-white);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 750px;
    background-position: center;
}

.as-logistics-header-content {
    max-width: 650px;
    text-align: left;
    position: relative;
    z-index: 100;
}

.as-logistics-header-content h1 {
    color: var(--color-white) !important;
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 6vw, 3.5rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 20px;
}

.as-logistics-header-title-text span{
    color: #333;
}
.as-logistics-header-title-text em,
.as-logistics-header-title-text i {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    color: #e2a09c; /* Soft Rose-Pink */
    font-weight: 400;
    display: block;
    margin-top: 5px;
}
.as-logistics-header-btn-wrap a {
    cursor: pointer;
}

.as-logistics-header-subtitle {
    display: block;
    color: #d27e7e !important;
    /* soft rose color */
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    margin-top: 5px;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
}

.as-logistics-header-desc {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 30px;
    max-width: 550px;
    color: #333;
    font-weight: 400;
}
.as-logistics-features-grid {
    display: flex;
    justify-content: center; /* Centers all items horizontally */
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap; /* Allows safe wrapping on smaller screens */
    width: 100%;
}
.as-logistics-feature-col {
    flex: 1 1 180px; /* Allows cards to size dynamically */
    max-width: 200px; /* Keeps them matching the screenshot width */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}
.as-logistics-feature-arrow {
    position: absolute;
    right: -10px;
    top: 25px; /* Centers the arrow relative to the 70px icon height */
    color: #e8a8a2;
    font-size: 18px;
    transform: translateX(50%);
    z-index: 2;
}
@media (min-width: 992px) {
    /* .as-logistics-feature-col:not(:last-child)::after {
        content: "";
        position: absolute;
        right: -15px;
      
        top: 15%;
        height: 70%;
        width: 1px;
        background-color: var(--color-border);
    } */
}

.as-logistics-feature-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid rgba(210, 126, 126, 0.4);
    /* soft pink border */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d27e7e;
    font-size: 20px;
    margin-bottom: 15px;
    transition: var(--transition);
    background-color: var(--color-white);
}
/* .as-why-choose-col:hover .as-why-choose-icon-wrapper, */
.as-logistics-feature-col:hover .as-logistics-feature-icon-wrapper {
    transform: scale(1.1);
    background-color: #d27e7e;
    color: var(--color-white);
    border-color: #d27e7e;
}

.as-logistics-feature-icon-wrapper img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.as-logistics-feature-col h3 {
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-primary);
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.as-logistics-feature-col p {
    font-size: 12px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Logistics Process Divider */
.as-logistics-process-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.as-logistics-process-divider .line {
    width: 60px;
    height: 1px;
    background-color: var(--color-border);
}

.as-logistics-process-divider .diamond {
    color: #d27e7e;
    font-size: 10px;
}

/* Process steps grid */
.as-logistics-process-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.as-logistics-process-step {
    flex: 1;
    text-align: center;
}

.as-logistics-process-image-wrap {
    position: relative;
    width: 100%;
    max-width: 140px;
    margin: 0 auto 25px auto;
    aspect-ratio: 1.15;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.as-logistics-process-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.as-logistics-process-number {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 28px;
    height: 28px;
    background-color: var(--color-green);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--color-white);
}

.as-logistics-process-step h3 {
    font-size: 14px;
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.as-logistics-process-step p {
    font-size: 12px;
    color: var(--color-text-muted);
    line-height: 1.5;
    max-width: 160px;
    margin: 0 auto;
}

.as-logistics-process-arrow {
    align-self: flex-start;
    margin-top: 55px;
    color: #d8d2ce;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Capabilities & Map Grid */
.as-logistics-capabilities-grid {
    display: grid;
    grid-template-columns: 3.5fr 6.5fr;
    gap: 60px;
    align-items: center;
}

.as-logistics-cap-content h2 {
    margin-bottom: 25px;
    color: var(--color-green);
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.6rem);
}

.as-logistics-bullets-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.as-logistics-bullets-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.as-bullet-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: rgba(78, 101, 87, 0.1);
    color: #4e6557;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.as-bullet-text {
    font-size: 14px;
    color: var(--color-text-dark);
    font-weight: 500;
}

.as-logistics-highlight-box {
    background-color: var(--color-green);
    color: var(--color-white);
    border-radius: 8px;
    padding: 20px 24px;
    display: flex;
    gap: 16px;
    align-items: center;
}

.as-highlight-box-icon {
    color: #d27e7e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.as-logistics-highlight-box p {
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

.as-logistics-map-wrap {
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
}

.as-logistics-map-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* CTA Banner layout */
.as-logistics-cta {
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: var(--color-white);
}

.as-logistics-cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.as-logistics-cta-left h2 {
    color: var(--color-white);
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 500;
    line-height: 1.25;
}

.as-logistics-cta-left h2 span {
    font-style: italic;
    font-family: var(--font-serif);
}

.as-logistics-cta-right {
    text-align: right;
    flex-shrink: 0;
}

.as-logistics-cta-subtext {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 10px;
    color: var(--color-white);
}
/* Why Buyers Choose Rosie Farms Layout */
.as-why-choose {
    padding: 50px 0 ;
    background-color: #ffffff;
}

.as-why-choose-header {
    margin-bottom: 50px;
}

.as-why-choose-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 42px;
    font-weight: 500;
    color: #1b3622; /* Dark green */
    margin: 0;
}

.as-why-choose-divider {
    width: 35px;
    height: 2px;
    background-color: #e2a09c; /* Soft rose-pink divider */
    margin: 15px auto 0 auto;
}

.as-why-choose-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: start;
}

.as-why-choose-col {
    text-align: center;
    padding: 0 25px;
    position: relative;
}

/* Thin vertical borders separating each of the 5 columns */
.as-why-choose-col:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(226, 160, 156, 0.35); /* Soft rose-pink border lines */
}

.as-why-choose-icon-wrapper {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.as-why-choose-icon-wrapper i {
    font-size: 36px;
    color: #e0807b ; /* Dark green icon */
}

.as-why-choose-icon-wrapper img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

.as-why-choose-col h3 {
    font-family: var(--font-headings);
  
    font-weight: 700;
    color: #1b3622;
    margin-top: 0;
    margin-bottom: 12px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.as-why-choose-col p {
   
    line-height: 1.6;
    color: #556b62;
    margin: 0;
}

/* Responsive Overrides for Smaller Screens */
@media (max-width: 991px) {
    .as-why-choose-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 0;
    }
    .as-why-choose-col:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .as-why-choose-grid {
        grid-template-columns: 1fr;
        gap: 35px 0;
    }
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .as-logistics-features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .as-logistics-process-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .as-logistics-process-step {
        flex: none;
        width: calc(33.33% - 15px);
    }

    .as-logistics-process-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .as-logistics-capabilities-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .as-logistics-cta-flex {
        flex-direction: column;
        text-align: center;
    }

    .as-logistics-cta-right {
        text-align: center;
    }

    .as-logistics-process-step {
        width: calc(50% - 15px);
    }
}

@media (max-width: 575px) {
    .as-logistics-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .as-logistics-process-step {
        width: 100%;
    }
}

/* ==========================================================================
   Products Page Layouts Styling
   ========================================================================== */

.as-products-page-wrapper .as-section-tagline,
.as-quality-page-wrapper .as-section-tagline {
    color: #f48b8b !important;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 13px;
    margin-bottom: 10px;
    text-transform: uppercase;
    display: block;
}

.as-products-header {
    position: relative;
    padding: 140px 0;
    background-size: cover;
    background-position: center;
    color: var(--color-white);
}

.as-products-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 1;
}

.as-products-header .container {
    position: relative;
    z-index: 2;
}

.as-products-header-content {
    max-width: 600px;
    position: relative;
    z-index: 100;
}

.as-products-header-content h1 {
    color: var(--color-white) !important;
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 500;
    margin-bottom: 20px;
}

.as-products-header-desc {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 300px;
    color: var(--color-white);
}

.as-products-features-bar {
    background-color: var(--color-white);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 45px 0;
}

.as-products-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.as-products-feature-col {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

@media (min-width: 992px) {
    .as-products-feature-col:not(:last-child)::after {
        content: "";
        position: absolute;
        right: -15px;
        top: 15%;
        height: 70%;
        width: 1px;
        background-color: var(--color-border);
    }
}

.as-products-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(210, 126, 126, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d27e7e;
    margin-bottom: 15px;
    background-color: var(--color-white);
    transition: var(--transition);
}

.as-products-feature-col:hover .as-products-feature-icon {
    transform: scale(1.1);
    background-color: #d27e7e;
    color: var(--color-white);
    border-color: #d27e7e;
}

.as-products-feature-icon svg {
    width: 22px;
    height: 22px;
}

.as-products-feature-col h3 {
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-primary);
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.as-products-feature-col p {
    font-size: 12px;
    color: var(--color-text-muted);
    max-width: 220px;
    line-height: 1.5;
}
/* ==========================================================================
   Flower Catalog Section & Grid Styling (4-Column Layout)
   ========================================================================== */
.as-products-categories {
    background-color: #ffffff;
    padding: 80px 0;
}

/* Header & Cursive Text */
.as-products-categories-header {
    margin-bottom: 50px;
}

.as-products-categories-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
       font-size: 54px;      /* was 42px */
    font-weight: 600;    
    color: #1b3622; /* Dark green */
    line-height: 1.2;
    margin-top: 15px;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.as-products-categories-header .cursive-catalog {
    
    font-style: normal;
    font-family: 'Alex Brush', cursive;
    font-size: 66px;      /* was 56px */
    color: #d97d75;
    font-weight: 400;
}

.as-section-tagline-desc {
   font-size: 22px;
    color: #000000;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.as-ornament-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.as-ornament-divider .line {
    width: 35px;
    height: 1px;
    background-color: #e2a09c;
}

.as-ornament-divider .leaf-icon {
    color: #e2a09c;
    font-size: 14px;
}

/* Filter & Sorting Bar */
.as-catalog-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(16, 48, 38, 0.08);
}

.as-filter-results-count {
    font-size: 15px;
    color: #556b62;
    font-weight: 500;
}

.as-filter-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Dropdown Select Styling */
.as-sort-select {
    padding: 8px 30px 8px 15px;
    border: 1px solid rgba(16, 48, 38, 0.12);
    border-radius: 6px;
    font-size: 14px;
    color: #1b3622;
    background-color: #ffffff;
    cursor: pointer;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%231b3622' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 18px;
}

/* Grid/List layout toggle buttons */
.as-layout-toggle-buttons {
    display: flex;
    gap: 5px;
}

.as-layout-toggle-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(16, 48, 38, 0.12);
    border-radius: 6px;
    background-color: #ffffff;
    color: #556b62;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.as-layout-toggle-btn.active, 
.as-layout-toggle-btn:hover {
    background-color: #faf2ee;
    color: #d97d75;
    border-color: #e8a8a2;
}

/* 4-Column Product Grid */
.as-products-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    transition: all 0.3s ease;
}

/* Clean Cards - Name and Image Only */
.as-products-category-card {
    background: #ffffff;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(16, 48, 38, 0.04);
    border: 1px solid rgba(16, 48, 38, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.as-products-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(16, 48, 38, 0.08);
    border-color: rgba(226, 160, 156, 0.25);
}

.as-products-cat-img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: #faf2ee;
}

.as-products-cat-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.as-products-category-card:hover .as-products-cat-img-wrap img {
    transform: scale(1.05);
}
/* Card Category Subtitle & Pink Details Line */
.as-products-cat-subtitle {
    display: block;
    color: #889a91;
    margin-top: 5px;
    margin-bottom: 12px;
    font-weight: 500;
}

.as-products-cat-card-line {
    width: 25px;
    height: 1px;
    background-color: #e2a09c; /* Pink line matching screenshot */
    margin: 0 auto 12px auto;
    transition: width 0.3s ease;
}

.as-products-category-card:hover .as-products-cat-card-line {
    width: 45px;
}

/* Details Link style */
.as-products-cat-link {
    font-size: 13px;
    font-weight: 700;
    color: #e2a09c; /* Rose pink details link */
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.as-products-cat-link:hover {
    color: #1b3622;
}
/* Glassmorphic gallery badge style on product card image */
.as-gallery-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background-color: rgba(28, 28, 28, 0.75);
    color: var(--color-white);
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
    transition: var(--transition);
}

/* Hover effect on card - transforms badge color to brand green */
.as-products-category-card:hover .as-gallery-badge {
    background-color: var(--color-green);
    transform: scale(1.05);
}

/* Link wraps image cleanly */
.as-products-cat-card-image-link {
    display: block;
    width: 100%;
}

.as-products-cat-body {
    padding: 20px;
    text-align: center;
}

.as-products-cat-body h3 {
    font-family: var(--font-headings);
    font-weight: 700;
    color: #1b3622;
    margin: 0;
}

/* Dynamic List View Styles */
.as-catalog-list-view {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
}
/* Fix List View Flex Alignment & Text Wrapping */
.as-catalog-list-view .as-products-category-card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

/* Ensure the image link container has a fixed width in list view */
.as-catalog-list-view .as-products-cat-card-image-link {
    width: 180px;
    flex-shrink: 0;
}

.as-catalog-list-view .as-products-cat-img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
}

/* Align text body to the left in list view */
.as-catalog-list-view .as-products-cat-body {
    flex-grow: 1;
    text-align: left;
    padding: 20px 35px;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Aligns title, subtitle, line, and link to the left */
}

/* Align the decorative line to the left in list view */
.as-catalog-list-view .as-products-cat-card-line {
    margin: 0 0 12px 0; /* Left align instead of center auto */
}

/* Prevent the Details link arrow from wrapping to the next line */
.as-products-cat-link {
    font-size: 13px;
    font-weight: 700;
    color: #e2a09c; /* Rose pink details link */
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap; /* Prevents "→" from wrapping to the next line */
    display: inline-block;
}


/* Responsive Grid Adapters */
@media (max-width: 1024px) {
    .as-products-categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .as-products-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .as-products-categories-grid {
        grid-template-columns: 1fr;
    }
    .as-catalog-list-view .as-products-category-card {
        flex-direction: column;
        align-items: stretch;
    }
    .as-catalog-list-view .as-products-cat-img-wrap {
        width: 100%;
    }
    .as-catalog-filter-bar{
        flex-direction: column;
    }
}

.as-products-packaging {
    padding: 50px 0;
}

.as-products-packaging-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.as-products-pack-content h2 {
    color: var(--color-green);
    font-family: var(--font-serif);
    margin-top: 10px;
    margin-bottom: 20px;
}

.as-products-pack-body {
    font-size: 15px;
    color: var(--color-text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

.as-products-pack-bullets {
    list-style: none;
    padding: 0;
}

.as-products-pack-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-dark);
}

.as-products-pack-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.as-products-pack-image img {
    width: 100%;
    height: auto;
    display: block;
}

.as-products-cta {
    background-color: var(--color-green);
    padding: 60px 0;
    color: var(--color-white);
}

.as-products-cta-inner {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}

.as-products-cta-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 20px;
}

.as-products-cta-icon img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 50%;
}

.as-products-cta-icon i {
    font-size: 32px;
    color: #dd968f;
}
.as-products-cta-text {
    flex-grow: 1;
}

.as-products-cta-text h3 {
    color: var(--color-white) !important;
    font-family: var(--font-serif);
    font-size: 24px;
    margin-bottom: 8px;
}

.as-products-cta-text p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.as-products-cta-action {
    flex-shrink: 0;
}

.as-products-cta-btn {
    background-color: #d27e7e !important;
    color: var(--color-white) !important;
    border: none !important;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
}

.as-products-cta-btn:hover {
    background-color: #c06c6c !important;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .as-products-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .as-products-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .as-products-packaging-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .as-products-cta-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .as-products-features-grid {
        grid-template-columns: 1fr;
    }

    .as-products-categories-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Quality Page Layouts Styling
   ========================================================================== */

.as-quality-header {
    position: relative;
    padding: 140px 0;
    background-size: cover;
    background-position: center;
    color: var(--color-white);
}

.as-quality-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.as-quality-header .container {
    position: relative;
    z-index: 2;
}

.as-quality-header-content {
    max-width: 600px;
    position: relative;
    z-index: 100;
}

.as-quality-header-content h1 {
    color: var(--color-white) !important;
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.2;
}

.as-quality-header-title-text {
    display: block;
}

.as-quality-header-subtitle {
    display: block;
    color: #f48b8b !important;
    font-style: italic;
    font-family: var(--font-serif);
    font-weight: 400;
}

.as-quality-header-desc {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    color: var(--color-white);
}

.as-quality-promise {
    padding: 60px 0 20px 0;
}

.as-quality-promise-header {
    text-align: center;
    margin-bottom: 50px;
}

.as-quality-promise-header h2 {
    color: var(--color-green);
    font-family: var(--font-serif);
    margin-top: 10px;
    margin-bottom: 15px;
}

.as-quality-promise-intro {
    max-width: 650px;
    margin: 20px auto 0;
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.as-quality-features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.as-quality-feature-col {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

@media (min-width: 992px) {
    .as-quality-feature-col:not(:last-child)::after {
        content: "";
        position: absolute;
        right: -15px;
        top: 15%;
        height: 70%;
        width: 1px;
        background-color: var(--color-border);
    }
}

.as-quality-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(210, 126, 126, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d27e7e;
    margin-bottom: 15px;
    background-color: var(--color-white);
    transition: var(--transition);
}

.as-quality-feature-icon i {
    font-size: 20px;
}

.as-quality-feature-col:hover .as-quality-feature-icon {
    transform: scale(1.1);
    background-color: #d27e7e;
    color: var(--color-white);
    border-color: #d27e7e;
}

.as-quality-feature-col h3 {
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-primary);
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.as-quality-feature-col p {
    font-size: 12px;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin: 0;
}

.as-quality-process {
    padding: 20px 0 40px 0;
}

.as-quality-process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.as-quality-process-left {
    /* background-color: var(--color-blush); */
    background-color: #f5f4f3;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
}

.as-quality-process-left h2 {
    color: var(--color-green);
    font-family: var(--font-serif);
    margin-top: 10px;
    margin-bottom: 30px;
}

.as-quality-process-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.as-quality-process-steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.as-quality-process-steps-list li:last-child {
    margin-bottom: 0;
}

.as-process-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--color-green);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.as-process-step-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 4px;
    font-family: var(--font-primary);
}

.as-process-step-text p {
    font-size: 12px;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin: 0;
}

.as-quality-images-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.as-quality-img-card {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background-color: #f5f5f5;
    box-shadow: var(--shadow-subtle);
}

.as-quality-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.as-quality-img-card:hover img {
    transform: scale(1.05);
}

.as-quality-stats {
    padding: 30px 0 50px 0;
}

.as-quality-stats-header {
    text-align: center;
    margin-bottom: 30px;
}

.as-quality-stats-header h2 {
    color: var(--color-green);
    font-family: var(--font-serif);
}

.as-quality-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.as-quality-stat-col {
    position: relative;
    padding: 20px 0;
    width: 100%;
}

@media (min-width: 992px) {
    .as-quality-stat-col:not(:last-child)::after {
        content: "";
        position: absolute;
        right: -15px;
        top: 15%;
        height: 70%;
        width: 1px;
        background-color: var(--color-border);
    }
}

.as-quality-stat-inner-wrap {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    max-width: 250px;
    margin: 0 auto;
}

.as-quality-stat-icon {
    color: #f48b8b;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}

.as-quality-stat-icon svg {
    width: 44px;
    height: 44px;
}

.as-quality-stat-icon i {
    font-size: 36px;
    line-height: 1;
}

.as-quality-stat-number {
    font-size: 44px;
    font-weight: 500;
    color: var(--color-green);
    line-height: 1;
    margin-bottom: 5px;
    font-family: var(--font-serif);
}

.as-quality-stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-green);
    margin-bottom: 2px;
    line-height: 1.3;
}

.as-quality-stat-desc {
    font-size: 11px;
    color: #777;
    line-height: 1.3;
}

.as-quality-cta {
    background-color: var(--color-green);
    padding: 60px 0;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.as-quality-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(27, 54, 34, 0.85);
    z-index: 1;
}

.as-quality-cta .container {
    position: relative;
    z-index: 2;
}

.as-quality-cta-inner {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}

.as-quality-cta-icon {
    color: var(--color-white);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.as-quality-cta-text {
    flex-grow: 1;
}

.as-quality-cta-text h3 {
    color: var(--color-white) !important;
    font-family: var(--font-serif);
    font-size: 24px;
    margin-bottom: 8px;
}

.as-quality-cta-text h3 span.as-highlight-pink {
    color: #f48b8b !important;
    font-style: italic;
    font-family: var(--font-serif);
}

.as-quality-cta-text p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.as-quality-cta-action {
    flex-shrink: 0;
}

.as-quality-cta-btn {
    background-color: #d27e7e !important;
    color: var(--color-white) !important;
    border: none !important;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
}

.as-quality-cta-btn:hover {
    background-color: #c06c6c !important;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .as-quality-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .as-quality-process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .as-quality-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .as-quality-stat-col::after {
        display: none;
    }

    .as-quality-cta-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .as-quality-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .as-quality-features-grid {
        grid-template-columns: 1fr;
    }

    .as-quality-stats-grid {
        grid-template-columns: 1fr;
    }

    .as-quality-images-2x2 {
        grid-template-columns: 1fr;
    }
}

/* Header & Footer and Global New styles */
:root {
    --color-primary: #103026;
    /* Brand Dark Forest Green */
    --color-accent: #e3a89d;
    /* Brand Dusty Rose */
    --color-accent-hover: #d48d7f;
    /* Darker Dusty Rose */
    --color-text-dark: #333333;
    --color-text-muted: #666666;
    --color-text-light: #f7f7f7;
    --font-headings:
        "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body:
        "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-cursive: "Playfair Display", Georgia, serif;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
    margin: 0;
    padding-top: 100px;
    /* Offset for sticky header */
}

/* ==========================================================================
   Lightweight Custom Layout Grid & Spacing System
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;

}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

[class*="col-"] {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

/* Gaps */
.g-2 {
    margin-left: -8px;
    margin-right: -8px;
}

.g-2>[class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
}

.g-4 {
    margin-left: -16px;
    margin-right: -16px;
}

.g-4>[class*="col-"] {
    padding-left: 16px;
    padding-right: 16px;
    margin-bottom: 24px;
}

/* Core columns */
.col-6 {
    width: 50%;
}

.col-12 {
    width: 100%;
}

@media (min-width: 768px) {
    .col-md-4 {
        width: 33.333333%;
    }

    .col-md-5 {
        width: 41.666667%;
    }

    .col-md-6 {
        width: 50%;
    }

    .col-md-7 {
        width: 58.333333%;
    }
}

@media (min-width: 992px) {
    .col-lg-2 {
        width: 16.666667%;
    }

    .col-lg-3 {
        width: 25%;
    }

    .col-lg-4 {
        width: 33.333333%;
    }

    .col-lg-6 {
        width: 50%;
    }

    .col-lg-8 {
        width: 66.666667%;
    }
}

/* Flexbox utilities */
.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.align-items-center {
    align-items: center;
}

.align-items-start {
    align-items: flex-start;
}

.align-items-end {
    align-items: flex-end;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-end {
    justify-content: flex-end;
}

/* Display utilities */
.d-none {
    display: none;
}

@media (min-width: 992px) {
    .d-lg-inline-block {
        display: inline-block;
    }

    .d-lg-none {
        display: none;
    }

    .d-lg-flex {
        display: flex;
    }
}

/* Spacing helpers */
.gap-2 {
    gap: 8px;
}

.gap-3 {
    gap: 16px;
}

.gap-4 {
    gap: 24px;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-2 {
    margin-bottom: 8px;
}

.mb-3 {
    margin-bottom: 16px;
}

.mb-4 {
    margin-bottom: 24px;
}

.mb-5 {
    margin-bottom: 32px;
}

.mt-2 {
    margin-top: 8px;
}

.mt-4 {
    margin-top: 24px;
}

.py-2 {
    padding-top: 8px;
    padding-bottom: 8px;
}

.py-3 {
    padding-top: 16px;
    padding-bottom: 16px;
}

.py-5 {
    padding-top: 48px;
    padding-bottom: 48px;
}

.px-3 {
    padding-left: 16px;
    padding-right: 16px;
}

.px-4 {
    padding-left: 24px;
    padding-right: 24px;
}

.pt-5 {
    padding-top: 48px;
}

.pb-5 {
    padding-bottom: 48px;
}

.pb-2 {
    padding-bottom: 8px;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.ms-auto {
    margin-left: auto;
}

.me-auto {
    margin-right: auto;
}

/* Typography & Visual Styles */
.font-heading {
    font-family: var(--font-headings);
}

.font-cursive {
    font-family: var(--font-cursive);
}

.text-accent {
    color: var(--color-accent) !important;
}

.bg-accent {
    background-color: var(--color-accent) !important;
}

.fs-14 {
    font-size: 14px;
}

.fs-15 {
    font-size: 15px;
}

.transition-all {
    transition: var(--transition-smooth);
}

.text-center {
    text-align: center;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-white {
    color: #ffffff;
}

.text-muted {
    color: var(--color-text-muted);
}

.lh-base {
    line-height: 1.5;
}

.opacity-80 {
    opacity: 0.8;
}

.opacity-90 {
    opacity: 0.9;
}

.shadow-sm {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.rounded-3 {
    border-radius: 8px;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
}

.list-unstyled {
    list-style: none;
    padding-left: 0;
}

.list-inline {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
}

.list-inline-item {
    margin-right: 16px;
}

/* Buttons */
.btn-accent {
    background-color: var(--color-accent);
    color: var(--color-primary);
    font-family: var(--font-headings);
    font-weight: 600;
    border: 1px solid var(--color-accent);
    transition: var(--transition-smooth);
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-accent:hover {
    background-color: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    color: #ffffff;
}

.btn-quote {
    background-color: #122416 !important; /* Dark Green */
    color: #ffffff !important;
    font-family: var(--font-headings);
    font-weight: 500;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: 8px !important; /* Rounded corners */
    border: 1px solid #c49c5e !important; /* Thin gold border */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12) !important;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    display: inline-block;
    text-align: center;
}
.btn-quote:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
    box-shadow: 0 6px 15px rgba(227, 168, 157, 0.2);
    transform: translateY(-1px);
}

.btn-primary-dark {
    background-color: var(--color-primary);
    color: #ffffff;
    border: 1px solid var(--color-primary);
    padding: 12px 24px;
    font-family: var(--font-headings);
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-block;
}

.btn-primary-dark:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(227, 168, 157, 0.2);
}

.btn-outline-primary-dark {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    padding: 11px 22px;
    font-family: var(--font-headings);
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-block;
}

.btn-outline-primary-dark:hover {
    background-color: var(--color-primary);
    color: #ffffff;
}

/* Screen readers */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* ==========================================================================
   Header & Navigation (Custom CSS Flexbox)
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    padding-bottom: 15px;
    transition: var(--transition-smooth);
}

/* Sticky scroll class handled by JS */
.header-scrolled {
    box-shadow: 0 4px 20px rgba(16, 48, 38, 0.08);
}

.header-scrolled .header-container {
    padding-top: 10px;
    padding-bottom: 10px;
}

.header-scrolled .site-logo {
    max-height: 60px;
}

.site-logo {
      border-right: 1px solid #f5e3e0;
     max-height: 95px; 
    width: auto;
    transition: var(--transition-smooth);
    display: block;
}

.header-nav {
    display: block;
}

.header-menu {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-menu a {
    font-family: var(--font-headings);
    font-weight: 500;
    font-size: 14px;
    color: var(--color-primary);
    text-decoration: none;
    opacity: 0.85;
    transition: var(--transition-smooth);
    padding: 5px 0;
    position: relative;
}

.header-menu a:hover,
.header-menu .active a {
    opacity: 1;
    color: var(--color-primary);
}

.header-menu a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-accent);
    transform: scaleX(0);
    transition: var(--transition-smooth);
    transform-origin: center;
}

.header-menu a:hover::after,
.header-menu .active a::after {
    transform: scaleX(1);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Mobile Nav Toggle Button */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-nav-toggle .bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    border-radius: 1px;
    transition: var(--transition-smooth);
}

.mobile-nav-toggle.is-active .top-bar {
    transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle.is-active .middle-bar {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-nav-toggle.is-active .bottom-bar {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-menu-drawer {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    z-index: 999;
}

.mobile-menu-drawer.is-open {
    display: block;
}

.mobile-menu-list {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-menu-item {
    margin-bottom: 15px;
}

.mobile-menu-item a {
    display: block;
    font-family: var(--font-headings);
    font-weight: 500;
    font-size: 16px;
    color: var(--color-primary);
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.mobile-cta-wrapper {
    padding: 10px 20px 30px;
}

.mobile-btn-quote {
    width: 100%;
    padding: 12px;
    font-size: 14px;
}

@media (max-width: 991.98px) {
    .header-nav {
        display: none;
    }

    .header-right .btn-quote {
        display: none;
    }

    .mobile-nav-toggle {
        display: flex;
    }
}

/* ==========================================================================
   Footer (Custom Grid & Styling)
   ========================================================================== */
.site-footer {
    background-color: #faf2ee;
    color: #4a5a54;
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
    padding-top: 60px;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
            var(--color-accent) 0%,
            var(--color-accent-hover) 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1.1fr 1.6fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-column-brand {
    text-align: center;
}

.footer-column-title-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #e8a8a2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: #dd968f;
    font-size: 16px;
    margin-left: 0;
    margin-right: auto;
}

.footer-column-title {
    color: #000000;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 10px !important;
}

.footer-title-line {
    width: 35px;
    height: 2px;
    background-color: #dd968f;
    margin: 0 0 25px 0;
}

.footer-logo-link {
    display: block;
    margin-bottom: 20px;
    text-align: left;
}

.footer-logo-link img {
    max-height: 100px;
    width: auto;
    display: inline-block;
}

.footer-brand-separator {
    width: 35px;
    height: 2px;
    background-color: #dd968f;
    margin: 10px auto 20px auto;
}

.footer-about-text {
        font-size: 18.5px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #000000;
    font-weight: 600;
    text-align: left;
}

.footer-cursive-text {
    font-style: italic;
    font-size: 28px;
    color: #d97d75;
    font-weight: 600;
    display: block;
    margin-top: 8px;
    line-height: 1.2;
}

.footer-social-links {
    display: flex;
    gap: 10px;
}

.social-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--color-primary);
    color: #ffffff;
    font-size: 14px;
    background-color: var(--color-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-icon-btn:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(227, 168, 157, 0.2);
}

.footer-nav-links {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-nav-links li {
    margin-bottom: 12px;
}

.footer-nav-links a {
    color: rgb(0 0 0);
    text-decoration: none;
    font-size: 18px;
    transition: var(--transition-smooth);
    display: inline-block;
    font-weight: 600;
}

.footer-nav-links a::before {
    content: ">";
    color: #dd968f;
    font-weight: bold;
    margin-right: 8px;
    display: inline-block;
    font-size: 13px;
    transition: transform 0.2s ease;
}

.footer-nav-links a:hover {
    color: var(--color-accent);
    transform: translateX(4px);
}

.footer-nav-links a:hover::before {
    transform: scale(1.1);
}

.footer-contact-info {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    font-size: 15px;
}

.footer-contact-item .footer-info-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #f9e5e2;
    color: #d97d75;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    margin-top: 0;
    font-size: 14px;
    flex-shrink: 0;
}

.footer-contact-item .label {
    display: block;
    color: #000000;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.footer-contact-item .value {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 16px;
    font-weight: 500;
}

.footer-contact-item a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-contact-item a:hover {
    color: var(--color-accent);
}

/* Footer Quote Card & CF7 styles */
.footer-quote-card {
    background-color: #fff6f6bd;
    padding: 30px;
    border: 1px solid rgba(16, 48, 38, 0.05);
    box-shadow: 0 10px 30px rgba(16, 48, 38, 0.05);
}

.footer-quote-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.footer-quote-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #e8a8a2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dd968f;
    font-size: 16px;
    flex-shrink: 0;
}

.footer-quote-header .footer-column-title {
    margin: 0 !important;
}

.footer-form-wrapper form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-form-wrapper form .form-row-full {
    margin-bottom: 15px;
}

.footer-form-wrapper form input[type="text"],
.footer-form-wrapper form input[type="email"],
.footer-form-wrapper form input[type="tel"],
.footer-form-wrapper form textarea,
.footer-form-wrapper .wpcf7-form-control:not(.wpcf7-submit) {
    width: 100%;
    background-color: #ffffff !important;
    border: 1px solid #e2e8e5 !important;
    border-radius: 6px !important;
    color: var(--color-primary) !important;
    font-size: 14px;
    padding: 12px 14px;
    transition: var(--transition-smooth);
    box-shadow: none !important;
    outline: none;
    font-family: var(--font-body);
}

.footer-form-wrapper form input[type="text"]::placeholder,
.footer-form-wrapper form input[type="text"]::-moz-placeholder,
.footer-form-wrapper form input[type="email"]::placeholder,
.footer-form-wrapper form input[type="email"]::-moz-placeholder,
.footer-form-wrapper form input[type="tel"]::placeholder,
.footer-form-wrapper form input[type="tel"]::-moz-placeholder,
.footer-form-wrapper form textarea::placeholder,
.footer-form-wrapper form textarea::-moz-placeholder{
    color: #333 !important;
    opacity: 1 !important;
}
.footer-form-wrapper form select,
.footer-form-wrapper form select.select-field {
    width: 100%;
    background-color: #ffffff !important;
    border: 1px solid #e2e8e5 !important;
    border-radius: 6px !important;
    color: var(--color-primary) !important;
    font-size: 14px;
    padding: 12px 14px;
    transition: var(--transition-smooth);
    box-shadow: none !important;
    outline: none;
    font-family: var(--font-body);
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23103026' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
}

.footer-form-wrapper form ::placeholder {
    color: #889890 !important;
    opacity: 0.8;
}

.footer-form-wrapper form input:focus,
.footer-form-wrapper form textarea:focus,
.footer-form-wrapper form select:focus,
.footer-form-wrapper .wpcf7-form-control:focus {
    border-color: var(--color-accent) !important;
}

.footer-form-wrapper form textarea {
    resize: vertical;
}

.footer-form-wrapper form input[type="submit"],
.footer-form-wrapper .wpcf7-submit {
    width: 100% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 15px 0 0 0 !important;
    background-color: #103026 !important;
    color: #ffffff !important;
    border: 1px solid #103026 !important;
    padding: 12px 32px !important;
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
    transition: var(--transition-smooth);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(16, 48, 38, 0.1) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-form-wrapper form input[type="submit"]:hover,
.footer-form-wrapper .wpcf7-submit:hover {
    background-color: var(--color-accent) !important;
    border-color: var(--color-accent) !important;
    color: var(--color-primary) !important;
    box-shadow: 0 6px 15px rgba(227, 168, 157, 0.2) !important;
    transform: translateY(-1px);
}

.footer-bottom-bar {
    background-color: #103026;
    color: #ffffff;
    padding: 20px 0;
}

.footer-bottom-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright-text {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

.footer-bottom-links {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: #ffffff;
    opacity: 0.8;
    font-family: var(--font-headings);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-bottom-links a:hover {
    color: var(--color-accent);
}

/* ==========================================================================
   Responsive Overrides & Media Queries
   ========================================================================== */

/* Desktop Large Views (> 1200px) */
@media (min-width: 1200px) {
    .hero-section {
        min-height: 80vh !important;
    }
}

/* Medium/Small Desktop & Tablet Views (< 1024px) */
@media (max-width: 1024px) {
    .hero-section {
        min-height: 65vh !important;
        padding-top: 100px !important;
        padding-bottom: 60px !important;
    }

    .hero-section h1 {
        font-size: 2.8rem !important;
    }

    .about-section img {
        height: 300px !important;
    }
}

/* Tablet Views (< 992px) */
@media (max-width: 991.98px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    /* Feature Section mobile dividers */
    .feature-column-divider {
        border-right: none !important;
        border-bottom: 1px solid rgba(16, 48, 38, 0.08) !important;
        padding-bottom: 25px !important;
        margin-bottom: 10px !important;
    }

    .feature-column-divider:last-child {
        border-bottom: none !important;
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }

    /* Why Choose Us columns mobile borders */
    .why-choose-us .last-no-border {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        padding-bottom: 20px !important;
        margin-bottom: 15px !important;
        width: 50% !important;
    }

    .why-choose-us .row {
        justify-content: center;
    }

    .why-choose-us .last-no-border:nth-last-child(-n + 2) {
        border-bottom: none !important;
    }

    .about-section {
        text-align: center;
    }

    .about-section .btn {
        margin-bottom: 30px;
    }
}

/* Mobile Landscape & Portrait (< 768px) */
@media (max-width: 767.98px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        gap: 15px;
    }

    .site-logo {
        max-height: 65px !important;
    }

    .hero-section h1 {
        font-size: 2.2rem !important;
    }

    .lead-subtitle {
        font-size: 1.5rem !important;
    }

    .why-choose-us .last-no-border {
        width: 100% !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        padding-bottom: 20px !important;
        margin-bottom: 15px !important;
    }

    .why-choose-us .last-no-border:last-child {
        border-bottom: none !important;
        margin-bottom: 0 !important;
    }

    .featured-products .row.align-items-end {
        text-align: center;
    }

    .featured-products .col-8,
    .featured-products .col-4 {
        width: 100% !important;
        text-align: center !important;
    }

    .featured-products .col-4 {
        margin-top: 15px;
    }

    .certs-logo-bar {
        gap: 30px !important;
    }

    .certs-logo-bar span {
        font-size: 1rem !important;
    }
}

/* Small Mobile Views (< 576px) */
@media (max-width: 575.98px) {
    .footer-column-title {
        white-space: normal !important;
        /* Allow wrapping on very small screens to avoid overflow */
    }

    .gallery-img-wrapper {
        height: 180px !important;
    }
}



/* ==========================================================================
   Home Page Flexible Content Styles (Screenshot Matched)
   ========================================================================== */

:root {
    --font-serif: 'Playfair Display', Georgia, serif !important;
}

.as-home-flexible-content .btn {
    text-transform: none !important;
    letter-spacing: normal !important;
}

.as-section-tagline {
    font-family: var(--font-primary) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    color: #e0807b !important;
    /* screenshot coral pink */
    text-transform: uppercase !important;
    display: block !important;
    margin-bottom: 16px !important;
}

.as-section-header h2 {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 36px !important;
    font-weight: 500 !important;
    color: #1b3622 !important;
    /* Rich green */
    margin-top: 10px !important;
    margin-bottom: 30px !important;
}

.as-home-about-left h2 {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 36px !important;
    font-weight: 500 !important;
    color: #1b3622 !important;
    /* Rich green */
    line-height: 1.3 !important;
    margin-top: 10px !important;
    margin-bottom: 24px !important;
}


/* 1. HERO SECTION */
.as-home-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 650px;
}


.as-home-hero .container {
    position: relative;
    z-index: 3;
}

.as-home-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.as-home-hero-left h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 54px;
    font-weight: 500;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 24px;
}

.as-home-hero-left h1 .cursive-highlight {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: #e2a09c;
    /* Soft rose-pink from screenshot */
    display: block;
    margin: 6px 0;
}

.as-home-hero-desc {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 600px;
}

.as-home-logistics-ctas {
    margin: 20px 0; 
}
.as-home-hero-ctas {
    display: flex;
    gap: 16px;
}

.as-home-hero-ctas .btn-green {
    background-color: #1c3024 !important;
    border-color: #1c3024 !important;
    color: #ffffff !important;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 4px;
}

.as-home-hero-ctas .btn-green:hover {
    background-color: #233e2f !important;
    transform: translateY(-2px);
}

.as-home-hero-ctas .btn-outline-white {
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    color: #ffffff !important;
    background: transparent !important;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 4px;
}

.as-home-hero-ctas .btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: #ffffff !important;
    transform: translateY(-2px);
}

.as-home-hero-right {
    display: flex;
    justify-content: flex-end;
}

.as-home-hero-img-wrapper {
    max-width: 440px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.as-home-hero-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* 2. FEATURES GRID */
.as-home-features {
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    padding: 30px 0;
}

.as-home-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.as-home-feature-card {
    text-align: center;
    padding: 20px 30px;
    position: relative;
}

.as-home-feature-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: #e5e5e5;
}

.as-home-feature-icon-box {
    font-size: 26px;
    color: #d97d75;
    /* elegant soft pink/crimson */
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.as-home-feature-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: bold;
    color: #1c3024;
    margin-bottom: 8px;
}

.as-home-feature-card p {
    
    color: #666666;
    margin: 0;
    font-weight: 400;
}

/* 3. ABOUT SECTION */
.as-home-about {
    background-color: #ffffff;
}

.as-home-about-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}

.as-home-about-left h2 {
    margin-bottom: 24px;
}

.as-home-about-desc p {
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.as-home-about-cta {
    margin-top: 30px;
}

.as-home-about-cta .btn-dark-green {
    background-color: #13251a !important;
    border-color: #13251a !important;
    color: #ffffff !important;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.as-home-about-cta .btn-dark-green:hover {
    background-color: #1c3024 !important;
    transform: translateY(-2px);
}

.as-home-about-right {
    position: relative;
}

.as-home-about-img-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.as-home-about-img-container img {
    width: 100%;
    height: auto;
    display: block;
}

.as-home-about-overlay-box {
    position: absolute;
    bottom: -20px;
    left: 40px;
    max-width: 280px;
    background: #13251a;
    color: #ffffff;
    padding: 16px 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 5;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    /* Sleek shadow for overlap depth */
}

.as-home-about-overlay-icon {
    font-size: 22px;
    color: #ffffff;
    flex-shrink: 0;
}

.as-home-about-overlay-box p {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* 4. OUR FLOWERS */
.as-home-flowers {
    background-color: #ffffff;
    border-top: 1px solid #f0f0f0;
}

.as-home-flowers-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.as-home-flower-card {
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    transition: transform 0.3s ease;
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
}

.as-home-flower-card:hover {
    transform: translateY(-5px);
}

.as-home-flower-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1.1 / 1;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 12px;
        border: 1px solid #d5d5d5;
}

.as-home-flower-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.as-home-flower-card:hover .as-home-flower-img-wrapper img {
    transform: scale(1.06);
}

.as-home-flower-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    color: #1c3024;
    margin: 0 0 8px 0;
    text-align: center;
}

.as-home-flower-card p {
    line-height: 1;
    color: #666666;
    margin: 0;
    text-align: center;
    padding: 0 10px;
}

.as-home-flowers-action {
    margin-top: 20px;
}

.as-home-flowers-action .btn-outline {
    border: 1px solid #d97d75 !important;
    color: #d97d75 !important;
    background: transparent !important;
    padding: 12px 32px;
    font-weight: 500;
    font-size: 22px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.as-home-flowers-action .btn-outline:hover {
    background: #d97d75 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* 5. LOGISTICS BANNER */
.as-home-logistics {
    position: relative;
    min-height: 700px;
    background-size: cover;
    background-position: center right;
    padding: 110px 0;
    color: #ffffff;
    overflow: hidden;
        display: flex;
    align-items: center;
    /* filter: saturate(150%); */
}

.as-home-logistics::before {
     filter: brightness(55%) saturate(80%);
}

.as-home-logistics-bg {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    filter: blur(1px); /* Apply the light blur only to the image */
    z-index: 1;
    transform: scale(1.05); /* Prevents blurred edges from showing white borders */
}

.as-home-logistics .container {
    position: relative;
    z-index: 3;
}

.as-home-logistics-grid {
   display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.as-home-logistics-left {
    max-width: 620px;
}

.as-home-logistics-left h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin: 0;
}

.as-home-logistics-separator {
    width: 70px;
    height: 2px;
    background-color: #dd968f;
    margin: 25px 0 35px 0;
}

.as-home-logistics-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.as-home-logistics-badge-item {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.35);
    padding: 0 15px;
}

.as-home-logistics-badge-item:last-child {
    border-right: none;
}

.as-home-logistics-badge-icon {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    opacity: 1;
}

.as-home-logistics-badge-icon svg {
    width: 38px;
    height: 38px;
    stroke: #f5f8f4;
    transition: transform 0.3s ease;
}

.as-home-logistics-badge-item:hover svg {
    transform: scale(1.1);
}

.as-home-logistics-badge-title {
    font-size: 16.5px;
    font-weight: bold;
    text-transform: none;
    letter-spacing: normal;
    color: #ffffff;
    display: block;
    line-height: 1.45;
    opacity: 0.95;
    max-width: 110px;
    margin: 0 auto;
}


/* 6. CERTIFICATIONS ROW */
.as-home-certifications {
    background: #ffffff;
    padding: 50px 0 45px 0;
    border-bottom: 1px solid #f0f0f0;
}

.as-home-certs-title {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888888;
    margin-bottom: 35px;
}

.as-home-certs-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.as-home-cert-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.as-home-cert-item img {
    max-height: 42px;
    width: auto;

    transition: all 0.3s ease;
}

.as-home-cert-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Header style adjustments for image logo */
.as-logo img.as-logo-img {
    max-height: 52px;
    width: auto;
    display: block;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1199px) {
    .as-home-hero-left h1 {
        font-size: 46px;
    }

    .as-home-flowers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .as-home-logistics-left h2 {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .as-home-hero {
        padding: 80px 0;
    }

    .as-home-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .as-home-hero-left h1 {
        font-size: 42px;
    }

    .as-home-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .as-home-hero-ctas {
        justify-content: center;
    }

    .as-home-hero-right {
        justify-content: center;
    }

    .as-home-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 0;
    }

    .as-home-feature-card:nth-child(2)::after,
    .as-home-feature-card:nth-child(4)::after {
        display: none;
    }

    .as-home-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .as-home-about-left {
        text-align: center;
    }

    .as-home-logistics-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .as-home-logistics-separator {
        margin: 20px auto 30px auto;
    }
    .as-home-logistics-left {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .as-home-hero-left h1 {
        font-size: 34px;
    }

    .as-home-features-grid {
        grid-template-columns: 1fr;
        gap: 15px 0;
    }

    .as-home-feature-card::after {
        display: none !important;
    }

    .as-home-feature-card {
        padding: 15px 10px;
    }

    .as-home-flowers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .as-home-logistics-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 0;
    }
    .as-home-logistics-badge-item {
        border-right: none;
        padding: 0 10px;
    }
    .as-home-logistics-badge-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }

    .as-home-certs-flex {
        gap: 30px;
    }
}

@media (max-width: 479px) {
    .as-home-flowers-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .as-home-logistics-badges {
        grid-template-columns: 1fr;
        gap: 15px 0;
    }
    .as-home-logistics-badge-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 15px;
    }
    .as-home-logistics-badge-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .as-home-hero-ctas {
        flex-direction: column;
        gap: 12px;
    }

    .as-home-hero-ctas .btn {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================================================
   Contact Page Specific Styles (ACF Flexible Content Matched)
   ========================================================================== */
.as-contact-flexible-content .as-sidebar-box {
    background-color: #ffffff !important; /* White background */
    border: 1px solid #e8e2de !important; /* Light border matching layout */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
}

.as-contact-flexible-content .as-sidebar-box h3 {
    font-family: 'Playfair Display', Georgia, serif !important;
    color: var(--color-green) !important; /* Brand green */
    font-size: 20px !important;
    font-weight: 500 !important;
    margin-bottom: 20px !important;
    border-bottom: 2px solid #e0807b !important; /* Coral pink underline */
    padding-bottom: 8px !important;
    display: inline-block !important;
}

.as-contact-flexible-content .as-sidebar-icon-wrapper {
    color: #e0807b !important; /* Coral pink icons */
}

.as-contact-flexible-content .as-sidebar-info-list i {
    color: #e0807b !important; /* Coral pink icons directly on elements */
}

.as-contact-flexible-content .as-sidebar-info-list h4 {
    font-family: var(--font-primary) !important;
    font-weight: 600 !important;
    color: #1c3024 !important;
}

.as-contact-flexible-content .as-sidebar-info-list p {
    font-size: 13px !important;
    color: #666666 !important;
}

.as-contact-flexible-content .as-form-container h2 {
    font-family: 'Playfair Display', Georgia, serif !important;
    color: #333;
    font-weight: bold !important;
    font-size: 38px;
        margin-bottom: 8px;
}

.as-contact-flexible-content .as-form-input:focus {
    border-color: #e0807b !important; /* Focus border to match brand coral pink */
    box-shadow: 0 0 0 3px rgba(224, 128, 123, 0.1) !important;
}

.as-contact-flexible-content .as-form-container button[type="submit"] {
    background-color: var(--color-green) !important; /* Brand green button */
    border-color: var(--color-green) !important;
    color: #ffffff !important;
}

.as-contact-flexible-content .as-form-container button[type="submit"]:hover {
    background-color: var(--color-green-dark) !important;
    border-color: var(--color-green-dark) !important;
}

/* Footer & Global Icons Cleanup */
.as-footer-contact-list i {
    color: #e0807b !important; /* Coral pink icons in footer instead of maroon */
}
.as-quote-hero-header,
.as-contact-hero-header{
    height: 400px;
    background-color: #fdf8e963;
    display: flex;
    align-items: center;
}
.as-contact-hero-divider {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 15px auto 25px auto;
    width: 100%;
}

.as-contact-hero-divider .line {
    height: 1px;
    width: 120px;
    background-color: var(--color-crimson); /* Coral pink */
    opacity: 0.7;
}

.as-contact-hero-divider .flower-icon {
    color: var(--color-crimson);
    font-size: 20px;
    display: flex;
    align-items: center;
}
.as-contact-hero-subtitle {
    font-family: var(--font-primary);
    font-size: clamp(12px, 2.5vw, 14px) !important;
    color: var(--color-green-dark) !important;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin: 0;
}
/* WhatsApp Info Sidebar Box */
.as-sidebar-box.as-quote-whatsapp-box {
    background-color: #ffffff !important;
    color: #333333 !important;
    border: 1px solid #ebcccc !important;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

/* Legible dark-green title on white background */
.as-sidebar-box.as-quote-whatsapp-box h3 {
    color: var(--color-green) !important;
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    margin-bottom: 12px !important;
    border-bottom: 1px solid #ebcccc !important;
    padding-bottom: 8px !important;
    display: block !important;
}

/* Descriptive paragraph text styling */
.as-sidebar-box.as-quote-whatsapp-box p {
    font-size: 14px !important;
    line-height: 1.7 !important;
    color: #555555 !important;
    margin-bottom: 20px !important;
}

/* Premium WhatsApp button styling */
.as-sidebar-box.as-quote-whatsapp-box .btn-whatsapp-sidebar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background-color: var(--color-crimson) !important;
    color: var(--color-white) !important;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    border: none !important;
    transition: background-color 0.25s ease;
}

.as-sidebar-box.as-quote-whatsapp-box .btn-whatsapp-sidebar:hover {
    background-color: var(--color-crimson-dark) !important;
}
.glightbox-clean .gclose{
    opacity: 1 !important;
}
.glightbox-clean .gclose,
.glightbox-clean .gnext,
.glightbox-clean .gprev{
    border: 1px solid #fff;
}
.as-quote-section-padding,
.as-contact-section-padding{
        padding: 40px 0;
}

/* --- Taxonomy Archive Page Custom Styling --- */
.as-tax-archive-wrap {
    background-color: #ffffff;
    padding: 60px 0;
    font-family: var(--font-body, inherit);
}
.as-tax-breadcrumbs {
    font-size: 13px;
    color: #8c8c8c;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}
.as-tax-title {
    font-family: var(--font-header, inherit);
    color: var(--tax-title-color, #E06A80);
    font-size: var(--tax-title-size, 48px);
    margin: 0 0 10px 0;
    text-align: center;
}
.as-tax-subtitle {
    font-size: var(--tax-subtitle-size, 16px);
    color: var(--tax-subtitle-color, #4a4a4a);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}
.as-tax-header-content p{
    text-align: center;
}
.as-tax-ornament {
    text-align: center;
    margin-bottom: 20px;
    color: var(--tax-accent, #E06A80);
}
.as-tax-layout {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}
.as-tax-sidebar {
    flex: 0 0 280px;
}
.as-tax-main {
    flex: 1;
}
.as-sidebar-card {
    background: var(--tax-sidebar-bg, #ffffff);
    border: 1px solid var(--tax-sidebar-border, #eaeaea);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 30px;
}
.as-sidebar-title {
    font-size: var(--tax-filter-title-size, 16px);
    font-weight: 700;
    color: var(--tax-filter-title-color, #2d2d2d);
    margin: 0 0 20px 0;
    border-bottom: 1px solid var(--tax-sidebar-border, #eaeaea);
    padding-bottom: 10px;
}
.as-filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.as-filter-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    cursor: pointer;
    font-size: var(--tax-filter-item-size, 14px);
    color: var(--tax-filter-item-color, #555555);
    transition: color 0.2s ease;
}
.as-filter-item:hover, .as-filter-item.active {
    color: var(--tax-filter-item-active-color, #E06A80);
    font-weight: 500;
}
.as-filter-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.as-color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #d1d5db;
    display: inline-block;
}
.as-special-card {
    background: var(--tax-sidebar-bg, #ffffff);
    border: 1px solid var(--tax-sidebar-border, #eaeaea);
    border-radius: 12px;
    padding: 30px 24px;
    text-align: center;
}
.as-special-card i {
    font-size: 36px;
    color: var(--tax-accent, #E06A80);
    margin-bottom: 15px;
}
.as-special-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #2d2d2d;
    margin: 0 0 10px 0;
}
.as-special-card p {
    font-size: 13px;
    color: #777777;
    line-height: 1.6;
    margin: 0 0 20px 0;
}
.as-special-btn {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid var(--tax-accent, #E06A80);
    color: var(--tax-accent, #E06A80);
    text-decoration: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.as-special-btn:hover {
    background: var(--tax-accent, #E06A80);
    color: #ffffff;
}
.as-main-bar {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-bottom: 30px;
    font-size: 14px;
    color: #777777;
}
.as-sort-select {
    padding: 6px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background-color: #ffffff;
    color: #555555;
}
.as-color-group {
    margin-bottom: 50px;
}
.as-group-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 10px;
    margin-bottom: 25px;
}
.as-group-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.as-group-divider {
    flex-grow: 1;
    height: 1px;
    border-bottom: 2px solid #E06A80;
    margin-top: 4px;
}
.as-group-title {
    font-size: var(--tax-group-title-size, 18px);
    font-weight: 700;
    color: var(--tax-group-title-color, #2d2d2d);
    margin: 0;
}
.as-view-all-link {
    font-size: 13px;
    color: var(--tax-group-link-color, #E06A80);
    text-decoration: none;
    font-weight: 500;
    flex-shrink: 0;
}


/* Horizontal Card Style */
.as-cards-list.style-horizontal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.as-cards-list.style-horizontal .as-variety-card {
    display: flex;
    background: #ffffff;
    border: 1px solid var(--tax-sidebar-border, #eaeaea);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.as-cards-list.style-horizontal .as-card-img-wrap {
    flex: 0 0 160px;
    height: 160px;
}
.as-cards-list.style-horizontal .as-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Vertical Card Style */
.as-cards-list.style-vertical {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}
.as-cards-list.style-vertical .as-variety-card {
    background: #ffffff;
    border: 1px solid var(--tax-sidebar-border, #eaeaea);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
}
.as-cards-list.style-vertical .as-card-img-wrap {
    height: 200px;
    width: 100%;
}
.as-cards-list.style-vertical .as-card-body {
    padding: 20px;
    text-align: center;
}

.as-card-img-wrap img {
    width: auto;
    height: 100%;
    object-fit: contain;
}
.as-card-title {
    font-size: var(--tax-card-title-size, 16px);
    font-weight: 700;
    color: var(--tax-card-title-color, #2d2d2d);
    margin: 0 0 8px 0;
}
.as-card-desc {
    font-size: var(--tax-card-desc-size, 13px);
    color: var(--tax-card-desc-color, #777777);
    line-height: 1.5;
    margin: 0 0 12px 0;
}
.as-card-link {
    font-size: 13px;
    color: var(--tax-card-link-color, #E06A80);
    text-decoration: none;
    font-weight: 500;
}
.as-products-sourcing-wrapper {
	padding: 0 0 50px 0;
}

.as-products-sourcing-card {
	background-color: var(--as-sourcing-bg, #FFF7F6);
	border: 1px solid var(--as-sourcing-border, #F5E6E5);
	border-radius: var(--as-sourcing-radius, 8px);
	padding: 40px 45px;
	display: flex;
	align-items: center;
	gap: 40px;
}

.as-sourcing-icon-col {
	flex: 0 0 150px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.as-sourcing-vase-svg {
	max-width: 130px;
	height: auto;
}

.as-sourcing-v-divider {
	width: 1px;
	height: 140px;
	background-color: var(--as-sourcing-v-div, #F2DCDC);
	flex-shrink: 0;
}

.as-sourcing-content-col {
	flex: 1;
}

.as-sourcing-heading {
	font-family: var(--as-sourcing-h-font, Georgia, serif);
	color: var(--as-sourcing-h-color, #1C3E2D);
	font-size: 30px;
	line-height: 1.35;
	font-weight: 700;
	margin: 0 0 16px 0;
}

.as-sourcing-heading .as-sourcing-highlight,
.as-sourcing-heading em {
	font-style: italic;
	font-family: Georgia, serif;
	color: var(--as-sourcing-h-hl, #E07A7A);
	font-weight: 400;
}

.as-sourcing-h-divider {
	width: 100px;
	height: 1px;
	background-color: var(--as-sourcing-h-div, #E8D0D0);
	margin: 16px 0 18px 0;
}

.as-sourcing-description {
	font-size: 15px;
	line-height: 1.6;
	color: var(--as-sourcing-d-color, #555555);
}

.as-sourcing-description .as-sourcing-highlight-bold,
.as-sourcing-description strong {
	color: var(--as-sourcing-d-hl, #E07A7A);
	font-weight: 700;
}

.as-sourcing-btn-wrap {
	margin-top: 20px;
}

.as-sourcing-btn {
	display: inline-block;
	background-color: var(--as-sourcing-btn-bg, #E07A7A);
	color: var(--as-sourcing-btn-color, #FFFFFF);
	padding: 10px 22px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: 600;
	transition: background-color 0.3s ease;
}

.as-sourcing-btn:hover {
	background-color: #c86363;
	color: #FFFFFF;
}

@media (max-width: 991px) {
	.as-products-sourcing-card {
		flex-direction: column;
		text-align: center;
		padding: 30px 25px;
	}
	.as-sourcing-v-divider {
		display: none;
	}
	.as-sourcing-h-divider {
		margin: 16px auto 18px auto;
	}
}

@media (max-width: 991px) {
    .as-tax-layout {
        flex-direction: column;
    }
    .as-tax-sidebar {
        flex: 1;
    }
    .as-cards-list.style-horizontal {
        grid-template-columns: 1fr;
    }
}