:root {
--color-primary: #FF9B8A;
--color-secondary: #8FBC8F;
--color-accent: #FFF8E7;
--color-dark: #2C3E50;
--color-light: #FFFFFF;
--color-text: #333333;
--color-text-light: #666666;
--font-heading: 'Cormorant Garamond', serif;
--font-body: 'Quicksand', sans-serif;
--space-xs: 0.5rem;
--space-sm: 1rem;
--space-md: 2rem;
--space-lg: 3rem;
--space-xl: 4rem;
--radius-sm: 0.5rem;
--radius-md: 1rem;
--radius-lg: 1.5rem;
--shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
--shadow-md: 0 4px 16px rgba(0,0,0,0.15);
--shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
--transition: all 0.3s ease;
}

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

html {
font-size: 100%;
scroll-behavior: smooth;
}

body {
font-family: var(--font-body);
color: var(--color-text);
line-height: 1.6;
background-color: var(--color-light);
overflow-x: hidden;
}

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

a {
text-decoration: none;
color: inherit;
transition: var(--transition);
}

button {
border: none;
background: none;
cursor: pointer;
font-family: inherit;
}

.container-main {
max-width: 75rem;
margin: 0 auto;
padding: 0 var(--space-sm);
}

.container-header {
max-width: 75rem;
margin: 0 auto;
padding: 0 var(--space-sm);
display: flex;
justify-content: space-between;
align-items: center;
}

.container-footer {
max-width: 75rem;
margin: 0 auto;
padding: 0 var(--space-sm);
text-align: center;
}

.main-header {
background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-light) 100%);
padding: var(--space-sm) 0;
box-shadow: var(--shadow-sm);
position: relative;
z-index: 100;
}

.logo {
font-family: var(--font-heading);
font-size: 1.75rem;
font-weight: 600;
color: var(--color-primary);
cursor: pointer;
}

.main-nav {
display: flex;
gap: var(--space-md);
}

.main-nav a {
font-weight: 500;
color: var(--color-dark);
position: relative;
padding: var(--space-xs) 0;
}

.main-nav a::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: var(--color-primary);
transition: var(--transition);
}

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

.burger-btn {
display: none;
flex-direction: column;
gap: 0.25rem;
padding: var(--space-xs);
z-index: 101;
}

.burger-btn span {
width: 1.5rem;
height: 2px;
background: var(--color-dark);
transition: var(--transition);
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 3px);}

.burger-btn.active span:nth-child(2) {
opacity: 0;
transform: translateX(-1rem);
}

.burger-btn.active span:nth-child(3) {
transform: rotate(-45deg) translate(0.35rem, -0.35rem);
}

.burger-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.5);
z-index: 99;
opacity: 0;
transition: var(--transition);
}

.burger-overlay.active {
opacity: 1;
}

.hero-section {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--space-lg);
align-items: center;
padding: var(--space-xl) var(--space-sm);
background: linear-gradient(135deg, rgba(255, 248, 231, 0.4) 0%, rgba(232, 245, 233, 0.6) 100%);
min-height: 85vh;
position: relative;
overflow: hidden;
}

.hero-section::before {
content: '';
position: absolute;
top: -50%;
right: -10%;
width: 40rem;
height: 40rem;
background: radial-gradient(circle, rgba(255, 155, 138, 0.15) 0%, transparent 70%);
border-radius: 50%;
animation: float 8s ease-in-out infinite;
}

.hero-section::after {
content: '';
position: absolute;
bottom: -30%;
left: -5%;
width: 30rem;
height: 30rem;
background: radial-gradient(circle, rgba(143, 188, 143, 0.12) 0%, transparent 70%);
border-radius: 50%;
animation: float 10s ease-in-out infinite reverse;
}

.hero-content {
animation: fadeInLeft 0.8s ease;
position: relative;
z-index: 2;
}

.hero-title {
font-family: var(--font-heading);
font-size: 3.5rem;
font-weight: 600;
color: var(--color-dark);
margin-bottom: var(--space-sm);
line-height: 1.2;
background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-primary) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.hero-text {
font-size: 1.125rem;
color: var(--color-text-light);
margin-bottom: var(--space-md);
}

.hero-image {
animation: fadeInRight 0.8s ease;
position: relative;
z-index: 2;
}

