/* ====== CSS Variables (Color System) ====== */
/* ====== CSS Variables (Royal Purple & Blush Rose - Dresses Store) ====== */
:root {
    /* Primary Brand Colors (اللون الأساسي المطلوب وتدرجاته) */
    --color-primary: #62007a;           /* الأرجواني الملكي الرئيسي */
    --color-primary-dark: #430054;      /* أرجواني داكن وعميق للأزرار والتفاعلات */
    --color-primary-light: #831d9d;     /* أرجواني فاتح ومشرق */
    --color-accent: #e5b3cc;            /* وردي خزامى ناعم (Rose Lavender) متناسق مع الأرجواني */

    /* Background Colors (خلفيات عاجية ووردية ناعمة تبرز الفساتين) */
    --color-bg-body: #fdfafc;           /* خلفية الموقع الأساسية (وردي عاجي ناعم جداً) */
    --color-bg-white: #ffffff;
    --color-bg-light: #f6ebf2;          /* خلفية الأقسام */
    --color-bg-lighter: #fcf6fa;
    --color-bg-dark: #2a0035;           /* أرجواني ليلي فاخر للأقسام المظلمة */
    --color-bg-darker: #1a0021;         /* داكن جداً عميق */

    /* Text Colors (درجات متناسقة لراحة العين) */
    --color-text-dark: #2a0035;         /* لون النصوص الأساسي (أرجواني داكن جداً بديل للأسود) */
    --color-text-medium: #4a1c57;       /* نصوص فرعية */
    --color-text-muted: #855394;        /* نصوص توضيحية */
    --color-text-light: #ba93c7;        /* نصوص خفيفة */
    --color-text-white: #ffffff;

    /* Border & Divider Colors */
    --color-border: #ebd3e6;
    --color-border-light: #f5e8f2;
    --color-divider: rgba(98, 0, 122, 0.15);

    /* Shadow Colors (ظلال بلون الأرجواني لتناغم تام) */
    --color-shadow: rgba(98, 0, 122, 0.08);
    --color-shadow-medium: rgba(42, 0, 53, 0.12);
    --color-shadow-dark: rgba(42, 0, 53, 0.2);
    --color-shadow-heavy: rgba(26, 0, 33, 0.35);

    /* Overlay Colors (طبقات التظليل فوق الصور) */
    --color-overlay-hero: rgba(42, 0, 53, 0.82);
    --color-overlay-medium: rgba(74, 28, 87, 0.7);
    --color-overlay-light: rgba(98, 0, 122, 0.45);
    --color-overlay-card: rgba(26, 0, 33, 0.4);

    /* Badge Colors (شارات "جديد" و"خصم") */
    --color-badge-new: #488270;          /* أخضر زمردي هادئ يتناسق مع الأرجواني */
    --color-badge-offer: #c72c5a;        /* توتي زهري للتخفيضات */

    /* WhatsApp Colors */
    --color-whatsapp: #25d366;
    --color-whatsapp-dark: #128c7e;

    /* Success / Form Colors */
    --color-success: #488270;
    --color-success-dark: #335d50;

    /* Particle Colors (RGBA) (تأثيرات الجزيئات واللمعان) */
    --color-particle-1: 98, 0, 122;      /* Primary Purple */
    --color-particle-2: 255, 255, 255;   /* White */
    --color-particle-3: 229, 179, 204;   /* Soft Rose */
    --color-particle-4: 246, 235, 242;   /* Light Ivory */

    /* Gradients (تدرجات انسيابية فخمة) */
    --gradient-primary: linear-gradient(135deg, var(--color-primary), #8e24aa);
    --gradient-primary-hover: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    --gradient-dark: linear-gradient(135deg, var(--color-bg-dark), var(--color-text-medium));
    --gradient-darker: linear-gradient(135deg, var(--color-bg-darker), var(--color-bg-dark));
    --gradient-hero: linear-gradient(135deg, var(--color-overlay-hero), var(--color-overlay-medium), var(--color-overlay-light));
    --gradient-section: linear-gradient(180deg, var(--color-bg-body) 0%, var(--color-bg-light) 100%);
    --gradient-contact: linear-gradient(135deg, var(--color-bg-body), var(--color-bg-light));
    --gradient-whatsapp: linear-gradient(135deg, var(--color-whatsapp), var(--color-whatsapp-dark));
    --gradient-success: linear-gradient(135deg, var(--color-success), var(--color-success-dark));

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-pill: 30px;
    --radius-round: 50%;

    /* Spacing */
    --section-padding: 100px;
    --section-padding-mobile: 70px;
}
/* ====== Base Styles ====== */
/* html {
    scroll-behavior: smooth;
} */

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--color-bg-body);
    color: var(--color-text-dark);
    text-align: right;
    position: relative;
    overflow-x: hidden;
}

