
.shb-demo-content {
    padding: 2rem;
    color: white;
}

.shb-demo-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.shb-demo-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 800px;
}

/* Floating Button */
#shbFloatingBtn {
    position: fixed;
    left: 30px;
    bottom: 30px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    border: none;
    padding: 0;
    overflow: hidden;

    /* Glass effect */
    background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.18);

    /* Shadows */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37),
    0 2px 8px rgba(0, 0, 0, 0.2),
    inset 0 1px 2px rgba(255, 255, 255, 0.3),
    inset 0 -1px 2px rgba(0, 0, 0, 0.15);

    /* Animations */
    animation: shbFloat 6s ease-in-out infinite, shbGlow 3s ease-in-out infinite alternate;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Logo container */
#shbFloatingBtn .shb-logo-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0e800;
    border-radius: 50%;
    transform: scale(0.85);
    transition: transform 0.3s ease;
}

/* S letter */
#shbFloatingBtn .shb-logo-letter {
    font-size: 40px;
    font-weight: 900;
    color: #000;
    font-family: Arial, Helvetica, sans-serif;
    animation: shbPulseLetter 2s ease-in-out infinite;
}

/* Hover effects */
#shbFloatingBtn:hover {
    transform: translateY(-5px) scale(1.1) rotate(5deg);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.45),
    0 5px 15px rgba(0, 0, 0, 0.3),
    inset 0 2px 3px rgba(255, 255, 255, 0.4),
    inset 0 -2px 3px rgba(0, 0, 0, 0.2);
}

#shbFloatingBtn:hover .shb-logo-wrapper {
    transform: scale(0.95);
    animation: shbSpin 0.5s ease;
}

/* Modal Overlay */
#shbModalOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

#shbModalOverlay.shb-overlay-active {
    opacity: 1;
    visibility: visible;
}

/* Modal Container */
#shbStoreModal {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    width: 90%;
    max-width: 450px;
    background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    z-index: 2001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Sahibinden yellow border and shadow */
    border: 3px solid #ffd300;
    box-shadow: 0 0 40px rgba(255, 211, 0, 0.5),
    0 0 80px rgba(255, 211, 0, 0.3),
    0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 2px 5px rgba(255, 255, 255, 0.9);
}

#shbStoreModal.shb-modal-active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

/* Modal Header */
.shb-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 211, 0, 0.3);
}

#shbModalTitle {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#shbCloseModalBtn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #ffd300;
    background: rgba(255, 255, 255, 0.8);
    color: #333;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

#shbCloseModalBtn:hover {
    background: #ffd300;
    transform: rotate(90deg);
    box-shadow: 0 5px 15px rgba(255, 211, 0, 0.5);
}

/* Store Cards Container */
#shbStoreList {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Store Cards */
.shb-store-item {
    background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.7) 100%);
    border-radius: 15px;
    padding: 20px;
    border: 2px solid rgba(255, 211, 0, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1),
    0 0 20px rgba(255, 211, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.shb-store-item:hover {
    transform: translateY(-5px);
    border-color: #ffd300;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15),
    0 0 30px rgba(255, 211, 0, 0.4);
    background: linear-gradient(135deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 243, 200, 0.3) 100%);
}

.shb-store-icon-box {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(255, 211, 0, 0.3);
}

.shb-store-content {
    display: flex;
    align-items: center;
}

.shb-store-info {
    flex: 1;
}

.shb-store-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.shb-store-subtitle {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.shb-store-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.shb-arrow-indicator {
    margin-left: auto;
    color: #ffd300;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.shb-store-item:hover .shb-arrow-indicator {
    transform: translateX(5px);
}

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

@keyframes shbGlow {
    0% {
        filter: brightness(1) drop-shadow(0 0 5px rgba(240, 232, 0, 0.3));
    }
    100% {
        filter: brightness(1.1) drop-shadow(0 0 20px rgba(240, 232, 0, 0.6));
    }
}

@keyframes shbPulseLetter {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shbSpin {
    0% {
        transform: scale(0.95) rotate(0deg);
    }
    100% {
        transform: scale(0.95) rotate(360deg);
    }
}

/* Pulse ring effect */
#shbFloatingBtn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    animation: shbPulseRing 2s ease-out infinite;
}

@keyframes shbPulseRing {
    0% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.5);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    #shbFloatingBtn {
        width: 60px;
        height: 60px;
        left: 20px;
        bottom: 20px;
    }

    #shbFloatingBtn .shb-logo-letter {
        font-size: 32px;
    }

    #shbStoreModal {
        width: 95%;
        padding: 20px;
    }

    #shbModalTitle {
        font-size: 20px;
    }

    .shb-store-title {
        font-size: 16px;
    }
}