.hero-image img {
border-radius: var(--radius-lg);
box-shadow: 0 20px 60px rgba(255, 155, 138, 0.3);
width: 100%;
object-fit: cover;
transition: var(--transition);
}

.hero-image img:hover {
transform: scale(1.02) translateY(-5px);
box-shadow: 0 25px 70px rgba(255, 155, 138, 0.4);
}

.cta-btn {
display: inline-block;
background: var(--color-primary);
color: var(--color-light);
padding: 0.875rem 2rem;
border-radius: var(--radius-md);
font-weight: 600;
box-shadow: var(--shadow-sm);
transition: var(--transition);
}

.cta-btn:hover {
background: #FF8A75;
transform: translateY(-2px);
box-shadow: var(--shadow-md);
}

.secondary-btn {
display: inline-block;
background: var(--color-secondary);
color: var(--color-light);
padding: 0.875rem 2rem;
border-radius: var(--radius-md);
font-weight: 600;
box-shadow: var(--shadow-sm);
transition: var(--transition);
}

.secondary-btn:hover {
background: #7FAB7F;
transform: translateY(-2px);
box-shadow: var(--shadow-md);
}

.cta-btn-large {
display: inline-block;
background: var(--color-primary);
color: var(--color-light);
padding: 1.125rem 2.5rem;
border-radius: var(--radius-md);
font-weight: 600;
font-size: 1.125rem;
box-shadow: var(--shadow-md);
transition: var(--transition);
}

.cta-btn-large:hover {
background: #FF8A75;
transform: translateY(-3px);
box-shadow: var(--shadow-lg);
}

.features-section {
padding: var(--space-xl) 0;
background: var(--color-light);
}

.feature-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
gap: var(--space-md);
}

.feature-card {
text-align: center;
padding: var(--space-md);
background: var(--color-accent);
border-radius: var(--radius-md);
transition: var(--transition);
}

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

.feature-icon {
font-size: 2.5rem;
color: var(--color-secondary);
margin-bottom: var(--space-sm);
}

.feature-title {
font-family: var(--font-heading);
font-size: 1.5rem;
color: var(--color-dark);
margin-bottom: var(--space-xs);
}

.about-section {
padding: var(--space-xl) 0;
background: linear-gradient(to bottom, var(--color-light), var(--color-accent));
}

.about-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--space-lg);
align-items: center;
}

.about-image img {
border-radius: var(--radius-lg);
box-shadow: var(--shadow-md);
}

.section-title {
font-family: var(--font-heading);
font-size: 2.5rem;
color: var(--color-dark);
margin-bottom: var(--space-md);
}

.section-title.centered {
text-align: center;
}

.about-content p {
margin-bottom: var(--space-sm);
color: var(--color-text-light);
}

.showcase-section {
padding: var(--space-xl) 0;
background: var(--color-light);
}

.showcase-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
gap: var(--space-md);
margin-top: var(--space-md);
}

.showcase-item {
background: var(--color-light);
border-radius: var(--radius-md);
overflow: hidden;
box-shadow: var(--shadow-sm);
transition: var(--transition);
}

.showcase-item:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
}

.showcase-image {
overflow: hidden;
height: 20rem;
}

.showcase-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: var(--transition);
}

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

.showcase-title {
font-family: var(--font-heading);
font-size: 1.5rem;
color: var(--color-dark);
padding: var(--space-sm);
padding-bottom: 0;
}

.showcase-item p {
padding: var(--space-sm);
color: var(--color-text-light);
}

.testimonials-section {
padding: var(--space-xl) 0;
background: linear-gradient(135deg, #E8F5E9 0%, var(--color-accent) 100%);
}

.testimonial-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
gap: var(--space-md);
margin-top: var(--space-md);
}

.testimonial-card {
background: var(--color-light);
padding: var(--space-md);
border-radius: var(--radius-md);
box-shadow: var(--shadow-sm);
border-left: 4px solid var(--color-primary);
}

.testimonial-text {
font-style: italic;
color: var(--color-text-light);
margin-bottom: var(--space-sm);
}

.testimonial-author {
font-weight: 600;
color: var(--color-dark);
}

