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

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

:root {
    /* Natural Color Palette */
    --primary-green: #7fb069;
    --soft-green: #B8E6B8;
    --lavender: #E6E6FA;
    --mint-green: #F0FFF0;
    --pearl-white: #FFF8DC;
    --sage-green: #A8C798;
    --dusty-green: #9DB5A5;
    --cream: #F5F5DC;
    --light-purple: #DDA0DD;
    --gold: #FFD700;
    
    /* Legacy support - map old pink names to green */
    --primary-pink: #7fb069;
    --soft-pink: #B8E6B8;
    --rose-gold: #A8C798;
    --dusty-pink: #9DB5A5;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-decorative: 'Dancing Script', cursive;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* Shadows */
    --soft-shadow: 0 10px 30px rgba(127, 176, 105, 0.1);
    --card-shadow: 0 15px 35px rgba(127, 176, 105, 0.15);
    
    /* Transitions */
    --smooth-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, var(--mint-green) 0%, var(--cream) 100%);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

/* Prevent horizontal overflow */
img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

/* Ensure all sections are contained */
section {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Prevent any element from causing horizontal scroll */
* {
    max-width: 100%;
}

/* Exception for specific elements that need to be wider */
.header,
.navbar,
.nav-container {
    max-width: 100%;
}

/* Ensure tables don't overflow */
table {
    width: 100%;
    max-width: 100%;
    table-layout: auto;
    word-wrap: break-word;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
    width: 100%;
    box-sizing: border-box;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--soft-shadow);
    transition: var(--smooth-transition);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-family: var(--font-decorative);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-pink);
    text-decoration: none;
}

.nav-logo i {
    margin-right: 0.5rem;
    font-size: 2rem;
    color: var(--primary-green);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: var(--smooth-transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-pink);
    transition: var(--smooth-transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-pink);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-pink);
    margin: 3px 0;
    transition: var(--smooth-transition);
}

/* Hamburger animation when active */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--lavender) 0%, var(--soft-pink) 50%, var(--mint-green) 100%);
    opacity: 0.3;
    z-index: -1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-family: var(--font-decorative);
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-pink);
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.magical {
    display: inline-block;
    animation: none;
    font-size: 3rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--dusty-pink);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--smooth-transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--smooth-transition);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-pink), var(--rose-gold));
    color: white;
    box-shadow: var(--card-shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-pink);
    border: 2px solid var(--primary-pink);
}

.btn-secondary:hover {
    background: var(--primary-pink);
    color: white;
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-leaf {
    position: absolute;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.leaf-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.leaf-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.leaf-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.leaf-4 {
    bottom: 10%;
    right: 10%;
    animation-delay: 0.5s;
}

.tree-showcase {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--pearl-white), var(--cream));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--card-shadow);
    position: relative;
}

.tree-showcase::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: linear-gradient(135deg, var(--primary-pink), var(--gold));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
}

.tree-icon {
    font-size: 8rem;
    color: var(--primary-pink);
    animation: pulse 2s infinite;
}

.tree-image {
    width: 240px;
    height: 240px;
    object-fit: cover;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-decorative);
    font-size: 3rem;
    color: var(--primary-pink);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--dusty-pink);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-family: var(--font-decorative);
    font-size: 2.5rem;
    color: var(--primary-pink);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--mint-green);
    border-radius: 15px;
    transition: var(--smooth-transition);
}

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

.feature i {
    color: var(--primary-pink);
    font-size: 1.2rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 400px;
    height: 300px;
    background: linear-gradient(135deg, var(--lavender), var(--soft-pink));
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--card-shadow);
    transition: var(--smooth-transition);
}

.image-placeholder:hover {
    transform: scale(1.05);
}

.image-placeholder i {
    font-size: 4rem;
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

.image-placeholder p {
    font-size: 1.2rem;
    color: var(--dusty-pink);
    font-weight: 600;
}

/* Products Section */
.products {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--mint-green) 0%, var(--cream) 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--smooth-transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 105, 180, 0.2);
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, var(--lavender), var(--soft-pink));
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image i {
    font-size: 4rem;
    color: var(--primary-pink);
}

.product-content {
    padding: 2rem;
    text-align: center;
}

.product-content h3 {
    font-family: var(--font-decorative);
    font-size: 1.8rem;
    color: var(--primary-pink);
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.product-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

/* Gallery Section */
.gallery {
    padding: var(--section-padding);
    background: white;
}

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

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    transition: var(--smooth-transition);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--card-shadow);
}

