/* Sukh Tori Terms Page Styling */
.terms-wrapper {
    background: linear-gradient(to bottom, #f9f9f9, #ffffff);
    padding: 60px 0;
    font-family: 'Hind Siliguri', sans-serif;
}
.terms-card {
    background: #ffffff;
    border: none;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}
.terms-card:hover {
    transform: translateY(-3px);
}
.terms-header {
    background: #198754; /* Sukh Tori Green */
    color: white;
    padding: 40px;
    text-align: center;
}
.terms-header h1 {
    font-weight: 800;
    margin-bottom: 10px;
}
.terms-body {
    padding: 40px;
}
.term-item {
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #f1f1f1;
    transition: 0.3s;
}
.term-item:hover {
    background: #f8fff9;
    border-color: #d1e7dd;
}
.term-item h3 {
    color: #198754;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.term-item h3 span {
    background: #198754;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-right: 15px;
}
.term-item p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0;
    padding-left: 45px;
}
.footer-note {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.thanks-msg {
    color: #198754;
    font-weight: 700;
    font-size: 1.2rem;
}
.shop-now-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #28a745;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
    transition: 0.3s;
    font-family: 'Hind Siliguri', sans-serif;
}
.shop-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(40, 167, 69, 0.4);
    opacity: 0.9;
}

/* Spinner */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
    vertical-align: middle;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .terms-header { padding: 30px 20px; }
    .terms-body { padding: 20px; }
    .term-item p { padding-left: 0; margin-top: 10px; }
    .term-item h3 { font-size: 1.2rem; }
}
