/* ==========================================
   LA'AARNO Perfume Website - Main Stylesheet
   ========================================== */

/* ==========================================
   VARIABLES & ROOT STYLES
   ========================================== */

:root {
    --primary-color: #4a148c; /* Deeper purple for luxury */
    --secondary-color: #7b1fa2; /* Richer purple */
    --accent-color: #ffd700; /* Gold instead of yellow */
    --dark-color: #1a0033; /* Very dark purple-black */
    --light-color: #f3e5f5; /* Light lavender */
    --text-color: #2d1b69; /* Dark purple text */
    --border-color: rgba(255, 215, 0, 0.3); /* Gold border */
    --shadow: 0 8px 30px rgba(74, 20, 140, 0.35); /* Purple shadow */
    --shadow-lg: 0 12px 35px rgba(74, 20, 140, 0.45);
}

.glass-card {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.22);
    border-radius: 18px;
}

.glossy-btn {
    background: linear-gradient(145deg, #ffb300, #ffc107 55%, #fff176);
    color: #1a1a1d;
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.35);
    border: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.glossy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(255, 193, 7, 0.45);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
}

/* ==========================================
   NAVBAR STYLING
   ========================================== */

.navbar {
    background: linear-gradient(135deg, #2d004f, #5d0d8d);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.18);
    box-shadow: var(--shadow);
    padding: 1rem 0;
}

.navbar .navbar-nav .nav-link {
    color: #f8f0ff !important;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #ffd400 !important;
}
.navbar .navbar-nav .nav-link:hover {
    color: #fff !important;
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.65);
}


.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--accent-color) !important;
    transition: all 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
}

.brand-logo i {
    margin-right: 0.5rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}

/* ==========================================
   HERO SECTION (Glossy) 
   ========================================== */

.hero-section {
    background: radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.15), transparent 45%),
                linear-gradient(135deg, rgba(74, 20, 140, 0.95) 0%, rgba(123, 31, 162, 0.9) 100%);
    color: #ffffff;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 215, 0, 0.25);
    box-shadow: inset 0 -15px 60px rgba(26, 0, 51, 0.3);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.4), transparent 30%),
                linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 20%);
    opacity: 0.8;
    mix-blend-mode: screen;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.12), transparent 18%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="18" fill="none" stroke="rgba(255,255,255,0.15)" stroke-width="1"/><circle cx="80" cy="30" r="14" fill="none" stroke="rgba(255,255,255,0.12)" stroke-width="1"/><circle cx="40" cy="80" r="22" fill="none" stroke="rgba(255,255,255,0.10)" stroke-width="1"/></svg>');
    background-size: 150px 150px;
    opacity: 0.95;
    mix-blend-mode: screen;
    animation: slideBackground 25s linear infinite;
}

@keyframes slideBackground {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(100px, 100px);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 5.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 40px rgba(0, 0, 0, 0.18);
    animation: fadeInDown 0.8s ease-out;
    color: #0d0010;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 3vw, 1.4rem);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    color: rgba(255, 255, 255, 0.92);
}

.hero-section .btn {
    animation: fadeInUp 0.8s ease-out 0.4s both;
    font-weight: 700;
    padding: 14px 44px;
    border-radius: 999px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffd200, #ffb100);
    color: #14001e;
    box-shadow: 0 14px 30px rgba(255, 182, 0, 0.35);
}

.hero-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(255, 182, 0, 0.45);
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   CAROUSEL SECTION
   ========================================== */

.carousel-section {
    background: var(--light-color);
    padding: 30px 0 50px;
}

.carousel {
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-product {
    position: relative;
    height: 520px;
    overflow: hidden;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.06);
}

.carousel-item.active .carousel-image {
    transform: scale(1.05);
}

.carousel-caption {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 40px 30px 30px;
    text-align: left;
    bottom: 0;
    top: auto;
    left: 0;
    right: 0;
}

.carousel-caption h3 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 0.5rem;
}

.carousel-caption p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-section:hover .carousel-control-prev,
.carousel-section:hover .carousel-control-next {
    opacity: 0.5;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1 !important;
}

.carousel-indicators {
    bottom: 20px;
}

.carousel-indicators [data-bs-target] {
    border-radius: 50%;
    width: 12px;
    height: 12px;
    margin: 0 0.3rem;
}

/* ==========================================
   BRAND SECTION
   ========================================== */

