:root {
    --primary-color: #388E3C; /* Slightly desaturated, richer green */
    --secondary-color: #1B5E20; /* Darker, more saturated green */
    --accent-color: #FFA000; /* Slightly deeper amber/orange */
    --text-color-dark: #212121; /* For primary text */
    --text-color-light: #616161; /* For secondary text, placeholders */
    --light-bg: #f4f6f5; /* Very light, slightly green-tinted gray */
    --card-bg: #ffffff;
    --border-color: #e0e0e0; /* For subtle borders */
    --danger-color: #d32f2f; /* Slightly deeper red */
    --font-family: 'Nunito', sans-serif;
    --shadow: 0 2px 4px rgba(0,0,0,0.05), 0 4px 8px rgba(0,0,0,0.05); /* Softer shadow */
    --shadow-hover: 0 6px 12px rgba(0,0,0,0.1), 0 3px 6px rgba(0,0,0,0.08); /* More pronounced hover shadow */
    --border-radius: 6px; /* Standardized border radius */

    /* Approximate heights for fixed elements */
    --header-height-desktop: 80px; /* Increased to accommodate larger logo */
    --action-banner-height-desktop: 30px;
    --header-height-mobile: 65px; /* Increased to accommodate larger logo */
    --action-banner-height-mobile: 28px; 

    /* New variables */
    --accent-color-light: #FFB74D;
    --accent-color-dark: #F57C00;
    --success-color: #43A047;
    --info-color: #1976D2;
    --warning-color: #FFC107;
    --dark-overlay: rgba(0,0,0,0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base font size */
}

body {
    font-family: var(--font-family);
    line-height: 1.7; /* Slightly more line height for readability */
    color: var(--text-color-dark);
    background-color: var(--light-bg);
    -webkit-font-smoothing: antialiased; /* Smoother fonts on WebKit */
    -moz-osx-font-smoothing: grayscale; /* Smoother fonts on Firefox */
}

body.modal-open {
    overflow: hidden; /* Prevent background scroll when modal is open */
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    width: 90%;
    max-width: 1170px; /* Slightly wider max-width for larger screens */
    margin: 0 auto;
    padding: 0 15px;
}

header {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 0; /* Adjusted padding for potentially taller header */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    min-height: var(--header-height-desktop); /* Ensure header can accommodate content */
    display: flex; /* Added for vertical centering */
    align-items: center; /* Added for vertical centering */
}

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

.logo-and-plant-nav {
    display: flex;
    align-items: center;
    gap: 15px; /* Space between logo and plant dropdown button */
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-link-wrapper {
    text-decoration: none;
    color: inherit; 
    display: inline-flex; /* Use flex for better alignment if needed */
    align-items: center;
}

.logo-link-wrapper:hover #logo-img,
.logo-link-wrapper:focus #logo-img {
    transform: scale(1.1); /* Slightly enlarge logo on hover/focus */
    opacity: 1; /* Ensure full opacity on hover */
}

#logo-img {
    height: 65px; /* Increased logo height */
    margin-right: 0; 
    transition: opacity 0.3s ease, transform 0.3s ease; /* Added transform to transition */
}

header h1.visually-hidden { /* Styles for the h1 are now for the hidden version */
    /* .visually-hidden class handles hiding */
    /* font-family: 'Quintessential', cursive; remains if ever made visible */
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px; /* Adjusted gap to make space for lang selector */
}

/* Language Selector Styles */
.language-selector {
    position: relative;
    display: inline-block;
    margin-left: 5px; /* Space from cart */
}

#language-toggle {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0.3rem 0.6rem; /* Smaller padding */
    font-family: var(--font-family);
    font-size: 0.8rem;
    cursor: pointer;
    border-radius: var(--border-radius);
    transition: background-color 0.2s ease, border-color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px; /* Gap between flag and arrow */
}

#language-toggle:hover,
#language-toggle:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    outline: none;
}

#language-toggle img#current-flag {
    width: 20px; /* Flag size */
    height: auto;
    border-radius: 2px;
    vertical-align: middle;
}

.language-options-list {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0; /* Align to the right */
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    min-width: 160px;
    z-index: 1010;
    border: 1px solid var(--border-color);
}

.language-options-list.active {
    display: block;
    animation: fadeInDropdown 0.2s ease-out;
}

