/* Removes blue tap highlight and outline on mobile */
* {
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

/* --- GLOBAL BACKGROUND VIDEO & WARNING TEXT --- */

/* Background Video Container */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Behind content */
    overflow: hidden;
}

/* Video Element */
#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Dark Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* 40% Black - Video clearly visible */
    z-index: 1;
}

/* Info Text (Zoom Warning) */
.zoom-info-text {
    text-align: center;
    color: #a0a5b0;
    font-size: 14px;
    margin-top: -10px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    /* Very light box */
    border-radius: 50px;
    width: fit-content;
    margin-left: 0;
    margin-right: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    /* Full width or fit-content depending on preference, user said 'sol tarafa' */
    justify-content: flex-start;
    /* Align icon and text to left */
}

.custom-size-text {
    text-align: left;
    color: #a0a5b0;
    font-size: 14px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    margin-left: 0;
    margin-right: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.custom-size-text i {
    color: var(--primary-color);
}

/* SEO Content Block Style (Matches Homepage Cards) */
.seo-content-block {
    background: rgba(30, 30, 30, 0.6) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px !important;
    padding: 40px !important;
    margin: 30px auto;
    max-width: 1000px;
    /* Center and limit width for better reading */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: left;
    /* Align text to left */
}

.seo-content-block h3 {
    text-align: center;
    /* Center header */
    margin-bottom: 25px !important;
}

.seo-content-block p {
    color: #e0e0e0 !important;
    line-height: 1.8 !important;
    margin-bottom: 20px !important;
    font-size: 16px;
    text-align: justify;
    /* Justify text for neat block look */
}

/* Card Detail Button (Top Left) */
.btn-card-detail {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(30, 30, 30, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.btn-card-detail:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.product-image {
    cursor: zoom-in;
    /* Indicate clickable for lightbox */
}