.brand-section {
    padding: 80px 0;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.brand-section img {
    transition: transform 0.5s ease;
    max-height: 500px;
}

.brand-section:hover img {
    transform: scale(1.05);
}

/* ==========================================
   PRODUCT CARD SECTION
   ========================================== */

.featured-section {
    padding: 80px 0;
}

.product-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(74, 20, 140, 0.25);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 14px 44px rgba(24, 8, 33, 0.45);
    border-color: rgba(255, 255, 255, 0.56);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: var(--light-color);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.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 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.product-body {
    padding: 20px;
}

.product-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.product-category {
    margin-bottom: 1rem;
}

.product-description {
    line-height: 1.5;
    color: #666;
    margin-bottom: 1.5rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

/* ==========================================
   PRODUCTS GRID
   ========================================== */

.products-section {
    padding: 60px 0;
    min-height: 80vh;
}

.filter-section {
    padding: 1.5rem 0;
}

.btn-outline-secondary {
    color: var(--text-color);
    border-color: var(--border-color);
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--dark-color);
}

.btn-outline-secondary.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--dark-color);
}

/* Women Button Styling - Pink/Rose Color */
.btn-women-custom {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #e91e63;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: rgba(233, 30, 99, 0.1);
    border: 1px solid #e91e63;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-women-custom:hover {
    color: #fff;
    background-color: #e91e63;
    border-color: #e91e63;
}