.language-options-list li button {
    display: flex; /* Use flex for alignment */
    align-items: center; /* Vertically align items */
    gap: 8px; /* Space between flag and text */
    width: 100%;
    padding: 0.7rem 1.2rem;
    background: none;
    border: none;
    color: var(--text-color-dark);
    text-decoration: none;
    font-size: 0.9rem;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.language-options-list li button img {
    width: 20px; /* Flag size in dropdown */
    height: auto;
    border-radius: 2px;
}

.language-options-list li button:hover,
.language-options-list li button:focus {
    background-color: var(--light-bg);
    color: var(--primary-color);
    outline: none;
}

.social-media-header-links {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between social icons */
}

.header-social-icon {
    width: 22px; 
    height: 22px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    display: block; 
    opacity: 0.9;
}

.header-social-icon:hover {
    transform: scale(1.1); 
    opacity: 1;
}

.cart-button {
    background: none;
    border: none;
    color: white;
    font-size: 1.6rem; /* Adjusted size */
    cursor: pointer;
    position: relative;
    padding: 0.5rem 0.2rem; /* Fine-tune padding */
    transition: color 0.2s ease;
}
.cart-button:hover {
    color: var(--accent-color);
}

.cart-count {
    position: absolute;
    top: 2px; /* Fine-tuned position */
    right: -2px;
    background-color: var(--accent-color);
    color: var(--text-color-dark); /* Better contrast on accent */
    border-radius: 50%;
    padding: 1px 5px;
    font-size: 0.7rem;
    font-weight: 700; /* Bolder */
    min-width: 18px;
    text-align: center;
    line-height: 1.2;
    border: 1px solid white; /* Optional: adds definition */
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center; /* Align nav items with taller logo */
}

nav ul li {
    margin-left: 12px; /* Slightly adjusted */
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600; /* Slightly less bold for Nunito */
    padding: 0.6rem 0.4rem; /* Adjusted padding */
    display: inline-block; 
    transition: color 0.2s ease, background-color 0.2s ease;
    text-align: center; 
    border-radius: var(--border-radius);
}

nav ul li a:hover,
nav ul li a:focus {
    color: var(--accent-color);
    /* background-color: rgba(255,255,255,0.1); Optional: subtle background hover */
}

/* Mobile Menu Toggle */
#menu-toggle {
    display: none; 
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 28px; /* Adjusted size */
    height: 22px; /* Matched to span height and spacing */
    padding: 0;
    margin-left: 5px; /* Ensure some space from cart */
}

#menu-toggle span {
    display: block;
    width: 100%;
    height: 2.5px; /* Slightly thinner bars */
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

#menu-toggle.active span:nth-child(1) {
    transform: translateY(7.25px) rotate(45deg); /* 2.5px height + 2.5px space + 2.5px height = 7.5 approx, fine tune */
}

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

#menu-toggle.active span:nth-child(3) {
    transform: translateY(-7.25px) rotate(-45deg);
}

main {
    padding-top: calc(var(--header-height-desktop) + var(--action-banner-height-desktop) + 1rem); /* Header height + Banner height + buffer */
}

section {
    padding: 50px 0; /* Increased padding for more "air" */
    text-align: center;
}

section:nth-child(odd) { /* Alternate background for sections */
    background-color: var(--card-bg);
}

/* Ensure first section after hero (if any) or other specific sections get desired background */
#hero + section { /* e.g., #about */
    background-color: var(--card-bg);
}

#plants {
    background-color: var(--light-bg); /* Explicitly set for key sections */
}

#products {
    background-color: var(--card-bg); /* Should be different from #plants */
}

#contact {
    background-color: var(--light-bg); /* Adjusted to alternate with #products */
}

#google-reviews {
     background-color: var(--card-bg); /* Adjusted to alternate */
}

#newsletter-signup {
    background-color: var(--light-bg); /* Adjusted to alternate */
}

section h2 {
    font-size: 2.2rem; /* Slightly larger headings */
    margin-bottom: 25px;
    color: var(--secondary-color);
    font-weight: 700;
}

#hero {
    background: url('hero_banner.png') no-repeat center center/cover;
    color: white;
    padding: 100px 0; /* Increased padding */
    text-align: center;
    min-height: 75vh; /* Slightly taller */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative; /* For pseudo-element overlay if needed instead of div */
}

#hero::before { /* Optional: another way to do overlay */
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0,0,0,0.35); /* Darker overlay for better contrast */
    z-index: 1;
}

#hero .container {
    background-color: rgba(0, 0, 0, 0.0); /* Removed overlay from container, handled by ::before on #hero or keep a subtle one */
    padding: 30px;
    border-radius: var(--border-radius);
    position: relative; /* To sit above the ::before pseudo-element */
    z-index: 2;
}

#hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

#hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px; /* Control line length */
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-color-dark); /* Text color for better contrast on amber */
    padding: 14px 30px; /* Larger padding */
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 700;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    text-transform: uppercase; /* Optional: makes CTA stand out */
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border: none; /* Ensure it's borderless */
}