.cta-section {
padding: var(--space-xl) 0;
background: linear-gradient(135deg, var(--color-primary) 0%, #FF8A75 100%);
text-align: center;
color: var(--color-light);
}

.cta-title {
font-family: var(--font-heading);
font-size: 2.5rem;
margin-bottom: var(--space-sm);
}

.cta-text {
font-size: 1.125rem;
margin-bottom: var(--space-md);
opacity: 0.95;
}

.location-section {
padding: var(--space-xl) 0;
background: var(--color-light);
}

.location-wrapper {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: var(--space-lg);
margin-top: var(--space-md);
}

.location-info {
background: var(--color-accent);
padding: var(--space-md);
border-radius: var(--radius-md);
}

.location-title {
font-family: var(--font-heading);
font-size: 1.75rem;
color: var(--color-dark);
margin-bottom: var(--space-sm);
}

.location-info p {
margin-bottom: var(--space-sm);
color: var(--color-text-light);
}

.location-info i {
color: var(--color-primary);
margin-right: var(--space-xs);
}

.opening-hours {
margin-top: var(--space-sm);
padding-top: var(--space-sm);
border-top: 1px solid rgba(0,0,0,0.1);
}

.location-map iframe {
border-radius: var(--radius-md);
width: 100%;
}

.main-footer {
background: var(--color-dark);
color: var(--color-light);
padding: var(--space-md) 0;
margin-top: var(--space-xl);
}

.footer-links {
display: flex;
justify-content: center;
gap: var(--space-md);
margin-top: var(--space-sm);
flex-wrap: wrap;
}

.footer-links a {
opacity: 0.8;
transition: var(--transition);
}

.footer-links a:hover {
opacity: 1;
color: var(--color-primary);
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--color-dark);
color: var(--color-light);
padding: var(--space-sm);
z-index: 1000;
transform: translateY(100%);
transition: var(--transition);
box-shadow: var(--shadow-lg);
}

.privacy-popup.show {
transform: translateY(0);
}

.popup-content {
max-width: 75rem;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
gap: var(--space-sm);
flex-wrap: wrap;
}

.popup-content p {
flex: 1;
min-width: 15rem;
}

.popup-content a {
color: var(--color-primary);
text-decoration: underline;
}

.accept-btn {
background: var(--color-primary);
color: var(--color-light);
padding: 0.625rem 1.5rem;
border-radius: var(--radius-sm);
font-weight: 600;
transition: var(--transition);
}

.accept-btn:hover {
background: #FF8A75;
}

.page-hero {
background: linear-gradient(135deg, var(--color-accent) 0%, #E8F5E9 100%);
padding: var(--space-xl) 0;
text-align: center;
}

.page-title {
font-family: var(--font-heading);
font-size: 3rem;
color: var(--color-dark);
margin-bottom: var(--space-sm);
}

.page-subtitle {
font-size: 1.125rem;
color: var(--color-text-light);
}

.products-section {
padding: var(--space-xl) 0;
}

.products-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
gap: var(--space-lg);
}

.product-card {
background: var(--color-light);
border-radius: var(--radius-md);
overflow: hidden;
box-shadow: var(--shadow-md);
transition: var(--transition);
}

.product-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
}

.product-image {
height: 20rem;
overflow: hidden;
}

.product-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: var(--transition);
}

.product-card:hover .product-image img {
transform: scale(1.1);
}

.product-info {
padding: var(--space-md);
}

.product-title {
font-family: var(--font-heading);
font-size: 1.75rem;
color: var(--color-dark);
margin-bottom: var(--space-sm);
}

.product-description {
color: var(--color-text-light);
margin-bottom: var(--space-sm);
}

.product-price {
font-size: 1.5rem;
font-weight: 600;
color: var(--color-primary);
margin-bottom: var(--space-sm);
}

.product-btn {
display: inline-block;
background: var(--color-secondary);
color: var(--color-light);
padding: 0.75rem 1.5rem;
border-radius: var(--radius-sm);
font-weight: 600;
transition: var(--transition);
}

.product-btn:hover {
background: #7FAB7F;
transform: translateY(-2px);
}

.custom-section, .care-preview, .quality-section, .visit-section, .parking-section {
padding: var(--space-xl) 0;
background: var(--color-accent);
text-align: center;
}

.centered-text {
max-width: 50rem;
margin: 0 auto var(--space-md);
color: var(--color-text-light);
}

.centered-btn {
display: inline-block;
}

