/* ================================================
   RETURN POLICY PAGE STYLING
   ================================================ */

:root {
    --primary-color: #d1b600;
    --secondary-color: #1a1a1a;
    --text-color: #333;
    --border-color: #e0e0e0;
    --bg-light: #f8f9fa;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.return-policy-page {
    padding: 20px 0 60px;
    background-color: #fff;
}

.return-policy-page .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================================
   HEADER SEKCIJA
   ================================================ */

.policy-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid var(--primary-color);
}

.policy-header .breadcrumbs {
    margin-bottom: 20px;
}

.policy-header .breadcrumbs ol {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
    font-size: 14px;
}

.policy-header .breadcrumbs ol li {
    display: flex;
    align-items: center;
}

.policy-header .breadcrumbs ol li:not(:last-child)::after {
    content: "›";
    margin-left: 8px;
    color: #999;
}

.policy-header .breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
}

.policy-header .breadcrumbs a:hover {
    text-decoration: underline;
}

.policy-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 20px 0 10px;
}

.policy-subtitle {
    font-size: 18px;
    color: #666;
    font-weight: 400;
}

/* ================================================
   SECTIONS
   ================================================ */

.policy-section {
    margin-bottom: 50px;
}

.policy-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.policy-section h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-intro {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 25px;
}

/* ================================================
   HIGHLIGHT SECTION (Osnovna prava)
   ================================================ */

.highlight-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.section-icon {
    text-align: center;
    margin-bottom: 20px;
}

.section-icon i {
    font-size: 48px;
    color: var(--primary-color);
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.right-item {
    text-align: center;
    padding: 25px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.right-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.right-item i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.right-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.right-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* ================================================
   ALLOWED / NOT ALLOWED LISTS
   ================================================ */

.allowed-list,
.not-allowed-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.list-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.list-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.list-item.allowed {
    background-color: #f0f9f4;
    border-left-color: var(--success-color);
}

.list-item.not-allowed {
    background-color: #fef5f5;
    border-left-color: var(--danger-color);
}

.list-item i {
    font-size: 24px;
    margin-top: 2px;
    flex-shrink: 0;
}

.list-item.allowed i {
    color: var(--success-color);
}

.list-item.not-allowed i {
    color: var(--danger-color);
}

.list-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.list-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* ================================================
   STEPS CONTAINER (Procedura povrata)
   ================================================ */

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 10px;
    border: 2px solid var(--border-color);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #b39a00 100%);
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.step-content strong {
    color: var(--primary-color);
}

/* ================================================
   NOTES GRID
   ================================================ */

.notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.note-item {
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-top: 3px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.note-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.note-item i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 12px;
    display: block;
}

.note-item h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.note-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* ================================================
   LEGAL SECTION
   ================================================ */

.legal-section {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-section li {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-section strong {
    color: var(--secondary-color);
}

.legal-note {
    margin-top: 15px;
    padding: 15px;
    background-color: #fff;
    border-left: 3px solid var(--primary-color);
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.legal-highlight {
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.legal-highlight i {
    font-size: 28px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.legal-highlight-content {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
}

.legal-highlight-content strong {
    color: var(--secondary-color);
    font-weight: 700;
}

/* ================================================
   CONTACT SECTION
   ================================================ */

.contact-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    text-align: center;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.contact-method {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.contact-method i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-method h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.contact-method a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.contact-method a:hover {
    text-decoration: underline;
}

.contact-method p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

/* ================================================
   CTA SECTION
   ================================================ */

.policy-cta {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #b39a00 100%);
    border-radius: 12px;
    color: var(--secondary-color);
    margin-top: 50px;
}

.policy-cta h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.policy-cta p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ================================================
   RESPONSIVE - TABLET
   ================================================ */

@media (max-width: 768px) {
    .policy-header h1 {
        font-size: 28px;
    }

    .policy-subtitle {
        font-size: 16px;
    }

    .policy-section h2 {
        font-size: 24px;
    }

    .rights-grid,
    .notes-grid {
        grid-template-columns: 1fr;
    }

    .step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }
}

/* ================================================
   RESPONSIVE - MOBILE
   ================================================ */

@media (max-width: 576px) {
    .return-policy-page {
        padding: 15px 0 40px;
    }

    .return-policy-page .container {
        padding: 0 15px;
    }

    .policy-header {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .policy-header h1 {
        font-size: 24px;
    }

    .policy-subtitle {
        font-size: 14px;
    }

    .policy-section {
        margin-bottom: 35px;
    }

    .policy-section h2 {
        font-size: 20px;
    }

    .section-intro {
        font-size: 15px;
    }

    .highlight-section {
        padding: 20px;
    }

    .section-icon i {
        font-size: 36px;
    }

    .right-item {
        padding: 20px;
    }

    .right-item i {
        font-size: 28px;
    }

    .right-item h3 {
        font-size: 18px;
    }

    .list-item {
        padding: 15px;
    }

    .list-content h4 {
        font-size: 16px;
    }

    .list-content p {
        font-size: 14px;
    }

    .step {
        padding: 20px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .step-content h3 {
        font-size: 18px;
    }

    .step-content p {
        font-size: 14px;
    }

    .note-item {
        padding: 15px;
    }

    .note-item i {
        font-size: 28px;
    }

    .legal-section {
        padding: 20px;
    }

    .legal-highlight {
        flex-direction: column;
        padding: 15px;
        gap: 12px;
        text-align: left;
    }

    .legal-highlight i {
        font-size: 24px;
    }

    .legal-highlight-content {
        font-size: 14px;
    }

    .contact-section {
        padding: 20px;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .policy-cta {
        padding: 30px 15px;
    }

    .policy-cta h3 {
        font-size: 22px;
    }

    .policy-cta p {
        font-size: 15px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 15px;
    }
}