.cta-button:hover, .cta-button:focus {
    background-color: #FFB300; /* Darker accent */
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    outline: none;
}

.cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.button-secondary {
    display: inline-block;
    background-color: var(--light-bg);
    color: var(--text-color-dark);
    padding: 12px 25px; /* Adjusted padding */
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.button-secondary:hover, .button-secondary:focus {
    background-color: var(--border-color);
    border-color: #ccc; /* Darker border */
    transform: translateY(-2px);
    outline: none;
}

.button-secondary:active {
     transform: translateY(-1px);
}

#about p {
    font-size: 1.15rem; /* Slightly larger */
    max-width: 750px;
    margin: 0 auto;
    color: var(--text-color-light);
}

.plant-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 30px; /* Increased gap */
    justify-content: center;
}

.plant-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 20px;
    width: 100%; 
    max-width: 330px; /* Slightly increased max card width */
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid transparent; /* Prepare for hover border */
    display: flex; /* For flex column layout */
    flex-direction: column; /* Stack content vertically */
}

.plant-card a {
    text-decoration: none;
}

.plant-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color); /* Accent border on hover */
}

.plant-card img {
    width: 100%;
    height: 220px; /* Increased image height */
    object-fit: cover;
    border-radius: var(--border-radius); /* Consistent border radius */
    margin-bottom: 18px;
}

.plant-card h3 {
    font-size: 1.5rem; /* Larger heading */
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.plant-card p {
    font-size: 0.9rem;
    margin-bottom: 12px;
    color: var(--text-color-light);
    flex-grow: 1; /* Allows description to take available space */
}

.plant-card .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 12px; 
    margin-bottom: 18px;
}

.size-selector-container {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px; 
}

.size-selector-container label {
    font-size: 0.85rem;
    color: var(--text-color-light);
    white-space: nowrap; 
}

.plant-size-selector {
    padding: 9px; /* Increased padding */
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-family);
    font-size: 0.9rem;
    flex-grow: 1; 
    min-width: 90px; 
    background-color: white; /* Ensure select background is white */
    color: var(--text-color-dark);
}

.plant-size-selector:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--primary-color) 20%, transparent);
}

.plant-button { 
    display: block;
    width: 100%;
    background-color: var(--secondary-color);
    color: white;
    padding: 12px; /* Increased padding */
    text-align: center;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: background-color 0.2s ease, transform 0.1s ease;
    border: none; 
    cursor: pointer;
    margin-top: auto; /* Push button to bottom of card */
}

.plant-button:hover {
    background-color: var(--primary-color); /* Lighter green on hover */
    transform: scale(1.02);
}

.plant-button:active {
    transform: scale(0.98);
}

#contact .contact-info p {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-color-light);
}

#contact .contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

#contact .contact-info a:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}

footer {
    background-color: var(--text-color-dark);
    color: #bdbdbd; /* Lighter grey for footer text */
    text-align: center;
    padding: 25px 0;
    margin-top: 40px;
}

footer p {
    margin-bottom: 8px; 
    font-size: 0.9rem;
}

footer p:last-child {
    margin-bottom: 0;
}

.footer-logo {
    display: block;
    width: 100px;
    height: auto;
    margin: 0 auto 15px auto; 
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.payment-methods-title {
    margin-top: 25px;
    color: white;
    font-size: 1.1rem;
    text-align: center;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
    justify-content: center;
}

.payment-icon {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border-radius: 6px;
    padding: 5px;
    transition: transform 0.2s ease;
}

.payment-icon:hover {
    transform: scale(1.15);
}

/* Cart Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1050; /* Higher than header */
    align-items: center;
    justify-content: center;
}

.modal.is-open {
    display: flex; /* Shown when active */
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
}

.modal-content {
    background-color: white;
    padding: 25px; /* Increased padding */
    border-radius: var(--border-radius);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15); /* Softer, larger shadow */
    z-index: 1051;
    width: 90%;
    max-width: 550px; /* Slightly wider modal */
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    margin-bottom: 18px;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.6rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.close-button {
    background: none;
    border: none;
    font-size: 2.2rem;
    color: #bdbdbd; /* Lighter close button */
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s ease;
}

.close-button:hover {
    color: var(--text-color-dark);
}

#cart-items-container {
    flex-grow: 1;
    overflow-y: auto;
    margin-bottom: 18px;
    padding-right: 5px; /* For scrollbar */
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color); /* Lighter separator */
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 65px; /* Slightly larger */
    height: 65px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-right: 18px;
    border: 1px solid var(--border-color); /* Subtle border */
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-details h4 {
    margin: 0 0 6px 0;
    font-size: 1.05rem;
    color: var(--text-color-dark);
    font-weight: 600;
}

