/* ============================================
   Lubryn-E® Premium Landing Page
   Color Tokens Override & Extensions
   ============================================ */

@import url("styles.css");

:root {
    /* Colors derived from lubrine.png */
    --color-primary: #CC9F9E;            /* Muted Rose Gold / Dusty Pink */
    --color-primary-dark: #8E5C5B;       /* Deep Mauve / Rose wood */
    --color-primary-light: #EBC7C6;      /* Soft Light Rose */
    --color-secondary: #F6ECEB;          /* Soft rose tint */
    --color-accent-pink: #FBF0EF;        /* Very light shell pink */
    --color-accent-peach: #FFF5F2;       /* Warm peach tint */

    --color-cream: #FAF5F4;              /* Warm cream background */

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #CC9F9E 0%, #8E5C5B 100%);
    --gradient-soft: linear-gradient(135deg, #F6ECEB 0%, #FBF0EF 100%);
    --gradient-hero: linear-gradient(180deg, #FAF5F4 0%, #FFFFFF 50%, #F6ECEB 100%);
    --gradient-glow: radial-gradient(circle, rgba(204, 159, 158, 0.3) 0%, transparent 70%);

    /* Shadows */
    --shadow-glow: 0 0 40px rgba(204, 159, 158, 0.3);
}

/* Custom styles specific to Lubryn-E */
.logo-text {
    color: var(--color-primary-dark);
}

/* Specific theme refinements */
.highlight-box {
    background: var(--gradient-primary);
}

.icon-bg {
    background: var(--gradient-soft);
}

/* 4-Ingredient Layout Grid Override */
.ingredientes-grid {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
    .ingredientes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .ingredientes-grid {
        grid-template-columns: 1fr;
    }
}

/* Premium Social Media Icons Styling */
.social-links {
    display: flex;
    gap: 1.5rem !important;
    margin-top: 1.5rem !important;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.social-icon svg {
    width: 22px !important;
    height: 22px !important;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    background: var(--color-primary-dark) !important;
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(142, 92, 91, 0.45);
    color: #fff !important;
}

.social-icon:hover svg {
    transform: scale(1.15);
}

/* Designer Link Styling */
.designer-link {
    color: #c9f2d5 !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    border-bottom: 2px solid rgba(201, 242, 213, 0.5);
    padding-bottom: 1px;
    letter-spacing: 0.5px;
    display: inline-block;
}

.designer-link:hover {
    color: #ffffff !important;
    border-bottom-color: #ffffff !important;
    text-shadow: 0 0 15px rgba(201, 242, 213, 0.9);
    transform: translateY(-2px);
}
