/* ============================================================
   CARDONGY - LEGAL PAGES v2.0 (PREMIUM DESIGN)
   ============================================================ */

/* ---------- WRAPPER ---------- */
.legal-page-wrap {
    max-width: 1100px;
    margin: 20px auto;
    padding: 0 20px 60px;
    color: #333;
}

/* ---------- BREADCRUMB ---------- */
.legal-breadcrumb {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: #ccc;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.legal-breadcrumb a {
    color: #d4a537;
    text-decoration: none;
    font-weight: 600;
    transition: .2s;
}

.legal-breadcrumb a:hover {
    color: #f5c563;
}

.legal-breadcrumb i {
    font-size: 10px;
    opacity: 0.5;
    color: #d4a537;
}

.legal-breadcrumb span {
    color: #fff;
    font-weight: 600;
}

/* ============================================================
   HERO SECTION - PREMIUM & CENTERED
   ============================================================ */
.legal-hero {
    background: linear-gradient(135deg, #0a1929 0%, #0f2942 50%, #0a1929 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 30px;
    border: 2px solid rgba(212, 165, 55, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 165, 55, 0.2) 0%, transparent 70%);
    pointer-events: none;
    animation: floatGlow 8s ease-in-out infinite;
}

.legal-hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 165, 55, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: floatGlow 10s ease-in-out infinite reverse;
}

@keyframes floatGlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 30px) scale(1.1); }
}

.legal-hero-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #d4a537, #b8862c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 44px;
    box-shadow: 0 10px 40px rgba(212, 165, 55, 0.5);
    position: relative;
    z-index: 2;
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.legal-title {
    font-size: 48px !important;
    font-weight: 900 !important;
    color: #fff !important;
    margin: 0 0 15px !important;
    position: relative;
    z-index: 2;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    line-height: 1.1;
}

.legal-updated {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 165, 55, 0.15);
    border: 1px solid rgba(212, 165, 55, 0.4);
    color: #f5c563;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    margin: 0;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.legal-updated i {
    color: #d4a537;
}

.legal-updated strong {
    color: #fff;
    font-weight: 700;
}

/* ============================================================
   CONTAINER (TWO COLUMNS)
   ============================================================ */
.legal-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 25px;
    align-items: start;
}

/* ---------- SIDEBAR TOC ---------- */
.legal-sidebar {
    position: sticky;
    top: 20px;
}

.legal-toc {
    background: linear-gradient(135deg, #ffffff, #fafafa);
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    border: 1px solid rgba(212, 165, 55, 0.2);
}

.legal-toc h3 {
    color: #0a1929;
    font-size: 14px;
    font-weight: 800;
    margin: 0 0 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid #d4a537;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-toc h3 i {
    color: #d4a537;
    font-size: 16px;
}

.legal-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-toc ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: #555;
    font-size: 13px;
    text-decoration: none;
    border-radius: 8px;
    transition: all .2s;
    font-weight: 500;
    margin-bottom: 3px;
}