.cart-item-price, .cart-item-subtotal {
    font-size: 0.9rem;
    color: var(--text-color-light);
}

.cart-item-subtotal {
    font-weight: 600;
    color: var(--text-color-dark); /* Make subtotal slightly darker */
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    margin: 8px 0;
}

.cart-item-quantity button {
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    color: var(--text-color-dark);
    padding: 3px 9px; /* Adjusted padding */
    cursor: pointer;
    font-size: 1.1rem;
    border-radius: var(--border-radius);
    transition: background-color 0.2s ease;
}

.cart-item-quantity button:hover {
    background-color: #e9e9e9;
}

.cart-item-quantity span {
    padding: 0 12px;
    font-size: 0.95rem;
    min-width: 20px; /* Ensure number has space */
    text-align: center;
}

.cart-item-remove button {
    background: none;
    border: none;
    color: var(--danger-color);
    font-size: 0.8rem;
    cursor: pointer;
    padding: 5px;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
}

.cart-item-remove button:hover {
    color: #a02419; /* Darker red */
}

.empty-cart-message {
    text-align: center;
    padding: 20px;
    color: #777;
}

.cart-summary {
    border-top: 1px solid var(--border-color);
    padding-top: 18px;
    margin-bottom: 18px;
    text-align: right;
    font-size: 1.3rem;
    font-weight: 700;
}

.cart-summary #cart-total {
    color: var(--secondary-color);
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-actions .button-secondary { /* Specific override if needed for cart */
    background-color: #e0e0e0; /* Lighter grey for clear cart */
    border-color: #ccc;
}

.cart-actions .button-secondary:hover {
    background-color: #d0d0d0;
    border-color: #bbb;
}

/* Action Banner Styles */
#action-banner {
    position: fixed;
    top: var(--header-height-desktop); /* Position below the main header */
    left: 0;
    width: 100%;
    background-color: var(--accent-color);
    color: var(--text-color-dark);
    padding: 0.5em 0;
    text-align: center;
    z-index: 999; /* Below header (1000), above main content */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    height: var(--action-banner-height-desktop); /* Explicit height */
    display: flex;
    align-items: center;
    justify-content: center;
}

#action-banner .container {
    padding: 0 15px; /* Keep container padding consistent */
}

#action-banner-message {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2; /* Ensure text fits within fixed height */
    opacity: 1;
    transition: opacity 0.4s ease-in-out;
    text-align: center;
}

/* Google Reviews Section Styles */
#google-reviews {
    /* background-color handled by nth-child or explicit rule */
    padding: 50px 0;
    text-align: center;
}

#google-reviews h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

#google-reviews p {
    max-width: 650px;
    margin: 0 auto 25px auto;
    font-size: 1.05rem;
    color: var(--text-color-light);
}

.google-reviews-visual {
    margin-bottom: 30px;
}

.google-stars {
    font-size: 2.2rem;
    color: #fbbc05; 
    display: block;
    margin-bottom: 8px;
}

.google-rating-text {
    font-size: 0.95rem;
    color: var(--text-color-light);
    margin-bottom: 30px; 
}

.google-maps-link {
    /* .cta-button styles are applied */
    background-color: #4285F4; 
    color: white;
    margin-bottom: 20px; 
}

.google-maps-link:hover {
    background-color: #357ae8; 
}

.google-maps-note {
    font-size: 0.9rem;
    color: #777;
    margin-top: 15px;
}

/* Newsletter Signup Section Styles */
#newsletter-signup {
    /* background-color handled by nth-child or explicit rule */
    padding: 50px 0;
}

#newsletter-signup h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

#newsletter-signup p {
    max-width: 650px;
    margin: 0 auto 30px auto;
    font-size: 1.05rem;
    color: var(--text-color-light);
}

#newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 18px; /* Increased gap */
    max-width: 550px; /* Slightly wider */
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-color-dark);
}

.form-group input[type="text"],
.form-group input[type="email"] {
    padding: 12px; /* Increased padding */
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-family);
    font-size: 1rem;
    color: var(--text-color-dark);
    background-color: white; /* Ensure input background is white */
}

.form-group input[type="text"]::placeholder,
.form-group input[type="email"]::placeholder {
    color: var(--text-color-light);
    opacity: 0.7;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-color) 20%, transparent); /* Softer focus ring */
}

