/* Body Background Image */
body {
    background-image: url('https://i.ibb.co/Xx1NqVcn/IMG-8436.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    background-color: #f4ecde; /* Fallback color */
}

html {
    min-height: 100%;
}

.footer-is-light .store-footer ,.footer-is-light .store-footer .store-footer__inner, .store-header{
    background-color: #f4ecde !important;
}
.top-navbar .s-search-input{
    background-color: #f4ecde !important;
}

#main-content{
    background-color: transparent !important;
    position: relative;
    z-index: 1;
}

.s-search-icon svg{
    fill: #000 !important;
}


.s-block--fixed-banner .container{
 padding: 0 !important;
}

/* Pop-up Modal Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-overlay.popup-visible {
    opacity: 1;
}

.popup-overlay.popup-hidden {
    opacity: 0;
}

.popup-modal {
    position: relative;
    background-color: #f4ecde;
    border: 2px solid #d4c4b0;
    border-radius: 50px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.popup-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: white;
    border: none;
    color: #c4b4a0;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: transform 0.2s ease;
    z-index: 10;
}

.popup-close:hover {
    transform: scale(1.1);
}

.popup-image-container {
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.popup-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.popup-copy-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    display: flex;
    justify-content: center;
    z-index: 5;
}

.popup-copy-btn {
    background-color: #c4b4a0;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 180, 160, 0.3);
}

.popup-copy-btn:hover {
    background-color: #b4a490;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 180, 160, 0.4);
}

.popup-copy-btn:active {
    transform: translateY(0);
}

.popup-copy-btn.popup-copied {
    background-color: #4CAF50;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .popup-modal {
        border-radius: 40px;
    }
    
    .popup-copy-container {
        bottom: 15px;
    }
    
    .popup-copy-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
}