.legal-toc ul li a:hover {
    background: linear-gradient(135deg, #fff8dc, #fffaf0);
    color: #b8862c;
    transform: translateX(4px);
}

[dir="rtl"] .legal-toc ul li a:hover {
    transform: translateX(-4px);
}

.legal-toc .toc-num {
    background: linear-gradient(135deg, #f0f0f0, #e5e5e5);
    color: #666;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
    transition: .2s;
}

.legal-toc ul li a:hover .toc-num {
    background: linear-gradient(135deg, #d4a537, #b8862c);
    color: #000;
    transform: scale(1.1);
}

.legal-toc::-webkit-scrollbar {
    width: 6px;
}

.legal-toc::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #d4a537, #b8862c);
    border-radius: 6px;
}

.legal-toc::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 6px;
}

/* ============================================================
   CONTENT - MAIN CARD
   ============================================================ */
.legal-content {
    background: linear-gradient(135deg, #ffffff, #fafafa);
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    color: #333;
    line-height: 1.8;
    border: 1px solid rgba(212, 165, 55, 0.15);
}

.legal-content.full-width {
    grid-column: 1 / -1;
}

/* ---------- INTRO CARD ---------- */
.legal-intro {
    background: linear-gradient(135deg, #fff8dc 0%, #fffaf0 100%);
    border-radius: 14px;
    padding: 25px 30px;
    margin-bottom: 40px;
    border: 2px solid rgba(212, 165, 55, 0.3);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.legal-intro::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 15px;
    font-size: 100px;
    color: rgba(212, 165, 55, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
    font-weight: bold;
}

[dir="rtl"] .legal-intro::before {
    left: auto;
    right: 15px;
}

.legal-intro p {
    color: #555;
    font-size: 15px;
    margin: 0 0 12px;
    line-height: 1.75;
    position: relative;
    z-index: 2;
}

.legal-intro p:last-child {
    margin-bottom: 0;
}

.legal-intro strong {
    color: #b8862c;
    font-weight: 700;
}

/* ============================================================
   LEGAL SECTIONS - EACH IS A BEAUTIFUL CARD
   ============================================================ */
.legal-section {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 20px;
    scroll-margin-top: 20px;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

.legal-section:hover {
    box-shadow: 0 8px 25px rgba(212, 165, 55, 0.15);
    border-color: rgba(212, 165, 55, 0.3);
    transform: translateY(-2px);
}

.legal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #d4a537, #b8862c);
    opacity: 0;
    transition: opacity .3s;
}

[dir="rtl"] .legal-section::before {
    left: auto;
    right: 0;
}

.legal-section:hover::before {
    opacity: 1;
}

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

/* Section Heading */
.legal-section h2 {
    color: #0a1929 !important;
    font-size: 24px !important;
    font-weight: 800 !important;
    margin: 0 0 20px !important;
    padding-bottom: 15px !important;
    border-bottom: 2px solid #f0f0f0;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    position: relative;
}

.legal-section h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #d4a537, #b8862c);
    border-radius: 3px;
}

[dir="rtl"] .legal-section h2::after {
    left: auto;
    right: 0;
}

.legal-section h2 i {
    color: #d4a537;
    font-size: 22px;
}

.legal-section h3 {
    color: #0a1929;
    font-size: 18px;
    font-weight: 700;
    margin: 25px 0 15px;
    padding-left: 15px;
    border-left: 4px solid #d4a537;
}

[dir="rtl"] .legal-section h3 {
    padding-left: 0;
    padding-right: 15px;
    border-left: none;
    border-right: 4px solid #d4a537;
}

.legal-section .section-num {
    background: linear-gradient(135deg, #d4a537, #b8862c);
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(212, 165, 55, 0.4);
    transform: rotate(-5deg);
    transition: .3s;
}

.legal-section:hover .section-num {
    transform: rotate(0deg) scale(1.05);
}

.legal-section p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 15px;
}

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

.legal-section p strong {
    color: #0a1929;
    font-weight: 700;
}

/* ============================================================
   LISTS - BEAUTIFUL BULLETS
   ============================================================ */
.legal-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    background: #fafafa;
    border-radius: 12px;
    padding: 15px 20px;
}

.legal-list li {
    position: relative;
    padding: 12px 0 12px 35px;
    color: #555;
    font-size: 14.5px;
    line-height: 1.7;
    border-bottom: 1px solid #f0f0f0;
}

[dir="rtl"] .legal-list li {
    padding: 12px 35px 12px 0;
}

.legal-list li:last-child {
    border-bottom: none;
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 18px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4a537, #b8862c);
    box-shadow: 0 2px 6px rgba(212, 165, 55, 0.4);
}

[dir="rtl"] .legal-list li::before {
    left: auto;
    right: 8px;
}

.legal-list.success li::before {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 2px 6px rgba(34, 197, 94, 0.4);
}

.legal-list.danger li::before {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.4);
}

.legal-list li strong {
    color: #0a1929;
    font-weight: 700;
}

/* ============================================================
   INFO CALLOUTS - EYE-CATCHING
   ============================================================ */
.info-callout {
    background: linear-gradient(135deg, #dbeafe, #eff6ff);
    border-radius: 12px;
    padding: 20px 25px;
    margin: 25px 0;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    border-left: 5px solid #3b82f6;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
}

[dir="rtl"] .info-callout {
    border-left: none;
    border-right: 5px solid #3b82f6;
}

.info-callout i {
    color: #3b82f6;
    font-size: 26px;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-callout strong {
    display: block;
    color: #1e40af;
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 700;
}

.info-callout span {
    color: #444;
    font-size: 14px;
    line-height: 1.6;
    display: block;
}

.info-callout.warning {
    background: linear-gradient(135deg, #fef3c7, #fffbeb);
    border-left-color: #f59e0b;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.15);
}

[dir="rtl"] .info-callout.warning {
    border-right-color: #f59e0b;
}

.info-callout.warning i {
    color: #f59e0b;
}

.info-callout.warning strong {
    color: #92400e;
}

/* ---------- INLINE LINK ---------- */
.inline-link {
    color: #b8862c;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid transparent;
    transition: all .2s;
    padding: 2px 6px;
    background: rgba(212, 165, 55, 0.08);
    border-radius: 4px;
}

.inline-link:hover {
    color: #fff;
    background: linear-gradient(135deg, #d4a537, #b8862c);
    border-bottom-color: transparent;
}

/* ============================================================
   CONTACT CARDS
   ============================================================ */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.contact-card {
    background: linear-gradient(135deg, #fff8dc, #fffaf0);
    border: 2px solid rgba(212, 165, 55, 0.3);
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(212, 165, 55, 0.3);
    border-color: #d4a537;
}

.contact-card i {
    color: #fff;
    font-size: 24px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #d4a537, #b8862c);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(212, 165, 55, 0.4);
}

.contact-card strong {
    display: block;
    color: #0a1929;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    font-weight: 700;
}

.contact-card a {
    color: #b8862c;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    transition: .2s;
}

.contact-card a:hover {
    color: #d4a537;
}

/* ============================================================
   SIGNATURE
   ============================================================ */
.legal-signature {
    text-align: center;
    margin-top: 45px;
    padding: 30px 20px;
    background: linear-gradient(135deg, #0a1929, #0f2942);
    border-radius: 16px;
    border: 1px solid rgba(212, 165, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.legal-signature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 165, 55, 0.1), transparent 70%);
    pointer-events: none;
}

.legal-signature strong {
    display: block;
    color: #d4a537;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(212, 165, 55, 0.3);
    position: relative;
    z-index: 2;
}

.legal-signature em {
    color: #b8c5d6;
    font-size: 14px;
    font-style: italic;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

/* ============================================================
   SHIPPING PAGE - RATES CARDS
   ============================================================ */
.shipping-rates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 30px 0 40px;
}

.rate-card {
    background: linear-gradient(135deg, #ffffff, #fafafa);
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    padding: 30px 22px;
    text-align: center;
    transition: all .3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.rate-card:hover {
    border-color: #d4a537;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(212, 165, 55, 0.25);
}

.rate-card.domestic {
    background: linear-gradient(135deg, #fff8dc, #fffaf0);
    border-color: rgba(212, 165, 55, 0.5);
}

.rate-card.domestic::before {
    content: 'FLAT RATE';
    position: absolute;
    top: 12px;
    right: -35px;
    background: linear-gradient(135deg, #d4a537, #b8862c);
    color: #000;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 35px;
    transform: rotate(45deg);
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.rate-flag {
    font-size: 48px;
    margin-bottom: 12px;
    display: block;
}

.rate-card h3 {
    color: #0a1929 !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    margin: 0 0 18px !important;
    letter-spacing: 0.5px;
    padding: 0 !important;
    border: none !important;
}

.rate-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 22px;
    color: #b8862c;
    font-weight: 800;
}

.rate-price .price-amount {
    font-size: 40px;
    line-height: 1;
    background: linear-gradient(135deg, #d4a537, #b8862c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rate-price .price-currency {
    font-size: 16px;
    color: #999;
    font-weight: 600;
}

.rate-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    background: none !important;
}

[dir="rtl"] .rate-features {
    text-align: right;
}

.rate-features li {
    padding: 8px 0;
    color: #555;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px dashed #eee;
}

.rate-features li:last-child {
    border-bottom: none;
}

.rate-features li i {
    color: #22c55e;
    font-size: 12px;
    background: #dcfce7;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ============================================================
   RETURNS - INFO CARDS
   ============================================================ */
.returns-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0 40px;
}

.returns-info-card {
    background: linear-gradient(135deg, #ffffff, #fafafa);
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all .3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.returns-info-card:hover {
    border-color: #d4a537;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(212, 165, 55, 0.2);
}

.returns-info-card i {
    color: #fff;
    font-size: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #d4a537, #b8862c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 6px 18px rgba(212, 165, 55, 0.4);
}

.returns-info-card h3 {
    color: #0a1929 !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    margin: 0 0 10px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 !important;
    border: none !important;
}

.returns-info-card p {
    color: #b8862c !important;
    font-size: 22px !important;
    font-weight: 900 !important;
    margin: 0 0 5px !important;
}

.returns-info-card span {
    color: #888;
    font-size: 12px;
    display: block;
}

/* ---------- RETURNS STEPS ---------- */
.returns-steps {
    margin: 25px 0;
}

.return-step {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #fafafa;
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all .2s;
    border: 1px solid #f0f0f0;
}

.return-step:hover {
    background: linear-gradient(135deg, #fff8dc, #fffaf0);
    border-color: #d4a537;
    transform: translateX(5px);
}

[dir="rtl"] .return-step:hover {
    transform: translateX(-5px);
}

.return-step:last-child {
    margin-bottom: 0;
}

.return-step .step-num {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4a537, #b8862c);
    color: #000;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(212, 165, 55, 0.35);
    transform: rotate(-5deg);
}

.return-step h4 {
    margin: 0 0 6px;
    color: #0a1929;
    font-size: 17px;
    font-weight: 700;
}

.return-step p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
    padding: 50px 30px !important;
}

.contact-subtitle {
    color: #b8c5d6 !important;
    font-size: 16px !important;
    max-width: 550px;
    margin: 15px auto 0 !important;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.contact-container {
    grid-template-columns: 340px 1fr;
}

.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-info-card {
    background: linear-gradient(135deg, #ffffff, #fafafa);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: .3s;
    border: 1px solid rgba(212, 165, 55, 0.15);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 165, 55, 0.3);
    border-color: #d4a537;
}

.contact-info-card .ci-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #d4a537, #b8862c);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 6px 20px rgba(212, 165, 55, 0.5);
}

.contact-info-card h3 {
    color: #0a1929;
    font-size: 15px;
    font-weight: 800;
    margin: 0 0 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-card p {
    color: #888;
    font-size: 12.5px;
    margin: 0 0 12px;
}

.contact-info-card .ci-link {
    color: #b8862c;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    transition: .2s;
    display: inline-block;
}

.contact-info-card .ci-link:hover {
    color: #d4a537;
    transform: scale(1.05);
}

.contact-social {
    background: linear-gradient(135deg, #0a1929, #0f2942);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.contact-social h4 {
    color: #d4a537;
    font-size: 14px;
    margin: 0 0 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 800;
}

.contact-social .social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.contact-social .social-icons a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #d4a537;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: .3s;
    border: 1px solid rgba(212, 165, 55, 0.3);
}

.contact-social .social-icons a:hover {
    background: linear-gradient(135deg, #d4a537, #b8862c);
    color: #000;
    transform: translateY(-5px);
    border-color: transparent;
}

/* Contact Form */
.contact-form-side {
    background: linear-gradient(135deg, #ffffff, #fafafa);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 165, 55, 0.15);
}

.form-title {
    color: #0a1929;
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-title::before {
    content: '✉️';
    font-size: 26px;
}

.form-subtitle {
    color: #666;
    font-size: 14px;
    margin: 0 0 30px;
    padding-bottom: 20px;
    border-bottom: 2px dashed #f0f0f0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 5px;
}

.form-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.form-field label {
    color: #0a1929;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.form-field .req {
    color: #dc2626;
    margin-left: 4px;
}

[dir="rtl"] .form-field .req {
    margin-left: 0;
    margin-right: 4px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    color: #0a1929;
    background: #fff;
    outline: none;
    transition: .2s;
    box-sizing: border-box;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: #d4a537;
    box-shadow: 0 0 0 4px rgba(212, 165, 55, 0.15);
    background: #fffaf0;
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.btn-contact-submit {
    width: 100%;
    background: linear-gradient(135deg, #d4a537, #b8862c);
    color: #000;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1.5px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all .3s;
    box-shadow: 0 8px 20px rgba(212, 165, 55, 0.4);
    margin-top: 15px;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-contact-submit:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(212, 165, 55, 0.55);
}

.btn-contact-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-message {
    margin-top: 18px;
    padding: 14px 18px;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    font-size: 13.5px;
}

.form-message.success {
    background: linear-gradient(135deg, #dcfce7, #d1fae5);
    color: #166534;
    border: 1px solid #86efac;
}

.form-message.error {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Contact Success Screen */
.contact-success {
    text-align: center;
    padding: 50px 25px;
}

.success-icon-large {
    width: 110px;
    height: 110px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 55px;
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.4);
    animation: bounceIn .6s ease;
}

@keyframes bounceIn {
    0%   { transform: scale(0); opacity: 0; }
    60%  { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.contact-success h2 {
    color: #0a1929;
    font-size: 28px;
    margin: 0 0 12px;
    font-weight: 800;
}

.contact-success p {
    color: #666;
    font-size: 15px;
    max-width: 400px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

.btn-send-another {
    background: linear-gradient(135deg, #d4a537, #b8862c);
    color: #000;
    border: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: .3s;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 18px rgba(212, 165, 55, 0.4);
}

.btn-send-another:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 165, 55, 0.5);
}

/* ============================================================
   RTL SUPPORT
   ============================================================ */
body.lang-ar .legal-page-wrap,
[dir="rtl"] .legal-page-wrap {
    direction: rtl;
    font-family: 'Cairo', sans-serif;
}

body.lang-ar .legal-title,
[dir="rtl"] .legal-title {
    letter-spacing: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .legal-container,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .legal-sidebar {
        position: static;
    }
    
    .legal-toc {
        max-height: 350px;
    }
    
    .returns-info-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-title {
        font-size: 32px !important;
    }
    
    .legal-hero {
        padding: 40px 25px;
    }
    
    .legal-hero-icon {
        width: 80px;
        height: 80px;
        font-size: 34px;
    }
    
    .legal-content {
        padding: 30px 25px;
    }
    
    .legal-section {
        padding: 25px 20px;
    }
    
    .legal-section h2 {
        font-size: 20px !important;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .shipping-rates-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .legal-page-wrap {
        padding: 0 12px 40px;
    }
    
    .legal-hero {
        padding: 35px 20px;
    }
    
    .legal-hero-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }
    
    .legal-title {
        font-size: 26px !important;
    }
    
    .legal-content {
        padding: 22px 18px;
    }
    
    .legal-section {
        padding: 20px 16px;
    }
    
    .legal-section h2 {
        font-size: 17px !important;
        gap: 10px !important;
    }
    
    .legal-section .section-num {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }
    
    .contact-form-side {
        padding: 28px 20px;
    }
    
    .shipping-rates-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .legal-signature strong {
        font-size: 26px;
    }
}
/* ==========================================================================
   🏛️ CARDONGY - Legal Pages Manager Styles v2.0
   ========================================================================== */

.cardongy-legal-page {
    background: #f8f9fa;
    min-height: 70vh;
    padding: 40px 20px;
}

.cardongy-legal-page::before {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(135deg, #d4a537, #b8862c);
    margin: -40px -20px 40px;
}

.cardongy-legal-page .legal-hero {
    background: linear-gradient(135deg, #0a1929 0%, #0f2138 100%);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 30px;
    color: white;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.cardongy-legal-page .legal-hero-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4a537, #b8862c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(212, 165, 55, 0.4);
}

.cardongy-legal-page .legal-title {
    font-size: 36px;
    color: white;
    margin: 0 0 12px;
    font-weight: 800;
}

.cardongy-legal-page .legal-updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 165, 55, 0.15);
    padding: 8px 20px;
    border-radius: 30px;
    color: #f5d585;
    font-size: 14px;
    border: 1px solid rgba(212, 165, 55, 0.3);
}

.cardongy-legal-page .legal-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 30px;
}

.cardongy-legal-page .legal-container.has-sidebar {
    grid-template-columns: 280px 1fr;
}

.cardongy-legal-page .legal-container.no-sidebar {
    grid-template-columns: 1fr;
}

.cardongy-legal-page .legal-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.cardongy-legal-page .legal-toc {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
}

.cardongy-legal-page .legal-toc h3 {
    color: #0a1929;
    margin: 0 0 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 12px;
    border-bottom: 2px solid #d4a537;
}

.cardongy-legal-page .legal-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 500px;
    overflow-y: auto;
}

.cardongy-legal-page .legal-toc a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    font-size: 13px;
    transition: all 0.25s;
}

.cardongy-legal-page .legal-toc a:hover {
    background: #fff9ec;
    color: #b8862c;
    transform: translateX(3px);
}

.cardongy-legal-page .toc-num {
    background: #d4a537;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.cardongy-legal-page .legal-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
}

.cardongy-legal-page .legal-intro {
    background: linear-gradient(135deg, #fff9ec, #fff5db);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #d4a537;
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

.cardongy-legal-page .legal-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.cardongy-legal-page .legal-section:last-of-type {
    border-bottom: none;
}

.cardongy-legal-page .legal-section h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #0a1929;
    font-size: 22px;
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d4a537;
    font-weight: 800;
}

.cardongy-legal-page .section-num {
    background: linear-gradient(135deg, #d4a537, #b8862c);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    flex-shrink: 0;
}

.cardongy-legal-page .legal-section h2 i {
    color: #d4a537;
    font-size: 20px;
}

.cardongy-legal-page .section-content {
    color: #444;
    line-height: 1.8;
    font-size: 15px;
}

.cardongy-legal-page .section-content p {
    margin: 0 0 15px;
}

.cardongy-legal-page .section-content ul,
.cardongy-legal-page .section-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.cardongy-legal-page .section-content li {
    margin-bottom: 8px;
    color: #444;
}

.cardongy-legal-page .section-content strong {
    color: #0a1929;
}

.cardongy-legal-page .section-content a {
    color: #b8862c;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed #d4a537;
    transition: all 0.2s;
}

.cardongy-legal-page .section-content a:hover {
    color: #d4a537;
    border-bottom-style: solid;
}

.cardongy-legal-page .legal-signature {
    text-align: center;
    padding: 30px;
    margin-top: 40px;
    background: linear-gradient(135deg, #fff9ec, #fff5db);
    border-radius: 12px;
    border: 2px dashed #d4a537;
}

.cardongy-legal-page .legal-signature strong {
    display: block;
    color: #0a1929;
    font-size: 24px;
    margin-bottom: 5px;
}

.cardongy-legal-page .legal-signature em {
    color: #b8862c;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* RTL Support */
[dir="rtl"] .cardongy-legal-page,
body.rtl .cardongy-legal-page {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .cardongy-legal-page .legal-intro {
    border-left: none;
    border-right: 4px solid #d4a537;
}

[dir="rtl"] .cardongy-legal-page .legal-toc a:hover {
    transform: translateX(-3px);
}

[dir="rtl"] .cardongy-legal-page .section-content ul,
[dir="rtl"] .cardongy-legal-page .section-content ol {
    padding-left: 0;
    padding-right: 25px;
}

[dir="rtl"] .cardongy-legal-page .legal-section h2 {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

/* Mobile */
@media (max-width: 991px) {
    .cardongy-legal-page .legal-container.has-sidebar {
        grid-template-columns: 1fr;
    }
    
    .cardongy-legal-page .legal-sidebar {
        position: static;
    }
    
    .cardongy-legal-page .legal-content {
        padding: 25px 20px;
    }
    
    .cardongy-legal-page .legal-title {
        font-size: 26px;
    }
}
/* ==========================================================================
   🌍 Legal Pages - RTL Support v2.0
   ========================================================================== */

.cardongy-legal-page.rtl-page {
    direction: rtl;
    text-align: right;
}

.cardongy-legal-page.rtl-page .legal-intro {
    border-left: none;
    border-right: 4px solid #d4a537;
    text-align: right;
}

.cardongy-legal-page.rtl-page .legal-section h2 {
    flex-direction: row-reverse;
    justify-content: flex-end;
    text-align: right;
}

.cardongy-legal-page.rtl-page .section-content {
    text-align: right;
    direction: rtl;
}

.cardongy-legal-page.rtl-page .section-content p,
.cardongy-legal-page.rtl-page .section-content ul,
.cardongy-legal-page.rtl-page .section-content ol,
.cardongy-legal-page.rtl-page .section-content li,
.cardongy-legal-page.rtl-page .section-content h3 {
    text-align: right;
    direction: rtl;
}

.cardongy-legal-page.rtl-page .section-content ul,
.cardongy-legal-page.rtl-page .section-content ol {
    padding-left: 0;
    padding-right: 25px;
}

.cardongy-legal-page.rtl-page .legal-toc {
    text-align: right;
}

.cardongy-legal-page.rtl-page .legal-toc h3 {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.cardongy-legal-page.rtl-page .legal-toc a {
    flex-direction: row-reverse;
    text-align: right;
    justify-content: flex-end;
}

.cardongy-legal-page.rtl-page .legal-toc a:hover {
    transform: translateX(-3px);
}

.cardongy-legal-page.rtl-page .legal-updated {
    flex-direction: row-reverse;
}

.cardongy-legal-page.rtl-page .legal-signature {
    text-align: center;
}
/* ==========================================================================
   🎨 Universal Legal Page Content Styles
   ========================================================================== */
.cardongy-legal-page .page-content-inner {
    color: #333;
    line-height: 1.8;
    font-size: 15px;
}

.cardongy-legal-page .page-content-inner h1,
.cardongy-legal-page .page-content-inner h2,
.cardongy-legal-page .page-content-inner h3,
.cardongy-legal-page .page-content-inner h4 {
    color: #0a1929;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d4a537;
    font-weight: 800;
}

.cardongy-legal-page .page-content-inner h2 {
    font-size: 22px;
    display: inline-block;
}

.cardongy-legal-page .page-content-inner h3 {
    font-size: 18px;
    border-bottom-width: 1px;
    color: #b8862c;
}

.cardongy-legal-page .page-content-inner p {
    margin: 0 0 15px;
    color: #444;
}

.cardongy-legal-page .page-content-inner ul,
.cardongy-legal-page .page-content-inner ol {
    margin: 15px 0;
    padding-left: 25px;
}

.cardongy-legal-page .page-content-inner li {
    margin-bottom: 8px;
    color: #444;
}

.cardongy-legal-page .page-content-inner strong {
    color: #0a1929;
    font-weight: 700;
}

.cardongy-legal-page .page-content-inner a {
    color: #b8862c;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed #d4a537;
    transition: all 0.2s;
}

.cardongy-legal-page .page-content-inner a:hover {
    color: #d4a537;
    border-bottom-style: solid;
}

.cardongy-legal-page .page-content-inner img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cardongy-legal-page .page-content-inner blockquote {
    background: #fff9ec;
    border-left: 4px solid #d4a537;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 6px;
    font-style: italic;
}

/* RTL Content */
.cardongy-legal-page.rtl-page .page-content-inner {
    text-align: right;
    direction: rtl;
}

.cardongy-legal-page.rtl-page .page-content-inner ul,
.cardongy-legal-page.rtl-page .page-content-inner ol {
    padding-left: 0;
    padding-right: 25px;
}

.cardongy-legal-page.rtl-page .page-content-inner blockquote {
    border-left: none;
    border-right: 4px solid #d4a537;
}
