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

:root {
    --primary-color: #ff69b4;
    --secondary-color: #ffc0cb;
    --accent-color: #ffb6c1;
    --text-dark: #2d2d2d;
    --text-light: #666666;
    --background-light: #fff0f5;
    --white: #ffffff;
    --footer-dark: #1a1a1a;
    --footer-light: #2d2d2d;
}

/* Mobile First Base Styles */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    font-size: 16px;
}

.container {
    width: 100%;
    padding: 0 1rem;
    margin: 0 auto;
    max-width: 100%;
}

/* Tablet and up */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
        max-width: 768px;
    }
}

/* Desktop and up */
@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
}

/* Large desktop */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

/* Typography - Mobile First */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    font-weight: 600;
}

/* Banner Slider - Mobile First */
.banner-slider {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-top: 60px;
}

@media (min-width: 768px) {
    .banner-slider {
        height: 300px;
        margin-top: 70px;
    }
}

@media (min-width: 1024px) {
    .banner-slider {
        height: 400px;
    }
}

.banner-slides {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.banner-slide {
    min-width: 100%;
    height: 100%;
}

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

.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 50%;
    cursor: pointer;
    touch-action: manipulation;
    padding: 1rem 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.banner-nav:hover {
    background: rgba(255, 255, 255, 0.95);
}

.banner-prev {
    left: 1rem;
}

.banner-next {
    right: 1rem;
}

.banner-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.banner-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    position: relative;
    touch-action: manipulation;
}

.banner-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.banner-dot.active::after {
    background: var(--primary-color);
    width: 25px;
    border-radius: 5px;
}

/* Navbar - Mobile First */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    position: relative;
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
    max-width: 120px;
}

@media (min-width: 768px) {
    .logo img {
        height: 50px;
        max-width: 150px;
    }
}

@media (min-width: 1024px) {
    .logo img {
        height: 60px;
        max-width: 180px;
    }
}

.nav-menu {
    position: fixed;
    right: -100%;
    top: 60px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0,0,0,0.05);
    padding: 2rem 0;
    list-style: none;
    z-index: 90;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    display: flex;
}

@media (min-width: 768px) {
    .nav-menu {
        top: 70px;
        max-height: calc(100vh - 70px);
    }
}

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

.nav-menu li {
    margin: 1rem 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-color);
    color: white;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    padding: 0 4px;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    margin: -10px;
    touch-action: manipulation;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    pointer-events: none;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

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

/* Hero Section - Mobile First */
.hero {
    margin-top: 0;
    min-height: calc(100vh - 370px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    width: 100%;
}

.hero-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.cta-button:hover {
    background-color: #ff1493;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 105, 180, 0.3);
}

.hero-image {
    display: none;
}

/* Products Section - Mobile First */
.products {
    padding: 3rem 0;
    background-color: var(--white);
}

.section-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }
}

@media (min-width: 1200px) {
    .section-title {
        font-size: 3rem;
        margin-bottom: 3rem;
    }
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0;
}