.gallery-placeholder {
    height: 250px;
    background: linear-gradient(135deg, var(--lavender), var(--soft-pink));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery-placeholder i {
    font-size: 3rem;
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

.gallery-placeholder p {
    color: var(--dusty-pink);
    font-weight: 600;
}

.gallery-image {
    height: 250px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-image img {
    cursor: pointer;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    margin-top: 5%;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--smooth-transition);
}

.close-modal:hover {
    color: var(--gold);
    transform: scale(1.1);
}

.modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 40px;
    font-family: var(--font-primary);
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--soft-shadow);
    transition: var(--smooth-transition);
}

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

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-pink);
    width: 50px;
    text-align: center;
}

.contact-item h4 {
    color: var(--primary-pink);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--primary-pink);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--smooth-transition);
}

.social-link:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--lavender);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--smooth-transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
}

/* Footer */
.footer {
    background: var(--primary-pink);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-family: var(--font-decorative);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    margin-right: 0.5rem;
    color: var(--gold);
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--gold);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: var(--smooth-transition);
}

.footer-section a:hover {
    color: var(--gold);
}

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

/* Animations */
@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 0.8; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        position: relative;
    }
    
    * {
        max-width: 100%;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--soft-shadow);
        padding: 2rem 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 1rem 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 0.5rem 0;
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 15px;
        width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
        word-wrap: break-word;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        width: 100%;
    }
    
    .features {
        grid-template-columns: 1fr;
        width: 100%;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        width: 100%;
    }
    
    .tree-showcase {
        width: 200px;
        height: 200px;
        max-width: 100%;
    }
    
    .tree-icon {
        font-size: 6rem;
    }
    
    .tree-image {
        width: 180px;
        height: 180px;
        max-width: 100%;
    }
    
    .container {
        padding: 0 15px;
        width: 100%;
    }
    
    .nav-container {
        padding: 0 15px;
        width: 100%;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2rem;
        word-wrap: break-word;
    }
    
    .section-title {
        font-size: 2rem;
        word-wrap: break-word;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: auto;
        max-width: 100%;
    }
    
    .tree-showcase {
        width: 180px;
        height: 180px;
        max-width: 100%;
    }
    
    .tree-icon {
        font-size: 4rem;
    }
    
    .tree-image {
        width: 160px;
        height: 160px;
        max-width: 100%;
    }
    
    .container {
        padding: 0 10px;
        width: 100%;
    }
    
    .nav-container {
        padding: 0 10px;
        width: 100%;
    }
    
    .hero-content {
        padding: 0 10px;
        width: 100%;
    }
    
    /* Additional fixes for very small screens */
    div[style*="grid-template-columns: 2fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    h2[style*="font-size: 3rem"] {
        font-size: 1.5rem !important;
    }
    
    h2[style*="font-size: 2.5rem"] {
        font-size: 1.3rem !important;
    }
    
    h3[style*="font-size: 1.8rem"] {
        font-size: 1.3rem !important;
    }
    
    div[style*="padding: 2rem"] {
        padding: 1.5rem !important;
    }
    
    /* Additional fixes for product cards on very small screens */
    .product-card.featured .product-content {
        min-height: 100px !important;
        padding: 1rem 0.75rem !important;
        overflow: visible !important;
    }
    
    .product-card.featured .product-content h3 {
        font-size: 1.2rem !important;
        margin-bottom: 0.5rem !important;
        overflow: visible !important;
    }
    
    .product-card.featured .product-content p {
        font-size: 1rem !important;
        overflow: visible !important;
        white-space: normal !important;
        word-break: break-word !important;
    }
    
    .product-card.featured .product-image {
        min-height: 200px !important;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Page-specific styles */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--lavender) 0%, var(--soft-pink) 50%, var(--mint-green) 100%);
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    opacity: 0;
    animation: none;
}

.page-title {
    font-family: var(--font-decorative);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-pink);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--dusty-pink);
    max-width: 600px;
    margin: 0 auto;
}

/* Active navigation link */
.nav-link.active {
    color: var(--primary-pink);
}

.nav-link.active::after {
    width: 100%;
}

