/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Quicksand:wght@300;400;500;600;700&family=Amatic+SC:wght@400;700&display=swap');

/* CSS Variables for easy theming */
:root {
    --primary-pink: #FFD1DC;
    --secondary-pink: #FFDDE1;
    --accent-pink: #FF69B4;
    --hot-pink: #FF1493;
    --primary-teal: #AEE8E6;
    --secondary-teal: #7dd3d0;
    --dark-text: #333;
    --light-text: #5A5A5A;
    --white: #ffffff;
    --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 32px rgba(0, 0, 0, 0.2);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Global Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(135deg, var(--secondary-pink) 0%, var(--primary-teal) 100%);
    background-attachment: fixed;
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Enhanced Navigation Bar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    background: rgba(255, 221, 225, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-normal);
}

.navbar:hover {
    box-shadow: var(--shadow-lg);
}

.nav-logo img {
    width: 120px;
    height: auto;
    transition: transform var(--transition-normal);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.nav-logo img:hover {
    transform: scale(1.1) rotate(5deg);
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    font-family: 'Amatic SC', cursive;
    color: var(--dark-text);
    font-size: 1.8em;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    transition: all var(--transition-normal);
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-pink), var(--hot-pink));
    transition: all var(--transition-normal);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--hot-pink);
    transform: translateY(-2px);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--dark-text);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

/* Enhanced Header with Glowing Text */
header {
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.glowing-text {
    font-family: 'Pacifico', cursive;
    font-size: clamp(3em, 8vw, 6em);
    color: var(--white);
    text-align: center;
    animation: glowing 2s ease-in-out infinite alternate;
    text-shadow: 0 0 10px var(--accent-pink), 
                 0 0 20px var(--accent-pink), 
                 0 0 30px var(--hot-pink), 
                 0 0 40px var(--accent-pink);
    margin-bottom: 20px;
}

@keyframes glowing {
    0%, 100% {
        text-shadow: 0 0 10px var(--accent-pink), 
                     0 0 20px var(--accent-pink), 
                     0 0 30px var(--hot-pink), 
                     0 0 40px var(--accent-pink);
        color: var(--primary-pink);
    }
    50% {
        text-shadow: 0 0 20px var(--hot-pink), 
                     0 0 30px var(--hot-pink), 
                     0 0 50px var(--hot-pink), 
                     0 0 60px var(--accent-pink);
        color: #FFC0CB;
    }
}

header p {
    font-size: 1.4em;
    color: var(--dark-text);
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

/* Button Bar with Hover Effects */
.button-bar {
    display: flex;
    justify-content: center;
    padding: 20px;
    gap: 25px;
    flex-wrap: wrap;
    background: rgba(174, 232, 230, 0.3);
}

.bar-button {
    font-family: 'Amatic SC', cursive;
    font-size: 1.6em;
    font-weight: 700;
    padding: 12px 30px;
    color: var(--dark-text);
    background: var(--secondary-pink);
    border-radius: 50px;
    text-decoration: none;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.bar-button::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 var(--transition-slow), height var(--transition-slow);
}

.bar-button:hover {
    background: linear-gradient(135deg, #FFC0CB, var(--accent-pink));
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    color: var(--white);
}

.bar-button:hover::before {
    width: 300px;
    height: 300px;
}

.bar-button:active {
    transform: translateY(-1px);
}

/* Enhanced Slideshow */
.slideshow-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
}

.slide {
    display: none;
    position: relative;
    text-align: center;
    animation: fadeIn 0.8s ease-in-out;
}

.slide.active {
    display: block;
}

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

.slide-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}

.slide-image:hover {
    transform: scale(1.02);
}

.slide-info {
    margin-top: 30px;
    background: linear-gradient(135deg, rgba(255, 221, 225, 0.95), rgba(174, 232, 230, 0.95));
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.slide-info h3 {
    font-family: 'Pacifico', cursive;
    font-size: 2em;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.slide-info p {
    font-size: 1.5em;
    color: var(--hot-pink);
    font-weight: 700;
    margin-bottom: 15px;
}

/* Slideshow Navigation Dots */
.slideshow-dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: rgba(255, 105, 180, 0.3);
    border-radius: 50%;
    display: inline-block;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.dot.active,
.dot:hover {
    background-color: var(--accent-pink);
    transform: scale(1.3);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    animation: slideUp 0.6s ease-out;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.product-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: var(--shadow-lg);
}

.product-image-container {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
}

.product-link {
    text-decoration: none;
    color: inherit;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 105, 180, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
    color: white;
    font-size: 1.2em;
    font-weight: 600;
}

.product-overlay i {
    font-size: 2em;
    margin-bottom: 10px;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

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

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

.product-title-link {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

.product-title-link:hover {
    color: var(--accent-pink);
}

.product-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1em;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 12px;
    line-height: 1.4;
    height: 63px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.product-price {
    font-size: 1.8em;
    color: var(--hot-pink);
    font-weight: 700;
    margin-bottom: auto;
    padding-bottom: 15px;
}

.product-buttons {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.btn {
    flex: 1;
    min-width: 100px;
    padding: 10px 16px;
    border: none;
    border-radius: 50px;
    font-size: 0.95em;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-pink), var(--hot-pink));
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--hot-pink), #C71585);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--primary-teal), var(--secondary-teal));
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--secondary-teal), #5ab3af);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* Contact Form */
.contact-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-text);
    font-size: 1.1em;
}

.form-control {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid rgba(174, 232, 230, 0.5);
    border-radius: 10px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1em;
    transition: all var(--transition-normal);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-pink);
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
}

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

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

