/* Base Styles */
:root {
    --primary-color: #f5a8b0;
    --secondary-color: #e27984;
    --accent-color: #d4af37;
    --text-color: #333;
    --light-color: #fff;
    --bg-color: #f9f5f0;
    --footer-bg: #3a3a3a;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.9);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    top: 0;
    left: 0;
    transition: all 0.3s ease;
}

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

.logo h1 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin: 0;
}

nav {
    display: flex;
    align-items: center;
}

.menu {
    display: flex;
    align-items: center;
}

.menu li {
    margin-left: 1.5rem;
    position: relative;
}

.menu a {
    font-weight: 500;
    padding: 0.5rem;
    position: relative;
    display: block;
}

.menu a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.menu a:hover::after,
.menu a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--secondary-color);
    z-index: 1001;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1486427944299-d1955d23e34d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    color: var(--light-color);
}

.page-banner {
    height: 50vh;
    background: url('https://images.unsplash.com/photo-1509440159596-0249088772ff?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    color: var(--light-color);
    margin-top: 70px;
}

.hero .overlay,
.page-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

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

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.banner-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-content p,
.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Featured Products */
.featured-products {
    padding: 5rem 0;
}

.product-slider {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-bottom: 2rem;
}

.product-slider::-webkit-scrollbar {
    display: none;
}

/* Categories */
.categories {
    padding: 5rem 0;
    background-color: var(--bg-color);
}

.category-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.category-card {
    flex: 1;
    min-width: 220px;
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    text-align: center;
}

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

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-card h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15px;
    margin: 0;
}