.occasions-section, .delivery-section, .why-contact {
padding: var(--space-xl) 0;
}

.occasions-grid, .delivery-grid, .why-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
gap: var(--space-md);
margin-top: var(--space-md);
}

.occasion-card, .delivery-card, .why-card {
text-align: center;
padding: var(--space-md);
background: var(--color-light);
border-radius: var(--radius-md);
box-shadow: var(--shadow-sm);
transition: var(--transition);
}

.occasion-card:hover, .delivery-card:hover, .why-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-md);
}

.occasion-icon, .delivery-icon, .why-icon {
font-size: 2.5rem;
color: var(--color-primary);
margin-bottom: var(--space-sm);
}

.occasion-title, .delivery-title, .why-title {
font-family: var(--font-heading);
font-size: 1.5rem;
color: var(--color-dark);
margin-bottom: var(--space-xs);
}

.care-intro {
padding: var(--space-md) 0;
text-align: center;
}

.intro-text {
max-width: 50rem;
margin: 0 auto;
font-size: 1.125rem;
color: var(--color-text-light);
}

.care-steps {
padding: var(--space-xl) 0;
}

.steps-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
gap: var(--space-md);
margin-top: var(--space-md);
}

.step-card {
background: var(--color-light);
padding: var(--space-md);
border-radius: var(--radius-md);
box-shadow: var(--shadow-sm);
text-align: center;
}

.step-number {
width: 3rem;
height: 3rem;
background: var(--color-primary);
color: var(--color-light);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
font-weight: 600;
margin: 0 auto var(--space-sm);
}

.step-title {
font-family: var(--font-heading);
font-size: 1.25rem;
color: var(--color-dark);
margin-bottom: var(--space-xs);
}

.specific-care, .tips-section, .seasonal-care, .mistakes-section {
padding: var(--space-xl) 0;
}

.specific-care {
background: var(--color-accent);
}

.specific-grid, .seasonal-grid, .mistakes-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
gap: var(--space-md);
margin-top: var(--space-md);
}

.specific-card, .seasonal-card, .mistake-card {
background: var(--color-light);
padding: var(--space-md);
border-radius: var(--radius-md);
box-shadow: var(--shadow-sm);
}

.specific-title, .seasonal-title, .mistake-title {
font-family: var(--font-heading);
font-size: 1.25rem;
color: var(--color-dark);
margin-bottom: var(--space-xs);
}

.tips-list {
max-width: 50rem;
margin: var(--space-md) auto 0;
}

.tip-item {
display: flex;
gap: var(--space-sm);
align-items: flex-start;
margin-bottom: var(--space-sm);
padding: var(--space-sm);
background: var(--color-accent);
border-radius: var(--radius-sm);
}

.tip-icon {
color: var(--color-secondary);
font-size: 1.25rem;
flex-shrink: 0;
}

.mistake-icon {
color: var(--color-primary);
font-size: 2rem;
margin-bottom: var(--space-sm);
}

.contact-main {
padding: var(--space-xl) 0;
}

.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--space-lg);
}

.contact-heading {
font-family: var(--font-heading);
font-size: 2rem;
color: var(--color-dark);
margin-bottom: var(--space-md);
}

.contact-info-section p {
color: var(--color-text-light);
margin-bottom: var(--space-md);
}

.contact-details {
display: flex;
flex-direction: column;
gap: var(--space-md);
}

.contact-item {
display: flex;
gap: var(--space-sm);
align-items: flex-start;
}

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

.contact-label {
font-weight: 600;
color: var(--color-dark);
margin-bottom: 0.25rem;
}

.contact-form {
background: var(--color-accent);
padding: var(--space-md);
border-radius: var(--radius-md);
}

.form-group {
margin-bottom: var(--space-sm);
}

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

.form-group input,
.form-group textarea {
width: 100%;
padding: 0.75rem;
border: 1px solid #ddd;
border-radius: var(--radius-sm);
font-family: inherit;
font-size: 1rem;
transition: var(--transition);
}

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

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

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

.checkbox-group label {
margin-bottom: 0;
font-weight: 400;
}

.submit-btn {
background: var(--color-primary);
color: var(--color-light);
padding: 0.875rem 2rem;
border-radius: var(--radius-sm);
font-weight: 600;
font-size: 1rem;
transition: var(--transition);
width: 100%;
}

