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

:root {
    --primary-color: #d4a574;
    --secondary-color: #8b6f4e;
    --accent-color: #e8b89d;
    --dark-color: #4a3728;
    --light-color: #fdf5eb;
    --gold: #f4c430;
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-color);
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Pacifico', cursive;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Pacifico', cursive;
    font-size: 1.8rem;
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.logo i {
    margin-right: 10px;
    color: var(--gold);
    animation: rotateLogo 3s infinite linear;
}

@keyframes rotateLogo {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--gold);
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 3px;
}

/* Hero Section with Background Image */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('https://pub-b1d1885594e248e8bd9b74cabeb8819f.r2.dev/hero-pastry-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 70px;
    position: relative;
    overflow: hidden;
}

/* Animated overlay pattern */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(244, 196, 48, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 165, 116, 0.1) 0%, transparent 50%);
    animation: pulseGlow 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Hero Content Animations */
.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    max-width: 800px;
    padding: 0 20px;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: slideInDown 1s ease-out 0.2s both;
    letter-spacing: 1px;
}

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

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1s ease-out 0.4s both;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.price-tag {
    font-size: 2.5rem !important;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 2rem !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: bounceIn 1s ease-out 0.6s both;
    display: inline-block;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

.hero-content .btn {
    animation: fadeInUp 1s ease-out 0.8s both;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

/* Button shine effect */
.hero-content .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.hero-content .btn:hover::before {
    left: 100%;
}

.hero-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(244, 196, 48, 0.4);
}

/* Floating decorative elements */
.floating-icon {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.15;
    animation: float 8s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.floating-icon:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) rotate(10deg);
    }
    66% {
        transform: translateY(-15px) rotate(-5deg);
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 2;
    cursor: pointer;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-7px);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background-color: var(--gold);
    color: var(--dark-color);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(244, 196, 48, 0.4);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    animation: fadeIn 1s ease-out;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
    opacity: 0.8;
    font-size: 1.1rem;
    animation: fadeIn 1s ease-out 0.2s both;
}

/* Products Section */
.products {
    background-color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(30px);
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: var(--gold);
}

.product-image {
    height: 250px;
    overflow: hidden;
    background-color: #f0f0f0;
    position: relative;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .product-image::after {
    opacity: 1;
}

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

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

.product-info {
    padding: 25px;
}

.product-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.product-description {
    margin-bottom: 15px;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
}

.order-btn {
    width: 100%;
    padding: 12px;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

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

.order-btn:hover::before {
    width: 300px;
    height: 300px;
}

.order-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* Custom Order Banner */
.custom-order-banner {
    background: linear-gradient(135deg, var(--gold) 0%, var(--primary-color) 100%);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    color: var(--white);
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(244, 196, 48, 0.3);
    animation: fadeIn 1s ease-out;
    position: relative;
    overflow: hidden;
}

.custom-order-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.custom-order-banner i {
    font-size: 3.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    animation: magicFloat 2s ease-in-out infinite;
}

@keyframes magicFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(10deg); }
}

.custom-order-banner h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.custom-order-banner p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.custom-order-banner .btn {
    background-color: var(--white);
    color: var(--dark-color);
    position: relative;
    z-index: 1;
}

