@import "./fonts.css";

/* ============================================
   MERGED CSS FILE - FRONT + CALL CENTER
   ============================================
   This file combines styles from:
   - front.css (main store/product styles)
   - front-callcenter.css (call center/support styles)
   
   Merged on: August 30, 2025
   Backup: front-callcenter.css.backup
   ============================================ */

/* New Brand Color Variables */
:root {
    --brand-primary: #485947;
    --brand-secondary: #cd9847;
    --brand-light: #6b7a69;
    --brand-lighter: #d4e1d3;
    --brand-hover: #3a4738;
    --secondary-light: #daa962;
    --secondary-lighter: #f5e8d3;
    --secondary-hover: #b8823d;
    --text-primary: #29292a;
    --text-secondary: #6c757d;
    --background-light: #f8f9fa;
    --border-color: #e1e8ed;
    --white: #ffffff;
    
    /* Enhanced Design Variables */
    --primary-gradient: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-light) 100%);
    --secondary-gradient: linear-gradient(135deg, var(--brand-secondary) 0%, var(--secondary-light) 100%);
    --card-shadow: 0 4px 20px rgba(72, 89, 71, 0.1);
    --card-shadow-hover: 0 8px 30px rgba(72, 89, 71, 0.15);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    
    /* Legacy Variables for Compatibility */
    --primary: var(--brand-primary);
    --secondary: var(--white);
    --text-dark: var(--text-primary);
    --light-primary: var(--brand-lighter);
}

/* Enhanced Base Styles */
html, body { 
    direction: rtl; 
    color: var(--text-primary); 
    text-align: right; 
    min-height: 100%; 
    line-height: 1.6; 
    scroll-behavior: smooth;
    font-family: 'JFFlat-Regular', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    -webkit-font-smoothing: antialiased; 
    color: var(--text-primary);
    line-height: 1.8;
    font-family: 'JFFlat-Regular', sans-serif;
    font-size: 16px; 
    border-top: 4px solid;
    border-image: var(--primary-gradient) 1;
    background: linear-gradient(135deg, #f8fffe 0%, var(--white) 100%);
    min-height: 100vh;
}

/* Enhanced Focus States */
*:focus {
    outline: 2px solid var(--brand-primary) !important; 
    outline-offset: 2px !important;
    box-shadow: 0 0 0 3px rgba(40, 113, 108, 0.2) !important;
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    margin: 1.5rem 0 1rem; 
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    text-shadow: var(--text-shadow);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

/* Enhanced Links */
a {
    color: var(--text-primary);
    transition: var(--transition);
    text-decoration: none;
    position: relative;
}

a:hover {
    color: var(--brand-primary); 
    text-decoration: none;
    transform: translateY(-1px);
}

/* Enhanced Images */
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.02);
}

/* Enhanced Text Elements */
strong {
    float: right; 
    margin-bottom: 1rem; 
    font-weight: 600; 
    font-size: 18px; 
    color: var(--brand-primary); 
    line-height: 1.6;
}

ul li {
    text-align: right; 
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

p {
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 1rem;
}
/* Enhanced Utility Classes */
.flex-center {
    display: flex; 
    justify-content: center; 
    align-items: center;
}

.full-height {
    height: 100%;
}

/* SVG Icons */
svg {
    fill: currentColor;
    transition: var(--transition);
}

/* Enhanced Form Controls */
.update-quantity {
    width: 100px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.update-quantity .input-group-prepend button,
.update-quantity .input-group-append button {
    border: 2px solid var(--brand-primary);
    background: var(--brand-primary);
    color: var(--white);
    transition: var(--transition);
    border-radius: 0;
}

.update-quantity .input-group-prepend button:hover,
.update-quantity .input-group-append button:hover {
    background: var(--brand-hover);
    border-color: var(--brand-hover);
    transform: scale(1.05);
}

.update-quantity .quantity {
    width: 50px;
    text-align: center;
    border: 2px solid var(--brand-primary);
    border-left: none;
    border-right: none;
}

/* Remove Spinner Arrows */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button { 
    -webkit-appearance: none; 
    margin: 0; 
}

input[type=number] {
    -moz-appearance: textfield;
}

/* Enhanced Custom Switch */
.custom-switch {
    padding-right: 2.25rem; 
    padding-left: 0;
}

.custom-control-input {
    right: 0; 
    left: inherit;
}

.custom-switch .custom-control-label::before { 
    right: -2.25rem; 
    left: inherit;
    background: var(--border-color);
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.custom-switch .custom-control-label::after {
    right: calc(-2.25rem + 2px); 
    left: inherit;
    background: var(--white);
    transition: var(--transition);
}

.custom-switch .custom-control-input:checked~.custom-control-label::after {
    transform: translateX(-0.75rem);
}

.custom-control-input:checked~.custom-control-label::before {
    background: var(--primary-gradient);
    border-color: var(--brand-primary);
}

.custom-control-input:focus:not(:checked)~.custom-control-label::before {
    border-color: var(--brand-light);
}

.custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(40, 113, 108, 0.25);
}


/* Enhanced Category Title */
.category-title { 
    text-align: center; 
    overflow: hidden; 
    margin: 3rem 0 2rem;
    position: relative;
}

.category-title span { 
    display: inline-block; 
    position: relative; 
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-primary);
    background: var(--white);
    padding: 0 2rem;
    z-index: 2;
    text-shadow: var(--text-shadow);
}

.category-title span:before, 
.category-title span:after { 
    content: ""; 
    position: absolute; 
    top: 50%;
    width: 150px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.category-title span:before { 
    right: 100%; 
    margin-right: 15px; 
}

.category-title span:after { 
    left: 100%; 
    margin-left: 15px; 
}

/* Enhanced Button Styles */
.btn {
    padding: 12px 28px; 
    border: none; 
    border-radius: var(--border-radius); 
    transition: var(--transition); 
    will-change: box-shadow, transform;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-shadow-hover);
}

.btn:active {
    transform: translateY(-1px);
}

.btn:disabled {
    color: var(--white) !important; 
    background: #94a3b8 !important;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.btn-outline-primary1 {
    background: var(--white); 
    color: var(--brand-primary);
    border: 2px solid var(--brand-primary);
    box-shadow: 0 4px 15px rgba(40, 113, 108, 0.2);
}

.btn-outline-primary1:hover {
    color: var(--white); 
    background: var(--primary-gradient);
    border-color: var(--brand-primary);
    box-shadow: 0 8px 25px rgba(40, 113, 108, 0.3);
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(40, 113, 108, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--brand-hover) 0%, var(--brand-primary) 100%);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(40, 113, 108, 0.4);
}

.btn-primary:focus {
    box-shadow: 0 0 0 3px rgba(40, 113, 108, 0.25) !important;
}

.btn-primary:not(:disabled):not(.disabled).active:focus, 
.btn-primary:not(:disabled):not(.disabled):active:focus, 
.show>.btn-primary.dropdown-toggle:focus, 
.btn-primary:not(:disabled):not(.disabled).active, 
.btn-primary:not(:disabled):not(.disabled):active, 
.show>.btn-primary.dropdown-toggle, 
.btn-primary.focus, 
.btn-primary:focus {
    background: var(--brand-hover); 
    border-color: var(--brand-hover); 
    box-shadow: 0 0 0 0.2rem rgba(40, 113, 108, 0.5);
}

.btn-primary1 {
    color: var(--white); 
    background: var(--secondary-gradient);
    box-shadow: 0 4px 15px rgba(205, 152, 71, 0.3);
}

.btn-primary1:hover {
    color: var(--white); 
    background: linear-gradient(135deg, var(--secondary-hover) 0%, var(--brand-secondary) 100%);
    box-shadow: 0 8px 25px rgba(205, 152, 71, 0.4);
}

/* Enhanced Form Controls */
.form-control {
    height: 48px; 
    border-radius: var(--border-radius); 
    border: 2px solid var(--border-color);
    padding: 12px 16px;
    font-size: 16px;
    transition: var(--transition);
    background: var(--white);
    color: var(--text-primary);
}

