:root {
    /* Color Palette */
    --bg-dark: #0A0A0A;
    --bg-darker: #141414;
    --text-main: #F4F4F2;
    --accent-cyan: rgba(249, 199, 12, 0.2);
    --accent-cyan-solid: #F9C70C;
    
    /* Typography */
    --font-serif: 'Cinzel', serif;
    --font-sans: 'Inter', sans-serif;
    
    /* Transitions */
    --ease-fluid: cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Hide default cursor for custom one */
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Cursor */
#custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background-color: var(--accent-cyan-solid);
    border: 2px solid var(--accent-cyan-solid);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999; /* Updated to be higher than modal */
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-fluid), height 0.3s var(--ease-fluid), background-color 0.3s;
}

#custom-cursor.active {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border-color: var(--accent-cyan-solid);
}

#cursor-text {
    position: fixed;
    top: 0;
    left: 0;
    font-size: 8px;
    letter-spacing: 2px;
    font-weight: 300;
    pointer-events: none;
    z-index: 999999; /* Updated to be higher than modal */
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s;
}

#cursor-text.active {
    opacity: 1;
}

/* Typography Base */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 400;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 11, 0.75) 0%,
        rgba(10, 10, 11, 0.4) 50%,
        rgba(10, 10, 11, 0.9) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 50;
    text-align: center;
    pointer-events: none;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 5rem);
    line-height: 1.2;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-main);
}

.text-reveal {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
}

.text-reveal span {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: -15vh;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0.5;
}

.scroll-indicator .line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--text-main), transparent);
}

.scroll-indicator .text {
    font-size: 10px;
    letter-spacing: 3px;
    font-family: var(--font-sans);
    font-weight: 300;
}

/* CONFIGURATOR SECTION */
.configurator-section {
    min-height: 100vh;
    padding: 10vh 5vw;
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-darker));
    position: relative;
}

.config-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    height: 80vh;
    align-items: center;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

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

.section-desc {
    font-weight: 100;
    line-height: 1.6;
    color: rgba(244, 244, 242, 0.7);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.material-menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.material-btn {
    background: none;
    border: none;
    color: var(--text-main);
    text-align: left;
    padding: 1rem 0;
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.material-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text-main);
    transition: width 0.5s var(--ease-fluid);
}

.material-btn:hover::after, .material-btn.active::after {
    width: 100%;
}

.material-btn .coord {
    font-size: 0.8rem;
    color: rgba(244, 244, 242, 0.4);
    margin-right: 1rem;
    font-family: monospace;
}

.material-badge {
    background-color: var(--accent-cyan-solid);
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 2px;
    margin-left: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-sans);
    display: inline-block;
    vertical-align: middle;
    box-shadow: 0 0 10px rgba(249, 199, 12, 0.4);
    animation: pulse-badge 2s infinite ease-in-out;
}

@keyframes pulse-badge {
    0%, 100% {
        opacity: 0.9;
        box-shadow: 0 0 5px rgba(249, 199, 12, 0.3);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 15px rgba(249, 199, 12, 0.7);
    }
}

.config-canvas-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
}

#configurator-canvas-container {
    width: 100%;
    height: 100%;
    background: #000;
}

.info-card {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(15, 17, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem;
    max-width: 300px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s var(--ease-fluid);
}

.info-card.visible {
    transform: translateY(0);
    opacity: 1;
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-sans);
    font-weight: 400;
}

.info-card p {
    font-size: 0.9rem;
    font-weight: 100;
    color: rgba(255,255,255,0.6);
}

/* PORTFOLIO SECTION */
.portfolio-section {
    padding: 15vh 5vw;
    background: var(--bg-darker);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 5rem;
}

.project-item {
    position: relative;
    transform-style: preserve-3d;
}

.project-item.offset-down {
    margin-top: 5rem;
}

.project-item.offset-up {
    margin-top: -3rem;
}

.img-wrapper {
    width: 100%;
    height: 60vh;
    overflow: hidden;
    position: relative;
}

.fluid-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s var(--ease-fluid), filter 0.8s var(--ease-fluid);
}

.project-info {
    margin-top: 1.5rem;
}

.project-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.project-info p {
    font-family: var(--font-sans);
    font-weight: 100;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Hover Effects logic for Gallery will be handled by JS for the Z-pop and Blur */

/* CTA BUTTONS */
.cta-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-main);
    padding: 1rem 3rem;
    font-family: var(--font-sans);
    font-weight: 300;
    letter-spacing: 2px;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
}

.cta-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 var(--ease-fluid);
}

.cta-btn:hover {
    border-color: var(--text-main);
}

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

