'''/* ===== RESET E VARIABILI GLOBALI ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colori Imagine Pacifica - Palette Pantone */
    --color-primary: #7473C3;     /* PMS 7473 C - Turchese Pacifico */
    --color-secondary: #F0D26E;   /* PMS 134 C - Giallo Dorato */
    --color-accent: #B8986B;      /* PMS 728 C - Bronzo Terra */
    --color-coral: #D4A574;       /* Antique Gold - Oro Antico */
    --color-sunshine: #F0A500;    /* PMS 1235 C - Arancione Sole */
    --color-coconut: #F5F2E8;     /* Avorio Naturale */
    --color-ocean-deep: #2B5F5F;  /* Verde Mare Profondo */
    --color-sand: #F9F6F0;        /* Sabbia Dorata */
    
    /* Gradients tropicali */
    --gradient-ocean: linear-gradient(135deg, #45B7D1 0%, #4ECDC4 50%, #96CEB4 100%);
    --gradient-sunset: linear-gradient(135deg, #FF6B6B 0%, #FFE66D 50%, #FF6B6B 100%);
    --gradient-tropical: linear-gradient(135deg, #96CEB4 0%, #4ECDC4 50%, #45B7D1 100%);
    --gradient-palm: linear-gradient(135deg, #006A75 0%, #4ECDC4 100%);
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-script: 'Dancing Script', cursive;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --border-radius: 15px;
    
    /* Shadows */
    --shadow-card: 0 10px 30px rgba(78, 205, 196, 0.2);
    --shadow-hover: 0 15px 40px rgba(78, 205, 196, 0.3);
    --shadow-text: 0 2px 4px rgba(0, 106, 117, 0.3);
}

/* ===== STILI GENERALI ===== */
body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-ocean-deep);
    background-color: var(--color-coconut);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER E NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(78, 205, 196, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(78, 205, 196, 0.2);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-ocean-deep);
    text-decoration: none;
}

.nav-brand i {
    color: var(--color-primary);
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--color-ocean-deep);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--gradient-ocean);
    transition: width 0.3s ease;
}

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

.cart-icon {
    position: relative;
    font-size: 1.2rem;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--color-coral);
    color: white;
    font-size: 0.8rem;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 18px;
    text-align: center;
}

.profile-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.profile-btn:hover {
    background: rgba(78, 205, 196, 0.1);
    transform: scale(1.1);
}

.profile-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-primary);
}

/* Menu Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--color-ocean-deep);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Mobile Actions Container */
.mobile-actions {
    display: none;
    align-items: center;
    gap: 1rem;
}

.mobile-icon {
    color: var(--color-ocean-deep);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1.1rem;
}

.mobile-icon:hover {
    background: rgba(78, 205, 196, 0.1);
    transform: scale(1.05);
}

.mobile-icon.cart-icon .cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--color-coral);
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 16px;
    text-align: center;
    font-weight: 600;
}

/* Desktop-only elements */
.desktop-only {
    display: block;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-ocean);
    overflow: hidden;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: var(--shadow-text);
    line-height: 1.2;
}

.tropical-text {
    font-family: var(--font-script);
    color: var(--color-sunshine);
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(255, 230, 109, 0.4);
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animazioni onde */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wave-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23ffffff"></path><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%23ffffff"></path><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23ffffff"></path></svg>') repeat-x;
    animation: waves 15s linear infinite;
    opacity: 0.7;
}

@keyframes waves {
    0% { transform: translateX(0); }
    100% { transform: translateX(-1200px); }
}

/* Silhouette palme */
.palm-silhouette {
    position: absolute;
    bottom: 50px;
    width: 150px;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 150"><path d="M45,150 L55,150 L52,50 Q50,10 50,10 Q50,10 48,50 Z" fill="%23006A75" opacity="0.6"/><path d="M50,20 Q30,5 10,15 Q25,25 50,20" fill="%23006A75" opacity="0.4"/><path d="M50,20 Q70,5 90,15 Q75,25 50,20" fill="%23006A75" opacity="0.4"/><path d="M50,20 Q35,35 15,45 Q30,35 50,20" fill="%23006A75" opacity="0.4"/><path d="M50,20 Q65,35 85,45 Q70,35 50,20" fill="%23006A75" opacity="0.4"/></svg>') no-repeat center;
    background-size: contain;
    opacity: 0.3;
}

.palm-left {
    left: 10%;
    animation: sway 6s ease-in-out infinite;
}

.palm-right {
    right: 10%;
    transform: scaleX(-1);
    animation: sway 6s ease-in-out infinite reverse;
}

@keyframes sway {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(3deg); }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-ocean);
    color: white;
    box-shadow: var(--shadow-card);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--color-ocean-deep);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-ocean-deep);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: white;
}

/* ===== SEZIONI ===== */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-ocean-deep);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background: var(--gradient-ocean);
    display: block;
    margin: 1rem auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-ocean-deep);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== PRODOTTI ===== */
.featured-products {
    background: linear-gradient(135deg, var(--color-sand) 0%, var(--color-coconut) 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 320px));
    gap: 2rem;
    margin-bottom: 3rem;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto 3rem auto;
}

.product-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    position: relative;
    height: 480px; /* Altezza fissa per uniformità */
    display: flex;
    flex-direction: column;
}

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

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(78, 205, 196, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none; /* Permette click attraverso l'overlay */
}

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

.btn-quick-view,
.btn-add-cart {
    background: white;
    color: var(--color-ocean-deep);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto; /* Riabilita eventi sui pulsanti */
}

.btn-add-cart {
    padding: 10px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto; /* Riabilita eventi sul pulsante carrello */
}

.btn-quick-view:hover,
.btn-add-cart:hover {
    background: var(--color-sunshine);
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
    flex: 1; /* Occupa lo spazio rimanente */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-ocean-deep);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    height: 3.4rem; /* 2 linee fisse */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-description {
    color: var(--color-ocean-deep);
    opacity: 0.8;
    margin-bottom: 1rem;
    line-height: 1.5;
    height: 4.5rem; /* 3 linee fisse */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    flex-shrink: 0;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-coral);
    margin-bottom: auto; /* Spinge il rating in fondo */
    flex-shrink: 0;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto; /* Rimane in fondo alla card */
    flex-shrink: 0;
}

.product-rating i {
    color: var(--color-sunshine);
}

.product-rating span {
    color: var(--color-ocean-deep);
    opacity: 0.7;
    font-size: 0.9rem;
}

.section-footer {
    text-align: center;
}

/* ===== CHI SIAMO ===== */
.about-section {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--color-ocean-deep);
    opacity: 0.9;
}

.about-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-sand);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--color-primary);
}

.feature i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

.feature span {
    font-weight: 600;
    color: var(--color-ocean-deep);
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
}

/* ===== CONTATTI ===== */
.contact-section {
    background: linear-gradient(135deg, var(--color-sand) 0%, var(--color-coconut) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-content-new {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    background: var(--gradient-ocean);
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-ocean-deep);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--color-ocean-deep);
    opacity: 0.8;
    line-height: 1.6;
}

/* Live Support Info */
.live-support-info {
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-card {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(116, 115, 195, 0.3);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 400px;
}

.support-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.support-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.support-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.support-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.support-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.support-features .feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

.support-features .feature i {
    font-size: 1rem;
}

/* Form Styles */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--color-sand);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: transparent;
    color: var(--color-ocean-deep);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--color-ocean-deep);
    opacity: 0.6;
    transition: all 0.3s ease;
    pointer-events: none;
    font-weight: 500;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:valid + label,
.form-group textarea:valid + label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    background: white;
    padding: 0 5px;
    color: var(--color-primary);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-ocean-deep);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand i {
    color: var(--color-primary);
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.footer-description {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(78, 205, 196, 0.2);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-primary);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
    padding: 10px 20px;
    border-radius: 25px;
    white-space: nowrap;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large screens and laptops */


/* ===== ANIMAZIONI SCROLL ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* ===== SCROLLBAR PERSONALIZZATA ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-sand);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-ocean);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-ocean-deep);
}

/* ===== LOADING ANIMATIONS ===== */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.4), transparent);
    animation: loading 1.5s infinite;
}

/* ===== PRODUCT DETAIL MODAL ===== */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-modal.show {
    display: flex;
}

.product-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.product-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideUp 0.3s ease;
    z-index: 999999;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.product-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.product-modal-close:hover {
    background: var(--color-coral);
    color: white;
    transform: rotate(90deg);
}

.product-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 500px;
}

.product-modal-image {
    position: relative;
    overflow: hidden;
    background: var(--color-sand);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.product-modal-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-modal-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-ocean-deep);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.product-modal-category {
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.product-modal-rating {
    margin-bottom: 1.5rem;
}

.product-modal-rating i {
    color: var(--color-sunshine);
    margin-right: 0.2rem;
}

.product-modal-description {
    color: var(--color-ocean-deep);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.product-modal-price-section {
    margin-bottom: 2rem;
}

.product-modal-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-coral);
    margin-bottom: 0.5rem;
}

.product-modal-stock {
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
    font-size: 0.9rem;
}

.product-modal-stock.available {
    background: rgba(78, 205, 196, 0.1);
    color: var(--color-primary);
}

.product-modal-stock.unavailable {
    background: rgba(238, 90, 82, 0.1);
    color: var(--color-coral);
}

.product-modal-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid var(--color-primary);
    border-radius: 10px;
    overflow: hidden;
}

.quantity-btn {
    background: var(--color-primary);
    color: white;
    border: none;
    width: 40px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: var(--color-ocean-deep);
}

.quantity-selector input {
    width: 60px;
    height: 50px;
    border: none;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    background: white;
}

.add-to-cart-btn {
    flex: 1;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 50px;
}



@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ===== ADMIN PANEL STYLES ===== */
.admin-body {
    background: var(--color-coconut);
    font-family: var(--font-primary);
    margin: 0;
    padding: 0;
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 280px;
    background: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-sand);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-ocean-deep);
}

.sidebar-brand i {
    color: var(--color-primary);
    font-size: 1.5rem;
}

.sidebar-toggle {
    background: none;
    border: none;
    color: var(--color-ocean-deep);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.3s ease;
    display: none;
}

.sidebar-toggle:hover {
    background: var(--color-sand);
}

.sidebar-nav {
    flex: 1;
    padding: 1rem 0;
    overflow-y: auto;
}

.sidebar-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin-bottom: 0.25rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--color-ocean-deep);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background: rgba(116, 115, 195, 0.1);
    color: var(--color-primary);
}

.nav-item.active .nav-link {
    background: var(--color-primary);
    color: white;
}

.nav-link i {
    font-size: 1.1rem;
    width: 20px;
}

.sidebar-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--color-sand);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.user-details {
    display: flex;
    flex-direction: column;
}

.username {
    font-weight: 600;
    color: var(--color-ocean-deep);
    font-size: 0.9rem;
}

.user-role {
    font-size: 0.8rem;
    color: var(--color-ocean-deep);
    opacity: 0.7;
}

.logout-btn {
    background: none;
    border: none;
    color: var(--color-coral);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.logout-btn:hover {
    background: rgba(212, 165, 116, 0.1);
}

.admin-main {
    flex: 1;
    margin-left: 280px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.admin-header {
    background: white;
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sidebar-toggle-main {
    background: none;
    border: none;
    color: var(--color-ocean-deep);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.3s ease;
    display: none;
}

.sidebar-toggle-main:hover {
    background: var(--color-sand);
}

.breadcrumb {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-ocean-deep);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--color-sand);
    border-radius: 10px;
    min-width: 100px;
}

.stat-item i {
    color: var(--color-primary);
    font-size: 1.1rem;
}

.stat-value {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-ocean-deep);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-ocean-deep);
    opacity: 0.7;
}

.admin-content {
    flex: 1;
    padding: 2rem;
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

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

.section-header {
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-ocean-deep);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--color-ocean-deep);
    opacity: 0.7;
    font-size: 1.1rem;
}

.section-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.stat-card.primary .stat-icon {
    background: var(--color-primary);
}

.stat-card.secondary .stat-icon {
    background: var(--color-secondary);
}

.stat-card.accent .stat-icon {
    background: var(--color-accent);
}

.stat-card.warning .stat-icon {
    background: var(--color-sunshine);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-ocean-deep);
    line-height: 1;
}

.stat-label {
    color: var(--color-ocean-deep);
    opacity: 0.7;
    margin-bottom: 0.25rem;
}

.stat-change {
    font-size: 0.85rem;
    font-weight: 600;
}

.stat-change.positive {
    color: #10ac84;
}

.stat-change.negative {
    color: #ee5a52;
}

.stat-change.neutral {
    color: var(--color-ocean-deep);
    opacity: 0.6;
}

/* Charts */
.charts-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.chart-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
}

.chart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.chart-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-ocean-deep);
}

.chart-period select {
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-sand);
    border-radius: 8px;
    background: white;
    color: var(--color-ocean-deep);
}

/* Dashboard Widgets */
.dashboard-widgets {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.widget-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
}

.widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.widget-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-ocean-deep);
}

.widget-link {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.widget-link:hover {
    opacity: 0.8;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.activity-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: white;
    flex-shrink: 0;
}

.activity-icon.success {
    background: #10ac84;
}

.activity-icon.info {
    background: var(--color-primary);
}

.activity-icon.warning {
    background: var(--color-sunshine);
    color: var(--color-ocean-deep);
}

.activity-text {
    font-weight: 500;
    color: var(--color-ocean-deep);
    margin-bottom: 0.25rem;
}

.activity-time {
    font-size: 0.85rem;
    color: var(--color-ocean-deep);
    opacity: 0.6;
}

.orders-summary {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.order-stat {
    text-align: center;
    flex: 1;
}

.order-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.order-label {
    font-size: 0.85rem;
    color: var(--color-ocean-deep);
    opacity: 0.7;
}

/* Data Table */
.products-table-container {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--color-sand);
}

.data-table th {
    background: var(--color-sand);
    font-weight: 600;
    color: var(--color-ocean-deep);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.data-table td {
    color: var(--color-ocean-deep);
    vertical-align: middle;
}

.data-table tr:hover {
    background: rgba(116, 115, 195, 0.05);
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: modalFadeIn 0.3s ease;
}

/* Rimosso .active - usiamo solo .show */

/* Simple Modal Overlay */
.simple-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(2px);
}

/* IMPORTANTE: Usa show invece di active come nel test-modal */
.simple-modal-overlay.show {
    display: flex !important;
    animation: modalFadeIn 0.3s ease;
}

.simple-modal-container {
    background: white;
    border-radius: 12px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.simple-modal-header {
    padding: 2rem 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-sand);
}

.simple-modal-header h2 {
    color: var(--color-ocean-deep);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.simple-close-btn {
    background: none;
    border: none;
    color: var(--color-ocean-deep);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.simple-close-btn:hover {
    background: var(--color-sand);
}

.simple-modal-content {
    padding: 2rem;
}

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

.modal-content {
    background: white;
    border-radius: var(--border-radius);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
}

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

.modal-header {
    padding: 2rem 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-sand);
}

.modal-header h2 {
    color: var(--color-ocean-deep);
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    color: var(--color-ocean-deep);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: var(--color-sand);
}

.modal-form {
    padding: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-ocean-deep);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--color-sand);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
    color: var(--color-ocean-deep);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

/* Coming Soon */
.coming-soon {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--color-ocean-deep);
    opacity: 0.6;
}

.coming-soon i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.coming-soon h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* ===== CHECKOUT PAGE STYLES ===== */
.checkout-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
}



.checkout-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.order-summary {
    background: var(--color-sand);
    padding: 2rem;
    border-radius: 12px;
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    color: var(--color-ocean-deep);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section h3 i {
    color: var(--color-primary);
}

.checkout-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}



.checkout-form .form-group {
    display: flex;
    flex-direction: column;
}

.checkout-form .form-group.full-width {
    grid-column: 1 / -1;
}

.checkout-form .form-group label {
    color: var(--color-ocean-deep);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.checkout-form .form-group input,
.checkout-form .form-group select,
.checkout-form .form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.checkout-form .form-group input:focus,
.checkout-form .form-group select:focus,
.checkout-form .form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(45, 156, 155, 0.1);
}

.checkout-form .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Payment Methods */
.payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}



.payment-method {
    padding: 1rem;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.payment-method:hover {
    border-color: var(--color-primary);
    background: rgba(45, 156, 155, 0.05);
}

.payment-method.selected {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: white;
}

.payment-method i {
    font-size: 2rem;
}

.payment-method.selected i {
    color: white;
}

.payment-section {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

/* Stripe Elements */
#card-element {
    padding: 0.75rem;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    background: white;
}

#card-errors {
    color: #fa755a;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* Order Summary */
.order-summary h3 {
    color: var(--color-ocean-deep);
    margin-bottom: 1.5rem;
    text-align: center;
}

.cart-items {
    margin-bottom: 2rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(43, 95, 95, 0.1);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item .item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item .item-details {
    flex: 1;
}

.cart-item .item-name {
    font-weight: 600;
    color: var(--color-ocean-deep);
    margin-bottom: 0.25rem;
}

.cart-item .item-quantity {
    font-size: 0.9rem;
    color: #666;
}

.cart-item .item-price {
    font-weight: 600;
    color: var(--color-primary);
}

.order-totals {
    border-top: 2px solid rgba(43, 95, 95, 0.1);
    padding-top: 1rem;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.total-row.final {
    border-top: 1px solid rgba(43, 95, 95, 0.2);
    padding-top: 0.75rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-ocean-deep);
}

/* Messages */
.message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: none;
}

.message.error {
    background: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.message.success {
    background: #efe;
    color: #363;
    border: 1px solid #cfc;
}

/* Place Order Button */
.place-order-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.place-order-btn:hover:not(:disabled) {
    background: var(--color-ocean-deep);
    transform: translateY(-1px);
}

.place-order-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* PayPal Button Container */
#paypal-button-container {
    margin-top: 1rem;
}

/* Security badge */
.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(45, 156, 155, 0.1);
    border-radius: 8px;
    color: var(--color-ocean-deep);
    font-size: 0.9rem;
}

.security-badge i {
    color: var(--color-primary);
}

/* ===== TOUCH-FRIENDLY & iOS OPTIMIZATIONS ===== */
/* Prevent iOS zoom on inputs */
input, select, textarea {
    font-size: 16px;
    -webkit-appearance: none;
    border-radius: 8px;
}




/* High DPI displays */


/* Reduce motion for users who prefer it */


/* Dark mode support hint */

''