* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Header Styles */
header {
    padding: 20px 0;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.logo {
    margin: 0 auto 20px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #e8e8e8;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    padding: 15px 0;
}

.main-nav ul li {
    margin: 0 20px;
}

.main-nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.main-nav ul li a:hover {
    color: #e77e7e;
}

/* Hero Section Styles */
.hero {
    position: relative;
    display: flex;
    margin: 30px 20px;
}

.slider {
    position: relative;
    overflow: hidden;
    height: 500px;
    width: 65%;
    border: 1px solid #e8e8e8;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
	pointer-events: none;
    transition: opacity 0.4s ease-in-out;
}

.slide.current {
    opacity: 1;
	pointer-events: auto;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content {
    position: absolute;
    bottom: 50px;
    left: 50px;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    opacity: 0;
    max-width: 70%;
    transform: translateX(-100px);
    transition: all 0.7s ease-in-out 0.3s;
}

.slide.current .content {
    opacity: 1;
    transform: translateX(0);
}

.content h1 {
    margin-bottom: 10px;
    color: #333;
    font-size: 24px;
}

.buttons {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
}

.buttons button {
    background: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin: 0 5px;
    transition: background 0.3s ease;
}

.buttons button:hover {
    background: rgba(255, 255, 255, 1);
}

.shop-now {
    display: inline-block;
    background-color: #e77e7e;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.shop-now:hover {
    background-color: #d66c6c;
}

.featured-product {
    width: 30%;
    margin-left: 5%;
    text-align: center;
    padding: 20px;
    border: 1px solid #e8e8e8;
    background-color: #fff;
}

.featured-product .product-image {
    width: 100%;
    max-height: 300px;
    overflow: hidden;
    margin-bottom: 20px;
}

.featured-product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-product h3 {
    margin-bottom: 10px;
    font-weight: bold;
}

.price {
    color: #e77e7e;
    font-weight: bold;
    margin-bottom: 15px;
}

.add-to-cart {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-to-cart:hover {
    background-color: #555;
}

/* New Products Section */
.new-products {
    padding: 40px 20px;
    background-color: #fff;
    text-align: center;
}

.new-products h2 {
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.new-products h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background-color: #e77e7e;
}

.product-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
}

.product-card {
    width: 24%;
    margin-bottom: 30px;
    padding: 15px;
    border: 1px solid #e8e8e8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-card .product-image {
    height: 200px;
    overflow: hidden;
    margin-bottom: 15px;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card h3 {
    margin-bottom: 5px;
    font-size: 16px;
}

/* Footer Styles */
footer {
    background-color: #fff;
    padding: 30px 20px;
    border-top: 1px solid #e8e8e8;
}

.footer-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-bottom: 20px;
}

.footer-nav ul li {
    margin: 0 15px;
}

.footer-nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: #e77e7e;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #e8e8e8;
    padding-top: 20px;
    margin-top: 20px;
}

.copyright {
    font-size: 14px;
}

.contact-info {
    text-align: right;
    font-size: 14px;
}

.social-media {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.social-media a {
    display: inline-block;
    margin: 0 10px;
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: #333;
    transition: all 0.3s ease;
}

.social-media a:hover {
    background-color: #e77e7e;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
    }
    
    .slider, .featured-product {
        width: 100%;
        margin: 0 0 20px 0;
    }
    
    .product-card {
        width: 48%;
    }
}

@media (max-width: 768px) {
    .main-nav ul {
        flex-wrap: wrap;
    }
    
    .main-nav ul li {
        margin: 5px 10px;
    }
    
    .footer-info {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info {
        text-align: center;
        margin-top: 15px;
    }
    
    .product-card {
        width: 100%;
    }
}

/* Additional styles for products page */

/* Products Hero Banner */
.products-hero {
    margin: 30px 20px;
}

.hero-banner {
    position: relative;
    height: 300px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    text-align: center;
    min-width: 300px;
}

.hero-content h1 {
    margin-bottom: 10px;
    color: #333;
}

/* Product Filters */
.product-filters {
    margin: 20px;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #e8e8e8;
}

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

.search-box {
    display: flex;
    width: 40%;
}

.search-box input {
    width: 100%;
    padding: 10px;
    border: 1px solid #e8e8e8;
    border-right: none;
}

.search-box button {
    background-color: #e77e7e;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-box button:hover {
    background-color: #d66c6c;
}

.filter-options {
    display: flex;
}

.filter-options select {
    padding: 10px;
    margin-left: 10px;
    border: 1px solid #e8e8e8;
    cursor: pointer;
}

/* All Products Section */
.all-products {
    padding: 20px;
    background-color: #fff;
    text-align: center;
}

.all-products h2 {
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.all-products h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background-color: #e77e7e;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.page-btn {
    width: 40px;
    height: 40px;
    margin: 0 5px;
    border: 1px solid #e8e8e8;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-btn.active, .page-btn:hover {
    background-color: #e77e7e;
    color: #fff;
    border-color: #e77e7e;
}

.page-btn.next, .page-btn.previous {
    width: auto;
    padding: 0 15px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .search-box {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .filter-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-options {
        justify-content: space-between;
    }
    
    .filter-options select {
        width: 48%;
        margin: 0;
    }
}

@media (max-width: 768px) {
    .product-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-card {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-options {
        flex-direction: column;
    }
    
    .filter-options select {
        width: 100%;
        margin: 5px 0;
    }
    
    .hero-content {
        width: 90%;
        padding: 15px;
    }
}

/* Additional CSS to add to global.css for About and Contact pages */

/* Active navigation state */
.main-nav a.active {
    color: #2c5530;
    font-weight: bold;
    border-bottom: 2px solid #2c5530;
}

/* Page Hero Section */
.page-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0 60px;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3rem;
    color: #2c5530;
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Page Styles */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 0;
    position: relative;
    z-index: 2;
}

/* Contact Page Styles */
.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 0;
    position: relative;
    z-index: 2;
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.story-text h2 {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 30px;
    font-weight: 300;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Values Section */
.values-section {
    text-align: center;
    margin-bottom: 80px;
}

.values-section h2 {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 50px;
    font-weight: 300;
}

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

.value-card {
    padding: 40px 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    color: #2c5530;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #2c5530;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    text-align: center;
    margin-bottom: 80px;
}

.team-section h2 {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 50px;
    font-weight: 300;
}

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

.team-member {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 30px;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image img {
    width: 200px;
    height: 240px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 1.4rem;
    color: #2c5530;
    margin-bottom: 5px;
}

.team-member .role {
    color: #888;
    font-style: italic;
    margin-bottom: 15px;
}

.team-member p:not(.role) {
    color: #666;
    line-height: 1.6;
}

/* Commitment Section */
.commitment-section {
    text-align: center;
    padding: 60px 40px;
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 60px;
}

.commitment-section h2 {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 30px;
    font-weight: 300;
}

.commitment-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto 20px;
}

/* Contact Page Styles */
.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info-section {
    margin-bottom: 60px;
}

.contact-info-section h2,
.contact-form-section h2,
.map-section h2,
.emergency-contact h2 {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 40px;
    font-weight: 300;
    text-align: center;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2rem;
    color: #2c5530;
    margin-right: 20px;
    margin-top: 5px;
}

.contact-details h3 {
    font-size: 1.3rem;
    color: #2c5530;
    margin-bottom: 10px;
}

.contact-details p {
    color: #666;
    line-height: 1.6;
}

/* Contact Form */
.contact-form-section {
    margin-bottom: 60px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c5530;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5530;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 2px;
}

.submit-btn {
    width: 100%;
    background: #2c5530;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background: #1e3a21;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Map Section */
.map-section {
    margin-bottom: 60px;
}

.map-container {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-placeholder {
    padding: 80px 40px;
    text-align: center;
    color: #666;
}

.map-placeholder i {
    font-size: 4rem;
    color: #2c5530;
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.map-placeholder .address {
    font-weight: 500;
    color: #2c5530;
}

/* Emergency Contact Section */
.emergency-contact {
    text-align: center;
    padding: 40px;
    background: #fff3cd;
    border-radius: 15px;
    border: 1px solid #ffeaa7;
    margin-bottom: 60px;
}

.emergency-contact p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #856404;
    max-width: 600px;
    margin: 0 auto;
}

.emergency-contact strong {
    color: #2c5530;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .contact-info-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-text h2,
    .values-section h2,
    .team-section h2,
    .commitment-section h2,
    .contact-info-section h2,
    .contact-form-section h2,
    .map-section h2,
    .emergency-contact h2 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .values-grid,
    .team-grid,
    .contact-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .page-hero {
        padding: 60px 20px 40px;
    }
    
    .about-content,
    .contact-content {
        padding: 40px 15px 0;
    }
    
    .story-text h2,
    .values-section h2,
    .team-section h2,
    .commitment-section h2,
    .contact-info-section h2,
    .contact-form-section h2,
    .map-section h2,
    .emergency-contact h2 {
        font-size: 1.6rem;
    }
}

/* Hot Sticker CSS - Add this to your global.css */

.featured-product {
    position: relative; /* Make sure this is set for absolute positioning of sticker */
}

.hot-sticker {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #ff4757, #ff3838);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
    z-index: 10;
    animation: pulse-sticker 2s infinite;
    transform: rotate(-5deg);
}

.hot-sticker::before {
    content: "🔥";
    margin-right: 5px;
    font-size: 1rem;
}

/* Pulse animation for the hot sticker */
@keyframes pulse-sticker {
    0% {
        transform: rotate(-5deg) scale(1);
        box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
    }
    50% {
        transform: rotate(-5deg) scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 71, 87, 0.6);
    }
    100% {
        transform: rotate(-5deg) scale(1);
        box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
    }
}

/* Alternative hot sticker styles (choose one) */

/* Option 2: Ribbon style */
.hot-sticker.ribbon {
    background: #ff4757;
    padding: 10px 20px 10px 15px;
    border-radius: 0;
    transform: rotate(0deg);
    top: 20px;
    right: -5px;
    animation: none;
}

.hot-sticker.ribbon::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 100%;
    width: 0;
    height: 0;
    border-left: 5px solid #e73c3c;
    border-bottom: 5px solid transparent;
}

/* Option 3: Star burst style */
.hot-sticker.starburst {
    background: #ff4757;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 0.75rem;
    line-height: 1;
    text-align: center;
    top: 10px;
    right: 10px;
    transform: rotate(-15deg);
}

.hot-sticker.starburst::before {
    content: "🔥\AHOT";
    white-space: pre;
    margin: 0;
}

/* Option 4: Corner triangle style */
.hot-sticker.corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 60px 60px 0;
    border-color: transparent #ff4757 transparent transparent;
    transform: none;
    animation: none;
    padding: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
}

.hot-sticker.corner::after {
    content: "HOT";
    position: absolute;
    top: 8px;
    right: -45px;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hot-sticker {
        top: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .hot-sticker.starburst {
        width: 50px;
        height: 50px;
        font-size: 0.65rem;
    }
    
    .hot-sticker.corner {
        border-width: 0 50px 50px 0;
    }
    
    .hot-sticker.corner::after {
        top: 6px;
        right: -38px;
        font-size: 0.6rem;
    }
}

/* 404 Error Page Styles */

.error-main {
    min-height: calc(100vh - 200px);
}

.error-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.error-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* 404 Number with Flower */
.error-visual {
    margin-bottom: 40px;
    position: relative;
}

.error-number {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    font-weight: 300;
    color: #2c5530;
    margin-bottom: 20px;
    position: relative;
}

.error-number .four {
    display: inline-block;
    animation: bounce 2s infinite;
}

.error-number .four:nth-child(3) {
    animation-delay: 0.2s;
}

.flower-zero {
    margin: 0 20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #2c5530, #4a7c59);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    animation: rotate 3s infinite linear;
    position: relative;
}

.flower-zero::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    background: rgba(44, 85, 48, 0.1);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Floating Petals Animation */
.floating-petals {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.petal {
    position: absolute;
    font-size: 2rem;
    animation: float 6s infinite linear;
    opacity: 0.7;
}

.petal-1 { animation-delay: 0s; left: 10%; }
.petal-2 { animation-delay: 1s; left: 20%; }
.petal-3 { animation-delay: 2s; left: 80%; }
.petal-4 { animation-delay: 3s; left: 70%; }
.petal-5 { animation-delay: 4s; left: 40%; }
.petal-6 { animation-delay: 5s; left: 60%; }

/* Error Text */
.error-text {
    margin-bottom: 40px;
}

.error-text h1 {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 20px;
    font-weight: 300;
}

.error-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 15px;
    font-style: italic;
}

.error-description {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 0;
}

/* Action Buttons */
.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #2c5530;
    color: white;
}

.btn-primary:hover {
    background: #1e3a21;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 85, 48, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #2c5530;
    border: 2px solid #2c5530;
}

.btn-secondary:hover {
    background: #2c5530;
    color: white;
    transform: translateY(-2px);
}

/* Search Box */
.error-search {
    margin-bottom: 50px;
}

.error-search h3 {
    font-size: 1.4rem;
    color: #2c5530;
    margin-bottom: 20px;
    font-weight: 400;
}

.search-box {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    background: white;
    border-radius: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.search-box input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    outline: none;
    font-size: 1rem;
}

.search-box button {
    background: #2c5530;
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-box button:hover {
    background: #1e3a21;
}

/* Quick Links */
.quick-links {
    margin-bottom: 40px;
}

.quick-links h3 {
    font-size: 1.4rem;
    color: #2c5530;
    margin-bottom: 25px;
    font-weight: 400;
}

.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    text-decoration: none;
    color: #2c5530;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.quick-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.quick-link i {
    font-size: 1.8rem;
    color: #2c5530;
}

.quick-link span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Error Suggestions Section */
.error-suggestions {
    padding: 60px 0;
    background: #f8f9fa;
}

.suggestions-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.error-suggestions h2 {
    font-size: 2.2rem;
    color: #2c5530;
    margin-bottom: 50px;
    font-weight: 300;
}

.error-suggestions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .error-number {
        font-size: 6rem;
    }
    
    .flower-zero {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin: 0 10px;
    }
    
    .flower-zero::before {
        width: 100px;
        height: 100px;
    }
    
    .error-text h1 {
        font-size: 2rem;
    }
    
    .error-subtitle {
        font-size: 1.1rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .link-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .quick-link {
        padding: 15px;
    }
    
    .petal {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .error-hero {
        padding: 40px 0;
    }
    
    .error-content {
        padding: 0 15px;
    }
    
    .error-number {
        font-size: 4rem;
    }
    
    .flower-zero {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .error-text h1 {
        font-size: 1.6rem;
    }
    
    .error-suggestions .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .link-grid {
        grid-template-columns: 1fr;
    }
}