/** Shopify CDN: Minification failed

Line 19:12 Expected identifier but found whitespace
Line 19:14 Unexpected "{"
Line 19:23 Expected ":"
Line 19:50 Unexpected "0.75rem"
Line 19:59 Unexpected "{"
Line 19:68 Expected ":"
Line 19:97 Expected ":"
Line 37:16 Expected identifier but found whitespace
Line 37:18 Unexpected "{"
Line 37:27 Expected ":"
... and 18 more hidden warnings

**/
.info-section {
    max-width: 1436px;
    margin: 0 auto;
    padding: {{ section.settings.padding_top }}px 0.75rem {{ section.settings.padding_bottom }}px 0.75rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

/* Tablet styles */
@media (max-width: 1024px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        margin: 0 1rem;
    }
    
    .info-section {
        padding: {{ section.settings.padding_top }}px 1.5rem {{ section.settings.padding_bottom }}px 1.5rem;
    }
    
    .info-item {
        padding: 1rem;
        text-align: center;
        align-items: center;
    }
    
    .info-icon {
        width: 2.75rem;
        height: 2.75rem;
        margin: 0 0 0.75rem 0;
    }
    
    .info-heading {
        font-size: 1.0625rem;
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }
    
    .info-text {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
        line-height: 1.4;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .info-link {
        font-size: 14px;
    }
}

/* Mobile styles */
@media (max-width: 640px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .info-section {
        padding: {{ section.settings.padding_top }}px 0.75rem {{ section.settings.padding_bottom }}px 0.75rem;
    }
    
    .info-item {
        padding: 0.75rem;
        text-align: center;
        align-items: center;
    }
    
    .info-icon {
        width: 2.25rem;
        height: 2.25rem;
        margin: 0 0 0.5rem 0;
    }
    
    .info-heading {
        font-size: 0.9375rem;
        margin-bottom: 0.375rem;
        line-height: 1.2;
    }
    
    .info-text {
        font-size: 0.8125rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .info-link {
        font-size: 13px;
    }
}

/* Small mobile styles */
@media (max-width: 360px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.625rem;
    }
    
    .info-section {
        padding: {{ section.settings.padding_top }}px 0.5rem {{ section.settings.padding_bottom }}px 0.5rem;
    }
    
    .info-item {
        padding: 0.625rem;
        text-align: center;
        align-items: center;
    }
    
    .info-icon {
        width: 2rem;
        height: 2rem;
        margin: 0 0 0.375rem 0;
    }
    
    .info-heading {
        font-size: 0.875rem;
        margin-bottom: 0.25rem;
        line-height: 1.2;
    }
    
    .info-text {
        font-size: 0.75rem;
        margin-bottom: 0.375rem;
        line-height: 1.25;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .info-link {
        font-size: 12px;
    }
}

.info-item {
    text-align: left;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.info-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-radius: 50%;
}

.info-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #000000CF;
    margin-bottom: 0.375rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-family: 'Poppins', sans-serif;
    width: 100%;
}

.info-text {
    font-size: 0.8125rem;
    color: #00000099;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.info-link {
    color: #D60024;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    width: 100%;
}

.info-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #D60024;
    transition: width 0.3s ease;
}

.info-link:hover::after {
    width: 100%;
}

.info-link:hover {
    color: #b3001e;
    transform: translateY(-1px);
}