/* About page styles */
.about-main {
    padding: var(--section-padding);
    background: white;
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.story-content h2 {
    font-family: var(--font-decorative);
    font-size: 2.5rem;
    color: var(--primary-pink);
    margin-bottom: 1.5rem;
}

.story-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.values-section {
    margin-bottom: 4rem;
}

.values-section h2 {
    font-family: var(--font-decorative);
    font-size: 2.5rem;
    color: var(--primary-pink);
    text-align: center;
    margin-bottom: 3rem;
}

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

.value-card {
    background: var(--mint-green);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--smooth-transition);
    box-shadow: var(--soft-shadow);
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    font-family: var(--font-decorative);
    font-size: 1.5rem;
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

.process-section {
    margin-bottom: 4rem;
}

.process-section h2 {
    font-family: var(--font-decorative);
    font-size: 2.5rem;
    color: var(--primary-pink);
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--soft-shadow);
    transition: var(--smooth-transition);
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-pink), var(--rose-gold));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-family: var(--font-decorative);
    font-size: 1.3rem;
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

.team-section {
    margin-bottom: 4rem;
}

.team-section h2 {
    font-family: var(--font-decorative);
    font-size: 2.5rem;
    color: var(--primary-pink);
    text-align: center;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--soft-shadow);
    transition: var(--smooth-transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow);
}

.member-photo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--lavender), var(--soft-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.member-photo i {
    font-size: 3rem;
    color: var(--primary-pink);
}

.team-member h3 {
    font-family: var(--font-decorative);
    font-size: 1.5rem;
    color: var(--primary-pink);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Products page styles */
.products-main {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--mint-green) 0%, var(--cream) 100%);
}

.featured-products h2,
.product-categories h2,
.pricing-info h2 {
    font-family: var(--font-decorative);
    font-size: 2.5rem;
    color: var(--primary-pink);
    text-align: center;
    margin-bottom: 3rem;
}

.product-card.featured {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--smooth-transition);
    display: flex;
    flex-direction: column;
}

.product-card.featured .product-content {
    overflow: visible;
    flex-shrink: 0;
}

.product-card.featured:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(255, 105, 180, 0.25);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-features {
    list-style: none;
    margin: 1.5rem 0;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.product-features i {
    color: var(--primary-pink);
    font-size: 0.9rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--soft-shadow);
    transition: var(--smooth-transition);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-pink), var(--rose-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.category-icon i {
    font-size: 2rem;
    color: white;
}

.category-card h3 {
    font-family: var(--font-decorative);
    font-size: 1.3rem;
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

.category-link {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 600;
    transition: var(--smooth-transition);
}

.category-link:hover {
    color: var(--gold);
}

.custom-orders {
    background: white;
    padding: 4rem 0;
    margin: 4rem 0;
    border-radius: 20px;
}

.custom-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.custom-features {
    list-style: none;
    margin: 1.5rem 0;
}

.custom-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.custom-features i {
    color: var(--primary-pink);
}

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

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--soft-shadow);
    transition: var(--smooth-transition);
}

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

.pricing-card h3 {
    font-family: var(--font-decorative);
    font-size: 1.3rem;
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
}

.pricing-card li {
    color: #666;
    margin-bottom: 0.5rem;
}

/* Gallery page styles */
.gallery-main {
    padding: var(--section-padding);
    background: white;
}

.gallery-filters {
    padding: 2rem 0;
    background: var(--mint-green);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: white;
    border: 2px solid var(--primary-pink);
    border-radius: 25px;
    color: var(--primary-pink);
    font-weight: 600;
    cursor: pointer;
    transition: var(--smooth-transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-pink);
    color: white;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: var(--smooth-transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-family: var(--font-decorative);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.gallery-btn {
    background: var(--primary-pink);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-top: 1rem;
    cursor: pointer;
    transition: var(--smooth-transition);
}

.gallery-btn:hover {
    background: var(--gold);
}

.featured-projects {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--lavender), var(--soft-pink));
}

.featured-projects h2 {
    font-family: var(--font-decorative);
    font-size: 2.5rem;
    color: var(--primary-pink);
    text-align: center;
    margin-bottom: 3rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--soft-shadow);
    transition: var(--smooth-transition);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow);
}

.project-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-pink), var(--rose-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.project-image i {
    font-size: 2rem;
    color: white;
}

.project-card h3 {
    font-family: var(--font-decorative);
    font-size: 1.3rem;
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

.project-link {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 600;
    transition: var(--smooth-transition);
}

.project-link:hover {
    color: var(--gold);
}

/* Contact page styles */
.contact-main {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--mint-green) 0%, var(--cream) 100%);
}