.submit-btn:hover {
background: #FF8A75;
transform: translateY(-2px);
box-shadow: var(--shadow-md);
}

.faq-section, .map-section {
padding: var(--space-xl) 0;
}

.faq-section {
background: var(--color-accent);
}

.faq-list {
max-width: 50rem;
margin: var(--space-md) auto 0;
}

.faq-item {
background: var(--color-light);
padding: var(--space-md);
border-radius: var(--radius-md);
margin-bottom: var(--space-sm);
box-shadow: var(--shadow-sm);
}

.faq-question {
font-family: var(--font-heading);
font-size: 1.25rem;
color: var(--color-dark);
margin-bottom: var(--space-xs);
}

.faq-answer {
color: var(--color-text-light);
}

.map-container {
margin-top: var(--space-md);
border-radius: var(--radius-md);
overflow: hidden;
box-shadow: var(--shadow-md);
}

.thankyou-section, .error-section {
padding: var(--space-xl) 0;
min-height: 100vh;
display: flex;
align-items: center;
}

.thankyou-content, .error-content {
text-align: center;
max-width: 40rem;
margin: 0 auto;
}

.thankyou-icon {
font-size: 4rem;
color: var(--color-secondary);
margin-bottom: var(--space-md);
}

.thankyou-title {
font-family: var(--font-heading);
font-size: 2.5rem;
color: var(--color-dark);
margin-bottom: var(--space-sm);
}

.thankyou-text {
color: var(--color-text-light);
margin-bottom: var(--space-md);
font-size: 1.125rem;
}

.thankyou-actions {
display: flex;
gap: var(--space-sm);
justify-content: center;
flex-wrap: wrap;
}

.error-number {
font-family: var(--font-heading);
font-size: 8rem;
color: var(--color-primary);
line-height: 1;
margin-bottom: var(--space-sm);
}

.error-title {
font-family: var(--font-heading);
font-size: 2rem;
color: var(--color-dark);
margin-bottom: var(--space-sm);
}

.error-text {
color: var(--color-text-light);
margin-bottom: var(--space-md);
font-size: 1.125rem;
}

.policy-content {
padding: var(--space-xl) 0;
}

.policy-text {
max-width: 50rem;
margin: 0 auto;
}

.policy-text h2 {
font-family: var(--font-heading);
font-size: 1.75rem;
color: var(--color-dark);
margin-top: var(--space-md);
margin-bottom: var(--space-sm);
}

.policy-text h3 {
font-family: var(--font-heading);
font-size: 1.25rem;
color: var(--color-dark);
margin-top: var(--space-sm);
margin-bottom: var(--space-xs);
}

.policy-text p {
color: var(--color-text-light);
margin-bottom: var(--space-sm);
}

.policy-text ul {
margin-left: var(--space-md);
margin-bottom: var(--space-sm);
color: var(--color-text-light);
}

.policy-text li {
margin-bottom: 0.5rem;
}

@keyframes fadeInLeft {
from {
opacity: 0;
transform: translateX(-2rem);
}
to {
opacity: 1;
transform: translateX(0);
}
}

@keyframes fadeInRight {
from {
opacity: 0;
transform: translateX(2rem);
}
to {
opacity: 1;
transform: translateX(0);
}
}

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

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

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

@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);
}
}

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

@keyframes pulse {
0%, 100% {
box-shadow: 0 0 0 0 rgba(255, 155, 138, 0.7);
}
50% {
box-shadow: 0 0 0 10px rgba(255, 155, 138, 0);
}
}

@keyframes shimmer {
0% {
background-position: -1000px 0;
}
100% {
background-position: 1000px 0;
}
}

@media (max-width: 48rem) {
.main-nav {
position: fixed;
top: 0;
right: -100%;
height: 100vh;
width: 70%;
max-width: 20rem;
background: var(--color-light);
flex-direction: column;
padding: var(--space-xl) var(--space-md);
box-shadow: var(--shadow-lg);
transition: var(--transition);
z-index: 100;
}

.main-nav.active {
right: 0;
}

.burger-btn {
display: flex;
}

.burger-overlay.active {
display: block;
}

.hero-section {
grid-template-columns: 1fr;
padding: var(--space-md) var(--space-sm);
min-height: auto;
}

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

.about-wrapper, .location-wrapper, .contact-wrapper {
grid-template-columns: 1fr;
}

.page-title {
font-size: 2rem;
}

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

.cta-title {
font-size: 2rem;
}
}

