:root {
    /* Montes Vision Design System */
    --primary: #001e39;
    --primary-container: #093359;
    --secondary: #7f552c;
    --secondary-container: #fdc491;
    --surface: #fdf9f3;
    --surface-container-low: #f7f3ed;
    --surface-container-high: #ebe8e2;
    --surface-container-highest: #e6e2dc;
    --surface-container-lowest: #ffffff;
    --on-surface: #1c1c18;
    --on-surface-variant: #43474e;
    --outline-variant: rgba(195, 198, 207, 0.2);

    /* Dmente Digital Branding */
    --dm-navy: #061421;
    --dm-indigo: #2bebd2;
    --dm-white: #F8FAFC;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--surface);
    color: var(--on-surface);
    font-family: 'Manrope', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, .font-headline {
    font-family: 'Newsreader', serif;
}

/* Custom Utilities */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-dark {
    background: rgba(0, 30, 57, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-glass {
  background: rgba(43, 235, 210, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(248, 250, 252, 0.1);
  border-radius: 16px;
}

.hero-gradient {
    background: linear-gradient(90deg, rgba(253, 249, 243, 1) 30%, rgba(253, 249, 243, 0) 100%);
}

.text-gradient {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-container));
    color: white;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-card {
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px -20px rgba(0, 30, 57, 0.1);
}

.img-zoom {
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .img-zoom {
    transform: scale(1.08);
}

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

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

/* Dmente Footer Styles */
.dm-footer {
    background: var(--dm-navy);
}

.dm-branding {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--dm-white);
    gap: 0.5rem;
}

.dm-dev {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.dm-name {
    color: var(--dm-indigo);
    font-weight: 700;
}

.dm-lema {
    font-size: 0.75rem;
    opacity: 0.6;
    font-style: italic;
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .hero-gradient {
        background: linear-gradient(180deg, rgba(253, 249, 243, 0.9) 0%, rgba(253, 249, 243, 0.6) 100%);
    }
}
