/**
 * Terms & Conditions Page Styles
 * Adalya Point E-cigarette Webshop
 */

/* ========== GLOBAL RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #FFFFFF;
    color: #1a1c1e;
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
}

/* ========== CSS VARIABLES ========== */
:root {
    /* Brand Colors */
    --primary-navy: #0f172a;
    --primary-light: #1e293b;
    --accent-red: #dc2626;
    --accent-gold: #C0A050;
    
    /* Neutrals */
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Borders & Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 2px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== INFO PAGE ========== */
.info-page {
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: var(--spacing-3xl);
    background: var(--gray-50);
}

.info-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* ========== INFO HEADER ========== */
.info-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 2px solid var(--gray-200);
}

.info-title {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--primary-navy);
    margin-bottom: var(--spacing-md);
}

.info-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin: 0;
}

/* ========== INFO CONTENT ========== */
.info-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
}

.info-section {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
}

.section-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-navy);
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.section-title i {
    color: var(--accent-gold);
    font-size: 1.25rem;
}

.section-content {
    color: var(--gray-700);
    line-height: 1.8;
}

.section-content p {
    margin-bottom: var(--spacing-md);
}

.section-content p:last-child {
    margin-bottom: 0;
}

/* ========== INFO LISTS ========== */
.info-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
}

.info-list li {
    padding: var(--spacing-sm) 0;
    padding-left: var(--spacing-lg);
    position: relative;
    color: var(--gray-700);
    line-height: 1.8;
}

.info-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.5rem;
}

.info-list a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
}

.info-list a:hover {
    text-decoration: underline;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .info-page {
        padding-top: 120px;
        padding-bottom: var(--spacing-xl);
    }
    
    .info-container {
        padding: 0 var(--spacing-md);
    }
    
    .info-title {
        font-size: 2rem;
    }
    
    .info-subtitle {
        font-size: 1rem;
    }
    
    .info-section {
        padding: var(--spacing-lg);
    }
    
    .section-title {
        font-size: 1.25rem;
    }
}