.form-group-checkbox {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.form-group-checkbox input[type="checkbox"] {
    width: auto; 
    accent-color: var(--primary-color); 
    transform: scale(1.3); /* Slightly larger checkbox */
    margin-right: 3px; /* Space after checkbox */
    cursor: pointer;
}

.form-group-checkbox .checkbox-label {
    font-weight: normal;
    font-size: 0.9rem;
    color: var(--text-color-light);
    margin-bottom: 0; 
    cursor: pointer;
}

#newsletter-form .cta-button {
    align-self: stretch; /* Make button full width of its container if form isn't max-width */
    padding: 14px 30px; 
    margin-top: 10px;
}

.newsletter-feedback-message {
    margin-top: 20px;
    padding: 12px 15px; /* Increased padding */
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    text-align: center;
}

.newsletter-feedback-message p {
    margin: 0;
}

.newsletter-feedback-message .feedback-message.success {
    background-color: color-mix(in srgb, var(--primary-color) 15%, white); /* Lighter success bg */
    color: var(--secondary-color);
    border: 1px solid color-mix(in srgb, var(--primary-color) 50%, white);
}

.newsletter-feedback-message .feedback-message.error {
    background-color: color-mix(in srgb, var(--danger-color) 15%, white); /* Lighter error bg */
    color: var(--danger-color);
    border: 1px solid color-mix(in srgb, var(--danger-color) 50%, white);
}

/* Mobile Styles - Adjustments for smaller screens */
@media (max-width: 768px) {
    html {
        font-size: 15px; /* Slightly smaller base for mobile */
    }
    header {
        padding: 0.4rem 0; /* Adjusted padding */
        min-height: var(--header-height-mobile); /* Ensure mobile header height */
    }
    #logo-img {
        height: 50px; /* Adjusted mobile logo height */
    }

    #language-toggle {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }

    .social-media-header-links {
        /* display: none; /* Optionally hide on very small screens if needed */
        gap: 6px; /* Slightly less gap on mobile */
    }
    .header-social-icon {
        width: 20px; 
        height: 20px;
    }

    .cart-button {
        font-size: 1.5rem;
        padding: 0.4rem 0.1rem; 
    }
    .cart-count {
        font-size: 0.65rem;
        padding: 1px 4px;
        min-width: 16px;
        top: 1px;
        right: -3px;
    }

    nav ul {
        display: none; 
        flex-direction: column;
        position: absolute;
        top: var(--header-height-mobile); /* Adjusted top position for mobile menu */
        left: 0;
        width: 100%;
        background-color: color-mix(in srgb, var(--primary-color) 95%, black); /* Slightly darker for dropdown */
        padding: 0.5rem 0;
        box-shadow: 0 3px 5px rgba(0,0,0,0.2);
    }

    nav ul.active {
        display: flex; 
    }

    nav ul li {
        margin: 0;
        text-align: center;
        width: 100%;
    }

    nav ul li a {
        display: block;
        padding: 0.9rem 0; /* Adjusted padding for touch targets */
        border-bottom: 1px solid color-mix(in srgb, white 10%, transparent);
    }
    nav ul li:last-child a {
        border-bottom: none;
    }

    #menu-toggle {
        display: flex; 
    }
    
    main {
        padding-top: calc(var(--header-height-mobile) + var(--action-banner-height-mobile) + 0.5rem); /* header + banner + buffer */
    }
    #action-banner {
        top: var(--header-height-mobile);
        height: var(--action-banner-height-mobile);
    }
    #action-banner-message {
        font-size: 0.8rem;
    }
    section {
        padding: 35px 0; /* Reduced padding on mobile */
    }
    section h2 {
        font-size: 1.9rem;
    }

    #hero {
        min-height: 60vh; 
        padding: 70px 0;
    }
    #hero h2 {
        font-size: 2rem;
    }
    #hero p {
        font-size: 1.1rem;
    }
    

    .plant-card {
        max-width: 100%; 
        padding: 15px;
    }
    .plant-card img {
        height: 180px;
    }
    .plant-card h3 {
        font-size: 1.3rem;
    }

    .modal-content {
        width: 95%; 
        max-height: 90vh; 
        padding: 20px;
    }
    .modal-header h2 {
        font-size: 1.4rem;
    }

    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0;
    }
    .cart-item-image {
        margin-bottom: 12px;
        align-self: center;
        width: 70px; /* Maintain reasonable size */
        height: 70px;
    }
    .cart-item-details {
        width: 100%;
    }
    .cart-item-info-flex { 
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      margin-bottom: 8px;
    }
    .cart-item-remove {
        align-self: flex-end;
        margin-top: 8px;
    }
    #newsletter-form .cta-button {
        width: 100%; 
    }

    .form-group-checkbox .checkbox-label {
        font-size: 0.85rem; /* Smaller checkbox label for mobile */
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .plant-card {
        width: calc(50% - 15px); /* Two cards per row, considering 30px gap */
        max-width: none; /* Remove max-width for this breakpoint */
    }
}