.footer {
    padding: 15vh 5vw;
    text-align: center;
    background: var(--bg-dark);
}

.footer h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

/* Utility / Hover states added via JS */
.is-blurred {
    filter: blur(5px) brightness(0.5);
}

.interactive-hover {
    /* Marker class for the custom cursor */
}

/* NAVIGATION & LOGO */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 5vw;
    display: flex;
    justify-content: space-between; /* Align logo left, socials right */
    align-items: center;
    z-index: 999;
    background: linear-gradient(to bottom, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0) 100%);
    pointer-events: none; /* Let clicks pass through if not on logo or socials */
}

.logo-container {
    display: flex;
    align-items: flex-end;
    position: relative;
    padding-left: 15px;
    padding-bottom: 10px;
    pointer-events: auto;
    cursor: none;
    transform: scale(0.9);
    transform-origin: top left;
}

/* Architectural Lines */
.logo-lines::before {
    content: '';
    position: absolute;
    left: 0;
    top: -10px;
    width: 3px;
    height: 110%;
    background-color: var(--accent-cyan-solid); /* Yellow color */
}

.logo-lines::after {
    content: '';
    position: absolute;
    left: -5px;
    bottom: 0;
    width: 120%;
    height: 3px;
    background-color: var(--accent-cyan-solid); /* Yellow color */
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
    margin-bottom: 5px;
}

.logo-line-1 {
    display: flex;
    align-items: baseline;
    line-height: 1;
}

.word-cocinas {
    font-family: var(--font-sans);
    font-size: 2rem;
    font-weight: 800; /* Heavy weight */
    color: #FFFFFF;
    letter-spacing: 0.05em;
}

.word-amp {
    font-family: var(--font-sans);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-cyan-solid); /* Yellow color */
    margin-left: 8px;
}

.logo-line-2 {
    line-height: 1;
    margin-top: 5px;
}

.word-proyectos {
    font-family: var(--font-sans);
    font-size: 2rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: 0.05em;
}

/* FULLSCREEN CATALOG MODAL */
.catalog-modal {
    display: none; /* Hidden initially */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0A0A0A; /* Solid dark background matching website background for fast rendering */
    z-index: 99999;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
}

.catalog-header {
    position: sticky;
    top: 0;
    width: 100%;
    padding: 2rem 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(10,10,10,1), rgba(10,10,10,0));
    z-index: 10;
}

.catalog-header h2 {
    font-size: 2rem;
    color: var(--accent-cyan-solid);
}

.close-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-main);
    padding: 0.5rem 1.5rem;
    font-family: var(--font-sans);
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-btn:hover {
    border-color: var(--accent-cyan-solid);
    color: var(--accent-cyan-solid);
}

.x-icon {
    font-size: 1.5rem;
    line-height: 1;
}

/* MASONRY GRID */
.catalog-content {
    padding: 2rem 5vw 10vh 5vw;
}

.catalog-grid {
    column-count: 3;
    column-gap: 2rem;
}

@media (max-width: 1000px) {
    .catalog-grid { column-count: 2; }
}

@media (max-width: 600px) {
    .catalog-grid { column-count: 1; }
}

.catalog-item {
    break-inside: avoid;
    margin-bottom: 2rem;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: none; /* Let the magnetic cursor take over */
    border: 1px solid rgba(255,255,255,0.05);
    will-change: transform, opacity; /* Hardware acceleration hint */
}

.media-container {
    position: relative;
    width: 100%;
    font-size: 0; /* Remove gap below image */
}

.media-container img, .media-container video {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s var(--ease-fluid);
}

.catalog-item:hover .media-container img, 
.catalog-item:hover .media-container video {
    transform: scale(1.05);
}

.video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    pointer-events: none;
    transition: opacity 0.3s;
}

.catalog-item:hover .video-container::after {
    opacity: 0;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: rgba(255,255,255,0.8);
    pointer-events: none;
    transition: all 0.3s;
    text-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.catalog-item:hover .play-icon {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.5);
}

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(10,10,10,0.9), transparent);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s var(--ease-fluid);
    pointer-events: none;
}

.catalog-item:hover .item-overlay {
    transform: translateY(0);
    opacity: 1;
}

.item-overlay h3 {
    font-size: 1.2rem;
    margin: 0;
    font-family: var(--font-sans);
    font-weight: 300;
}

/* ==========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.5s var(--ease-fluid);
    animation: wa-pulse 3s infinite;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #F4F4F2;
    transition: fill 0.5s var(--ease-fluid), transform 0.5s var(--ease-fluid);
}

/* Hover Effects */
.whatsapp-float:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: #25D366;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.25), 0 0 20px rgba(37, 211, 102, 0.1);
    transform: scale(1.08) translateY(-3px);
}