/* ====== Navbar ====== */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--color-shadow);
    padding: 15px 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 25px var(--color-shadow-medium);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--color-primary) !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-brand i {
    font-size: 1.4rem;
}

.nav-link {
    color: var(--color-text-medium) !important;
    font-weight: 600;
    margin: 0 5px;
    position: relative;
    padding: 8px 15px !important;
    border-radius: var(--radius-pill);
    transition: all var(--transition-normal);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 15px;
    left: 15px;
    height: 2px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-normal);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--color-primary) !important;
    background: rgba(140, 115, 98, 0.08);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

/* ====== Hero Section with Animated Background + Image ====== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-text-white);
    overflow: hidden;
    background: url('https://images.unsplash.com/photo-1581783342308-f792dbdd27c5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
}

/* Dark overlay for image readability */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: 2;
}

#heroCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 4;
    padding: 120px 20px 80px;
}

.hero-section h1 {
    font-weight: 800;
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
}

.hero-section .lead {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
}

.btn-hero {
    background: var(--color-bg-white);
    color: var(--color-primary);
    padding: 14px 40px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--color-bg-white);
    transition: all var(--transition-normal);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-hero:hover {
    background: transparent;
    color: var(--color-text-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.btn-hero-outline {
    background: transparent;
    color: var(--color-text-white);
    padding: 14px 40px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all var(--transition-normal);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-text-white);
    border-color: var(--color-bg-white);
    transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    position: relative;
    margin-bottom: 10px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

.arrows span {
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(255, 255, 255, 0.6);
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    transform: rotate(45deg);
    margin: 2px auto;
    animation: arrowScroll 1.5s infinite;
}

.arrows span:nth-child(2) { animation-delay: 0.1s; }
.arrows span:nth-child(3) { animation-delay: 0.2s; }

@keyframes scrollWheel {
    0% { top: 6px; opacity: 1; }
    100% { top: 22px; opacity: 0; }
}

@keyframes arrowScroll {
    0% { opacity: 0; transform: rotate(45deg) translate(-3px, -3px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(3px, 3px); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ====== Section Styles ====== */
.section-padding {
    padding: var(--section-padding) 0;
}

.section-title {
    font-weight: 800;
    color: var(--color-text-medium);
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    font-size: 2.2rem;
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 50px;
    opacity: 0.8;
}

/* ====== About Section ====== */
.about-section {
    background-color: var(--color-bg-white);
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 50px var(--color-shadow-medium);
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--color-primary);
    color: var(--color-text-white);
    padding: 15px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 10px 30px rgba(140, 115, 98, 0.4);
}

.about-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.about-badge .text {
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.9;
}

.about-content h3 {
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.about-content .lead {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--color-text-medium);
    margin-bottom: 25px;
    text-align: justify;
}

.features-list {
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding: 12px 15px;
    background: var(--color-bg-body);
    border-radius: var(--radius-md);
    border-right: 3px solid var(--color-primary);
    transition: all var(--transition-normal);
}

.feature-item:hover {
    background: var(--color-bg-lighter);
    transform: translateX(-5px);
}

.feature-item i {
    color: var(--color-primary);
    font-size: 1.1rem;
}

.feature-item span {
    font-weight: 600;
    color: var(--color-text-dark);
}

/* ====== Products Section ====== */
.products-section {
    background: var(--gradient-section);
}

.product-card {
    background: var(--color-bg-white);
    border-radius: var(--radius-xl);
    border: none;
    box-shadow: 0 10px 40px var(--color-shadow);
    transition: all var(--transition-bounce);
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
    will-change: transform;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px var(--color-shadow-dark);
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-overlay-card);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-normal);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-quick-view {
    width: 50px;
    height: 50px;
    background: var(--color-bg-white);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.2rem;
    transform: scale(0);
    transition: all var(--transition-normal);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-quick-view:hover {
    background: var(--color-primary);
    color: var(--color-text-white);
    transform: scale(1.1);
}

.product-card:hover .btn-quick-view {
    transform: scale(1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-primary);
    color: var(--color-text-white);
    padding: 6px 15px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.product-badge.new {
    background: var(--color-badge-new);
}

.product-badge.offer {
    background: var(--color-badge-offer);
}

.product-body {
    padding: 25px;
    text-align: right;
}

.product-title {
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.product-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
    opacity: 0.8;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.product-price {
    color: var(--color-primary);
    font-size: 1.4rem;
    font-weight: 800;
}

.old-price {
    text-decoration: line-through;
    color: var(--color-text-light);
    font-size: 1rem;
    margin-left: 8px;
    font-weight: 600;
}

.btn-buy {
    background: var(--gradient-primary);
    color: var(--color-text-white);
    border-radius: var(--radius-md);
    font-weight: 700;
    padding: 10px 25px;
    border: none;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(140, 115, 98, 0.3);
    white-space: nowrap;
}

.btn-buy:hover {
    background: var(--gradient-primary-hover);
    color: var(--color-text-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(140, 115, 98, 0.4);
}

/* ====== Stats Section ====== */
.stats-section {
    background: var(--gradient-dark);
    padding: 80px 0;
    color: var(--color-text-white);
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--color-accent);
    display: inline-block;
    transition: transform var(--transition-normal);
}

.stat-item:hover i {
    transform: scale(1.2) rotate(5deg);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 5px;
    background: linear-gradient(135deg, var(--color-text-white), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
    font-weight: 600;
}

/* ====== Contact Section ====== */
.contact-section {
    background-color: var(--color-bg-white);
}

.contact-info {
    background: var(--gradient-contact);
    padding: 40px;
    border-radius: var(--radius-xl);
    height: 100%;
}

.contact-info h3 {
    font-weight: 800;
    color: var(--color-text-medium);
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-divider);
}

.contact-item:last-of-type {
    border-bottom: none;
    margin-bottom: 30px;
}

.contact-item i {
    width: 45px;
    height: 45px;
    background: var(--color-primary);
    color: var(--color-text-white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all var(--transition-normal);
}

.contact-item:hover i {
    background: var(--color-primary-dark);
    transform: rotate(10deg);
}

.contact-item strong {
    display: block;
    color: var(--color-text-dark);
    margin-bottom: 3px;
    font-weight: 700;
}

.contact-item span {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--color-primary);
    color: var(--color-text-white);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.social-link:hover {
    background: var(--color-primary-dark);
    color: var(--color-text-white);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(140, 115, 98, 0.3);
    text-decoration: none;
}

.contact-form-wrapper {
    background: var(--color-bg-white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px var(--color-shadow);
    border: 1px solid rgba(140, 115, 98, 0.1);
}

.form-group label {
    font-weight: 700;
    color: var(--color-text-medium);
    margin-bottom: 8px;
}

.form-control {
    border-radius: var(--radius-md);
    padding: 14px 18px;
    border: 2px solid var(--color-border);
    background: var(--color-bg-body);
    transition: all var(--transition-normal);
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--color-primary);
    background: var(--color-bg-white);
    box-shadow: 0 0 0 4px rgba(140, 115, 98, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: var(--color-text-light);
}

/* ====== Footer ====== */
.footer {
    background: var(--gradient-darker);
    color: var(--color-text-white);
    padding: 60px 0 0;
    text-align: center;
}

.footer-content {
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 15px;
}

.footer-desc {
    opacity: 0.7;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition-normal);
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 30px;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.6;
    font-size: 0.95rem;
}

/* ====== Floating Buttons ====== */
.floating-btn {
    position: fixed;
    bottom: 25px;
    width: 55px;
    height: 55px;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 6px 25px var(--color-shadow-heavy);
    z-index: 999;
    transition: all var(--transition-bounce);
    border: none;
    cursor: pointer;
}

.floating-btn:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
}

/* WhatsApp Button - Always visible */
.whatsapp-btn {
    left: 25px;
    background: var(--gradient-whatsapp);
    color: var(--color-text-white);
    text-decoration: none;
    position: fixed;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-btn:hover {
    color: var(--color-text-white);
    text-decoration: none;
    animation: none;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 6px 35px rgba(37, 211, 102, 0.7); }
}

.whatsapp-tooltip {
    position: absolute;
    left: 65px;
    background: var(--color-whatsapp);
    color: var(--color-text-white);
    padding: 8px 15px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    transform: translateX(-10px);
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Back to Top Button - Hidden by default, shows on scroll */
.back-to-top {
    right: 25px;
    background: var(--gradient-primary-hover);
    color: var(--color-text-white);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-bounce);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    color: var(--color-text-white);
}

/* ====== Responsive ====== */
@media (max-width: 991px) {
    .hero-section h1 {
        font-size: 3rem;
    }
    .hero-section .lead {
        font-size: 1.2rem;
    }
    .section-padding {
        padding: var(--section-padding-mobile) 0;
    }
    .about-img {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }
    .hero-section .lead {
        font-size: 1rem;
    }
    .btn-hero, .btn-hero-outline {
        padding: 12px 25px;
        font-size: 1rem;
        margin: 5px;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .stat-number {
        font-size: 2rem;
    }
    .contact-info, .contact-form-wrapper {
        padding: 25px;
    }
    .product-footer {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .product-price {
        margin-bottom: 10px;
    }
}

@media (max-width: 575px) {
    .navbar-brand {
        font-size: 1.4rem;
    }
    .hero-section h1 {
        font-size: 1.8rem;
    }
    .whatsapp-tooltip {
        display: none;
    }
    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}