/* Scoped CSS for Value Optical Virtual Try-On Tips Section */

.vol-vto-tips-section {
    background-color: #f8f9ff;
    /* Light grid background texture */
    background-image: radial-gradient(#e0e5f2 1px, transparent 1px);
    background-size: 24px 24px;
    padding: 90px 24px;
    width: 100%;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

.vol-vto-tips-inner {
    max-width: 1160px;
    width: 100%;
    margin: 0 auto;
}

.vol-vto-tips-header {
    text-align: center;
    margin-bottom: 56px;
}

.vol-vto-pill {
    display: inline-block;
    background-color: #e6ebf5; /* Subtle light navy tint */
    color: #26306e;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 1.2px;
}

.vol-vto-title {
    color: #26306e;
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 700;
    margin: 0 0 18px 0;
    line-height: 1.2;
}

.vol-vto-intro {
    color: #5f6b7a;
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.vol-vto-tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vol-vto-tips-card {
    background: #ffffff;
    border: 1px solid rgba(38, 48, 110, 0.08); /* Subtle navy-tinted border */
    border-radius: 20px;
    padding: 36px 28px;
    box-shadow: 0 8px 24px rgba(38, 48, 110, 0.04); /* Soft shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

@media (min-width: 1025px) {
    .vol-vto-tips-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(38, 48, 110, 0.08); /* Stronger shadow on hover */
    }
}

.vol-vto-card-icon {
    width: 54px;
    height: 54px;
    background-color: #f8f9ff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #f1aa1e;
}

.vol-vto-card-icon i,
.vol-vto-card-icon svg {
    font-size: 24px;
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.vol-vto-card-title {
    color: #26306e;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
}

.vol-vto-card-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.vol-vto-card-bullets li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    color: #5f6b7a;
    font-size: 15px;
    line-height: 1.6;
}

.vol-vto-card-bullets li:last-child {
    margin-bottom: 0;
}

.vol-vto-card-bullets li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 9px;
    width: 6px;
    height: 6px;
    background-color: #f1aa1e;
    border-radius: 50%;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .vol-vto-tips-section {
        padding: 72px 24px;
    }
    
    .vol-vto-tips-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .vol-vto-tips-section {
        padding: 60px 16px;
    }
    
    .vol-vto-tips-header {
        margin-bottom: 40px;
    }

    .vol-vto-title {
        font-size: 30px;
    }

    .vol-vto-intro {
        font-size: 16px;
    }

    .vol-vto-tips-grid {
        grid-template-columns: 1fr;
    }
    
    .vol-vto-tips-card {
        padding: 30px 24px;
    }
}
