/* 🌸 Global Styles & Variables */
:root {
    /* Color Scheme */
    --primary: #e763a3;
    --primary-light: #fd8db4;
    --secondary: #262928;
    --accent: #fdcb6e;
    --dark: #2d3436;
    --light: #e00f6d34;
    --text: #2d3436;
    --text-light: #636e72;
    --white: #f2ced986;
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --font-special: 'Dancing Script', cursive;
    
    /* Shadows */
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

[data-theme="dark"] {
    --primary: #fd79a8;
    --primary-light: #e84393;
    --secondary: #55efc4;
    --accent: #ffeaa7;
    --dark: #97d1ea;
    --light: #2d3436;
    --text: #f5f6fa;
    --text-light: #b2bec3;
    --white: #121212;
}

/* 🌸 Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1585320806297-9794b3e4eeae?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1480&q=80') center/cover no-repeat;
    opacity: 0.15;
    z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

/* 🌸 Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(232, 67, 147, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(232, 67, 147, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* 🌸 Theme Toggle */
.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 30px;
    background-color: var(--white);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    cursor: pointer;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.theme-toggle i {
    font-size: 14px;
    z-index: 1;
}

.theme-toggle .fa-sun {
    color: #f39c12;
}

.theme-toggle .fa-moon {
    color: #3498db;
}

.toggle-ball {
    position: absolute;
    width: 22px;
    height: 22px;
    background-color: var(--primary);
    border-radius: 50%;
    left: 5px;
    transition: var(--transition);
    z-index: 0;
}

[data-theme="dark"] .toggle-ball {
    transform: translateX(30px);
}

/* 🌸 Floating Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.petal {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.7;
    animation: float 15s linear infinite;
}

.petal.p1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.petal.p2 {
    top: 70%;
    right: 10%;
    animation-delay: 5s;
}

.petal.p3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 10s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* 🌸 Vibrant Navigation Bar */
nav {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: linear-gradient(135deg, rgba(234, 13, 109, 0.9) 0%, rgba(246, 167, 191, 0.9) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(to right, #3783ed, #349fb7, #0a6956);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.logo img {
    height: 42px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.nav-links {
    display: flex;
    gap: 8px;
    padding: 8px;
    border-radius: 50px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
}

.nav-link {
    position: relative;
    padding: 10px 20px;
    font-weight: 600;
    color: #555;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-link:hover, .nav-link.active {
    background: linear-gradient(to right, #e84393, #fd79a8);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(232, 67, 147, 0.3);
}

.nav-link i {
    margin-right: 8px;
    font-size: 0.9em;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(to right, #e84393, #fd79a8);
    color: white;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(232, 67, 147, 0.3);
    z-index: 1001;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    transform: rotate(90deg);
}

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, #f5f7fa 0%, #ffeef7 100%);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 15px;
        padding: 40px 20px;
        border-radius: 0;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
        transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
    }
}

/* 🌸 Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.hero-image {
    flex: 1;
    position: relative;
    animation: fadeIn 1s ease 0.6s forwards;
    opacity: 0;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transform: rotate(3deg);
    transition: var(--transition);
}

.hero-image:hover img {
    transform: rotate(0deg);
}

/* 🌸 About Section */
.about {
    padding: 100px 0;
    background-color: var(--white);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content {
    flex: 1;
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.about-content p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.signature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.signature img {
    height: 50px;
}

.signature p {
    font-style: italic;
    color: var(--text-light);
}

.signature p span {
    display: block;
    font-weight: 600;
    color: var(--text);
}

/* 🌸 Flowers Section */
.flowers {
    padding: 100px 0;
    background-color: var(--light);
}

.flower-gallery {
    width: 100%;
    padding: 20px 0;
}

.swiper-slide {
    height: auto;
}

.flower-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.flower-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.flower-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.flower-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.flower-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.flower-card p {
    color: var(--text-light);
    margin-bottom: 15px;
    flex-grow: 1;
}

.flower-card .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
}

.flower-card .btn {
    width: 100%;
}

.subscription-badge {
    display: inline-block;
    background-color: var(--accent);
    color: var(--dark);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* 🌸 Products Section */
.products {
    padding: 100px 0;
    background-color: var(--white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-card-content {
    padding: 20px;
}

.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.product-card p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.product-card .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    display: block;
    margin-bottom: 15px;
}

/* 🌸 Booking Section */
.booking {
    padding: 100px 0;
    background-color: var(--light);
}

.booking-container {
    display: flex;
    gap: 50px;
}

.booking-form {
    flex: 1;
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.booking-form h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--light);
    color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232, 67, 147, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.booking-preview {
    flex: 1;
}

.preview-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    height: 100%;
    text-align: center;
}

.preview-card h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.preview-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background-color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.preview-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.preview-image p {
    color: var(--text-light);
}

.preview-details h5 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--text);
}

.preview-details p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.preview-details .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

/* 🌸 Gallery Section */
.gallery {
    padding: 100px 0;
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1.2rem;
}

/* 🌸 Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--light);
}

.contact-container {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text);
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 500px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* 🌸 Footer */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-services h4,
.footer-newsletter h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-services ul li {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 50px 0 0 50px;
    font-family: var(--font-body);
}

.newsletter-form button {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 0 50px 50px 0;
    padding: 0 20px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom p {
    margin-bottom: 5px;
}

.footer-bottom i {
    color: var(--primary);
}

/* 🌸 Shopping Cart */
.cart {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.cart-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: var(--transition);
}

.cart-icon:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--accent);
    color: var(--dark);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.cart-dropdown {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 350px;
    max-height: 500px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    padding: 20px;
    display: none;
    overflow: hidden;
}

.cart-dropdown.show {
    display: block;
    animation: fadeInUp 0.3s ease;
}

.cart-dropdown h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary);
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.cart-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text);
}

.cart-item-details p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.remove-item {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    font-size: 1rem;
    align-self: flex-start;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.cart-total span {
    font-weight: 700;
    color: var(--text);
}

.checkout-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* 🌸 AR Viewer */
.ar-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.ar-container {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: fadeInUp 0.5s ease;
}

.close-ar {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.close-ar:hover {
    color: var(--primary);
}

.ar-container h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.ar-placeholder {
    margin: 20px 0;
    padding: 30px;
    background-color: var(--light);
    border-radius: 10px;
}

.ar-placeholder img {
    max-width: 100%;
    margin-bottom: 20px;
}

.ar-placeholder p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.ar-cta {
    margin-top: 20px;
}

/* 🌸 Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* 🌸 Responsive Design */
@media (max-width: 1024px) {
    .booking-container,
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
        padding-bottom: 50px;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-container {
        flex-direction: column;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .cart-dropdown {
        width: 300px;
        right: -100px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-dropdown {
        width: 280px;
        right: -120px;
    }
}

/* 🌸 Floral Accents */
.floral-accent {
    position: absolute;
    width: 150px;
    height: 150px;
    background: url('images/floral-corner.png') center/contain no-repeat;
    z-index: 0;
    opacity: 0.1;
}

.accent-1 {
    top: 10%;
    left: 5%;
    transform: rotate(15deg);
}

.accent-2 {
    bottom: 10%;
    right: 5%;
    transform: rotate(-15deg);
}

/* 🌸 Section Headers with Flowers */
.section-header {
    position: relative;
    margin-bottom: 60px;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 80px;
    background: url('images/floral-divider.png') center/contain no-repeat;
    opacity: 0.3;
}

.section-title {
    display: inline-block;
    background: linear-gradient(to right, #e61d7e, #f30e5e, #0b987c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #d01871, #12a487);
    border-radius: 2px;
}

/* 🌸 Floral Arrangements Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.gallery-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(232, 67, 147, 0.15);
}

.gallery-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.1);
}

.flower-tags {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.flower-tag {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #e84393;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.gallery-info {
    padding: 20px;
    position: relative;
}

.occasion-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(45deg, #e84393, #fd79a8);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(232, 67, 147, 0.3);
}

.gallery-info h3 {
    font-size: 1.3rem;
    margin: 10px 0;
    color: #2d3436;
}

.gallery-info p {
    color: #636e72;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-inquire {
    width: 100%;
    background: transparent;
    color: #e84393;
    border: 2px solid #e84393;
    transition: all 0.3s ease;
}

.btn-inquire:hover {
    background: #e84393;
    color: white;
}