@media (max-width: 30rem) {
.hero-title {
font-size: 2rem;
}

.logo {
font-size: 1.5rem;
}

.feature-grid, .showcase-grid, .products-grid {
grid-template-columns: 1fr;
}

.error-number {
font-size: 5rem;
}
}

.main-header {
animation: slideInDown 0.6s ease;
}

.about-wrapper {
animation: slideInUp 0.8s ease;
}

.contact-wrapper {
animation: slideInUp 0.8s ease;
}

.contact-form {
animation: slideInUp 0.8s ease 0.2s forwards;
opacity: 0;
}

.faq-item {
animation: slideInUp 0.6s ease-out forwards;
opacity: 0;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--color-primary);
box-shadow: 0 0 0 3px rgba(255, 155, 138, 0.1);
transform: scale(1.02);
}

.product-image img {
transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-card:hover .product-image img {
transform: scale(1.15) rotate(2deg);
}

.showcase-image img {
transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.showcase-item:hover .showcase-image img {
transform: scale(1.15) rotate(-2deg);
}

.hero-image img {
transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s ease;
}

.hero-image img:hover {
transform: scale(1.05) translateY(-8px) rotate(1deg);
box-shadow: 0 30px 80px rgba(255, 155, 138, 0.4);
}

.stat-item {
animation: slideInUp 0.6s ease-out forwards;
opacity: 0;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }

.tip-item {
animation: slideInUp 0.6s ease-out forwards;
opacity: 0;
}

.tip-item:nth-child(1) { animation-delay: 0.1s; }
.tip-item:nth-child(2) { animation-delay: 0.2s; }
.tip-item:nth-child(3) { animation-delay: 0.3s; }
.tip-item:nth-child(4) { animation-delay: 0.4s; }

.contact-item {
animation: slideInUp 0.6s ease-out forwards;
opacity: 0;
}

.contact-item:nth-child(1) { animation-delay: 0.1s; }
.contact-item:nth-child(2) { animation-delay: 0.2s; }
.contact-item:nth-child(3) { animation-delay: 0.3s; }
.contact-item:nth-child(4) { animation-delay: 0.4s; }


.about-stats {
display: flex;
gap: var(--space-md);
margin: var(--space-md) 0;
flex-wrap: wrap;
}

.stat-item {
display: flex;
flex-direction: column;
align-items: center;
padding: var(--space-sm);
background: var(--color-light);
border-radius: var(--radius-sm);
box-shadow: var(--shadow-sm);
flex: 1;
min-width: 6rem;
}

.stat-number {
font-family: var(--font-heading);
font-size: 2rem;
font-weight: 600;
color: var(--color-primary);
line-height: 1;
}

.stat-label {
font-size: 0.875rem;
color: var(--color-text-light);
margin-top: 0.25rem;
text-align: center;
}

.process-section {
padding: var(--space-xl) 0;
background: var(--color-light);
}

.process-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
gap: var(--space-md);
margin-top: var(--space-md);
}

.process-step {
text-align: center;
padding: var(--space-md);
background: var(--color-accent);
border-radius: var(--radius-md);
transition: var(--transition);
position: relative;
}

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

.process-icon {
width: 4rem;
height: 4rem;
background: linear-gradient(135deg, var(--color-primary) 0%, #FF8A75 100%);
color: var(--color-light);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.75rem;
font-weight: 600;
font-family: var(--font-heading);
margin: 0 auto var(--space-sm);
box-shadow: 0 4px 12px rgba(255, 155, 138, 0.3);
}

.process-title {
font-family: var(--font-heading);
font-size: 1.5rem;
color: var(--color-dark);
margin-bottom: var(--space-xs);
}

.process-step p {
color: var(--color-text-light);
}

.testimonial-rating {
display: flex;
gap: 0.25rem;
margin-bottom: var(--space-sm);
color: #FFD700;
font-size: 1rem;
}

.feature-card, .showcase-item, .testimonial-card, .product-card, .step-card, .process-step, .occasion-card, .delivery-card, .why-card, .specific-card, .seasonal-card, .mistake-card {
animation: slideInUp 0.6s ease-out forwards;
opacity: 0;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }

.showcase-item:nth-child(1) { animation-delay: 0.1s; }
.showcase-item:nth-child(2) { animation-delay: 0.2s; }
.showcase-item:nth-child(3) { animation-delay: 0.3s; }

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.2s; }
.step-card:nth-child(3) { animation-delay: 0.3s; }
.step-card:nth-child(4) { animation-delay: 0.4s; }
.step-card:nth-child(5) { animation-delay: 0.5s; }
.step-card:nth-child(6) { animation-delay: 0.6s; }

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }

.occasion-card:nth-child(1) { animation-delay: 0.1s; }
.occasion-card:nth-child(2) { animation-delay: 0.2s; }
.occasion-card:nth-child(3) { animation-delay: 0.3s; }
.occasion-card:nth-child(4) { animation-delay: 0.4s; }

.delivery-card:nth-child(1) { animation-delay: 0.1s; }
.delivery-card:nth-child(2) { animation-delay: 0.2s; }

.why-card:nth-child(1) { animation-delay: 0.1s; }
.why-card:nth-child(2) { animation-delay: 0.2s; }
.why-card:nth-child(3) { animation-delay: 0.3s; }
.why-card:nth-child(4) { animation-delay: 0.4s; }

.specific-card:nth-child(1) { animation-delay: 0.1s; }
.specific-card:nth-child(2) { animation-delay: 0.2s; }
.specific-card:nth-child(3) { animation-delay: 0.3s; }
.specific-card:nth-child(4) { animation-delay: 0.4s; }

.seasonal-card:nth-child(1) { animation-delay: 0.1s; }
.seasonal-card:nth-child(2) { animation-delay: 0.2s; }
.seasonal-card:nth-child(3) { animation-delay: 0.3s; }
.seasonal-card:nth-child(4) { animation-delay: 0.4s; }

.mistake-card:nth-child(1) { animation-delay: 0.1s; }
.mistake-card:nth-child(2) { animation-delay: 0.2s; }
.mistake-card:nth-child(3) { animation-delay: 0.3s; }
.mistake-card:nth-child(4) { animation-delay: 0.4s; }

.hero-content {
animation: slideInLeft 0.8s ease 0.2s forwards;
opacity: 0;
}

.hero-image {
animation: slideInRight 0.8s ease 0.4s forwards;
opacity: 0;
}

.page-hero {
animation: slideInDown 0.6s ease;
}

.section-title {
animation: slideInUp 0.6s ease;
}

.cta-btn, .secondary-btn, .cta-btn-large {
position: relative;
overflow: hidden;
}

.cta-btn::before, .secondary-btn::before, .cta-btn-large::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
background: rgba(255, 255, 255, 0.3);
border-radius: 50%;
transform: translate(-50%, -50%);
transition: width 0.6s, height 0.6s;
z-index: -1;
}

.cta-btn:hover::before, .secondary-btn:hover::before, .cta-btn-large:hover::before {
width: 300px;
height: 300px;
}

.feature-card, .showcase-item, .product-card, .step-card, .process-step, .occasion-card, .delivery-card, .why-card, .specific-card, .seasonal-card, .mistake-card {
position: relative;
overflow: hidden;
}

.feature-card::after, .showcase-item::after, .product-card::after, .step-card::after, .process-step::after, .occasion-card::after, .delivery-card::after, .why-card::after, .specific-card::after, .seasonal-card::after, .mistake-card::after {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: left 0.5s ease;
pointer-events: none;
}

.feature-card:hover::after, .showcase-item:hover::after, .product-card:hover::after, .step-card:hover::after, .process-step:hover::after, .occasion-card:hover::after, .delivery-card:hover::after, .why-card:hover::after, .specific-card:hover::after, .seasonal-card:hover::after, .mistake-card:hover::after {
left: 100%;
}

.cta-section {
animation: slideInUp 0.8s ease;
}

.thankyou-icon {
animation: scaleIn 0.6s ease;
}

.thankyou-title {
animation: slideInUp 0.6s ease 0.2s forwards;
opacity: 0;
}

.thankyou-text {
animation: slideInUp 0.6s ease 0.4s forwards;
opacity: 0;
}

.thankyou-actions {
animation: slideInUp 0.6s ease 0.6s forwards;
opacity: 0;
}