.form-control:focus {
    border-color: var(--brand-primary); 
    box-shadow: 0 0 0 3px rgba(40, 113, 108, 0.1);
    background: var(--white);
    transform: translateY(-1px);
}

.form-control::placeholder {
    color: var(--text-secondary);
    font-style: italic;
    opacity: 0.8;
}

/* Enhanced Select2 Styling */
.select2-container--default .select2-selection--single {
    border: 2px solid var(--border-color) !important; 
    border-radius: var(--border-radius) !important; 
    height: 48px !important; 
    text-align: right; 
    font-weight: 400 !important;
    background: var(--white) !important;
    transition: var(--transition) !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 44px !important;
    padding-right: 16px !important;
    color: var(--text-primary) !important;
}

.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: var(--brand-primary) !important;
    box-shadow: 0 0 0 3px rgba(40, 113, 108, 0.1) !important;
}

.select2-dropdown {
    border: 2px solid var(--brand-primary) !important;
    border-radius: var(--border-radius) !important;
    background: var(--white) !important;
    box-shadow: var(--card-shadow-hover) !important;
}

/* Enhanced File Input */
input[type=file] {
    border: 2px dashed var(--border-color);
    border-radius: var(--border-radius);
    padding: 20px;
    background: var(--background-light);
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
}

input[type=file]:hover {
    border-color: var(--brand-primary);
    background: var(--brand-lighter);
}

input[type=file]::-ms-browse {
    padding: 8px 16px; 
    border-radius: 8px; 
    border: 2px solid var(--brand-primary);
    background: var(--brand-primary);
    color: var(--white);
    font-weight: 600;
}

input[type=file]::-webkit-file-upload-button {
    padding: 8px 16px; 
    border-radius: 8px; 
    transition: var(--transition); 
    border: 2px solid var(--brand-primary);
    background: var(--brand-primary);
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
}

input[type=file]::file-selector-button {
    padding: 8px 16px; 
    border-radius: 8px; 
    transition: var(--transition); 
    border: 2px solid var(--brand-primary);
    background: var(--brand-primary);
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
}

input[type=file]::before {
    float: right; 
    content: "إرفاق ملف : ";
    color: var(--brand-primary);
    font-weight: 600;
}

/* Enhanced Utility Classes */
.text-primary {
    color: var(--brand-primary) !important;
}

.text-secondary {
    color: var(--text-secondary) !important;
}

.bg-primary {
    background: var(--primary-gradient) !important;
}

.bg-secondary {
    background: var(--secondary-gradient) !important;
}

.border-primary {
    border-color: var(--brand-primary) !important;
}

.rounded {
    border-radius: var(--border-radius) !important;
}

.rounded-lg {
    border-radius: var(--border-radius-lg) !important;
}

.shadow-sm {
    box-shadow: var(--card-shadow) !important;
}

.shadow-lg {
    box-shadow: var(--card-shadow-hover) !important;
}

/* Enhanced Navigation Pills */
.nav-pills .nav-link {
    border-radius: 25px;
    padding: 12px 24px;
    margin: 0 8px 8px 0;
    color: var(--text-primary);
    background: var(--white);
    border: 2px solid var(--border-color);
    transition: var(--transition);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.nav-pills .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    transform: translateX(-100%);
    transition: var(--transition);
    z-index: 0;
}

.nav-pills .nav-link span,
.nav-pills .nav-link i {
    position: relative;
    z-index: 1;
}

.nav-pills .nav-link.active, 
.nav-pills .show > .nav-link {
    color: var(--white); 
    background: var(--primary-gradient);
    border: 2px solid var(--brand-primary);
    box-shadow: var(--card-shadow);
}

.nav-item {
    padding: 5px;
}

/* Enhanced Modal Styles */
.modal .modal-dialog .modal-content {
    border-radius: var(--border-radius-lg);
    border: none;
    box-shadow: var(--card-shadow-hover);
    overflow: hidden;
}

.modal .modal-dialog .modal-content .modal-header {
    text-align: right; 
    color: var(--white);
    background: var(--primary-gradient);
    border-bottom: none;
    padding: 20px 30px;
}

.modal .modal-dialog .modal-content .modal-body {
    text-align: right; 
    color: var(--text-primary);
    padding: 30px;
    background: var(--white);
    line-height: 1.7;
}

.modal .modal-dialog .modal-content .modal-footer {
    border-top: 1px solid var(--border-color);
    background: var(--background-light);
    padding: 20px 30px;
}

/* Enhanced Card Styles */
.card {
    padding: 2rem; 
    background: var(--white); 
    border: none; 
    border-radius: var(--border-radius-lg);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.card .card-wrapper {
    text-align: right; 
    padding: 1rem;
    position: relative;
    z-index: 1;
}

/* hero */
#hero{ padding: 2rem; background-repeat: no-repeat; background-size: cover; background-position: center;}
#hero img{border-top-right-radius: 2rem; border-top-left-radius: 2rem; border-bottom: 2px solid #394357; padding-bottom: 2rem;}
#hero a{margin-top: 2rem;}

/* policy */
#policy{padding: 2rem;}
#policy .content{padding-right: 0%; }
#policy .content a{padding-right: 10%; }

/* ticket */
#ticket{padding: 1rem; background-repeat: no-repeat; background-size: cover; background-position: center;}
#ticket img{border-top-right-radius: 2rem; border-bottom-right-radius: 2rem; border-left: 2px solid #394357; padding-left: 2rem;}
#ticket h2{padding: 1rem;}

/* contact */
#contact{padding: 2rem;}
#contact .icon{display: inline-block; width: 120px; height: 120px; font-size: 30px; text-align: center; margin-bottom: 5px; font-size: 4rem; padding-right: 3rem; color: #394357;}

/* ============================================
   PREMIUM HEADER REDESIGN
   ============================================ */

/* Premium Header */
.premium-header {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid transparent;
    border-image: var(--primary-gradient) 1;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    gap: 20px;
}

.header-logo {
    flex-shrink: 0;
    text-align: center;
}

.header-logo .logo {
    height: 70px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}

.header-logo .logo:hover {
    transform: scale(1.05);
}

/* Header Navigation */
.header-nav {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    background: var(--background-light);
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid transparent;
    position: relative;
}

.nav-link i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

/* Special styling for returns link */
.returns-link {
    background: linear-gradient(135deg, rgba(40, 113, 108, 0.1) 0%, rgba(205, 152, 71, 0.1) 100%);
    border: 2px solid var(--brand-primary);
    font-weight: 700;
}

.returns-link:hover {
    background: var(--primary-gradient);
    color: var(--white);
}

/* Special styling for orders link */
.orders-link {
    background: linear-gradient(135deg, rgba(205, 152, 71, 0.1) 0%, rgba(40, 113, 108, 0.1) 100%);
    border: 2px solid var(--brand-secondary);
}

.orders-link:hover {
    background: var(--secondary-gradient);
    color: var(--white);
}

/* Cart Badge */
.cart-link {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -5px;
    left: -5px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(238, 90, 111, 0.4);
    animation: pulse 2s infinite;
}

/* Customer Service Banner */
.customer-service-banner {
    border-radius: 20px;
    background: var(--primary-gradient);
    padding: 12px 0;
    margin: 0 -15px -30px -15px;
    overflow: hidden;
}

.service-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    padding: 5px 15px;
    transition: all 0.3s ease;
}

.service-item i {
    font-size: 18px;
    color: var(--white);
}

.service-item:hover {
    transform: scale(1.05);
}