@media (min-width: 993px) and (max-width: 1199px) { /* Added breakpoint for 3 cards before full wide */
     .plant-card {
        width: calc(33.333% - 20px); /* Three cards per row, considering 30px gap (30*2/3) */
        max-width: none;
    }
}
@media (min-width: 1200px) {
    .plant-card {
        width: calc(25% - 22.5px); /* Four cards per row for wider screens, considering 30px gap (30*3/4) */
        max-width: none; /* Remove max-width for this breakpoint */
    }
    html { /* Revert or adjust base font size for very large screens if needed */
        font-size: 16px; 
    }
}

/* Styles for Plant Detail Pages */
.plant-detail-page main { 
    padding-bottom: 50px; /* Increased bottom padding */
}
.plant-detail-page { /* Apply global background */
    background-color: var(--light-bg);
}

.plant-detail-page .container {
    padding-top: 25px; 
}

.back-to-gallery-button {
    display: inline-block;
    margin-bottom: 30px; /* Increased margin */
    padding: 10px 20px;
    background-color: transparent; /* Make it look more like a link */
    color: var(--primary-color);
    text-decoration: none;
    border-radius: var(--border-radius);
    border: 1px solid var(--primary-color);
    font-weight: 600;
    transition: background-color 0.2s, color 0.2s;
    font-size: 0.9rem;
}

.back-to-gallery-button:hover,
.back-to-gallery-button:focus {
    background-color: var(--primary-color);
    color: white;
    outline: none;
}

.plant-detail-page #plant-details-content h1 { 
    font-size: 2.4rem; 
    color: var(--secondary-color);
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
}

.plant-detail-layout {
    display: flex;
    flex-direction: column;
    gap: 30px; /* Increased gap */
}

.plant-detail-image-container {
    text-align: center;
    max-width: 400px; /* Max width for image container */
    margin: 0 auto 25px auto; 
    border: 1px solid var(--border-color);
    padding: 10px;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex; /* Added for thumbnail layout */
    flex-direction: column; /* Stack main image and thumbnails */
}

.plant-detail-image-container img#main-plant-image { /* Style for the main image */
    width: 100%;
    height: auto;
    max-height: 350px; /* Max height for main image */
    object-fit: contain; /* Contain to see full image */
    border-radius: var(--border-radius);
    margin-bottom: 10px; /* Space between main image and thumbnails */
}

.thumbnail-gallery {
    display: flex;
    flex-wrap: wrap; /* Allow thumbnails to wrap if many */
    gap: 8px; /* Space between thumbnails */
    justify-content: center; /* Center thumbnails */
    margin-top: 10px;
}

.thumbnail-image {
    width: 60px; /* Size of thumbnails */
    height: 60px;
    object-fit: cover;
    border-radius: calc(var(--border-radius) / 2); /* Slightly smaller radius for thumbnails */
    border: 2px solid transparent; /* Border for selection indication */
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.thumbnail-image:hover {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.thumbnail-image.active-thumbnail {
    border-color: var(--primary-color);
    box-shadow: 0 0 5px var(--primary-color);
}

.plant-detail-info {
    text-align: left;
}

.plant-info-section {
    margin-bottom: 30px;
    padding: 20px 25px; /* Increased padding */
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.plant-info-section:last-child {
    margin-bottom: 0;
}

.plant-info-section h2 {
    font-size: 1.7rem; 
    color: var(--primary-color);
    margin-bottom: 18px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
    font-weight: 700;
}

.plant-info-section h3 {
    font-size: 1.3rem; 
    color: var(--secondary-color);
    margin-top: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.plant-info-section p,
.plant-info-section ul {
    font-size: 1rem; 
    line-height: 1.8; /* Increased line height */
    margin-bottom: 12px;
    color: var(--text-color-light);
}

.plant-info-section strong { /* Make strong tags stand out a bit more */
    color: var(--text-color-dark);
    font-weight: 600;
}

.plant-info-section ul {
    list-style-position: outside;
    padding-left: 25px; 
}

.plant-info-section li {
    margin-bottom: 10px;
}

/* Tablet and Desktop styles for Detail Page */
@media (min-width: 768px) {
    .plant-detail-page #plant-details-content h1 {
        font-size: 2.8rem;
        text-align: left;
        margin-bottom: 35px;
    }
    .plant-detail-layout {
        flex-direction: row;
        align-items: flex-start;
        gap: 35px;
    }
    .plant-detail-image-container {
        flex: 0 0 350px; 
        max-width: 350px;
        margin: 0; 
        position: sticky; /* Make image sticky on scroll */
        top: calc(var(--header-height-desktop) + var(--action-banner-height-desktop) + 2rem); /* Header + Banner + offset */
    }
    .plant-detail-info {
        flex: 1; 
    }
    .plant-info-section h2 {
        font-size: 1.9rem;
    }
    .plant-info-section h3 {
        font-size: 1.5rem;
    }
    .plant-info-section p,
    .plant-info-section ul {
        font-size: 1.05rem; /* Slightly larger text on desktop */
    }
}

@media (min-width: 992px) {
    .plant-detail-image-container {
        flex-basis: 400px; 
        max-width: 400px;
    }
    .plant-detail-layout {
        gap: 45px;
    }
}

/* Chatbot Styles */
#chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1030; /* Below modals, above most content */
}

#chatbot-toggle {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: background-color 0.2s ease, transform 0.2s ease;
    background-image: url('/Carni.png');
    background-size: cover; /* Changed from contain to cover for better fill */
    background-repeat: no-repeat;
    background-position: center;
    position: relative; /* For anchoring the bubble */
}

#chatbot-toggle:hover {
    background-color: var(--secondary-color); /* Will be less visible with bg image, but good fallback */
    transform: scale(1.1);
}