.contact-main h2 {
    font-family: var(--font-decorative);
    font-size: 2.5rem;
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--soft-shadow);
    transition: var(--smooth-transition);
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 1.5rem;
    color: white;
}

.method-content h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.method-content p {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.method-content span {
    color: #666;
    font-size: 0.9rem;
}

.social-media {
    margin-top: 3rem;
}

.social-media h3 {
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: white;
    border-radius: 25px;
    text-decoration: none;
    color: var(--primary-pink);
    font-weight: 600;
    transition: var(--smooth-transition);
    box-shadow: var(--soft-shadow);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-shadow);
}

.social-link.facebook:hover {
    background: #3b5998;
    color: white;
}

.social-link.instagram:hover {
    background: #e1306c;
    color: white;
}

.social-link.pinterest:hover {
    background: #bd081c;
    color: white;
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
}

.contact-form h2 {
    font-family: var(--font-decorative);
    font-size: 2rem;
    color: var(--primary-pink);
    margin-bottom: 2rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-pink);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--lavender);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--smooth-transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

/* FAQ section */
.faq-section {
    padding: 4rem 0;
    background: white;
}

.faq-section h2 {
    font-family: var(--font-decorative);
    font-size: 2.5rem;
    color: var(--primary-pink);
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: var(--mint-green);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--soft-shadow);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--smooth-transition);
}

.faq-question:hover {
    background: rgba(255, 105, 180, 0.1);
}

.faq-question h3 {
    color: var(--primary-pink);
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--primary-pink);
    transition: var(--smooth-transition);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Map section */
.map-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--lavender), var(--soft-pink));
}

.map-section h2 {
    font-family: var(--font-decorative);
    font-size: 2.5rem;
    color: var(--primary-pink);
    text-align: center;
    margin-bottom: 3rem;
}

.map-placeholder {
    height: 400px;
    background: white;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--card-shadow);
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

.map-placeholder p {
    font-size: 1.2rem;
    color: var(--dusty-pink);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.map-placeholder span {
    color: #666;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-pink), var(--rose-gold));
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-decorative);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn {
    background: white;
    color: var(--primary-pink);
    border: 2px solid white;
}

.cta-section .btn:hover {
    background: transparent;
    color: white;
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
        word-wrap: break-word;
    }
    
    .about-story,
    .custom-content {
        grid-template-columns: 1fr;
        width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        width: 100%;
    }
    
    .filter-buttons {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }
    
    .filter-buttons::-webkit-scrollbar {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .products-grid,
    .gallery-grid,
    .values-grid,
    .process-steps {
        width: 100%;
        grid-template-columns: 1fr;
    }
    
    .product-card,
    .gallery-item {
        width: 100%;
        max-width: 100%;
    }
    
    /* Fix product content on mobile - ensure proper spacing and visibility */
    .product-card.featured .product-content {
        height: auto !important;
        min-height: 120px !important;
        padding: 1.5rem 1rem !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .product-card.featured .product-content h3 {
        font-size: 1.4rem !important;
        margin-bottom: 0.75rem !important;
        padding: 0 0.5rem !important;
        line-height: 1.3 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        width: 100% !important;
    }
    
    .product-card.featured .product-content p {
        font-size: 1.2rem !important;
        margin: 0 !important;
        padding: 0 0.5rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
        line-height: 1.4 !important;
        width: 100% !important;
        text-align: center !important;
        display: block !important;
        overflow: visible !important;
        text-overflow: clip !important;
    }
    
    .product-card.featured .product-image {
        height: auto !important;
        min-height: 250px !important;
    }
    
    /* Fix for inline grid layouts in drevesa.html */
    div[style*="grid-template-columns: 2fr 1fr"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Ensure all flex containers don't overflow */
    div[style*="display: flex"] {
        flex-wrap: wrap !important;
        max-width: 100% !important;
    }
    
    /* Fix long text that might overflow */
    h2[style*="font-size: 3rem"],
    h2[style*="font-size: 2.5rem"] {
        font-size: 1.8rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    /* Fix price list flex items */
    div[style*="display: flex"][style*="justify-content: space-between"] {
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
    }
    
    /* Ensure all text is contained */
    p, span, div, h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
}