/* Premium Menu */
.premium-menu {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-light) 100%);
    padding: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.premium-menu .navbar-toggler {
    background: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    color: var(--brand-primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.premium-menu .navbar-toggler:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.premium-menu .navbar-toggler i {
    font-size: 18px;
}

.premium-menu .navbar-nav {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 0;
}

.premium-menu .navbar-nav li {
    list-style: none;
}

.premium-menu .navbar-nav a {
    color: var(--white);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
}

.premium-menu .navbar-nav a:hover,
.premium-menu .navbar-nav a.active {
    background: var(--white);
    color: var(--brand-primary);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.premium-menu .navbar-nav a i {
    font-size: 16px;
}

/* Responsive Header */
@media (max-width: 991px) {
    .header-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-nav {
        width: 100%;
        justify-content: center;
    }
    
    .nav-links {
        justify-content: center;
        width: 100%;
    }
    
    .nav-link {
        font-size: 13px;
        padding: 10px 15px;
    }
    
    .service-items {
        flex-direction: column;
        gap: 10px;
    }
    
    .premium-menu .navbar-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .premium-menu .navbar-nav a {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .header-logo .logo {
        height: 50px;
    }
    
    .nav-links {
        gap: 8px;
    }
    
    .nav-link {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .nav-link span {
        display: none;
    }
    
    .nav-link i {
        font-size: 18px;
    }
    
    .customer-service-banner {
        padding: 10px 0;
    }
    
    .service-item {
        font-size: 11px;
        padding: 3px 8px;
    }
    
    .service-item i {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .service-item span {
        display: none;
    }
    
    .service-items {
        flex-direction: row;
        justify-content: center;
    }
}

/* header */
#header{color: var(--primary);}
#header .content{display: flex; align-items: center; justify-content: space-between; padding: 1rem 0;}
#header .logo{height: 67px;}
#header a{color: var(--primary); position: relative;}
#header a:hover{text-decoration-style: dashed;}
#header a .cart{color: #fff; background-color: var(--primary); width: 28px; height: 28px; display: inline-block; border-radius: 100%; text-align: center;}
#header a .cart-count{position: absolute; background-color: #fff200; color: #000; width: 18px; height: 18px; line-height: 17px; font-size: 12px; text-align: center; border-radius: 100%; left: -10px; top: -10px;}

/* Call Center Header Enhancement */
#header.callcenter-header {
    background: linear-gradient(135deg, var(--white) 0%, var(--background-light) 100%);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

#header.callcenter-header .logo {
    order: 0; 
    text-align: center;
    margin-bottom: 10px;
}

#header.callcenter-header .logo img {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

#header.callcenter-header .logo img:hover {
    transform: scale(1.05);
}

#header.callcenter-header .menu {
    display: flex; 
    justify-content: center; 
    padding: 0;
    flex-wrap: wrap;
    gap: 10px;
}

#header.callcenter-header .nav {
    padding-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

#header.callcenter-header .nav a {
    margin: 0;
    margin-bottom: 5px;
    white-space: nowrap;
}

#header.callcenter-header .nav a i {
    margin-left: 8px; 
    text-align: center;
    font-size: 16px;
}


/* main-menu */
section.main-menu {
    background-color: var(--primary); 
    padding: 0.5rem 0;
}
section.main-menu .navbar-nav {
    padding: 0; 
    margin: 0;
}
section.main-menu a {
    color: var(--white); 
    padding: 0.5rem 1rem;
}
section.main-menu a:hover {
    text-decoration-style: dashed;
}

/* Carousel */
.carousel-indicators li{width: 14px; height: 14px;}
.carousel-indicators .active{background-color: var(--primary);}
.carousel-item{text-align: center;}

/* Enhanced Single Product */
article.single-product {
    border: 2px solid transparent; 
    margin-bottom: 2rem;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

article.single-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

article.single-product:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--brand-primary);
}

article.single-product:hover::before {
    opacity: 0.05;
}

article.single-product .type {
    text-align: center;
    position: relative; 
    top: -16px;
    z-index: 1;
}

/* Enhanced Product Image Styles */
article.single-product img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    transition: var(--transition);
    display: block;
    background: var(--background-light);
    min-height: 200px;
}

article.single-product:hover img {
    transform: scale(1.05);
}

article.single-product a {
    display: block;
    overflow: hidden;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    position: relative;
    z-index: 1;
}

article.single-product .type span {
    background: var(--primary-gradient);
    color: var(--white); 
    display: inline-block; 
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--card-shadow);
}

article.single-product p {
    font-size: 16px; 
    text-align: center; 
    color: var(--text-primary); 
    padding: 0 1.5rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

article.single-product .price { 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    padding: 20px; 
    background: var(--primary-gradient);
    color: var(--white);
    margin-top: auto;
    position: relative;
    z-index: 1;
}

article.single-product .price .old {
    color: var(--white-70); 
    margin-left: 20px; 
    text-decoration: line-through;
    font-size: 14px;
}

article.single-product .price a {
    color: var(--white); 
    display: block;
    text-decoration: none;
    transition: var(--transition);
    padding: 8px 12px;
    border-radius: var(--border-radius);
    background: rgba(255,255,255,0.2);
}

article.single-product .price a:hover {
    transform: scale(1.1);
    background: rgba(255,255,255,0.3);
}

article.single-product .price button {
    background-color: transparent; 
    border: none; 
    color: var(--white); 
    transition: var(--transition);
    padding: 8px 12px;
    border-radius: var(--border-radius);
    font-size: 16px;
}

article.single-product .price button:hover {
    transform: scale(1.2);
    background: rgba(255,255,255,0.2);
}

article.single-product .add-checkout {
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

/* ============================================
   PREMIUM FOOTER REDESIGN - RETURNS FOCUSED
   ============================================ */

.premium-footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    margin-top: auto;
}

/* Quick Links Section */
.footer-quick-links {
    background: var(--white);
    padding: 60px 0;
    border-top: 4px solid;
    border-image: var(--primary-gradient) 1;
}

.quick-link-card {
    background: linear-gradient(135deg, var(--background-light) 0%, var(--white) 100%);
    border-radius: 25px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.quick-link-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(72, 89, 71, 0.15);
    border-color: var(--brand-primary);
    background: var(--white);
}

.quick-link-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(72, 89, 71, 0.25);
}

.quick-link-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.quick-link-icon.cancel {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.25);
}

.quick-link-icon.track {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.25);
}

.quick-link-icon.support {
    background: var(--secondary-gradient);
    box-shadow: 0 8px 25px rgba(205, 152, 71, 0.25);
}

.quick-link-card:hover .quick-link-icon {
    transform: scale(1.15) rotateY(360deg);
}

.quick-link-card h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--brand-primary);
    margin-bottom: 12px;
}

.quick-link-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.quick-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(72, 89, 71, 0.2);
}

.quick-link-btn:hover {
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(72, 89, 71, 0.3);
    color: var(--white);
    text-decoration: none;
}

.quick-link-btn i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.quick-link-btn:hover i {
    transform: translateX(-3px);
}

/* Contact Section */
.footer-contact {
    background: var(--primary-gradient);
    padding: 50px 0;
    color: var(--white);
}

.contact-wrapper {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.footer-logo-section {
    padding: 20px;
}

.footer-logo {
    height: 120px;
    margin-bottom: 25px;
    filter: brightness(1.2) drop-shadow(0 4px 15px rgba(0,0,0,0.2));
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: var(--white);
    color: var(--brand-primary);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(-5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.3rem;
    color: white;
}

.contact-info {
    text-align: right;
    flex: 1;
}

.contact-info h5 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info a {
    color: var(--white);
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: var(--brand-secondary);
    transform: translateX(-3px);
}

/* Info Section */
.footer-info {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9eaec 100%);
}

.footer-section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: war(--brand-primary);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-gradient);
    border-radius: 2px;
}

.footer-about {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-primary);
    padding-left: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.footer-links a:hover {
    color: var(--brand-primary);
    transform: translateX(-8px);
}

.footer-links a i {
    font-size: 0.75rem;
    color: var(--brand-secondary);
}

/* Copyright Section */
.footer-copyright {
    background: var(--brand-primary);
    padding: 25px 0;
    color: var(--white);
}

.copyright-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--white);
}

.dev-credit {
    opacity: 0.8;
    font-size: 0.85rem !important;
}