#chatbot-toggle.effect-active {
  animation: chatbotIconClickEffect 0.4s ease-out;
}

@keyframes chatbotIconClickEffect {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); } /* Slightly increased pop */
  100% { transform: scale(1); }
}

#chatbot-toggle svg {
    display: none; /* Hide SVG if it was missed in HTML removal */
}

#chatbot-window {
    position: absolute; /* Changed from fixed to absolute */
    bottom: 75px; /* Position above the 60px toggle + 15px gap, relative to #chatbot-container's bottom */
    right: 0;     /* Align to the right of #chatbot-container */
    width: 360px; /* Define a specific base width. This replaces the problematic width: 90%; */
    max-width: calc(100vw - 40px); /* Ensure it respects viewport size with 20px "gutters" on each side.
                                      This will make it responsive for viewports narrower than 400px
                                      (360px width + 20px right margin of container + effectively 20px left margin).
                                   */
    height: 70vh;
    max-height: 500px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform-origin: bottom right;
}

#chatbot-window.hidden {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    pointer-events: none;
}

#chatbot-header {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#chatbot-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

#chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

#chatbot-close:hover {
    opacity: 1;
}

#chatbot-messages {
    flex-grow: 1;
    padding: 15px;
    overflow-y: auto;
    background-color: var(--light-bg);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chatbot-message {
    padding: 10px 14px;
    border-radius: 12px;
    max-width: 80%;
    line-height: 1.4;
    font-size: 0.9rem;
}

.user-message {
    background-color: var(--accent-color);
    color: var(--text-color-dark);
    align-self: flex-end;
    border-bottom-right-radius: 3px;
}

.bot-message {
    background-color: #e9e9eb; /* Light grey for bot */
    color: var(--text-color-dark);
    align-self: flex-start;
    border-bottom-left-radius: 3px;
}

#chatbot-input {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-right: 8px;
    font-size: 0.9rem;
}

#chatbot-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--primary-color) 20%, transparent);
}

#chatbot-input-area button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.2s ease;
}

#chatbot-input-area button:hover {
    background-color: var(--secondary-color);
}

@media (max-width: 480px) {
    #chatbot-window {
        right: 10px;
        bottom: 80px;
        max-width: calc(100% - 20px);
        height: 65vh;
    }
    #chatbot-toggle {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    #chatbot-toggle svg {
        width: 24px;
        height: 24px;
    }
}

/* Carni Greeting Bubble Styles */
.carni-greeting-bubble {
    position: absolute;
    bottom: 65px; /* Positioned 65px from the bottom of the chatbot toggle */
    left: 50%;
    transform: translateX(-50%) translateY(10px) scale(0.9); /* Initial state for animation */
    background-color: white;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
    color: var(--text-color-dark);
    font-size: 0.9em;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
    z-index: 1; /* Above the button slightly for effect transitions */
}

.carni-greeting-bubble.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1); /* Visible state */
}

.carni-greeting-bubble::after { /* Speech bubble tail */
    content: '';
    position: absolute;
    top: 100%; /* At the bottom of the bubble */
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white; /* Points downwards */
}

.hero-section {
    position: relative;
    background: url('hero_banner.png') no-repeat center center/cover;
    color: white;
    padding: 120px 0;
    text-align: center;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--dark-overlay);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.hero-section p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.cta-button-secondary {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: white;
}

.cta-button-secondary:hover {
    background-color: var(--accent-color);
    color: var(--text-color-dark);
}

.hero-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
}

