.elementor-13710 .elementor-element.elementor-element-50fca9c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-03413a9 *//* Reset and Base Styles */
html, body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

/* Full Page Home Section */
.full-page-home {
    height: 100vh;
    width: 100vw;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
}

.home-content {
    text-align: center;
    max-width: 90vw;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    padding-top: 10vh;
    padding-bottom: 15vh;
}

/* Logo Styles */
.logo-container {
    margin-bottom: 7vh;
}

.main-logo {
    height: 74px;
    width: auto;
    animation: floatAnimation 3s ease-in-out infinite;
}

/* Text Styles */
.store-services {
    margin-bottom: 8vh;
    color: #ffffff;
}

.store-services h1 {
    font-size: 4rem;
    color: #E91E63;
    margin-bottom: 3vh;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: slideInDown 0.8s ease-out forwards;
}

.store-services h2 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 3vh;
    font-weight: 600;
    animation: slideInLeft 0.8s ease-out forwards;
}

.store-services p {
    font-size: 1.8rem;
    opacity: 0.9;
    animation: slideInRight 0.8s ease-out forwards;
    margin-bottom: 2vh;
}

/* Button Styles */
.action-buttons {
    margin-bottom: 12vh;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 18px 45px;
    font-size: 1.4rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-outline {
    color: #ffffff;
    border: 3px solid #ffffff;
    animation: pulseOutline 2s infinite;
}

.btn-solid {
    background-color: #E91E63;
    color: #ffffff;
    border: 3px solid #E91E63;
    animation: pulseSolid 2s infinite;
}

.btn-outline:hover {
    background-color: #ffffff;
    color: #000000;
    transform: scale(1.05);
}

.btn-solid:hover {
    background-color: #D81B60;
    border-color: #D81B60;
    transform: scale(1.05);
}

/* Social Media Links */
.social-links {
    margin-top: 15vh;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-icon {
    color: #ffffff;
    font-size: 2rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.social-icon:hover {
    color: #E91E63;
    opacity: 1;
    transform: translateY(-5px);
}

.heart-icon {
    color: #E91E63;
    display: inline-block;
    animation: heartBeat 1.5s ease-in-out infinite;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.15); }
    28% { transform: scale(1); }
    42% { transform: scale(1.15); }
    70% { transform: scale(1); }
}

/* Made in Italy */
.made-in-italy {
    color: #ffffff;
    font-size: 1.2rem;
    position: absolute;
    bottom: 5vh;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.7;
    width: 100%;
    text-align: center;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes floatAnimation {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes pulseOutline {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

@keyframes pulseSolid {
    0% { box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(233, 30, 99, 0); }
    100% { box-shadow: 0 0 0 0 rgba(233, 30, 99, 0); }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .full-page-home {
        align-items: flex-start;
        padding-top: 8vh;
    }
    
    .home-content {
        transform: translateY(0);
        padding-top: 0;
        padding-bottom: 0;
    }

    .logo-container {
        margin-bottom: 5vh;
    }

    .store-services {
        margin-bottom: 5vh;
    }

    .store-services h1 {
        font-size: 3rem;
        margin-bottom: 3vh;
    }

    .store-services h2 {
        font-size: 2.5rem;
        margin-bottom: 3vh;
    }

    .store-services p {
        font-size: 1.4rem;
        margin-bottom: 1vh;
    }

    .action-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
        margin-bottom: 5vh;
    }

    .btn {
        width: auto;
        min-width: 200px;
        margin: 0;
        padding: 15px 30px;
    }

    .social-links {
        margin-top: 15vh;
        gap: 20px;
    }

    .made-in-italy {
        position: relative;
        margin-top: 3vh;
        bottom: auto;
        font-size: 1rem;
        opacity: 0.8;
    }
}

@media screen and (max-width: 480px) {
    .home-content {
        transform: translateY(0);
    }

    .logo-container {
        margin-bottom: 8vh;
    }

    .store-services {
        margin-bottom: 4vh;
    }

    .store-services h1 {
        font-size: 3rem;
        margin-bottom: 1.5vh;
    }

    .store-services h2 {
        font-size: 2rem;
        margin-bottom: 1.5vh;
    }

    .store-services p {
        margin-bottom: 1vh;
    }

    .action-buttons {
        margin-bottom: 4vh;
        gap: 12px;
    }

    .social-links {
        
        gap: 15px;
    }

    .made-in-italy {
        margin-top: 2vh;
    }

    .main-logo {
        height: 74px;
        width: auto;
    }

    .btn {
        font-size: 1.2rem;
        padding: 16px 25px;
    }

    .social-icon {
        font-size: 1.8rem;
            }
    
}

@media screen and (max-width: 380px) {
    .store-services h1 {
        font-size: 2.0rem;
    }

    .store-services h2 {
        font-size: 1.8rem;
    }

    .store-services p {
        font-size: 1.2rem;
        margin-bottom: 6vh;
    }

    .logo-container {
        margin-bottom: 6vh;
    }

    .btn {
        font-size: 1.1rem;
        padding: 14px 20px;
        min-width: 180px;
    }
    
    
    .social-links {
        gap: 12px;
    }

    .social-icon {
        font-size: 1.6rem;
    }
    
}

@media screen and (max-width: 320px) {
    .store-services h1 {
        font-size: 2.0rem;
    }

    .store-services h2 {
        font-size: 1.6rem;
    }

    .store-services p {
        font-size: 1.1rem;
    }

    .logo-container {
        margin-bottom: 4vh;
    }

    .main-logo {
        height: 60px;
    }
    
    .btn {
        font-size: 1rem;
        padding: 12px 18px;
        min-width: 160px;
    } 
}/* End custom CSS */