.dev-credit a {
    color: var(--brand-secondary);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.dev-credit a:hover {
    color: var(--white);
}

.payment-methods img {
    height: 30px;
    filter: brightness(1.2);
    transition: transform 0.3s ease;
}

.payment-methods img:hover {
    transform: scale(1.05);
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-quick-links {
        padding: 40px 0;
    }
    
    .quick-link-card {
        margin-bottom: 20px;
        min-height: 260px;
        padding: 30px 20px;
    }
    
    .footer-contact {
        padding: 40px 0;
    }
    
    .contact-wrapper {
        padding: 30px 20px;
    }
    
    .footer-logo-section {
        margin-bottom: 30px;
    }
    
    .contact-item {
        margin-bottom: 15px;
    }
    
    .footer-info {
        padding: 40px 0;
    }
    
    .footer-about {
        margin-bottom: 30px;
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .quick-link-card {
        min-height: 240px;
    }
    
    .quick-link-icon {
        width: 60px;
        height: 60px;
    }
    
    .quick-link-icon i {
        font-size: 1.5rem;
    }
    
    .quick-link-card h4 {
        font-size: 1.1rem;
    }
    
    .footer-logo {
        height: 90px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .contact-item {
        padding: 15px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .footer-section-title {
        font-size: 1.3rem;
    }
    
    .footer-about {
        font-size: 0.95rem;
    }
    
    .footer-links a {
        font-size: 0.95rem;
    }
    
    .copyright-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .payment-methods {
        order: -1;
    }
}

/* Enhanced Footer */
#footer {
    position: relative;
    background: linear-gradient(135deg, var(--white) 0%, var(--background-light) 100%);
}

#footer .first-section {
    margin-top: 3rem; 
    background: var(--primary-gradient);
    display: flex; 
    justify-content: center; 
    color: var(--white); 
    padding: 3rem 0;
    position: relative;
}

#footer .first-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
    z-index: 0;
}

#footer .first-section-item {
    text-align: center; 
    line-height: 1.3; 
    padding: 1rem 3rem;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

#footer .first-section-item:hover {
    transform: translateY(-5px);
}

#footer .first-section-item img {
    height: 60px; 
    margin-bottom: 1rem;
    filter: brightness(1.2);
}

#footer .second-section {
    color: var(--text-primary); 
    padding: 4rem 0;
    background: var(--white);
}

#footer .second-section .logo {
    height: 120px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

#footer .second-section .social-links {
    text-align: center;
}

#footer .second-section .social-links a { 
    width: 50px; 
    height: 50px; 
    display: inline-block; 
    color: var(--white); 
    background: var(--primary-gradient);
    border-radius: 50%; 
    font-size: 20px; 
    line-height: 2.5;
    margin: 0 10px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

#footer .second-section .social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary-gradient);
    transform: scale(0);
    transition: var(--transition);
    border-radius: 50%;
}

#footer .second-section .social-links a:hover::before {
    transform: scale(1);
}

#footer .second-section .social-links a:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-shadow);
}

#footer .second-section p {
    margin: 0; 
    font-size: 14px;
    color: var(--text-secondary);
}

#footer .second-section .link {
    margin-right: -40px; 
    color: var(--brand-primary); 
    font-size: 14px;
    transition: var(--transition);
}

#footer .second-section a:hover {
    color: var(--brand-secondary);
    text-decoration: none;
}

#footer .third-section {
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 2rem 0;
    border-top: 2px solid var(--border-color); 
    color: var(--text-secondary);
    background: var(--background-light);
}

#footer .third-section p {
    font-size: 14px; 
    margin: 0;
}

/* Enhanced Product Page */
.product-page {
    margin: 4rem 0;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--card-shadow);
}

.product-page .category {
    margin: 0; 
    text-align: right; 
    color: var(--text-secondary); 
    font-size: 18px;
    margin-bottom: 2rem;
}

.product-page .category span {
    background: var(--primary-gradient);
    color: var(--white); 
    font-size: 14px; 
    display: inline-block; 
    padding: 8px 16px; 
    margin-right: 0;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: var(--card-shadow);
}

.product-page .description {
    margin: 2rem 0; 
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-primary);
}

.product-page .price {
    font-size: 28px;
    color: var(--brand-secondary);
    font-weight: bold; 
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.product-page .price .old {
    color: var(--text-secondary);
    margin-left: 4rem;
    text-decoration: line-through;
    font-size: 20px;
}

.product-page .price .discount-percentage {
    color: var(--success); 
    margin-left: 10px; 
    font-size: 16px;
    background: var(--success-light);
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 600;
}

.product-page .price .vat {
    color: var(--warning); 
    margin-left: 10px; 
    font-size: 16px;
    background: var(--warning-light);
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 600;
}

.product-page .price .warranty {
    background: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 10px; 
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-page .quantity {
    margin-bottom: 2rem;
}

/* Enhanced Form Submit Order */
.payment-methods {
    margin: 1rem 0;
    background: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--card-shadow);
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 1rem;
}

.payment-icons .coupon-radio {
    position: absolute; 
    opacity: 0;
    z-index: -1;
}

.payment-icons label {
    cursor: pointer;
    transition: var(--transition);
    display: block;
}

.payment-icons img {
    border: 2px solid var(--border-color); 
    margin-left: 1rem;
    border-radius: var(--border-radius);
    padding: 10px;
    background: var(--white);
    transition: var(--transition);
    filter: grayscale(100%);
    opacity: 0.7;
}

.payment-icons img:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow);
    filter: grayscale(0%);
    opacity: 1;
}

.payment-icons .coupon-radio:checked + label img {
    border: 3px solid var(--brand-secondary); 
    transform: scale(1.1);
    box-shadow: var(--card-shadow-hover);
    filter: grayscale(0%);
    opacity: 1;
    background: var(--brand-secondary-light);
}

/* Enhanced Dropdown Styles */
.dropdown-toggle::after {
    border: 0;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f0d7';
    vertical-align: 0;
    margin-left: 10px;
    transition: var(--transition);
    display: inline-block;
}

.dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    text-align: right;
    box-shadow: var(--card-shadow-hover);
    border: none;
    border-radius: var(--border-radius);
    padding: 10px 0;
    margin-top: 10px;
    background: var(--white);
    animation: fadeInDown 0.3s ease;
}

.dropdown-menu li a {
    font-size: 14px;
    color: var(--text-primary);
    padding: 12px 20px;
    display: block;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.dropdown-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--primary-gradient);
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    color: var(--white);
    background: var(--primary-gradient);
    transform: translateX(-5px);
}

.dropdown-menu li a:hover::before {
    width: 4px;
}

.dropdown-menu li:last-child a {
    border-bottom: 0;
}

.dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 10px 0;
    opacity: 1;
}

/* Enhanced Animation Keyframes */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ============================================
   PREMIUM HOMEPAGE REDESIGN - KSA BRAND
   ============================================ */

/* Policies Section */
.policies-section {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, rgba(72, 89, 71, 0.02) 0%, rgba(255, 255, 255, 1) 50%, rgba(205, 152, 71, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.Policies-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.section-header {
    margin-bottom: 60px;
    padding: 0 20px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    background: var(--primary-gradient);
    color: white;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    text-shadow: none;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Premium Policy Cards */
.premium-card {
    background: var(--white);
    border-radius: 30px;
    padding: 50px 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 580px;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.premium-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(72, 89, 71, 0.12);
    border-color: var(--brand-primary);
}

.premium-card:hover::before {
    transform: scaleX(1);
}

.policy-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(72, 89, 71, 0.25);
}

.policy-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.premium-card:hover .policy-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(72, 89, 71, 0.35);
}

.service-icon {
    background: var(--secondary-gradient);
    box-shadow: 0 10px 30px rgba(205, 152, 71, 0.25);
}

.premium-card:hover .service-icon {
    box-shadow: 0 15px 40px rgba(205, 152, 71, 0.35);
}

.policy-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--brand-primary);
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.3;
}

.policy-description {
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.9;
    text-align: center;
    margin-bottom: 30px;
    padding: 0 10px;
}