.custom-order-banner .btn:hover {
    background-color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features-section {
    background-color: var(--light-color);
}

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

.feature-card {
    background-color: var(--white);
    padding: 35px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    opacity: 0;
    transform: scale(0.9);
}

.feature-card.visible {
    opacity: 1;
    transform: scale(1);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-card i {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    transition: all 0.5s ease;
}

.feature-card:hover i {
    transform: rotate(360deg) scale(1.2);
}

.feature-card h3 {
    margin-bottom: 12px;
    color: var(--secondary-color);
    font-size: 1.4rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* About Section */
.about {
    background-color: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.15rem;
    text-align: center;
    line-height: 1.8;
    color: #555;
}

.specialties {
    background: linear-gradient(135deg, var(--light-color) 0%, #fff 100%);
    padding: 35px;
    border-radius: 15px;
    margin-top: 35px;
    border: 2px solid var(--gold);
    box-shadow: 0 5px 20px rgba(244, 196, 48, 0.15);
}

.specialties h3 {
    margin-bottom: 25px;
    color: var(--secondary-color);
    text-align: center;
    font-size: 1.8rem;
}

.specialties ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.specialties li {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--white);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.specialties li:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.specialties li i {
    color: var(--gold);
    font-size: 1.2rem;
}

/* Order Steps */
.order-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.step {
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.step.visible {
    opacity: 1;
    transform: translateX(0);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--primary-color) 100%);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(244, 196, 48, 0.4);
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: rotate(360deg) scale(1.1);
}

.step h3 {
    margin-bottom: 12px;
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.step p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Contact Section */
.contact {
    background-color: var(--white);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    background-color: var(--light-color);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    color: var(--dark-color);
    transition: all 0.4s ease;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(244, 196, 48, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-card.whatsapp {
    border-top: 5px solid #25D366;
}

.contact-card.phone {
    border-top: 5px solid var(--gold);
}

.contact-card i {
    font-size: 3.5rem;
    margin-bottom: 20px;
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.contact-card:hover i {
    transform: rotate(360deg) scale(1.2);
}

.contact-card.whatsapp i {
    color: #25D366;
}

.contact-card.phone i {
    color: var(--gold);
}

.contact-card h3 {
    margin-bottom: 12px;
    font-size: 1.6rem;
    color: var(--secondary-color);
    position: relative;
    z-index: 1;
}

.contact-card p {
    margin-bottom: 12px;
    opacity: 0.85;
    position: relative;
    z-index: 1;
}

.contact-card span {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark-color);
    position: relative;
    z-index: 1;
}

/* Order Info Box */
.order-info-box {
    background: linear-gradient(135deg, var(--light-color) 0%, #fff 100%);
    border-radius: 20px;
    padding: 45px;
    margin-bottom: 40px;
    border: 2px solid var(--gold);
    box-shadow: 0 8px 25px rgba(244, 196, 48, 0.15);
}

.order-info-box h3 {
    text-align: center;
    margin-bottom: 35px;
    color: var(--secondary-color);
    font-size: 2rem;
}

.order-info-box h3 i {
    color: var(--gold);
    margin-right: 10px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.info-item {
    display: flex;
    gap: 18px;
    padding: 25px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.info-item i {
    font-size: 2.2rem;
    color: var(--gold);
    flex-shrink: 0;
}

.info-item h4 {
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.info-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Flavor Quick List */
.flavor-quick-list {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--light-color) 0%, #fff 100%);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.flavor-quick-list h3 {
    margin-bottom: 25px;
    color: var(--secondary-color);
    font-size: 1.8rem;
}

.flavor-quick-list h3 i {
    color: var(--gold);
    margin-right: 10px;
}

.flavor-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.flavor-tag {
    background-color: var(--white);
    padding: 14px 28px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.flavor-tag i {
    color: var(--gold);
}

.flavor-tag:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
}

.flavor-tag.custom {
    background: linear-gradient(135deg, var(--gold) 0%, var(--primary-color) 100%);
    color: var(--white);
    animation: pulse 2s infinite;
}

.flavor-tag.custom i {
    color: var(--white);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(244, 196, 48, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(244, 196, 48, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(244, 196, 48, 0);
    }
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    text-align: center;
    padding: 35px 0;
}

.footer p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.footer i {
    color: #e74c3c;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.footer-note {
    font-style: italic;
    opacity: 0.85;
    margin-top: 10px;
    font-size: 0.95rem;
}

/* Stagger animation delays */
.product-card:nth-child(1) { transition-delay: 0.1s; }
.product-card:nth-child(2) { transition-delay: 0.2s; }
.product-card:nth-child(3) { transition-delay: 0.3s; }
.product-card:nth-child(4) { transition-delay: 0.4s; }

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    }

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

    .nav-links li {
        margin: 20px 0;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .price-tag {
        font-size: 1.8rem !important;
    }

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

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

    .order-steps {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .custom-order-banner {
        padding: 35px 20px;
    }

    .custom-order-banner h3 {
        font-size: 1.8rem;
    }

    .custom-order-banner p {
        font-size: 1rem;
    }

    .floating-icon {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .logo span {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .price-tag {
        font-size: 1.5rem !important;
    }

    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

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

/* Loading animation for images */
.product-image img {
    opacity: 0;
    transition: opacity 0.3s;
}

.product-image img.loaded {
    opacity: 1;
}