.hero-feature {
    background-color: rgba(0,0,0,0.4);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-text {
    font-size: 1rem;
    font-weight: 600;
}

/* About section values */
.about-values {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    margin-top: 30px;
}

.value-item {
    flex: 1;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.value-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

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

/* Care Guide Section */
.care-guide-section {
    background-color: #f0f7f0;
    padding: 80px 0;
}

.care-tips {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin: 30px 0;
}

.care-tip {
    flex: 1;
    min-width: 250px;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.care-tip:hover {
    transform: translateY(-5px);
}

.care-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.care-tip h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.care-tip p {
    color: var(--text-color-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Product Categories */
.products-categories {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.category-button {
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    background-color: var(--light-bg);
    color: var(--text-color-dark);
    cursor: pointer;
    transition: all 0.2s ease;
}

.category-button.active,
.category-button:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* View all button */
.view-all-container {
    text-align: center;
    margin-top: 30px;
}

.view-all-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.view-all-button:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Contact section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-details h3 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.contact-details a {
    color: var(--text-color-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-details a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.social-media-contact {
    margin-top: 30px;
}

.social-media-contact h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.social-media-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 32px;
    height: 32px;
    transition: transform 0.2s ease;
}

.social-icon:hover {
    transform: scale(1.2);
}

.contact-form {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-family);
    resize: vertical;
}

.form-feedback {
    margin-top: 20px;
    padding: 10px;
    border-radius: var(--border-radius);
    display: none;
}

.form-feedback.success {
    display: block;
    background-color: rgba(67, 160, 71, 0.1);
    color: var(--success-color);
    border: 1px solid rgba(67, 160, 71, 0.3);
}

.form-feedback.error {
    display: block;
    background-color: rgba(211, 47, 47, 0.1);
    color: var(--danger-color);
    border: 1px solid rgba(211, 47, 47, 0.3);
}

/* Reviews styling */
.reviews-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.review-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow);
}

.review-stars {
    color: #FFC107;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.review-text {
    font-style: italic;
    color: var(--text-color-dark);
    margin-bottom: 15px;
    line-height: 1.5;
}

.review-author {
    text-align: right;
    color: var(--text-color-light);
    font-weight: 600;
}

/* Footer improvements */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 20px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-column p {
    color: #bdbdbd;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #bdbdbd;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 8px;
    color: #bdbdbd;
}

.footer-contact a {
    color: #bdbdbd;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social-icon {
    width: 24px;
    height: 24px;
    opacity: 0.8;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-social-icon:hover {
    opacity: 1;
    transform: scale(1.2);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.back-to-top {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: var(--text-color-dark);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 1.2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--accent-color-light);
    transform: translateY(-3px);
}

/* Cookie consent */
.cookie-consent {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background-color: var(--card-bg);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    z-index: 1000;
    transition: bottom 0.5s ease;
}

.cookie-consent.visible {
    bottom: 0;
}

.cookie-consent .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-consent p {
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-button {
    padding: 8px 15px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    background-color: var(--primary-color);
    color: white;
    transition: background-color 0.2s ease;
}

.cookie-button:hover {
    background-color: var(--secondary-color);
}

.cookie-button-secondary {
    background-color: var(--light-bg);
    color: var(--text-color-dark);
    border: 1px solid var(--border-color);
}

.cookie-button-secondary:hover {
    background-color: var(--border-color);
    color: var(--text-color-dark);
}

/* Mobile responsiveness improvements */
@media (max-width: 992px) {
    .hero-section h2 {
        font-size: 2.2rem;
    }
    
    .hero-section p {
        font-size: 1.2rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .about-values {
        flex-direction: column;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-logo {
        width: 80px;
        margin: 0 auto 15px auto;
    }
    
    .payment-methods {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-consent .container {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    .payment-methods-title {
        margin-top: 20px;
    }
}

/* Additional animations - Add to existing CSS */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.animated-fade-in {
    animation: fadeIn 1s ease-out;
}

.animated-slide-up {
    animation: slideUp 0.8s ease-out;
}

/* Add this at the end for AOS integration */
[data-aos] {
    pointer-events: none;
}
[data-aos].aos-animate {
    pointer-events: auto;
}

/* Business Hours Styles */
.business-hours {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.business-hours h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.hours-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.hour-item {
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hour-item .day {
    font-weight: 600;
    color: #bdbdbd;
    margin-bottom: 4px;
}

.hour-item .time {
    color: var(--accent-color);
}

@media (max-width: 767px) {
    .hours-grid {
        flex-direction: column;
        gap: 15px;
    }
    
    .hour-item {
        flex-direction: row;
        justify-content: space-between;
        min-width: unset;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}