.policy-description strong {
    color: var(--brand-secondary);
    font-weight: 800;
    float: none;
    margin: 0;
    font-size: inherit;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.policy-features {
    list-style: none;
    padding: 0;
    margin: 25px 0 30px;
    flex: 1;
}

.policy-features li {
    padding: 15px 0;
    font-size: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(72, 89, 71, 0.1);
    transition: all 0.3s ease;
    line-height: 1.6;
}

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

.policy-features li:hover {
    padding-right: 10px;
    color: var(--brand-primary);
}

.policy-features li i {
    color: var(--brand-primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Steps Container */
.steps-container {
    background: var(--white);
    border-radius: 30px;
    padding: 60px 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    margin-top: 50px;    
}

.steps-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brand-primary);
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    line-height: 1.3;
}

.steps-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: 0;
    width: 70%;
    height: 4px;
    background: var(--secondary-gradient);
    border-radius: 2px;
}

.step-card {
    background: linear-gradient(135deg, var(--background-light) 0%, var(--white) 100%);
    border-radius: 25px;
    padding: 40px 25px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
    min-height: 280px;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(72, 89, 71, 0.12);
    border-color: var(--brand-primary);
}

.step-number {
    position: absolute;
    top: -20px;
    right: 50%;
    transform: translateX(50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(72, 89, 71, 0.3);
    z-index: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 35px auto 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step-icon i {
    font-size: 2rem;
    color: var(--brand-primary);
}

.step-card h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--brand-primary);
    margin-bottom: 15px;
    line-height: 1.3;
}

.step-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
}

/* Enhanced Button Styles for Homepage */
.btn-block {
    width: 100%;
    display: block;
    text-align: center;
}

.premium-card .btn {
    margin-top: auto;
    padding: 15px 30px;
    font-size: 1.05rem;
}

/* Responsive Enhancements */
@media (max-width: 991px) {
    .Policies-section {
        padding: 60px 0 80px;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .premium-card {
        margin-bottom: 30px;
        padding: 40px 30px;
        min-height: 520px;
    }
    
    .steps-container {
        padding: 50px 30px;
        margin-top: 60px;
    }
}

@media (max-width: 767px) {
    .Policies-section {
        padding: 40px 0 60px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 1.9rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .premium-card {
        padding: 35px 25px;
        border-radius: 25px;
        min-height: auto;
    }
    
    .policy-icon {
        width: 70px;
        height: 70px;
    }
    
    .policy-icon i {
        font-size: 2rem;
    }
    
    .policy-title {
        font-size: 1.4rem;
    }
    
    .policy-description {
        font-size: 0.95rem;
    }
    
    .policy-features li {
        padding: 12px 0;
        font-size: 0.95rem;
    }
    
    .steps-container {
        padding: 40px 20px;
        margin-top: 40px;
        border-radius: 25px;
    }
    
    .steps-title {
        font-size: 1.6rem;
        margin-bottom: 40px;
    }
    
    .step-card {
        margin-bottom: 30px;
        padding: 35px 20px;
        min-height: 260px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        margin: 30px auto 20px;
    }
    
    .step-icon i {
        font-size: 1.7rem;
    }
    
    .step-card h4 {
        font-size: 1.2rem;
    }
    
    .step-card p {
        font-size: 0.95rem;
    }
}

/* ============================================
   CALL CENTER SPECIFIC STYLES
   ============================================ */

/* Enhanced Policy Section */
#policy {
    padding: 40px 20px;
    margin-bottom: 0;
    padding-bottom: 20px;
}

.policy-navigation {
    margin-bottom: 30px;
}

.policy-navigation .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 25px;
    min-width: 160px;
    text-align: center;
}

.policy-navigation .nav-link i {
    font-size: 20px;
    margin: 0;
}

.policy-navigation .nav-link span {
    font-size: 14px;
    font-weight: 600;
}

/* Enhanced Policy Content */
.policy-content {
    margin-top: 30px;
}

.policy-card {
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
    overflow: hidden;
    max-height: 600px;
    display: flex;
    flex-direction: column;
}

.policy-header {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-light) 100%);
    color: var(--white);
    padding: 20px 30px;
    border-bottom: none;
}

.policy-header h4 {
    margin: 0;
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.policy-header h4 i {
    font-size: 1.2rem;
    color: var(--white);
}

.policy-body {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.policy-text {
    padding: 30px;
    height: 100%;
    overflow-y: auto;
    line-height: 1.8;
    text-align: right;
    color: var(--text-primary);
    font-size: 16px;
    position: relative;
}

/* Enhanced Typography for Policy Text */
.policy-text h1, .policy-text h2, .policy-text h3, 
.policy-text h4, .policy-text h5, .policy-text h6 {
    color: var(--brand-primary);
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.policy-text h1 { font-size: 1.8rem; }
.policy-text h2 { font-size: 1.6rem; }
.policy-text h3 { font-size: 1.4rem; }
.policy-text h4 { font-size: 1.2rem; }
.policy-text h5 { font-size: 1.1rem; }
.policy-text h6 { font-size: 1rem; }

.policy-text p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--text-primary);
    text-align: right;
    float: none;
    font-size: 16px;
}

.policy-text ul, .policy-text ol {
    margin: 16px 0;
    padding-right: 20px;
    text-align: right;
}

.policy-text li {
    margin-bottom: 8px;
    line-height: 1.7;
    color: var(--text-primary);
    text-align: right;
}

.policy-text strong, .policy-text b {
    color: var(--brand-primary);
    font-weight: 700;
    float: none;
    margin: 0;
    font-size: inherit;
    line-height: inherit;
}

.policy-text em, .policy-text i {
    color: var(--brand-secondary);
    font-style: italic;
}

/* Custom Scrollbar for Policy Text */
.policy-text::-webkit-scrollbar {
    width: 8px;
}

.policy-text::-webkit-scrollbar-track {
    background: var(--background-light);
    border-radius: 4px;
}

.policy-text::-webkit-scrollbar-thumb {
    background: var(--brand-primary);
    border-radius: 4px;
}

.policy-text::-webkit-scrollbar-thumb:hover {
    background: var(--brand-hover);
}

/* Enhanced Ticket Section */
#ticket {
    padding: 40px 20px; 
    background: linear-gradient(135deg, rgba(40, 113, 108, 0.03) 0%, rgba(205, 152, 71, 0.03) 100%);
    position: relative;
}

#ticket .card {
    position: relative;
    z-index: 1;
}

#ticket h2 {
    padding: 20px 0;
    color: var(--brand-primary);
    font-weight: 700;
}

#ticket h3 {
    margin-bottom: 20px;
}

/* Form Section Styling */
#ticket .form-section {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-left: 4px solid var(--brand-primary);
}

/* Submit Button Enhancement */
.submit-btn {
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0.5px;
    font-size: 18px;
    padding: 18px 40px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-light) 100%);
    box-shadow: 0 6px 20px rgba(40, 113, 108, 0.3);
    transition: all 0.3s ease;
}

.submit-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--brand-hover) 0%, var(--brand-primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 113, 108, 0.4);
}

.submit-btn:disabled {
    background: #94a3b8 !important;
    box-shadow: none !important;
    transform: none !important;
    cursor: not-allowed;
}

.submit-btn i {
    margin-left: 10px;
    font-size: 16px;
}

/* Row Spacing in Form Sections */
.form-section .row {
    margin: 0 -10px;
}

.form-section .row > [class*="col-"] {
    padding: 0 10px;
}

/* Enhanced Contact Section */
#contact {
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--background-light) 0%, var(--white) 100%);
}

#contact .icon {
    display: inline-flex; 
    width: 120px; 
    height: 120px; 
    align-items: center;
    justify-content: center;
    text-align: center; 
    margin-bottom: 20px; 
    font-size: 3rem; 
    color: var(--brand-primary);
    background: linear-gradient(135deg, var(--brand-lighter) 0%, rgba(205, 152, 71, 0.1) 100%);
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(40, 113, 108, 0.15);
}

#contact .icon:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(40, 113, 108, 0.25);
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    color: var(--white);
}

#contact h4 {
    margin-top: 15px;
    margin-right: 0;
}

#contact h4 a {
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

#contact h4 a:hover {
    color: var(--brand-secondary);
    transform: translateY(-2px);
}