/* Reviews Section */
.reviews-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    animation: fadeInUp 0.6s ease-out;
}

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

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

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-name {
    font-weight: 700;
    font-size: 1.2em;
    color: var(--dark-text);
}

.review-date {
    color: var(--light-text);
    font-size: 0.9em;
}

.stars {
    color: #FFD700;
    font-size: 1.3em;
    margin-bottom: 15px;
}

.review-text {
    color: var(--light-text);
    line-height: 1.7;
    font-size: 1.05em;
}

/* FAQ Accordion */
.faq-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.2em;
    color: var(--dark-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-normal);
    background: linear-gradient(135deg, rgba(255, 221, 225, 0.3), rgba(174, 232, 230, 0.3));
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(255, 221, 225, 0.6), rgba(174, 232, 230, 0.6));
}

.faq-question::after {
    content: '+';
    font-size: 1.8em;
    color: var(--accent-pink);
    transition: transform var(--transition-normal);
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-normal);
    padding: 0 25px;
    background: var(--white);
}

.faq-answer.active {
    max-height: 500px;
    padding: 20px 25px;
}

.faq-answer p {
    color: var(--light-text);
    line-height: 1.7;
    font-size: 1.05em;
}

/* Page Titles */
.page-title {
    font-family: 'Pacifico', cursive;
    font-size: clamp(2.5em, 6vw, 4em);
    color: var(--dark-text);
    text-align: center;
    margin: 40px 0;
    text-shadow: 2px 2px 4px rgba(255, 105, 180, 0.2);
}

/* Footer */
footer {
    background: rgba(255, 221, 225, 0.9);
    padding: 40px 20px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content p {
    margin-bottom: 15px;
    color: var(--dark-text);
}

.social-links {
    margin-top: 20px;
}

.social-link {
    display: inline-block;
    margin: 0 15px;
    color: var(--dark-text);
    font-size: 1.5em;
    transition: all var(--transition-normal);
}

.social-link:hover {
    color: var(--hot-pink);
    transform: translateY(-3px);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 105, 180, 0.3);
    border-radius: 50%;
    border-top-color: var(--accent-pink);
    animation: spin 1s ease-in-out infinite;
}

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

/* Modern Home Page Styles */
.modern-hero {
    position: relative;
    min-height: 600px;
    background: linear-gradient(135deg, #FFD1DC 0%, #FFDDE1 50%, #AEE8E6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    overflow: hidden;
}

.modern-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Pacifico', cursive;
    font-size: 4em;
    color: var(--dark-text);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5em;
    color: var(--light-text);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.btn-hero {
    padding: 15px 40px;
    font-size: 1.2em;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--accent-pink), var(--hot-pink));
    color: white;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-hero-secondary {
    background: white;
    color: var(--accent-pink);
    border: 2px solid var(--accent-pink);
}

.btn-hero-secondary:hover {
    background: var(--accent-pink);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

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

/* Features Section */
.features-section {
    padding: 80px 20px;
    background: white;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 209, 220, 0.1), rgba(174, 232, 230, 0.1));
    transition: all var(--transition-normal);
    height: 100%;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent-pink), var(--hot-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    color: white;
    box-shadow: var(--shadow-md);
}

.feature-card h3 {
    font-family: 'Amatic SC', cursive;
    font-size: 2em;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--light-text);
    font-size: 1.1em;
}

/* Featured Products Section */
.featured-products-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(255, 221, 225, 0.3), rgba(174, 232, 230, 0.3));
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Amatic SC', cursive;
    font-size: 3.5em;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2em;
    color: var(--light-text);
}

.featured-product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    height: 100%;
}

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

.featured-product-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: var(--secondary-pink);
}

.featured-product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.featured-product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.featured-product-card:hover .featured-product-overlay {
    opacity: 1;
}

.btn-view-product {
    padding: 12px 30px;
    background: white;
    color: var(--accent-pink);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.btn-view-product:hover {
    background: var(--accent-pink);
    color: white;
    transform: scale(1.05);
}

.featured-product-info {
    padding: 20px;
}

.featured-product-info h4 {
    font-size: 1.1em;
    color: var(--dark-text);
    margin-bottom: 10px;
    min-height: 50px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-product-price {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--accent-pink);
}

.btn-view-all {
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--accent-pink), var(--hot-pink));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.btn-view-all:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: white;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 20px;
    background: white;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 209, 220, 0.2), rgba(174, 232, 230, 0.2));
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    height: 100%;
}

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