/* About Section */
.about {
    padding: 5rem 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    justify-content: space-between;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1rem;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.testimonial-slider {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
    background-color: var(--bg-color);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-stars {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    text-align: right;
}

/* Instagram Feed */
.instagram-feed {
    padding: 5rem 0;
}

.instagram-subtitle {
    text-align: center;
    margin-bottom: 2rem;
}

.instagram-link {
    color: var(--secondary-color);
    font-weight: 600;
}

.instagram-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.instagram-item {
    flex: 0 0 calc(25% - 10px);
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.instagram-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-item:hover img {
    transform: scale(1.05);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

/* Products Section */
.products {
    padding: 5rem 0;
    background-color: #fff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 0 auto;
}

.product-card {
    background-color: var(--bg-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
}

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

.product-card h3 {
    padding: 1.2rem 1.2rem 0.5rem;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.product-card p {
    padding: 0 1.2rem 1.2rem;
    color: #666;
}

.product-actions {
    padding: 0 1.2rem 1.2rem;
    margin-top: auto;
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #f8b3c5;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.product-badge.special-offer {
    background-color: #ff6b6b;
}

.product-badge.gluten-free {
    background-color: #2ecc71;
}

.product-badge.vegan {
    background-color: #3498db;
}

/* Special Offer Section */
.special-offer {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: var(--light-color);
}

.special-offer .container {
    display: flex;
    align-items: center;
    gap: 4rem;
    justify-content: space-between;
}

.offer-content {
    flex: 1;
}

.offer-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.discount-badge {
    display: inline-block;
    background-color: var(--light-color);
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 700;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
}

.offer-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Newsletter Section */
.newsletter {
    padding: 5rem 0;
    background-color: var(--bg-color);
    text-align: center;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-content h2 {
    margin-bottom: 1rem;
}

.newsletter-content p {
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    margin: 0 auto 2rem;
    max-width: 600px;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form .btn {
    flex-shrink: 0;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

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

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.contact-form {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Map Section */
.map-section {
    padding: 3rem 0 5rem;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 400px;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background-color: var(--secondary-color);
    color: var(--light-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-content .btn {
    background-color: var(--light-color);
    color: var(--secondary-color);
}

.cta-content .btn:hover {
    background-color: var(--accent-color);
    color: var(--light-color);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--light-color);
}

.btn-outline:hover {
    background-color: var(--light-color);
    color: var(--secondary-color);
}

/* Footer Section */
footer {
    background-color: var(--footer-bg);
    color: var(--light-color);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-logo p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.footer-contact h3, .footer-payment h3 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-contact p i {
    width: 20px;
    flex-shrink: 0;
}

.payment-icons {
    display: flex;
    gap: 1rem;
    font-size: 1.8rem;
    opacity: 0.8;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Gallery page styles */
.gallery-container {
    padding: 5rem 0;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 8px 20px;
    background-color: var(--bg-color);
    border: 1px solid var(--secondary-color);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--light-color);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.gallery-overlay h3 {
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Cart page styles */
.cart-section {
    padding: 5rem 0;
}

.cart-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.cart-items {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cart-items h2 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cart-item.removing {
    opacity: 0;
    transform: translateX(-20px);
}

.item-image {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 1.5rem;
}

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

.item-details {
    flex: 1;
}

.item-details h3 {
    margin-bottom: 0.3rem;
}

.item-meta {
    font-size: 0.9rem;
    color: #666;
}

.item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 2rem;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.item-quantity input {
    width: 40px;
    height: 30px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.item-price {
    font-weight: 600;
    margin: 0 2rem;
    min-width: 80px;
    text-align: right;
}

.item-actions {
    margin-left: 1rem;
}

.btn-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    background-color: #fee;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.cart-summary {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
}

.cart-summary h2 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.summary-item.discount {
    color: var(--secondary-color);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid #eee;
    font-size: 1.2rem;
    font-weight: 600;
}

.coupon-form, .checkout-options {
    margin-top: 2rem;
}

.coupon-form h3, .checkout-options h3 {
    margin-bottom: 1rem;
}

.coupon-input {
    display: flex;
    gap: 10px;
}

.coupon-input input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.delivery-option {
    margin-bottom: 1rem;
}

.delivery-option label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.delivery-option input {
    margin-right: 10px;
}

.checkout-btn {
    display: block;
    width: 100%;
    margin-top: 2rem;
    padding: 15px;
    font-size: 1.1rem;
    text-align: center;
}

.payment-methods {
    margin-top: 2rem;
    text-align: center;
}

.payment-methods p {
    margin-bottom: 0.5rem;
    color: #666;
}

.payment-methods .payment-icons {
    justify-content: center;
    font-size: 1.5rem;
    color: #666;
}

.empty-cart {
    text-align: center;
    padding: 3rem 0;
}

.empty-cart i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 1rem;
}

.empty-cart h3 {
    margin-bottom: 1rem;
}

.empty-cart p {
    margin-bottom: 2rem;
    color: #666;
}

.related-products {
    padding: 5rem 0;
    background-color: var(--bg-color);
}

.related-products .product-slider {
    margin-top: 2rem;
}

/* Media Queries */
@media screen and (max-width: 992px) {
    .hero-content h2,
    .banner-content h1 {
        font-size: 2.8rem;
    }
    
    .about-content,
    .special-offer .container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-wrapper,
    .cart-layout {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .instagram-item {
        flex: 0 0 calc(33.333% - 10px);
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    /* Shop page specific */
    .categories-nav {
        flex-wrap: wrap;
        gap: 10px;
        margin: 1.5rem 0;
    }
    
    .category-link {
        padding: 8px 16px;
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--light-color);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 2rem 2rem;
        transition: all 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .menu.active {
        right: 0;
    }
    
    .menu li {
        margin: 0.8rem 0;
        width: 100%;
    }
    
    .menu a {
        padding: 0.8rem 0;
        font-size: 1.1rem;
        width: 100%;
        display: block;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content h2,
    .banner-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p,
    .banner-content p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 15px;
    }
    
    .product-slider {
        overflow-x: auto;
        padding-bottom: 1rem;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
    }
    
    .product-card {
        scroll-snap-align: start;
        min-width: 260px;
        flex: 0 0 calc(85% - 20px);
    }
    
    .instagram-item {
        flex: 0 0 calc(50% - 10px);
    }
    
    .cart-item {
        flex-wrap: wrap;
        padding: 1rem;
    }
    
    .item-quantity, .item-price {
        margin: 1rem 0 0;
    }
    
    .item-actions {
        position: absolute;
        top: 1.5rem;
        right: 0;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form .btn {
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .gallery-filters {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 1rem;
        justify-content: flex-start;
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }
    
    .gallery-filters::-webkit-scrollbar {
        display: none; /* Hide scrollbar for Chrome, Safari and Opera */
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.95rem;
    }
    
    .hero-section {
        height: 70vh;
    }
    
    /* Shop page specific */
    .categories-nav {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 1rem;
        justify-content: flex-start;
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }
    
    .categories-nav::-webkit-scrollbar {
        display: none; /* Hide scrollbar for Chrome, Safari and Opera */
    }
    
    .category-link {
        display: inline-block;
        white-space: nowrap;
    }
    
    .product-card-content {
        padding: 15px;
    }
    
    .product-card h3 {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }
    
    .product-description {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .product-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
    
    /* Overlay for mobile menu */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.5);
        z-index: 999;
    }
    
    .menu-overlay.active {
        display: block;
    }
}

@media screen and (max-width: 576px) {
    .hero-content h2,
    .banner-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p,
    .banner-content p {
        font-size: 1rem;
    }
    
    .product-slider {
        flex-direction: column;
        gap: 20px;
    }
    
    .instagram-item {
        flex: 0 0 100%;
    }
    
    .testimonial-slider {
        flex-direction: column;
        gap: 20px;
    }
    
    .testimonial-card {
        min-width: 100%;
    }
    
    .category-grid {
        flex-direction: column;
    }
    
    .category-card {
        min-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        padding: 12px 20px;
    }
    
    .product-card {
        flex: 0 0 100%;
    }
    
    .page-banner {
        height: 40vh;
    }
    
    .menu {
        width: 85%;
    }
    
    /* Shop page specific */
    .shop-container {
        padding: 10px 0 40px;
    }
    
    .product-section {
        margin-bottom: 40px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card img {
        height: 220px;
    }
    
    .banner-content h1 {
        padding: 0 15px;
    }
    
    /* Gallery page specific */
    .gallery-grid {
        gap: 15px;
    }
    
    .gallery-item {
        margin-bottom: 5px;
    }
}

/* Additional responsive fixes */
@media screen and (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .product-actions .btn {
        width: 100%;
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img {
        height: 250px;
    }
    
    .contact-form .btn {
        width: 100%;
    }
    
    .menu {
        width: 100%;
        max-width: none;
    }
    
    /* Shop page specific */
    .banner-content h1 {
        font-size: 1.6rem;
    }
    
    .category-link {
        padding: 6px 14px;
        font-size: 0.85rem;
    }
    
    .product-price {
        font-size: 1.1rem;
    }
    
    .original-price {
        font-size: 0.8rem;
    }
    
    .pagination {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }
    
    .pagination a {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
}

/* Responsive typography */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }
} 