/* product-slide
#product-slide .carousel-item{text-align: right;}
#product-slide .carousel-indicators{position: static; text-align: right; margin: 0; justify-content: start; padding: 20px;}
#product-slide .carousel-indicators li{ width: 94px; height: inherit; text-indent: inherit; margin: 0 0 0 10px; border: 1px solid #ced4da;}
*/

/* checkout-page */
.checkout-page{margin: 4rem 0; color: #7B7B7B;}
.checkout-page h1{color: #151514; font-size: 32px; margin-bottom: 2rem;}
.checkout-page table {width: 100%;}
.checkout-page table tr{border-bottom: 0px solid #D9D9D9;}
.checkout-page table th, .checkout-page table td{padding: 1rem 0;}
.checkout-page table tr th{border-bottom: 1px solid #D9D9D9;}
.checkout-page table .price{color: #D1994F;}
.checkout-page table .price .old{color: #151515; text-decoration: line-through; margin-left: 10px;}
.box{border: 1px dashed #7B7B7B80; padding: 12px; margin: 2px;}

/* coupon */
section.coupon{ border: 1px solid #D1994F; display: inline-block; padding: 5px 10px; width: 21rem;}
section.coupon input{ border: none; width: 13rem;}
section.coupon img{ height: 26px; }

/* invoice */
section.invoice{border: 1px solid #7B7B7B80; background: #F5F5F5; padding: 10px;  }
section.invoice .wrapper{border: 0px solid #7B7B7B80; padding: 1rem;}
section.invoice h2{ color: #151514; font-size: 22px; }
section.invoice dl{margin-bottom: 0rem !important;}
section.invoice dt{display: inline-block; margin: 2px 5px;}
section.invoice dd{ display: inline; margin: 0; margin-bottom: 16px; color: #D1994F; font-size: 18px; font-weight: bold; }
section.invoice dd:after{ display: block; content: '';}


@media screen and (max-width: 1200px){
    .container {
        padding: 0 20px;
    }
    
    article.single-product img {
        height: 240px;
    }
}
@media screen and (max-width: 991px){
    .container {
        padding: 0 15px;
    }
    
    article.single-product img {
        height: 220px;
    }
    
    article.single-product {
        margin-bottom: 1.5rem;
    }
}
@media screen and (max-width: 767px){
    .category-title span{font-size: 18px;}
    .category-title span:before, .category-title span:after{top: 12px;}
    #header a{font-size: 14px;}
    #header .logo { height: 46px; }
    article.single-product{max-width: 300px; margin-left: auto; margin-right: auto; margin-bottom: 2rem;}
    article.single-product img {
        height: 200px;
    }
    .col-sm-6 {
        margin-bottom: 20px;
    }
    #footer .first-section{display: block;}
    .second-section{text-align: center;}
    .second-section .logo{margin-bottom: 2rem;}
    #footer .second-section .social-links{margin-bottom: 2rem;}
    #footer .third-section{display: block; text-align: center; padding-top: 2rem;}

    .product-page, .checkout-page{margin: 2rem 0;}
    .checkout-page table .quantity{max-width: 60px;}
    .checkout-page table .price .old{margin-left: 5px;}
    
    /* Call Center Responsive */
    .policy-header {
        padding: 15px 20px;
    }
    
    .policy-header h4 {
        font-size: 1.1rem;
    }
    
    .policy-text {
        padding: 20px;
        font-size: 14px;
    }
    
    #header.callcenter-header .menu {
        padding: 10px 0;
    }
    
    #header.callcenter-header .nav {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    #header.callcenter-header .nav a {
        font-size: 14px;
        padding: 8px 16px;
    }
}
@media screen and (max-width: 480px){
    input[type=file] {font-size: 13px;}
    
    article.single-product img {
        height: 180px;
    }
    
    article.single-product .type {
        top: -12px;
    }
    
    article.single-product p {
        padding: 0 1rem;
        font-size: 15px;
    }
    
    /* Call Center Mobile */
    #contact .icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .policy-card {
        max-height: 400px;
    }
    
    .policy-text {
        padding: 15px;
        font-size: 13px;
    }
    
    #ticket .form-section {
        padding: 20px;
    }
    
    .submit-btn {
        font-size: 16px;
        padding: 15px 30px;
    }
}

/* ============================================
   STORE INDEX PAGE - TRUST & POLICIES SECTION
   ============================================ */

/* Trust & Policies Section Styling */
.Policies-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9eaec 100%);
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #555;
    font-weight: 400;
}

/* Policy Cards Row Spacing */
.Policies-section .row.g-4 {
    margin-bottom: 40px;
}

/* Policy Card Styling */
.policy-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.policy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #6b7a69 0%, #485947 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.policy-card:hover::before {
    transform: scaleX(1);
}

.policy-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.25);
    border-color: #6b7a69;
}

/* Policy Icon */
.policy-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6b7a69 0%, #485947 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease;
}

.policy-card:hover .policy-icon {
    transform: rotate(360deg) scale(1.1);
}

.service-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 8px 20px rgba(79, 172, 254, 0.3);
}

/* Policy Title */
.policy-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 18px;
    line-height: 1.3;
}

/* Policy Description */
.policy-description {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
    flex-grow: 1;
}

.policy-description strong {
    color: #6b7a69;
    font-weight: 700;
}

/* Policy Features List */
.policy-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.policy-features li {
    padding: 12px 0;
    font-size: 1rem;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

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

.policy-features li:hover {
    padding-right: 10px;
    color: #6b7a69;
}

.policy-features li i {
    color: #4caf50;
    margin-left: 12px;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.policy-features li:hover i {
    transform: scale(1.2);
}

/* Button Styling */
.policy-card .btn {
    width: 100%;
    padding: 14px 25px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: none;
    margin-top: auto;
}

.policy-card .btn-primary {
    background: linear-gradient(135deg, #6b7a69 0%, #485947 100%);
    border: none;
    color: white;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.policy-card .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.policy-card .btn-outline-primary1 {
    border: 2px solid #6b7a69;
    color: #6b7a69;
    background: white;
}

.policy-card .btn-outline-primary1:hover {
    background: linear-gradient(135deg, #6b7a69 0%, #485947 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.policy-card .btn-primary1 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border: none;
    color: white;
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.3);
}

.policy-card .btn-primary1:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.5);
}

/* Steps Container Styling */
.steps-container {
    background: white;
    border-radius: 25px;
    padding: 50px 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-top: 60px;
}

.steps-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 40px;
}

/* Step Card */
.step-card {
    background: white;
    border: 3px solid #e8ecef;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
}

.col-lg-3:first-child .step-card::after {
    display: none;
}

/* Step Number */
.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6b7a69 0%, #485947 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease;
}

/* Step Icon */
.step-icon {
    font-size: 3rem;
    color: #6b7a69;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

/* Step Title and Text */
.step-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .policy-card {
        padding: 30px 25px;
        margin-bottom: 25px;
    }
    
    .steps-container {
        padding: 40px 25px;
        margin-top: 40px;
    }
    
    .step-card::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .Policies-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .policy-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .policy-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .policy-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .policy-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .policy-features li {
        padding: 10px 0;
        font-size: 0.9rem;
    }
    
    .steps-container {
        padding: 30px 20px;
        margin-top: 30px;
    }
    
    .steps-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .step-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .step-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .step-card h4 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .step-card p {
        font-size: 0.9rem;
    }
}

/* Animation for cards on page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.policy-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

.policy-card:nth-child(1) {
    animation-delay: 0.1s;
}

.policy-card:nth-child(2) {
    animation-delay: 0.2s;
}

.policy-card:nth-child(3) {
    animation-delay: 0.3s;
}

.step-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.step-card:nth-child(1) {
    animation-delay: 0.4s;
}

.step-card:nth-child(2) {
    animation-delay: 0.5s;
}

.step-card:nth-child(3) {
    animation-delay: 0.6s;
}

.step-card:nth-child(4) {
    animation-delay: 0.7s;
}

/* ============================================
   RETURN & EXCHANGE POLICY PAGE
   ============================================ */