.whatsapp-float:hover svg {
    fill: #25D366;
    transform: scale(1.1);
}

/* Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 1px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(15px);
    transition: all 0.4s var(--ease-fluid);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Pulsing Outer Border */
@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.08), 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0), 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0), 0 10px 30px rgba(0, 0, 0, 0.5);
    }
}

/* ==========================================================================
   CONTACT & LOCATION SECTION
   ========================================================================== */
.contacto-section {
    padding: 15vh 5vw;
    background: var(--bg-darker);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    max-width: 1200px;
    margin: 3rem auto 0 auto;
    align-items: center;
}

.contacto-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contacto-item-detail {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 15px;
    position: relative;
}

.contacto-item-detail::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 2px;
    height: calc(100% - 10px);
    background-color: var(--accent-cyan-solid); /* Yellow Accent line */
}

.contacto-item-label {
    font-size: 0.8rem;
    font-family: var(--font-sans);
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--accent-cyan-solid);
    text-transform: uppercase;
}

.contacto-item-value {
    font-size: 1.1rem;
    font-family: var(--font-sans);
    font-weight: 100;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.contacto-item-value a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.contacto-item-value a:hover {
    color: var(--accent-cyan-solid);
}

.contacto-map-wrapper {
    width: 100%;
    height: 450px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    background: #0d0d0d;
}

.contacto-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    /* Dark Theme filter mapping: Grayscale + Inverted colors */
    filter: grayscale(1) invert(0.9) contrast(1.15) brightness(0.9);
    transition: filter 0.8s var(--ease-fluid);
}

/* Beautiful Interactive Map Transition */
.contacto-map-wrapper:hover iframe {
    filter: grayscale(0) invert(0) contrast(1) brightness(1);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .contacto-map-wrapper {
        height: 350px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

/* ==========================================================================
   SOCIAL MEDIA LINKS (NAVBAR, CONTACT, FOOTER)
   ========================================================================== */
.nav-socials {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    pointer-events: auto; /* Enable clicks */
}

.nav-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.nav-socials a svg {
    width: 22px;
    height: 22px;
    fill: rgba(255, 255, 255, 0.6);
    transition: fill 0.3s var(--ease-fluid), transform 0.3s var(--ease-fluid);
}

.nav-socials a:hover svg {
    fill: var(--accent-cyan-solid); /* Yellow Accent */
    transform: scale(1.15);
}

@media (max-width: 600px) {
    .nav-socials {
        display: none; /* Hide in header for mobile to preserve space */
    }
}

/* Contact Socials Row */
.social-icons-row {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 0.3rem;
}

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-icon-link svg {
    width: 22px;
    height: 22px;
    fill: rgba(255, 255, 255, 0.6);
    transition: fill 0.3s var(--ease-fluid), transform 0.3s var(--ease-fluid);
}

.social-icon-link:hover svg {
    fill: var(--accent-cyan-solid);
    transform: scale(1.15);
}

/* Footer Socials */
.footer-socials {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.footer-socials .social-icon-link svg {
    width: 26px;
    height: 26px;
    fill: rgba(255, 255, 255, 0.4);
    transition: fill 0.3s var(--ease-fluid), transform 0.3s var(--ease-fluid), filter 0.3s;
}

.footer-socials .social-icon-link:hover svg {
    fill: #FFFFFF;
    transform: scale(1.15);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

/* ==========================================================================
   INSTAGRAM CTA BANNER
   ========================================================================== */
.instagram-banner {
    padding: 15vh 5vw;
    background: linear-gradient(135deg, #0A0A0A, #141414 50%, #0d0614 100%);
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.instagram-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(225, 48, 108, 0.04) 0%, rgba(253, 29, 29, 0.02) 50%, transparent 100%);
    pointer-events: none;
}

.instagram-banner-content {
    max-width: 800px;
    z-index: 1;
    position: relative;
}

.banner-sub {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--accent-cyan-solid);
    margin-bottom: 1.5rem;
    display: block;
    text-transform: uppercase;
}

.banner-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.3;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    color: var(--text-main);
    text-transform: uppercase;
}

.banner-desc {
    font-weight: 100;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.instagram-btn {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.5s var(--ease-fluid) !important;
}

.instagram-btn:hover {
    border-color: #E1306C;
    color: #FFFFFF;
    background: rgba(225, 48, 108, 0.08);
    box-shadow: 0 10px 30px rgba(225, 48, 108, 0.15), 0 0 20px rgba(225, 48, 108, 0.05);
}