.btn-women-custom.active {
    color: #fff;
    background-color: #e91e63;
    border-color: #e91e63;
    box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact-section {
    padding: 60px 0;
}

.contact-item {
    padding: 20px;
    border-left: 4px solid var(--accent-color);
    background: var(--light-color);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: white;
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto;
}

.contact-item h5 {
    font-size: 1.2rem;
    margin-top: 1rem;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 12px 15px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.contact-form .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.contact-form .btn {
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    padding: 12px 30px;
}

.contact-form .btn-warning {
    background: var(--accent-color);
    border: none;
    color: var(--dark-color);
}

.contact-form .btn-warning:hover {
    background: #ffb300;
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

/* ==========================================
   FEATURES SECTION
   ========================================== */

.features-section {
    padding: 80px 0;
}

.feature-card {
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border-top: 4px solid var(--accent-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-card i {
    transition: transform 0.3s ease;
}

.feature-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h5 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* ==========================================
   FOOTER
   ========================================== */

footer {
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.98), rgba(74, 20, 140, 0.95));
    color: #f1edf8;
    padding: 60px 0 30px;
    margin-top: auto;
    border-top: 1px solid rgba(255, 215, 0, 0.25);
    backdrop-filter: blur(5px);
}

footer p,
footer li,
footer a {
    color: #e6d8ff;
}


footer h5 {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent-color);
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer .small {
    opacity: 0.8;
}

/* ==========================================
   WHATSAPP FLOATING BUTTON
   ========================================== */

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #20a652 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    color: white;
}

.whatsapp-btn:active {
    transform: scale(0.95);
}

/* ==========================================
   PAGE HEADER
   ========================================== */

.page-header {
    background: linear-gradient(135deg, var(--dark-color) 0%, #1a1a1a 100%);
    padding: 60px 0;
    margin-bottom: 40px;
}

.page-header h1 {
    color: white;
    font-size: clamp(2rem, 5vw, 3rem);
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================
   CTA SECTION
   ========================================== */

.cta-section {
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section .btn {
    margin: 0.5rem;
    transition: all 0.3s ease;
}

.cta-section .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ==========================================
   ERROR SECTION
   ========================================== */

.error-section {
    background: linear-gradient(135deg, var(--light-color), white);
}

.error-section i {
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ==========================================
   MODAL STYLING
   ========================================== */

.modal-content {
    border: none;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
}

.modal-header .modal-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.modal-body {
    padding: 30px;
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-warning {
    background: var(--accent-color);
    color: var(--dark-color);
}

.btn-warning:hover {
    background: #ffb300;
    color: var(--dark-color);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.btn-outline-warning {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-outline-warning:hover {
    background: var(--accent-color);
    color: var(--dark-color);
    border-color: var(--accent-color);
}

.btn-lg {
    padding: 12px 35px;
    font-size: 1.05rem;
}

/* ==========================================
   ALERTS
   ========================================== */

.alert {
    border: none;
    border-radius: 5px;
    padding: 15px 20px;
    animation: slideInDown 0.3s ease;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border-left: 4px solid #17a2b8;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   BADGES
   ========================================== */

.badge {
    padding: 0.5rem 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    font-size: 0.85rem;
}

.badge.bg-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
}

.badge.bg-info {
    background: #17a2b8 !important;
}

.badge.bg-danger {
    background: linear-gradient(135deg, #e91e63, #f06292) !important;
}

/* ==========================================
   ACCORDION
   ========================================== */

.accordion-item {
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-button {
    background: white;
    color: var(--dark-color);
    font-weight: 600;
    padding: 1.2rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: var(--light-color);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.1);
}

.accordion-body {
    padding: 1.5rem;
    background: white;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Tablet (768px) */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .carousel-product {
        height: 420px;
    }

    .carousel-caption {
        padding: 20px;
    }

    .carousel-caption h3 {
        font-size: 1.6rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
    }

    .product-card {
        margin-bottom: 1.5rem;
    }

    .contact-form {
        padding: 25px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        bottom: 20px;
        right: 20px;
    }

    footer {
        text-align: center;
    }

    footer h5 {
        margin-top: 2rem;
    }

    .d-sm-flex {
        flex-direction: column;
    }

    .d-sm-flex .btn {
        margin-bottom: 0.5rem;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .brand-logo {
        font-size: 1.2rem;
    }
}

/* Mobile (480px) */
@media (max-width: 480px) {
    body {
        font-size: 0.95rem;
    }

    .hero-section {
        padding: 60px 0;
        min-height: 400px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-section .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .carousel-product {
        height: 380px;
    }

    .carousel-caption h3 {
        font-size: 1.4rem;
    }

    .carousel-caption p {
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-title::after {
        width: 40px;
    }

    .brand-section {
        padding: 40px 0;
    }

    .brand-section img {
        margin-bottom: 2rem;
    }

    .featured-section {
        padding: 40px 0;
    }

    .product-image-wrapper {
        height: 250px;
    }

    .product-name {
        font-size: 1.1rem;
    }

    .product-price {
        font-size: 1.3rem;
    }

    .price-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .contact-item {
        margin-bottom: 1.5rem;
    }

    .contact-form {
        padding: 20px;
    }

    .btn-lg {
        padding: 10px 25px;
        font-size: 1rem;
    }

    .page-header {
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .modal-body {
        padding: 20px;
    }

    .modal-body .row {
        flex-direction: column;
    }

    .whatsapp-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        bottom: 15px;
        right: 15px;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-section .btn {
        margin: 0.3rem 0;
        display: block;
        width: 100%;
    }

    .navbar-nav {
        text-align: center;
        padding: 0.5rem 0;
    }

    .navbar-nav .nav-item {
        margin: 0;
    }

    .navbar-nav .nav-link {
        margin: 0.5rem 0;
    }

    footer .row {
        margin-bottom: 1.5rem;
    }

    .accordion-button {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .accordion-body {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .lead {
        font-size: 1rem;
    }

    .btn-group {
        flex-direction: column;
    }

    .btn-group .btn {
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* iPhone SE & smaller phones (375px) */
@media (max-width: 375px) {
    .container {
        padding: 15px;
    }

    h1 {
        font-size: 1.3rem;
    }

    h2 {
        font-size: 1.1rem;
    }

    .page-header {
        padding: 30px 0;
    }

    .btn-lg {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* ==========================================
   PRINT STYLES
   ========================================== */

@media print {
    .navbar,
    footer,
    .whatsapp-btn {
        display: none;
    }

    .product-card {
        page-break-inside: avoid;
    }
}

/* ==========================================
   DARK MODE SUPPORT (Optional)
   ========================================== */

@media (prefers-color-scheme: dark) {
    body {
        background: #1a1a1a;
        color: #e0e0e0;
    }

    .section-title {
        color: white;
    }

    .product-card,
    .contact-form {
        background: #2a2a2a;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .product-name {
        color: white;
    }

    .product-description {
        color: #b0b0b0;
    }

    .form-control {
        background: #2a2a2a;
        color: white;
        border-color: #444;
    }

    .form-control:focus {
        background: #2a2a2a;
        color: white;
        border-color: var(--accent-color);
    }

    .contact-item {
        background: #222;
    }

    .feature-card {
        background: #2a2a2a;
    }

    footer {
        background: #0a0a0a;
    }
}
