/* Info Pages Styles */
.info-page-section {
    padding: 120px 4% 80px;
    background: #fafafa;
    min-height: calc(100vh - 300px);
}

.info-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem 4rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border-radius: 8px;
    font-size: 0.9rem; /* Smaller font */
    line-height: 1.5;
    color: #333;
    position: relative; /* For absolute close btn */
}

.info-container.no-frame {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
}

/* Ensure section background is white when no frame is used */
.info-page-section:has(.no-frame) {
    background: #fff;
}

@media (max-width: 992px) {
    .info-container {
        padding: 2.5rem 3rem;
    }
}

@media (max-width: 768px) {
    .info-page-section {
        padding: 100px 4% 60px;
    }
    .info-container {
        padding: 2rem 1.5rem;
    }
    .info-close {
        top: 1rem;
        right: 1rem;
        font-size: 2.5rem;
    }
}

.info-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3.2rem;
    font-weight: 200;
    cursor: pointer;
    line-height: 1;
    color: #8b8c6d;
    transition: color 0.3s;
}

.info-close:hover {
    color: #000;
}

.info-container strong {
    font-weight: 800;
    color: #000;
}

.info-container ul {
    list-style: none;
    padding-left: 0;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.info-container li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.8rem;
}

.info-container li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: 800;
}

.highlight-link {
    color: #ffaa00;
    font-weight: 700;
    text-decoration: underline;
}

.returns-footer {
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #666;
}

/* Standardized Content Blocks */
.info-text-block {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}

.info-text-block p {
    margin-bottom: 1rem;
}

.info-text-block p:last-child {
    margin-bottom: 0;
}

.info-text-block ul {
    margin-bottom: 1.5rem !important;
}

/* Reviews Page Grid */
.reviews-header {
    margin-bottom: 3rem;
    text-align: left;
}

.reviews-header h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #000;
}

.reviews-header p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #333;
    max-width: 750px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.review-image {
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    background: #f0f0f0;
}

.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-image:hover img {
    transform: scale(1.08);
}