/* Policy Header */
.policy-header {
    background: linear-gradient(135deg, #6b7a69 0%, #485947 100%);
    padding: 80px 0 60px;
    color: white;
    position: relative;
    overflow: hidden;
}

.policy-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.policy-header-content {
    position: relative;
    z-index: 1;
}

.policy-icon-large {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
    animation: rotateIcon 20s linear infinite;
}

@keyframes rotateIcon {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.policy-main-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.policy-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.policy-highlight {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.policy-highlight i {
    font-size: 1.5rem;
}

/* Table of Contents */
.policy-toc {
    padding: 40px 0;
    background: #f8f9fa;
}

.toc-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.toc-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.toc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.toc-item:hover {
    background: linear-gradient(135deg, #6b7a69 0%, #485947 100%);
    color: white;
    transform: translateX(5px);
    border-color: #6b7a69;
}

.toc-item i {
    font-size: 1.3rem;
}

/* Policy Content */
.policy-content {
    padding: 60px 0;
    background: white;
}

.policy-section {
    margin-bottom: 80px;
    scroll-margin-top: 100px;
}

.section-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6b7a69 0%, #485947 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 20px;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #6b7a69 0%, #485947 100%);
    border-radius: 2px;
}

/* Content Boxes */
.content-box {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border-right: 5px solid;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.content-box h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.success-box {
    border-right-color: #4caf50;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(76, 175, 80, 0.01) 100%);
}

.success-box h4 {
    color: #4caf50;
}

.warning-box {
    border-right-color: #ff9800;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.05) 0%, rgba(255, 152, 0, 0.01) 100%);
}

.warning-box h4 {
    color: #ff9800;
}

.info-box {
    border-right-color: #2196f3;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.05) 0%, rgba(33, 150, 243, 0.01) 100%);
}

.info-box h4 {
    color: #2196f3;
}

/* Policy Lists */
.policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

.policy-list li strong {
    color: #2c3e50;
    font-weight: 600;
}

.policy-list li i {
    position: absolute;
    right: 0;
    top: 15px;
    font-size: 1.1rem;
}

.policy-list.numbered {
    counter-reset: item;
}

.policy-list.numbered li {
    counter-increment: item;
}

.policy-list.numbered li::before {
    content: counter(item);
    position: absolute;
    right: 0;
    top: 12px;
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, #6b7a69 0%, #485947 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Info Notes */
.info-note {
    background: #e3f2fd;
    border-right: 4px solid #2196f3;
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 20px;
    color: #1565c0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.info-note.warning {
    background: #fff3e0;
    border-right-color: #ff9800;
    color: #e65100;
}

.info-note.success {
    background: #e8f5e9;
    border-right-color: #4caf50;
    color: #2e7d32;
}

.info-note i {
    font-size: 1.3rem;
    margin-top: 2px;
}

.important-note {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border: 2px solid #ff9800;
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
    color: #e65100;
    font-size: 1.05rem;
}

.important-note i {
    font-size: 1.5rem;
    margin-left: 10px;
}

.urgent-box {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border: 2px solid #f44336;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    color: #c62828;
    font-weight: 600;
}

.guarantee-box {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: 2px solid #4caf50;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    color: #2e7d32;
    font-weight: 600;
}

/* Timeline */
.timeline-box {
    position: relative;
    padding: 30px 0;
}

.timeline-item {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.timeline-badge {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6b7a69 0%, #485947 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.timeline-content {
    flex: 1;
    background: #f8f9fa;
    padding: 20px 25px;
    border-radius: 12px;
}

.timeline-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.timeline-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.step-box {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.step-box:hover {
    border-color: #6b7a69;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
    transform: translateY(-5px);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.step-num {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #6b7a69 0%, #485947 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-header h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.step-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #6b7a69 0%, #485947 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    color: white;
}

.step-note {
    background: #e3f2fd;
    padding: 10px 15px;
    border-radius: 8px;
    color: #1565c0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-note.success {
    background: #e8f5e9;
    color: #2e7d32;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checklist label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 0.95rem;
}

/* Costs Comparison */
.costs-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.cost-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
}

.free-card {
    border: 3px solid #4caf50;
}

.paid-card {
    border: 3px solid #ff9800;
}

.cost-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #6b7a69 0%, #485947 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
}

.cost-card h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.cost-desc {
    color: #666;
    margin-bottom: 20px;
}

.cost-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: right;
}

.cost-list li {
    padding: 10px 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cost-badge {
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 20px;
}

.cost-badge.success {
    background: #4caf50;
    color: white;
}

.cost-badge.warning {
    background: #ff9800;
    color: white;
}

.cost-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Refund Table */
.refund-table-wrapper {
    overflow-x: auto;
    margin-bottom: 30px;
}

.refund-table {
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.refund-table thead {
    background: linear-gradient(135deg, #6b7a69 0%, #485947 100%);
    color: white;
}

.refund-table th {
    padding: 20px;
    font-weight: 700;
    text-align: right;
}

.refund-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
}

.refund-table tbody tr:last-child td {
    border-bottom: none;
}

.refund-table tbody tr:hover {
    background: #f8f9fa;
}

/* Refund Options */
.refund-options {
    margin: 30px 0;
}

.refund-options h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.option-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.option-card:hover {
    border-color: #6b7a69;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
    transform: translateY(-5px);
}

.option-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #6b7a69 0%, #485947 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.option-card h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

.option-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.option-badge {
    display: inline-block;
    padding: 8px 20px;
    background: #e0e0e0;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
}

.option-badge.success {
    background: #4caf50;
    color: white;
}

/* Exchange Steps */
.exchange-steps {
    margin: 30px 0;
}

.exchange-step {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.exchange-num {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6b7a69 0%, #485947 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.exchange-content {
    flex: 1;
    padding-top: 5px;
}

.exchange-content h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.exchange-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Accordion */
.accordion-item {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    background: white;
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 20px 25px;
    width: 100%;
    text-align: right;
    border: none;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #6b7a69 0%, #485947 100%);
    color: white;
}

.accordion-button:hover {
    background: #f8f9fa;
}

.accordion-button:not(.collapsed):hover {
    background: linear-gradient(135deg, #5568d3 0%, #6a3f8f 100%);
}

.accordion-button i {
    font-size: 1.5rem;
}

.accordion-body {
    padding: 25px;
    background: #f8f9fa;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.contact-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: #6b7a69;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
    transform: translateY(-5px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #6b7a69 0%, #485947 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.contact-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.contact-card p {
    color: #666;
    margin-bottom: 15px;
}

.contact-link {
    display: inline-block;
    color: #6b7a69;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #485947;
    transform: scale(1.05);
}

.support-hours {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    color: #666;
}

.support-hours i {
    margin-left: 10px;
    color: #6b7a69;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.faq-item {
    background: #f8f9fa;
    border-right: 4px solid #6b7a69;
    border-radius: 12px;
    padding: 20px;
}

.faq-item h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h5 i {
    color: #6b7a69;
}

.faq-item p {
    color: #666;
    margin: 0;
}

/* CTA Section */
.policy-cta {
    background: linear-gradient(135deg, #6b7a69 0%, #485947 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.policy-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.policy-cta p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: white;
    color: #6b7a69;
    border: none;
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

.cta-buttons .btn-outline-light {
    border: 2px solid white;
    color: white;
}

.cta-buttons .btn-outline-light:hover {
    background: white;
    color: #6b7a69;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
    .policy-main-title {
        font-size: 2.2rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .toc-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .policy-header {
        padding: 60px 0 40px;
    }
    
    .policy-main-title {
        font-size: 1.8rem;
    }
    
    .policy-subtitle {
        font-size: 1rem;
    }
    
    .section-heading {
        font-size: 1.6rem;
    }
    
    .toc-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .costs-comparison {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* ======================================
   Ticket Page Styles
   ====================================== */

/* Ticket Header Section */
.ticket-header {
    background: linear-gradient(135deg, #6b7a69 0%, #485947 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.ticket-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
}

.ticket-header-content {
    position: relative;
    z-index: 2;
}

.store-logo-wrapper {
    margin-bottom: 30px;
}

.store-logo {
    max-height: 100px;
    width: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    background: white;
    padding: 15px;
}

.ticket-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.ticket-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.quick-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.quick-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quick-action-btn:hover {
    background: white;
    color: #6b7a69;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    text-decoration: none;
}

.quick-action-btn i {
    font-size: 1.2rem;
}

/* Policies Section */
.policies-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-icon-center {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6b7a69 0%, #485947 100%);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
    animation: iconFloat 3s ease-in-out infinite;
}

.section-heading-center {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-subtitle-center {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Policy Navigation Pills */
.policy-tabs-wrapper {
    margin-bottom: 30px;
}

.policy-nav-pills {
    background: white;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.policy-nav-pills .nav-item {
    margin: 5px;
}

.policy-nav-pills .nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 15px;
    background: transparent;
    border: 1px solid transparent;
    color: #6c757d;
    font-weight: 600;
    transition: all 0.3s ease;
}

.policy-nav-pills .nav-link.active {
    background: linear-gradient(135deg, #6b7a69 0%, #485947 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(102,126,234,0.3);
}

.tab-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: rgba(0,0,0,0.1);
}

.policy-nav-pills .nav-link.active .tab-icon {
    background: rgba(255,255,255,0.2);
}

.tab-text {
    font-size: 1.05rem;
}

/* Policy Content Cards */
.policy-tab-content {
    margin-top: 30px;
}

.policy-content-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
}

.policy-card-header {
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.policy-card-header.cancel-header {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.policy-card-header.return-header {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.policy-card-header.exchange-header {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.policy-card-header i {
    font-size: 2rem;
}

.policy-card-header h3 {
    margin: 0;
    font-size: 1.8rem;
}

.policy-card-body {
    padding: 40px;
}

.policy-text-content {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.05rem;
}

.policy-text-content h1,
.policy-text-content h2,
.policy-text-content h3,
.policy-text-content h4 {
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-text-content ul,
.policy-text-content ol {
    padding-right: 25px;
    margin: 20px 0;
}

.policy-text-content li {
    margin-bottom: 10px;
}

/* Additional Resources */
.additional-resources {
    margin-top: 40px;
}

.resource-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.resource-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102,126,234,0.2);
    border-color: #6b7a69;
    text-decoration: none;
    color: #6b7a69;
}

.resource-card i:first-child {
    font-size: 1.5rem;
    color: #6b7a69;
}

.resource-card span {
    flex: 1;
    margin: 0 15px;
    font-weight: 600;
    font-size: 1.1rem;
}

.resource-card i:last-child {
    color: #cbd5e0;
    transition: all 0.3s ease;
}

.resource-card:hover i:last-child {
    transform: translateX(-5px);
    color: #6b7a69;
}

/* Ticket Form Section */
.ticket-form-section {
    padding: 80px 0;
    background: white;
}

.modern-form {
    margin-top: 40px;
}

.form-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.form-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    border-color: #6b7a6930;
}

.form-card-header {
    padding: 25px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6b7a69 0%, #485947 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.form-card-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.form-card-body {
    padding: 35px 30px;
}

/* Modern Form Elements */
.form-group-modern {
    margin-bottom: 25px;
}

.form-label-modern {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.form-label-modern i {
    color: #6b7a69;
    font-size: 1.1rem;
}

.form-control-modern {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control-modern:focus {
    outline: none;
    border-color: #6b7a69;
    background: white;
    box-shadow: 0 0 0 4px rgba(102,126,234,0.1);
}

textarea.form-control-modern {
    resize: vertical;
    min-height: 120px;
}

.form-text-help {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: #6c757d;
    font-size: 0.9rem;
}

/* Select2 Modern Styling */
.select2-modern .select2-selection {
    border: 2px solid #e2e8f0 !important;
    border-radius: 12px !important;
    min-height: 50px !important;
    background: #f8f9fa !important;
}

.select2-modern .select2-selection:focus {
    border-color: #6b7a69 !important;
    background: white !important;
}

.select2-modern .select2-selection__rendered {
    line-height: 48px !important;
    padding: 0 20px !important;
}

/* File Upload Modern */
.file-upload-modern {
    position: relative;
    border: 3px dashed #cbd5e0;
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    background: #f8f9fa;
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload-modern:hover {
    border-color: #6b7a69;
    background: #f1f4ff;
}

.file-input-modern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.file-upload-text {
    pointer-events: none;
}

.file-upload-text i {
    font-size: 3rem;
    color: #6b7a69;
    margin-bottom: 15px;
    display: block;
}

.file-upload-text span {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.file-upload-text small {
    display: block;
    color: #6c757d;
    font-size: 0.9rem;
}

/* Checkbox Modern */
.checkbox-modern {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.checkbox-input-modern {
    display: none;
}

.checkbox-label-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
    font-size: 1.05rem;
}

.checkbox-box {
    width: 24px;
    height: 24px;
    border: 2px solid #cbd5e0;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
    background: white;
    flex-shrink: 0;
}

.checkbox-input-modern:checked + .checkbox-label-modern .checkbox-box {
    background: linear-gradient(135deg, #6b7a69 0%, #485947 100%);
    border-color: #6b7a69;
}

.checkbox-input-modern:checked + .checkbox-label-modern .checkbox-box::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.85rem;
}

.checkbox-text {
    color: #4a5568;
}

.checkbox-text a {
    color: #6b7a69;
    text-decoration: underline;
}

.checkbox-text a:hover {
    color: #485947;
}

/* Submit Button Modern */
.submit-card {
    border: none;
    box-shadow: none;
    background: transparent;
}

.submit-card .form-card-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.btn-submit-modern {
    position: relative;
    padding: 18px 50px;
    background: linear-gradient(135deg, #6b7a69 0%, #485947 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(102,126,234,0.3);
    min-width: 300px;
    justify-content: center;
}

.btn-submit-modern:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102,126,234,0.4);
}

.btn-submit-modern:active:not(:disabled) {
    transform: translateY(-1px);
}

.btn-submit-modern:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-icon {
    font-size: 1.3rem;
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-submit-modern:hover:not(:disabled) .btn-shine {
    left: 100%;
}

.submit-note {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6c757d;
    font-size: 0.95rem;
    text-align: center;
}

.submit-note i {
    color: #6b7a69;
}

/* Modern Modals */
.modern-modal .modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modern-modal-header {
    padding: 25px 30px;
    background: linear-gradient(135deg, #6b7a69 0%, #485947 100%);
    border: none;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px 20px 0 0;
}

.modern-modal-header .modal-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.modern-modal-header .modal-title i {
    font-size: 1.8rem;
}

.close-modal {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.close-modal:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

.modern-modal-body {
    padding: 40px 30px;
    max-height: 70vh;
    overflow-y: auto;
}

.modern-modal-body::-webkit-scrollbar {
    width: 8px;
}

.modern-modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modern-modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #6b7a69 0%, #485947 100%);
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ticket-main-title {
        font-size: 2rem;
    }
    
    .ticket-subtitle {
        font-size: 1rem;
    }
    
    .quick-actions {
        flex-direction: column;
    }
    
    .quick-action-btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-heading-center {
        font-size: 2rem;
    }
    
    .policy-nav-pills {
        flex-direction: column;
    }
    
    .policy-nav-pills .nav-item {
        width: 100%;
    }
    
    .policy-nav-pills .nav-link {
        width: 100%;
        justify-content: center;
    }
    
    .form-card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .btn-submit-modern {
        width: 100%;
        min-width: auto;
    }
    
    .policies-section,
    .ticket-form-section {
        padding: 50px 0;
    }
    
    .ticket-header {
        padding: 80px 0 60px;
    }
}

@media (max-width: 576px) {
    .store-logo {
        max-height: 70px;
    }
    
    .section-icon-center {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .form-card-body {
        padding: 25px 20px;
    }
    
    .policy-card-body {
        padding: 30px 20px;
    }
    
    .modern-modal-body {
        padding: 30px 20px;
    }
}
