header {
    background-color: #000;
}

#content {
    
}

.custom-style-box {
    transition: all 0.3s ease;
    border-radius: 12px;
}

.custom-style-box:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.iframe-container {
    position: relative;
    width: 100%;    
}

.iframe-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.iframe-loader .spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #007bff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
    position: relative;
}

#home-banner {
    background: url('assets/images/banner.png') center center no-repeat;
}

#product-list .kt-card {
    cursor: pointer;
}

footer {
    margin-top: 20px;
}