.testimonial-stars {
    color: #FFD700;
    font-size: 1.2em;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1.1em;
    color: var(--dark-text);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--accent-pink), var(--hot-pink));
    color: white;
}

.cta-title {
    font-family: 'Amatic SC', cursive;
    font-size: 3.5em;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-cta {
    padding: 18px 50px;
    background: white;
    color: var(--accent-pink);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.3em;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    color: var(--accent-pink);
}

/* Responsive Design */
/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-text);
    margin: 3px 0;
    transition: all var(--transition-fast);
    border-radius: 3px;
}

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

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Tablet and Mobile Styles */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        flex-wrap: wrap;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 221, 225, 0.98);
        backdrop-filter: blur(10px);
        padding: 0;
        box-shadow: var(--shadow-lg);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }
    
    .nav-links.active {
        display: flex;
        max-height: 600px;
    }
    
    .nav-link {
        width: 100%;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 105, 180, 0.2);
        text-align: left;
        font-size: 1.5em;
    }
    
    /* Modern Home Page Mobile */
    .modern-hero {
        min-height: 500px;
        padding: 40px 20px;
    }
    
    .hero-title {
        font-size: 2.8em;
    }
    
    .hero-subtitle {
        font-size: 1.2em;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-hero {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2.5em;
    }
    
    .section-subtitle {
        font-size: 1.1em;
    }
    
    .features-section,
    .featured-products-section,
    .testimonials-section,
    .cta-section {
        padding: 50px 20px;
    }
    
    .cta-title {
        font-size: 2.5em;
    }
    
    .cta-text {
        font-size: 1.1em;
    }
    
    .nav-link:hover {
        background: rgba(255, 105, 180, 0.1);
    }
    
    .nav-link::after {
        display: none;
    }
    
    /* Hero Section */
    .glowing-text {
        font-size: 3em;
        padding: 0 20px;
    }
    
    header p {
        font-size: 1.3em;
        padding: 0 20px;
    }
    
    /* Product Grid */
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        padding: 20px;
        gap: 20px;
    }
    
    .product-card {
        margin: 0 auto;
        max-width: 100%;
    }
    
    /* Reviews Grid */
    .reviews-grid {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 20px;
    }
    
    /* Button Bar */
    .button-bar {
        gap: 15px;
        padding: 0 20px;
        flex-wrap: wrap;
    }
    
    .bar-button {
        font-size: 1.2em;
        padding: 12px 24px;
        min-width: 45%;
    }
    
    /* Cart Items */
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 15px;
    }
    
    .cart-item-image {
        width: 100%;
        max-width: 200px;
        height: auto;
        margin: 0 auto;
    }
    
    .cart-item-details {
        width: 100%;
    }
    
    .quantity-controls {
        width: 100%;
        justify-content: center;
    }
    
    /* Cart Summary */
    .cart-summary {
        margin-top: 20px;
    }
    
    /* Forms */
    .form-container {
        padding: 30px 20px;
    }
    
    /* Account Page */
    .account-header {
        padding: 0 20px;
    }
    
    /* Product Detail */
    .product-detail-container {
        flex-direction: column;
        padding: 20px;
    }
    
    .product-detail-image {
        max-width: 100%;
    }
    
    .product-detail-info {
        padding: 20px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .glowing-text {
        font-size: 2.2em;
    }
    
    header p {
        font-size: 1.1em;
    }
    
    .nav-logo img {
        width: 100px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        padding: 15px;
        gap: 15px;
    }
    
    .slideshow-container {
        padding: 15px;
    }
    
    .bar-button {
        font-size: 1.1em;
        padding: 10px 20px;
        min-width: 100%;
    }
    
    /* Cart on mobile */
    .cart-item {
        padding: 12px;
    }
    
    .cart-item-name {
        font-size: 1em;
    }
    
    .cart-item-price {
        font-size: 0.95em;
    }
    
    .quantity-btn {
        width: 35px;
        height: 35px;
        font-size: 1em;
    }
    
    .quantity-input {
        width: 50px;
        font-size: 0.95em;
    }
    
    /* Checkout button */
    .checkout-btn {
        padding: 14px;
        font-size: 1em;
    }
    
    /* Product cards */
    .product-card {
        padding: 12px;
    }
    
    .product-card h3 {
        font-size: 1.1em;
    }
    
    .product-card .price {
        font-size: 1.2em;
    }
    
    /* Touch-friendly spacing */
    .btn, button, .nav-link, a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .glowing-text {
        font-size: 2.5em;
    }
    
    header {
        padding: 30px 20px;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-pink), var(--hot-pink));
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    z-index: 999;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.scroll-to-top.visible {
    display: flex;
}

/* Pulse Animation for CTA */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.float {
    animation: float 3s ease-in-out infinite;
}