@media (min-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-card {
    background-color: var(--background-light);
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

@media (min-width: 768px) {
    .product-card {
        padding: 1.5rem;
        border-radius: 20px;
    }
}

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

.product-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 0.75rem;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
}

@media (min-width: 768px) {
    .product-image {
        width: 120px;
        height: 120px;
        margin: 0 auto 1rem;
    }
}

@media (min-width: 1024px) {
    .product-image {
        width: 150px;
        height: 150px;
    }
}

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

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

.product-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.product-placeholder.cream {
    background: linear-gradient(135deg, #ffc0cb 0%, #ffb6c1 100%);
}

.product-placeholder.serum {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
}

.product-placeholder.mask {
    background: linear-gradient(135deg, #dda0dd 0%, #da70d6 100%);
}

.product-placeholder.toner {
    background: linear-gradient(135deg, #ffb6c1 0%, #ff69b4 100%);
}

.product-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.product-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.price {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    display: block;
}

.add-to-cart {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.625rem 1.25rem;
    border-radius: 25px;
    margin-top: 0.75rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    width: 100%;
}

.add-to-cart:hover {
    background-color: #ff1493;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
}

/* About Section - Mobile First */
.about {
    padding: 3rem 0;
    background-color: var(--background-light);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.about-text h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.feature p {
    margin: 0;
    font-weight: 500;
    font-size: 0.875rem;
}

.about-image {
    display: none;
}

/* Instagram Feed Section */
.instagram-feed {
    padding: 3rem 0;
    background-color: var(--background-light);
}

.instagram-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.instagram-embed {
    max-width: 600px;
    margin: 0 auto 2rem;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.instagram-window {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
}

.instagram-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.instagram-profile-pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: contain;
    background: var(--background-light);
    padding: 5px;
}

.instagram-info {
    flex: 1;
}

.instagram-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.instagram-info p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.instagram-follow-btn {
    background-color: #0095f6;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.instagram-follow-btn:hover {
    background-color: #0074cc;
}

.instagram-posts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .instagram-posts {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
}

.instagram-post {
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.post-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.instagram-post:hover .post-placeholder {
    transform: scale(1.1);
}

.instagram-grid {
    text-align: center;
    margin-top: 2rem;
}

.instagram-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.instagram-cta span {
    font-size: 1.2rem;
}

/* Contact Section - Mobile First */
.contact {
    padding: 3rem 0;
    background-color: var(--white);
}

.contact h2 {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact-form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    font-family: 'Raleway', sans-serif;
    font-size: 16px; /* Prevents zoom on iOS */
    transition: border-color 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
    touch-action: manipulation;
}

@media (min-width: 768px) {
    .form-group input,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 1rem;
    }
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-button {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem;
    font-size: 16px;
    min-height: 44px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    touch-action: manipulation;
    -webkit-appearance: none;
    appearance: none;
}

@media (min-width: 768px) {
    .submit-button {
        padding: 0.875rem;
        font-size: 1rem;
    }
}

.submit-button:hover {
    background-color: #ff1493;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 105, 180, 0.3);
}

/* Footer - Mobile First */
footer {
    background-color: var(--footer-dark);
    color: var(--white);
    padding: 2rem 0 1rem;
}

@media (min-width: 768px) {
    footer {
        padding: 3rem 0 1rem;
    }
}

@media (min-width: 1024px) {
    footer {
        padding: 4rem 0 1.5rem;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 480px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 768px) {
    .footer-content {
        margin-bottom: 2rem;
    }
}

@media (min-width: 1024px) {
}

.footer-section {
    text-align: center;
}

.footer-section h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    max-width: 150px;
}

@media (min-width: 768px) {
    .footer-logo img {
        height: 80px;
        max-width: 200px;
    }
}

.footer-description {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}

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

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #ccc;
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.location-item {
    margin-bottom: 1rem;
}

.location-item h4 {
    color: var(--accent-color);
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

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

.social-links a {
    width: 44px;
    height: 44px;
    background-color: var(--footer-light);
    border-radius: 50%;
    display: flex;
    touch-action: manipulation;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quick-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.quick-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--footer-light);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #999;
}

/* Cart Modal - Mobile First */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 200;
    padding: 0;
}

.cart-modal.active {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.cart-modal-content {
    background-color: white;
    border-radius: 20px 20px 0 0;
    width: 100%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    padding-bottom: env(safe-area-inset-bottom, 0);
}

@media (min-width: 768px) {
    .cart-modal.active {
        align-items: center;
    }
    
    .cart-modal-content {
        border-radius: 20px;
        max-width: 500px;
        max-height: 80vh;
        margin: 20px;
    }
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    border-bottom: 1px solid #eee;
}

.cart-header h3 {
    font-size: 1.25rem;
    margin: 0;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -10px;
    touch-action: manipulation;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.empty-cart {
    text-align: center;
    color: #999;
    padding: 2rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    border-bottom: 1px solid #f0f0f0;
}

.cart-item-info h4 {
    margin: 0 0 0.25rem 0;
    font-size: 0.95rem;
}

.cart-item-info p {
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    background-color: #f0f0f0;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    touch-action: manipulation;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background-color: #e0e0e0;
}

.remove-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    opacity: 0.6;
}

.remove-btn:hover {
    opacity: 1;
}

.cart-footer {
    padding: 1rem;
    border-top: 1px solid #eee;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.checkout-btn {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.875rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    background-color: #ff1493;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 105, 180, 0.3);
}

.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    left: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 0.875rem 1.25rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
    z-index: 300;
    text-align: center;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

/* Tablet Styles (768px and up) */
@media (min-width: 768px) {
    .instagram-feed {
        padding: 4rem 0;
    }
    
    .instagram-embed {
        max-width: 700px;
    }
    
    .container {
        max-width: 750px;
        padding: 0 1.5rem;
    }

    .navbar .container {
        padding: 0.75rem 1.5rem;
    }


    .nav-menu {
        position: static;
        flex-direction: row;
        width: auto;
        padding: 0;
        box-shadow: none;
        background-color: transparent;
        display: flex;
        gap: 2rem;
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-menu a {
        font-size: 1rem;
    }

    .hamburger {
        display: none;
    }

    .cart-icon {
        margin-right: 0;
        margin-left: 2rem;
    }

    .hero {
        margin-top: 0;
        min-height: calc(100vh - 400px);
        flex-direction: row;
        text-align: left;
        padding: 3rem 1.5rem;
    }
    
    .banner-slider {
        height: 400px;
        margin-top: 80px;
    }

    .hero-content {
        flex: 1;
    }


    .hero-image {
        display: block;
        flex: 1;
        position: relative;
        height: 100%;
    }

    .flower-decoration {
        position: absolute;
        right: -50px;
        top: 50%;
        transform: translateY(-50%);
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, var(--secondary-color) 0%, var(--accent-color) 50%, transparent 70%);
        border-radius: 50%;
        opacity: 0.8;
    }

    .flower-decoration::before {
        content: '';
        position: absolute;
        top: -40px;
        left: -40px;
        width: 250px;
        height: 250px;
        background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
        border-radius: 50%;
    }


    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .product-image {
        width: 150px;
        height: 150px;
    }

    .about-content {
        grid-template-columns: 1fr 1fr;
        display: grid;
        text-align: left;
        gap: 3rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .features {
        align-items: flex-start;
    }

    .about-image {
        display: block;
        position: relative;
        height: 400px;
    }

    .leaf-decoration {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 300px;
        height: 300px;
        background: radial-gradient(circle at 30% 30%, var(--secondary-color) 0%, transparent 50%);
        border-radius: 0 100% 0 100%;
        opacity: 0.6;
    }

    .leaf-decoration::before {
        content: '';
        position: absolute;
        top: -40px;
        right: 40px;
        width: 180px;
        height: 180px;
        background: radial-gradient(circle at 70% 70%, var(--accent-color) 0%, transparent 60%);
        border-radius: 100% 0 100% 0;
    }

    .contact h2 {
        font-size: 2rem;
    }


    .notification {
        left: auto;
        max-width: 400px;
    }
}

/* Desktop Styles (1024px and up) */
@media (min-width: 1024px) {
    .container {
        max-width: 980px;
    }



    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }

    .flower-decoration {
        width: 500px;
        height: 500px;
        right: -100px;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .products, .about, .contact, .instagram-feed {
        padding: 5rem 0;
    }
    
    .instagram-embed {
        max-width: 800px;
    }


    .about-text h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .contact h2 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    footer {
        padding: 4rem 0 1.5rem;
    }


    .footer-section {
        text-align: left;
    }

    .footer-description {
        margin: 0;
    }

    .contact-item {
        justify-content: flex-start;
    }

    .social-links {
        justify-content: flex-start;
    }
}

/* Large Desktop Styles (1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
        padding: 0 20px;
    }

    .hero {
        margin-top: 0;
        min-height: calc(100vh - 500px);
    }
    
    .banner-slider {
        height: 500px;
        margin-top: 90px;
    }


    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .about-content {
        gap: 4rem;
    }

    .leaf-decoration {
        width: 350px;
        height: 350px;
    }

    .leaf-decoration::before {
        width: 200px;
        height: 200px;
        top: -50px;
        right: 50px;
    }


    .footer-section h3 {
        font-size: 1.3rem;
    }
}