/**
 * Adakçınız - Main Stylesheet
 * Ana Renk: #d4b470 (Altın)
 * İkincil Renk: #0c0a05 (Koyu Siyah)
 *
 * Layout:
 * - Top Bar: Slogan | Social+Login
 * - Nav: Logo | Menu Items | Action Buttons
 * - Hero: Split (text left, visual right)
 * - Sections: Mixed narrow/full-width
 *
 * Crafted by Sodigser
 */

/* ==================== Global ==================== */
:root {
    --primary: #d4b470;
    --primary-dark: #b8944d;
    --secondary: #0c0a05;
    --text-dark: #2c2c2c;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --border: #e5e7eb;
    --white: #ffffff;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #d4b470;
    
    --font-body: 'Samsung Sharp Sans', 'Gilroy', 'Inter', sans-serif;
    --font-heading: 'Samsung Sharp Sans', 'Gilroy', 'Inter', sans-serif;
    --container: 1200px;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img { max-width: 100%; height: auto; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== Top Bar ==================== */
.top-bar {
    background: var(--secondary);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.top-slogan {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    display: flex;
    align-items: center;
}

.top-slogan i {
    color: var(--primary);
    font-size: 12px;
}

.top-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.social-icons {
    display: flex;
    gap: 8px;
}

.social-icons a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-login-sm {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    font-weight: 500;
    padding: 5px 14px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    transition: var(--transition);
}

.btn-login-sm:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.btn-register-sm {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    padding: 5px 14px;
    background: var(--primary);
    border-radius: 4px;
    transition: var(--transition);
}

.btn-register-sm:hover {
    background: var(--primary-dark);
    color: var(--white);
}

/* ==================== Navigation (Logo on Left) ==================== */
.main-nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    gap: 30px;
}

/* Logo on Left */
.nav-logo {
    flex: 0 0 auto;
}

.nav-logo a {
    display: block;
}

.nav-logo-img {
    max-height: 50px;
    width: auto;
}

.nav-logo-text {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

/* Menu Items */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    flex: 1;
    justify-content: center;
}

.nav-menu .nav-item {
    position: relative;
}

.nav-menu .nav-link {
    display: block;
    padding: 25px 18px;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
}

.nav-menu .nav-link:hover,
.nav-menu .nav-link.active {
    color: var(--primary);
}

.nav-menu .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px 3px 0 0;
}

.nav-menu .dropdown-menu {
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-radius: 0 0 8px 8px;
    padding: 6px 0;
    min-width: 100%;
    margin-top: 0;
    display: none;
}

.nav-menu .dropdown:hover .dropdown-menu {
    display: block;
}

.nav-menu .dropdown-item {
    padding: 10px 18px;
    font-size: 13px;
    transition: var(--transition);
}

.nav-menu .dropdown-item:hover {
    background: var(--bg-light);
    color: var(--primary);
    padding-left: 22px;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.btn-donate-nav {
    padding: 10px 20px;
    background: rgba(212, 180, 112, 0.7);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-donate-nav:hover {
    background: rgba(212, 180, 112, 0.9);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-cart-nav {
    padding: 10px 20px;
    background: var(--primary);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-cart-nav:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-1px);
}

.cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--danger);
    color: var(--white);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--secondary);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
}

/* ==================== Quick Order Bar ==================== */
.quick-order-bar {
    background: var(--primary);
    padding: 10px 0;
    position: relative;
    z-index: 999;
}

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

.quick-order-info {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    flex-shrink: 0;
}

.quick-order-info i {
    font-size: 22px;
    opacity: 0.9;
}

.quick-order-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.quick-order-text p {
    margin: 0;
    font-size: 12px;
    opacity: 0.9;
}

.quick-order-form {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1 1 auto;
    min-width: 0;
}

.quick-order-select {
    flex: 1 1 110px;
    padding: 10px 12px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    background: var(--white);
    min-width: 90px;
}

.quick-order-select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.quick-order-input {
    flex: 0 0 60px;
    padding: 10px 12px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    background: var(--white);
}

.quick-order-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.btn-quick-order {
    flex: 0 0 auto;
    padding: 10px 16px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-quick-order:hover {
    background: var(--white);
    color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* ==================== Hero Section ==================== */
.hero-section {
    background: var(--secondary);
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.hero-inner {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 0;
    padding-right: 60px;
    max-width: 55%;
}

.hero-badge {
    display: inline-block;
    background: rgba(212,180,112,0.15);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
    line-height: 1.2;
}

.hero-text {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.hero-btn-primary {
    background: var(--primary);
    color: var(--white);
}

.hero-btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212,180,112,0.3);
}

.hero-btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-btn-outline:hover {
    background: var(--white);
    color: var(--secondary);
    border-color: var(--white);
}

.hero-visual {
    flex: 1;
    position: relative;
    max-width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.hero-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 35px;
    width: 100%;
    max-width: 380px;
}

.hero-card-title {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.hero-card-item {
    display: flex;
    align-items: center;
    padding: 14px;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    margin-bottom: 10px;
    transition: var(--transition);
    color: var(--white);
}

.hero-card-item:hover {
    background: rgba(212,180,112,0.15);
    transform: translateX(4px);
    color: var(--white);
}

.hero-card-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    flex-shrink: 0;
}

.hero-card-icon i {
    color: var(--white);
    font-size: 16px;
}

.hero-card-label {
    font-size: 14px;
    font-weight: 500;
}

.hero-card-label small {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    font-weight: 400;
}

/* Hero Stats Bar */
.hero-stats-bar {
    background: var(--primary);
    padding: 0;
}

.hero-stats-bar .container {
    display: flex;
}

.hero-stat-item {
    flex: 1;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    border-right: 1px solid rgba(255,255,255,0.2);
}

.hero-stat-item:last-child {
    border-right: none;
}

.hero-stat-item i {
    font-size: 22px;
}

.hero-stat-item .stat-text {
    font-size: 13px;
    font-weight: 600;
}

.hero-stat-item .stat-text span {
    display: block;
    font-size: 11px;
    font-weight: 400;
    opacity: 0.85;
}

/* ==================== Swiper (for slider variant) ==================== */
.hero-slider {
    position: relative;
    margin-bottom: 0;
}

.swiper {
    width: 100%;
    height: 500px;
}

.swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(12,10,5,0.7);
    display: flex;
    align-items: center;
}

.slide-content {
    color: var(--white);
    max-width: 600px;
}

.slide-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.slide-subtitle {
    font-size: 16px;
    margin-bottom: 26px;
    line-height: 1.7;
    opacity: 0.9;
}

.slide-button {
    padding: 14px 32px;
    background: var(--primary);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    transition: var(--transition);
}

.slide-button:hover {
    background: var(--white);
    color: var(--secondary);
    transform: translateY(-2px);
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--white);
    opacity: 0.4;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
    width: 28px;
    border-radius: 5px;
}

.swiper-button-next,
.swiper-button-prev {
    width: 42px; height: 42px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    transition: var(--transition);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px;
    color: var(--white);
    font-weight: 700;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary);
}

/* ==================== Sections ==================== */
.section {
    padding: 70px 0;
}

.section-title {
    font-size: 34px;
    text-align: center;
    margin-bottom: 10px;
    color: var(--secondary);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 42px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==================== Category Cards ==================== */
.category-section {
    padding: 70px 0;
    background: var(--bg-light);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.category-image {
    position: relative;
    padding-top: 65%;
    background-size: cover;
    background-position: center;
}

.category-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(12,10,5,0.6);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.category-title {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 6px;
}

.category-desc {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    margin-bottom: 14px;
}

.category-btn {
    padding: 8px 20px;
    background: var(--primary);
    color: var(--white);
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    display: inline-block;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-btn:hover {
    background: var(--white);
    color: var(--secondary);
}

/* ==================== Product Cards ==================== */
.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: var(--transition);
    margin-bottom: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.product-image {
    position: relative;
    overflow: hidden;
    padding-top: 75%;
    background: var(--bg-light);
}

.product-image img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-badge {
    position: absolute;
    top: 12px; right: 12px;
    padding: 5px 12px;
    background: var(--primary);
    color: var(--white);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    font-weight: 600;
}

.product-title {
    font-size: 17px;
    margin-bottom: 8px;
    color: var(--secondary);
    font-weight: 600;
}

.product-desc {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.product-actions {
    display: flex;
    gap: 8px;
}

.btn-add-cart {
    flex: 1;
    padding: 10px 16px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-add-cart:hover {
    background: var(--secondary);
    transform: translateY(-1px);
}

.btn-details {
    padding: 10px 16px;
    background: var(--bg-light);
    color: var(--text-dark);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
}

.btn-details:hover {
    background: var(--secondary);
    color: var(--white);
}

/* ==================== Stats (Full-Width) ==================== */
.stats-section {
    background: var(--secondary);
    color: var(--white);
    padding: 50px 0;
}

.stat-item {
    text-align: center;
    padding: 16px;
}

.stat-icon {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 12px;
}

.stat-number {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.stat-label {
    font-size: 14px;
    color: var(--white);
}

/* ==================== Page Header (Full-Width) ==================== */
.page-header {
    background: var(--secondary);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 40%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="80" cy="20" r="40" fill="rgba(212,180,112,0.03)"/></svg>') no-repeat center;
    background-size: cover;
}

.page-title {
    font-size: 34px;
    color: var(--white);
    margin-bottom: 10px;
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}

.page-breadcrumb a {
    color: var(--primary);
}

.page-breadcrumb a:hover {
    color: var(--white);
}

/* ==================== Legal Pages ==================== */
.legal-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    overflow: hidden;
}

.legal-header {
    padding: 30px 40px;
    background: var(--secondary);
    color: rgba(255,255,255,0.85);
    font-size: 14px;
}

.legal-header p {
    margin-bottom: 6px;
}

.legal-header strong {
    color: var(--primary);
}

.legal-body {
    padding: 40px;
}

.legal-body h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin: 30px 0 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(212, 180, 112, 0.2);
}

.legal-body h2:first-child {
    margin-top: 0;
}

.legal-body p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.legal-body ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.legal-body ul li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.legal-body ul li strong {
    color: var(--secondary);
}

/* ==================== Modern Footer ==================== */
.site-footer {
    background: var(--secondary);
    color: rgba(255,255,255,0.7);
    margin-top: 80px;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(212, 180, 112, 0.2);
}

.footer-main {
    padding: 70px 0 50px;
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 32px;
    color: var(--primary);
}

.footer-logo span {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.footer-tagline {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 180, 112, 0.3);
}

.footer-nav {
    margin-bottom: 30px;
}

.footer-nav-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-nav-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

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

.footer-nav-list li {
    margin-bottom: 12px;
}

.footer-nav-list a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.footer-nav-list a i {
    font-size: 12px;
    color: var(--primary);
    width: 16px;
}

.footer-nav-list a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-contact {
    margin-bottom: 30px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 180, 112, 0.1);
    border: 1px solid rgba(212, 180, 112, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--primary);
    font-size: 14px;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.contact-value {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.copyright {
    margin: 0;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

.footer-bottom-links .separator {
    color: rgba(255,255,255,0.2);
}

.crafted-by {
    color: rgba(255,255,255,0.4);
    font-size: 14px;
}

.crafted-by a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.footer-payment i {
    font-size: 26px;
    margin-left: 10px;
    color: rgba(255,255,255,0.7);
}

/* ==================== Cart & Summary ==================== */
.cart-table {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    margin-bottom: 24px;
}

.cart-table thead {
    background: var(--secondary);
    color: var(--white);
}

.cart-table th {
    padding: 16px;
    font-weight: 600;
    font-size: 13px;
    border: none;
}

.cart-table td {
    padding: 16px;
    vertical-align: middle;
    border-bottom: 1px solid var(--border);
}

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

.cart-product-img {
    width: 80px; height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-summary {
    background: var(--white);
    border-radius: 10px;
    padding: 26px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.summary-row:last-child { border-bottom: none; }

.summary-total {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 16px;
    margin-top: 16px;
    font-weight: 700;
}

/* ==================== Forms ==================== */
.form-control {
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212,180,112,0.08);
    outline: none;
}

.form-label {
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
    font-size: 13px;
}

/* ==================== Buttons ==================== */
.btn-primary-custom {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
}

.btn-primary-custom:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.btn-secondary-custom {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border);
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
}

.btn-secondary-custom:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

/* ==================== Utilities ==================== */
.text-primary-custom { color: var(--primary) !important; }
.bg-primary-custom { background: var(--primary) !important; }
.bg-light-custom { background: var(--bg-light) !important; }

/* ==================== Responsive ==================== */
@media (max-width: 1199px) {
    .nav-wrapper {
        gap: 15px;
    }
    
    .nav-menu .nav-link {
        padding: 25px 12px;
        font-size: 13px;
    }
    
    .nav-logo-text {
        font-size: 24px;
    }
    
    .quick-order-wrapper {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .quick-order-form {
        max-width: 100%;
        flex-wrap: wrap;
    }
    
    .quick-order-select {
        flex: 1 1 200px;
    }
    
    .quick-order-input {
        flex: 0 0 70px;
    }
}

@media (max-width: 768px) {
    .quick-order-form {
        flex-direction: column;
        width: 100%;
    }
    
    .quick-order-select,
    .quick-order-input {
        width: 100%;
        flex: 0 0 auto;
    }
}

@media (max-width: 991px) {
    .hero-inner { flex-direction: column; min-height: auto; }
    .hero-content { max-width: 100%; padding-right: 0; padding: 40px 0; }
    .hero-visual { max-width: 100%; padding-bottom: 40px; }
    .hero-title { font-size: 30px; }
    .slide-title { font-size: 28px; }
    .section-title { font-size: 26px; }
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .swiper { height: 400px; }
    
    .nav-wrapper {
        flex-wrap: wrap;
        position: relative;
    }
    
    .nav-logo {
        flex: 0 0 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .nav-menu {
        flex: 0 0 100%;
        flex-direction: column;
        display: none;
        background: var(--white);
        width: 100%;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu .nav-link {
        padding: 12px 16px;
        border-bottom: 1px solid var(--border);
    }
    
    .nav-actions {
        flex: 0 0 100%;
        justify-content: center;
        margin-top: 10px;
        gap: 8px;
    }
    
    .btn-donate-nav,
    .btn-cart-nav {
        flex: 1;
        padding: 12px 16px;
        font-size: 12px;
        text-align: center;
        justify-content: center;
        min-width: 0;
    }
    
    .btn-cart-nav {
        gap: 4px;
    }
    
    .btn-cart-nav i {
        font-size: 12px;
    }
    
    .hero-stats-bar .container { flex-wrap: wrap; }
    .hero-stat-item { flex: 0 0 50%; }
    
    .top-slogan { display: none; }
    
    .quick-order-bar {
        padding: 15px 0;
    }
    
    .quick-order-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .quick-order-info {
        justify-content: center;
    }
    
    .quick-order-form {
        flex-direction: column;
    }
    
    .quick-order-select,
    .quick-order-input,
    .btn-quick-order {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .hero-title { font-size: 26px; }
    .slide-title { font-size: 24px; }
    .section { padding: 50px 0; }
    .swiper { height: 350px; }
    .category-grid { grid-template-columns: 1fr; }
    .container { padding: 0 15px; }
    .hero-stat-item { flex: 0 0 100%; }
    
    .top-right { gap: 8px; }
    .social-icons { display: none; }
    
    .nav-logo-img {
        max-height: 45px;
    }
    
    .nav-logo-text {
        font-size: 24px;
    }
    
    .quick-order-info i {
        font-size: 24px;
    }
    
    .quick-order-text strong {
        font-size: 14px;
    }
    
    .quick-order-text p {
        font-size: 12px;
    }
}

/* ==================== Purchase Modal ==================== */
.purchase-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.purchase-modal.active {
    display: flex;
}

.purchase-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
}

.purchase-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    z-index: 9999;
    margin: auto;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.purchase-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: var(--bg-light);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    color: var(--text-light);
    font-size: 16px;
}

.purchase-modal-close:hover {
    background: var(--danger);
    color: var(--white);
    transform: rotate(90deg);
}

.purchase-modal-header {
    text-align: center;
    padding: 40px 30px 20px;
    background: var(--primary);
    border-radius: 16px 16px 0 0;
    color: var(--white);
}

.purchase-modal-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    color: #ffffff;
}

.purchase-modal-icon i {
    color: #ffffff;
}

.purchase-modal-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.purchase-modal-subtitle {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.purchase-modal-body {
    padding: 24px 30px;
}

.purchase-product-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.purchase-product-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
}

.purchase-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.purchase-product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.purchase-product-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 6px;
}

.purchase-product-details {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.purchase-product-location,
.purchase-product-type {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(212, 180, 112, 0.15);
    color: var(--primary-dark);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    margin-right: 6px;
    margin-bottom: 4px;
}

.purchase-product-type {
    background: rgba(12, 10, 5, 0.08);
    color: var(--text-dark);
}

.purchase-product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.purchase-modal-footer {
    padding: 20px 30px 30px;
    display: flex;
    gap: 12px;
}

.btn-purchase-primary,
.btn-purchase-secondary {
    flex: 1;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-purchase-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-purchase-primary:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 180, 112, 0.4);
}

.btn-purchase-secondary {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border);
}

.btn-purchase-secondary:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

/* Responsive for Purchase Modal */
@media (max-width: 575px) {
    .purchase-modal {
        padding: 15px;
    }
    
    .purchase-modal-content {
        max-width: 100%;
        border-radius: 16px;
        max-height: 90vh;
    }
    
    .purchase-modal-header {
        padding: 30px 20px 16px;
    }
    
    .purchase-modal-title {
        font-size: 20px;
    }
    
    .purchase-modal-body {
        padding: 20px;
    }
    
    .purchase-modal-footer {
        padding: 16px 20px 24px;
        flex-direction: column;
    }
    
    .btn-purchase-primary,
    .btn-purchase-secondary {
        width: 100%;
    }
}

/* ==================== Modal Type Variants ==================== */
.modal-header-error {
    background: var(--danger) !important;
    color: #ffffff !important;
}

.modal-header-error .purchase-modal-icon,
.modal-header-error .purchase-modal-icon i,
.modal-header-error .purchase-modal-title,
.modal-header-error .purchase-modal-subtitle {
    color: #ffffff !important;
}

.modal-header-success {
    background: var(--success) !important;
    color: #ffffff !important;
}

.modal-header-success .purchase-modal-icon,
.modal-header-success .purchase-modal-icon i,
.modal-header-success .purchase-modal-title,
.modal-header-success .purchase-modal-subtitle {
    color: #ffffff !important;
}

.modal-header-warning {
    background: var(--warning) !important;
    color: #ffffff !important;
}

.modal-header-warning .purchase-modal-icon,
.modal-header-warning .purchase-modal-icon i,
.modal-header-warning .purchase-modal-title,
.modal-header-warning .purchase-modal-subtitle {
    color: #ffffff !important;
}

.modal-header-info {
    background: var(--primary) !important;
    color: #ffffff !important;
}

.modal-header-info .purchase-modal-icon,
.modal-header-info .purchase-modal-icon i,
.modal-header-info .purchase-modal-title,
.modal-header-info .purchase-modal-subtitle {
    color: #ffffff !important;
}

/* ==================== Small Modal Variant ==================== */
.purchase-modal-content-small {
    max-width: 400px;
}

.btn-purchase-full {
    width: 100%;
}

/* ==================== Campaign Style Product Page ==================== */
.campaign-hero {
    position: relative;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.campaign-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12,10,5,0.8);
    display: flex;
    align-items: flex-end;
    padding-bottom: 40px;
}

.campaign-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin-bottom: 20px;
}

.campaign-breadcrumb a {
    color: var(--primary);
    transition: var(--transition);
}

.campaign-breadcrumb a:hover {
    color: var(--white);
}

.campaign-section {
    padding: 60px 0;
}

.campaign-header {
    margin-bottom: 30px;
}

.campaign-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.campaign-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.campaign-badge-location {
    background: var(--primary);
    color: var(--white);
}

.campaign-badge-type {
    background: var(--secondary);
    color: var(--white);
}

.campaign-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
    line-height: 1.2;
}

.campaign-category {
    font-size: 16px;
    color: var(--text-light);
}

/* Campaign Progress Card */
.campaign-progress-card {
    background: var(--primary);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    color: var(--white);
}

.campaign-stats-row {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.campaign-stat {
    text-align: center;
}

.campaign-stat-value {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.campaign-stat-label {
    font-size: 13px;
    opacity: 0.9;
}

.campaign-progress-bar {
    height: 12px;
    background: rgba(255,255,255,0.3);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 15px;
}

.campaign-progress-fill {
    height: 100%;
    background: var(--white);
    border-radius: 6px;
    transition: width 0.5s ease;
}

.campaign-progress-text {
    text-align: center;
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

/* Campaign Content Card */
.campaign-content-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.campaign-content-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.campaign-content-title i {
    color: var(--primary);
}

.campaign-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Campaign Features */
.campaign-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.campaign-feature {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
}

.campaign-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.campaign-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    font-size: 20px;
}

.campaign-feature-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 5px;
}

.campaign-feature-content p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

/* Campaign Location */
.campaign-location {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
}

.campaign-location-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 10px;
}

.campaign-location-info p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Campaign Sidebar */
.campaign-sidebar {
    position: sticky;
    top: 100px;
}

.campaign-donate-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    margin-bottom: 20px;
}

.campaign-price-section {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}

.campaign-price-label {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.campaign-price-value {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
}

.campaign-quantity-section {
    margin-bottom: 20px;
}

.campaign-input-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.campaign-quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.campaign-qty-btn {
    width: 45px;
    height: 45px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-dark);
}

.campaign-qty-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.campaign-qty-input {
    flex: 1;
    height: 45px;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
}

.campaign-qty-input:focus {
    outline: none;
    border-color: var(--primary);
}

.campaign-total-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}

.campaign-total-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.campaign-total-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.btn-campaign-donate {
    width: 100%;
    padding: 18px 30px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-campaign-donate:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212,180,112,0.4);
}

.campaign-secure-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 13px;
    color: var(--text-light);
}

.campaign-secure-info i {
    color: var(--success);
}

/* Campaign Share Card */
.campaign-share-card {
    background: var(--white);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.campaign-share-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 15px;
}

.campaign-share-buttons {
    display: flex;
    gap: 10px;
}

.campaign-share-btn {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
}

.campaign-share-facebook {
    background: #1877f2;
}

.campaign-share-twitter {
    background: #1da1f2;
}

.campaign-share-whatsapp {
    background: #25d366;
}

.campaign-share-link {
    background: var(--text-light);
}

.campaign-share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Campaign Info Cards */
.campaign-info-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.campaign-info-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.campaign-info-card i {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
}

.campaign-info-card strong {
    display: block;
    font-size: 14px;
    color: var(--secondary);
}

.campaign-info-card p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

/* Responsive for Campaign Page */
@media (max-width: 991px) {
    .campaign-title {
        font-size: 32px;
    }
    
    .campaign-features {
        grid-template-columns: 1fr;
    }
    
    .campaign-sidebar {
        position: static;
    }
}

@media (max-width: 767px) {
    .campaign-hero {
        min-height: 300px;
        background-attachment: scroll;
    }
    
    .campaign-title {
        font-size: 26px;
    }
    
    .campaign-stats-row {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .campaign-stat {
        flex: 0 0 calc(50% - 10px);
    }
    
    .campaign-price-value {
        font-size: 32px;
    }
    
    .campaign-features {
        grid-template-columns: 1fr;
    }
    
    .campaign-feature {
        flex-direction: column;
        text-align: center;
    }
}

/* ==================== Smooth Page Transitions ==================== */
.page-transition {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.page-transition.page-loaded {
    opacity: 1;
}

/* Smooth fade-in for sections */
.page-transition .hero-section,
.page-transition .category-section,
.page-transition .section,
.page-transition .page-header,
.page-transition .campaign-hero {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.page-transition.page-loaded .hero-section {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.page-transition.page-loaded .category-section {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.page-transition.page-loaded .section {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.page-transition.page-loaded .page-header {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.page-transition.page-loaded .campaign-hero {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

/* ==================== Animated Slogan ==================== */
#animatedSlogan {
    display: inline-block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ==================== Admin Button ==================== */
.btn-admin-sm {
    background: var(--primary) !important;
    color: var(--white) !important;
    border-color: var(--primary) !important;
    margin-right: 8px;
}

.btn-admin-sm:hover {
    background: var(--primary-dark) !important;
}

/* ==================== Premium Customer Panel ==================== */
.customer-panel-section {
    padding: 40px 0 80px;
    background: var(--white);
    min-height: 100vh;
}

.customer-panel-header {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px;
    background: var(--primary);
    border-radius: 24px;
    margin-bottom: 40px;
    box-shadow: 0 8px 30px rgba(212, 180, 112, 0.25);
    position: relative;
    overflow: hidden;
}

.customer-panel-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.customer-panel-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 100%;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.customer-avatar-wrapper {
    position: relative;
    flex-shrink: 0;
}

.customer-avatar {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.customer-avatar i {
    font-size: 48px;
    color: var(--white);
}

.avatar-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.avatar-badge i {
    font-size: 14px;
    color: var(--white);
}

.customer-info {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.customer-name {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.customer-email {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 15px;
}

.customer-meta {
    display: flex;
    gap: 20px;
}

.customer-member-since {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.85;
}

.customer-member-since i {
    font-size: 12px;
}

/* Stats Grid */
.customer-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.customer-stat-card {
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    border: 1px solid rgba(212, 180, 112, 0.1);
}

.customer-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.customer-stat-card.gold {
    border-left: 4px solid var(--primary);
}

.customer-stat-card.green {
    border-left: 4px solid var(--success);
}

.customer-stat-card.orange {
    border-left: 4px solid var(--warning);
}

.customer-stat-card.purple {
    border-left: 4px solid #9b59b6;
}

.stat-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.customer-stat-card.gold .stat-icon-wrapper {
    background: rgba(212, 180, 112, 0.1);
    color: var(--primary);
}

.customer-stat-card.green .stat-icon-wrapper {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.customer-stat-card.orange .stat-icon-wrapper {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.customer-stat-card.purple .stat-icon-wrapper {
    background: rgba(155, 89, 182, 0.1);
    color: #9b59b6;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 5px;
}

/* Main Content Layout */
.customer-panel-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

/* Sidebar */
.customer-sidebar {
    flex-shrink: 0;
}

.customer-nav {
    background: var(--white);
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 100px;
}

.customer-nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    border-radius: 12px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    margin-bottom: 5px;
    position: relative;
}

.customer-nav-item i {
    width: 20px;
    font-size: 16px;
    color: var(--text-light);
    transition: var(--transition);
}

.customer-nav-item:hover {
    background: rgba(212, 180, 112, 0.08);
    color: var(--primary);
}

.customer-nav-item:hover i {
    color: var(--primary);
}

.customer-nav-item.active {
    background: var(--primary);
    color: var(--white);
}

.customer-nav-item.active i {
    color: var(--white);
}

.customer-nav-item.logout {
    color: var(--danger);
}

.customer-nav-item.logout:hover {
    background: rgba(239, 68, 68, 0.1);
}

.customer-nav-item.logout:hover i {
    color: var(--danger);
}

.nav-badge {
    margin-left: auto;
    background: var(--danger);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

/* Content Area */
.customer-content-area {
    min-height: 500px;
}

.customer-tab-content {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.tab-header {
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.tab-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tab-header h2 i {
    color: var(--primary);
}

.tab-header p {
    color: var(--text-light);
    font-size: 14px;
}

/* Quick Actions */
.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.quick-action-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 15px;
    background: rgba(212, 180, 112, 0.05);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    border: 1px solid rgba(212, 180, 112, 0.15);
}

.quick-action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 180, 112, 0.2);
    border-color: var(--primary);
}

.action-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.quick-action-card span {
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

/* Recent Orders Section */
.recent-orders-section {
    margin-top: 35px;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary);
}

.view-all-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.view-all-link:hover {
    gap: 10px;
}

.recent-orders-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-preview-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: var(--bg-light);
    border-radius: 14px;
    transition: var(--transition);
}

.order-preview-card:hover {
    background: rgba(212, 180, 112, 0.08);
}

.order-preview-icon {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
}

.order-preview-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.order-number {
    font-weight: 600;
    color: var(--secondary);
    font-size: 14px;
}

.order-date {
    font-size: 12px;
    color: var(--text-light);
}

.order-preview-amount {
    font-weight: 700;
    color: var(--primary);
    font-size: 16px;
}

.order-preview-status .status-badge {
    font-size: 11px;
    padding: 5px 12px;
}

.order-preview-link {
    width: 35px;
    height: 35px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.order-preview-link:hover {
    background: var(--primary);
    color: var(--white);
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-badge.status-pending {
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning);
}

.status-badge.status-approved {
    background: rgba(212, 180, 112, 0.15);
    color: var(--primary);
}

.status-badge.status-completed {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
}

.status-badge.status-cancelled {
    background: rgba(239, 68, 68, 0.15);
    color: var(--danger);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state.large {
    padding: 80px 20px;
}

.empty-state i {
    font-size: 64px;
    color: var(--border);
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--text-light);
    margin-bottom: 25px;
}

/* Orders List */
.orders-list {
    display: grid;
    gap: 20px;
}

.order-card {
    background: var(--bg-light);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.order-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.order-number-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.order-label {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-number {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
}

.order-card-body {
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
}

.detail-label i {
    color: var(--primary);
    font-size: 12px;
}

.detail-value {
    font-weight: 600;
    color: var(--secondary);
}

.detail-value.amount {
    font-size: 18px;
    color: var(--primary);
}

.order-card-footer {
    padding: 15px 25px;
    background: var(--white);
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: flex-end;
}

/* Premium Form */
.premium-form-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 30px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.premium-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
}

.premium-label i {
    color: var(--primary);
    font-size: 14px;
}

.premium-input {
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 15px;
    transition: var(--transition);
    background: var(--white);
    font-family: inherit;
}

.premium-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(212, 180, 112, 0.1);
}

.premium-input.textarea {
    resize: vertical;
    min-height: 100px;
}

.premium-input:disabled {
    background: var(--bg-light);
    color: var(--text-light);
    cursor: not-allowed;
}

.form-actions {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

/* Premium Buttons */
.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 180, 112, 0.3);
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 180, 112, 0.4);
}

.btn-premium-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}

.btn-premium-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* Responsive */
@media (max-width: 991px) {
    .customer-panel-content {
        grid-template-columns: 1fr;
    }
    
    .customer-nav {
        position: static;
        display: flex;
        overflow-x: auto;
        gap: 10px;
        padding: 10px;
    }
    
    .customer-nav-item {
        flex-shrink: 0;
        white-space: nowrap;
        margin-bottom: 0;
    }
    
    .customer-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quick-actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ==================== Modern Hero Slider ==================== */
.modern-hero-slider {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transform: scale(1.1);
    transition: transform 8s ease;
}

.hero-slide.active .slide-background {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12,10,5,0.7);
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 0;
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    box-shadow: 0 8px 30px rgba(212, 180, 112, 0.4);
    animation: slideInDown 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
    width: fit-content;
    align-self: flex-start;
}

.slide-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 700px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.slide-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 600px;
    animation: slideInUp 0.8s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.slide-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    animation: slideInUp 0.8s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.slide-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
}

.slide-feature-item i {
    color: var(--primary);
    font-size: 18px;
}

.slide-buttons {
    display: flex;
    gap: 15px;
    animation: slideInUp 0.8s ease forwards;
    animation-delay: 1s;
    opacity: 0;
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slide-btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(212, 180, 112, 0.4);
}

.slide-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 180, 112, 0.5);
}

.slide-btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.slide-btn-outline:hover {
    background: var(--white);
    color: var(--secondary);
}

/* Slider Navigation */
.slider-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
    z-index: 10;
}

.slider-nav-btn {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
}

.slider-nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.slider-dot.active {
    width: 40px;
    border-radius: 20px;
    background: var(--primary);
}

/* Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive */
@media (max-width: 991px) {
    .modern-hero-slider {
        height: 550px;
    }
    
    .slide-title {
        font-size: 38px;
    }
    
    .slide-description {
        font-size: 16px;
    }
    
    .slide-features {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .slide-buttons {
        flex-direction: column;
    }
    
    .slide-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .modern-hero-slider {
        height: 500px;
    }
    
    .slide-content {
        padding: 60px 0;
    }
    
    .slide-badge {
        font-size: 11px;
        padding: 8px 18px;
    }
    
    .slide-title {
        font-size: 28px;
    }
    
    .slide-description {
        font-size: 14px;
    }
    
    .slide-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .slider-navigation {
        padding: 0 15px;
    }
    
    .slider-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .customer-panel-header {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .customer-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .customer-meta {
        justify-content: center;
    }
    
    .customer-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-actions-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .customer-tab-content {
        padding: 20px;
    }
    
    .tab-header h2 {
        font-size: 20px;
    }
}

/* ==================== Section Background Alternating ==================== */
.section-bg-white {
    background: #ffffff;
}

.section-bg-light {
    background: #f8f6f0;
}

/* ==================== Modern Category Section ==================== */
.category-section-modern {
    padding: 60px 0;
}

.category-header {
    text-align: center;
    margin-bottom: 40px;
}

.category-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--primary);
    color: var(--white);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.category-header-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.category-header-subtitle {
    font-size: 16px;
    color: var(--text-light);
}

.category-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card-modern {
    position: relative;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.category-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.category-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.category-card-modern:hover .category-card-bg {
    transform: scale(1.05);
}

.category-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 10, 5, 0.75);
    transition: background 0.3s ease;
}

.category-card-modern:hover .category-card-overlay {
    background: rgba(12, 10, 5, 0.85);
}

.category-card-content {
    position: relative;
    z-index: 2;
    padding: 25px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.category-card-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    margin-bottom: 15px;
}

.category-card-location {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 8px;
}

.category-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.category-card-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.category-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary);
    color: var(--white);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-card-btn:hover {
    background: var(--primary-dark);
}

.category-card-btn i {
    font-size: 12px;
}

/* Responsive */
@media (max-width: 1199px) {
    .category-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .category-section-modern {
        padding: 40px 0;
    }
    
    .category-header-title {
        font-size: 24px;
    }
    
    .category-header-subtitle {
        font-size: 14px;
    }
    
    .category-grid-modern {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .category-card-modern {
        height: 250px;
    }
    
    .category-card-content {
        padding: 20px 15px;
    }
    
    .category-card-title {
        font-size: 18px;
    }
}

/* ========================================
   BLOG STYLES
   ======================================== */

/* Blog Listing Page */
.blog-page {
    padding: 60px 0;
}

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

.blog-page-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.blog-page-subtitle {
    font-size: 18px;
    color: var(--gray);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 20px;
}

.blog-card-content {
    padding: 25px;
}

.blog-card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--gray);
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card-meta i {
    color: var(--primary);
}

.blog-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--primary);
}

.blog-card-excerpt {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-card-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-card-read-more:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* Blog Detail Page */
.blog-detail-page {
    padding-bottom: 60px;
}

.blog-detail-hero {
    position: relative;
    height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
}

.blog-detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12,10,5,0.7);
}

.blog-detail-hero .container {
    position: relative;
    z-index: 2;
}

.blog-detail-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.blog-detail-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-detail-breadcrumb a:hover {
    color: var(--white);
}

.blog-detail-breadcrumb .separator {
    color: rgba(255, 255, 255, 0.5);
}

.blog-detail-breadcrumb .current {
    color: var(--white);
}

.blog-detail-category {
    display: inline-block;
    padding: 8px 18px;
    background: var(--primary);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 25px;
    margin-bottom: 20px;
}

.blog-detail-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.blog-detail-meta {
    display: flex;
    gap: 25px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.blog-detail-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-detail-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
    margin-top: 50px;
}

.blog-detail-content {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: inline-block;
    width: 100%;
}

.blog-detail-excerpt {
    font-size: 18px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.7;
    padding: 25px;
    background: var(--light);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    margin-bottom: 30px;
}

.blog-detail-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
}

.blog-detail-body p {
    margin-bottom: 20px;
}

.blog-detail-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.blog-detail-share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid var(--border);
}

.blog-detail-share h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Blog Sidebar */
.blog-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.sidebar-widget h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-widget h3 i {
    color: var(--primary);
}

.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts-list li {
    margin-bottom: 15px;
}

.recent-posts-list li:last-child {
    margin-bottom: 0;
}

.recent-posts-list a {
    display: flex;
    gap: 15px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.recent-posts-list a:hover {
    opacity: 0.8;
}

.recent-posts-list img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

.recent-post-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
    line-height: 1.4;
}

.recent-post-info span {
    font-size: 12px;
    color: var(--gray);
}

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

.category-list li {
    border-bottom: 1px solid var(--border);
}

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

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-list a:hover {
    color: var(--primary);
    padding-left: 10px;
}

/* Related Posts */
.blog-related-posts {
    margin-top: 60px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.related-post-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.related-post-image {
    position: relative;
    display: block;
    height: 180px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-post-card:hover .related-post-image img {
    transform: scale(1.1);
}

.related-post-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12,10,5,0.6);
    display: flex;
    align-items: flex-end;
    padding: 15px;
}

.related-post-category {
    padding: 5px 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 15px;
}

.related-post-content {
    padding: 20px;
}

.related-post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 12px;
    color: var(--gray);
}

.related-post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.related-post-content h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.related-post-content h3 a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-content h3 a:hover {
    color: var(--primary);
}

.related-post-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.5;
}

/* Homepage Blog Section */
.home-blog-section {
    padding: 80px 0;
}

.home-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.home-blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.home-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.home-blog-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.home-blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home-blog-card:hover .home-blog-card-image img {
    transform: scale(1.1);
}

.home-blog-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 20px;
}

.home-blog-card-content {
    padding: 20px;
}

.home-blog-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.home-blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.home-blog-card-title a:hover {
    color: var(--primary);
}

.home-blog-card-excerpt {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.home-blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

.home-blog-card-date {
    font-size: 13px;
    color: var(--gray);
}

.home-blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.home-blog-card-link:hover {
    gap: 8px;
}

/* Blog Responsive */
@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-detail-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .blog-detail-sidebar {
        order: 2;
    }
    
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .home-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .blog-page {
        padding: 40px 0;
    }
    
    .blog-page-title {
        font-size: 32px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-detail-hero {
        height: 350px;
        padding-bottom: 40px;
    }
    
    .blog-detail-title {
        font-size: 32px;
    }
    
    .blog-detail-meta {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .blog-detail-content {
        padding: 25px;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .home-blog-section {
        padding: 50px 0;
    }
    
    .home-blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
    padding-top: 30px;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--white);
    color: var(--dark);
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.pagination-numbers {
    display: flex;
    gap: 8px;
}

.pagination-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--white);
    color: var(--dark);
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-number:hover {
    background: var(--light);
    border-color: var(--primary);
    color: var(--primary);
}

.pagination-number.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

@media (max-width: 575px) {
    .blog-pagination {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .pagination-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .pagination-number {
        width: 38px;
        height: 38px;
        font-size: 13px;
    }
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

.contact-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
}

/* Contact Info Sidebar */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info-header {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-info-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info-image img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

.contact-icon i {
    font-size: 22px;
    color: var(--white);
}

.contact-details h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.contact-details p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

.contact-social {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-social h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    border-radius: 10px;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    display: flex;
}

.contact-form-card {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-header {
    margin-bottom: 30px;
}

.contact-form-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-form-header p {
    font-size: 15px;
    color: var(--gray);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    color: var(--dark);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(165, 140, 115, 0.1);
}

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

.contact-submit-btn {
    padding: 16px 32px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-submit-btn i {
    font-size: 14px;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form-wrapper {
        order: 1;
    }
}

@media (max-width: 767px) {
    .contact-form-card {
        padding: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info-card {
        padding: 20px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon i {
        font-size: 20px;
    }
}

/* ==================== Scroll to Top Button ==================== */
.scroll-top-btn {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ==================== WhatsApp Button ==================== */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-btn:hover {
    background: #20BA5A;
    transform: scale(1.1);
}


/* ==================== Account Numbers Page ==================== */
.account-numbers-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.account-numbers-intro {
    text-align: center;
    margin-bottom: 40px;
}

.account-numbers-intro h2 {
    font-size: 28px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.account-numbers-intro p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
}

.account-numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.account-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.account-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.account-logo {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border);
}

.account-logo img {
    max-height: 50px;
    margin-bottom: 10px;
}

.account-logo h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    margin: 0;
}

.account-details {
    margin-bottom: 25px;
}

.account-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.account-row:last-child {
    border-bottom: none;
}

.account-label {
    font-weight: 600;
    color: var(--text-light);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.account-value {
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
}

.account-value.iban-value {
    font-family: monospace;
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--primary);
    font-weight: 600;
}

.btn-copy-iban {
    width: 100%;
    padding: 14px 20px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-copy-iban:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 180, 112, 0.3);
}

.btn-copy-iban i {
    font-size: 16px;
}

.account-note {
    background: rgba(212, 180, 112, 0.1);
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    gap: 15px;
}

.account-note i {
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}

.account-note p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.6;
}

@media (max-width: 991px) {
    .account-numbers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ==================== Why Us Page ==================== */
.why-us-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.why-us-intro h2 {
    font-size: 28px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.why-us-intro p {
    color: var(--text-light);
    line-height: 1.7;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.why-us-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.why-us-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.why-us-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 180, 112, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 28px;
}

.why-us-card h3 {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.why-us-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 14px;
}

.why-us-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: var(--secondary);
    border-radius: 12px;
    padding: 40px;
}

.why-us-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* ==================== Process Page ==================== */
.process-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.process-intro h2 {
    font-size: 28px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.process-intro p {
    color: var(--text-light);
    line-height: 1.7;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto 50px;
}

.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border);
}

.step-content h3 {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 14px;
}

.process-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.feature-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.feature-item span {
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
}

/* ==================== FAQ Page ==================== */
.faq-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.faq-intro h2 {
    font-size: 28px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.faq-intro p {
    color: var(--text-light);
    line-height: 1.7;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto 40px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    cursor: pointer;
    user-select: none;
}

.faq-question i:first-child {
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}

.faq-question h3 {
    flex: 1;
    font-size: 16px;
    color: var(--secondary);
    margin: 0;
}

.faq-toggle {
    color: var(--text-light);
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 20px 20px 55px;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 14px;
}

.faq-contact-cta {
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
}

.faq-contact-cta h3 {
    color: var(--secondary);
    margin-bottom: 10px;
}

.faq-contact-cta p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.btn-contact-faq {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary);
    color: var(--white);
    border-radius: 6px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-contact-faq:hover {
    background: var(--primary-dark);
}

/* ==================== Distribution Videos Page ==================== */
.distribution-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.distribution-intro h2 {
    font-size: 28px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.distribution-intro p {
    color: var(--text-light);
    line-height: 1.7;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.video-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(212, 180, 112, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    transition: var(--transition);
}

.video-card:hover .video-play-btn {
    background: var(--primary);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    font-size: 16px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.video-info p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.video-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: var(--text-light);
}

.video-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.distribution-note {
    background: rgba(212, 180, 112, 0.1);
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.distribution-note i {
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}

.distribution-note p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.6;
}

.quick-order-label i {
    color: var(--primary);
}

.quick-order-select,
.quick-order-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
}

.quick-order-select:focus,
.quick-order-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212, 180, 112, 0.15);
}

.quick-order-select:disabled {
    background: var(--bg-light);
    color: var(--text-light);
    cursor: not-allowed;
}

.quick-order-total {
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
}

.quick-order-submit {
    width: 100%;
    padding: 16px 24px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.quick-order-submit:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 180, 112, 0.3);
}

.quick-order-submit:active {
    transform: translateY(0);
}

/* ==================== Vertical Video Slider ==================== */
.vertical-video-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.vertical-video-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 20px 10px 30px;
    scrollbar-width: none;
}

.vertical-video-container::-webkit-scrollbar {
    display: none;
}

/* Navigation Arrows */
.vertical-video-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.vertical-video-nav:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.vertical-video-nav-prev {
    left: -25px;
}

.vertical-video-nav-next {
    right: -25px;
}

@media (max-width: 1400px) {
    .vertical-video-nav-prev {
        left: 10px;
    }
    
    .vertical-video-nav-next {
        right: 10px;
    }
}

.vertical-video-card {
    flex: 0 0 calc(33.333% - 14px);
    scroll-snap-align: center;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.vertical-video-card:hover {
    transform: translateY(-5px);
}

.vertical-video-thumbnail {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
}

.vertical-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vertical-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, transparent 50%, rgba(0,0,0,0.8) 100%);
}

.vertical-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 28px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.vertical-video-card:hover .vertical-video-play-btn {
    background: var(--primary);
    color: var(--white);
    transform: translate(-50%, -50%) scale(1.15);
}

.vertical-video-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 20px;
    color: var(--white);
    z-index: 2;
}

.vertical-video-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
    line-height: 1.3;
}

.vertical-video-content p {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 12px;
    line-height: 1.4;
}

.vertical-video-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    opacity: 0.85;
}

.vertical-video-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}


/* Responsive for Vertical Video Slider */
@media (max-width: 767px) {
    .vertical-video-slider {
        padding: 0 20px;
    }
    
    .vertical-video-card {
        flex: 0 0 60%;
    }
    
    .vertical-video-thumbnail {
        width: 100%;
        height: 355px;
    }
    
    .vertical-video-content h3 {
        font-size: 15px;
    }
    
    .vertical-video-content p {
        font-size: 12px;
    }
    
    .vertical-video-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .vertical-video-nav-prev {
        left: 5px;
    }
    
    .vertical-video-nav-next {
        right: 5px;
    }
}

/* ==================== Responsive ==================== */
@media (max-width: 767px) {
    
    .why-us-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 25px;
    }
    
    .process-features {
        grid-template-columns: 1fr;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== Product Card - Clean & Minimal ==================== */
.product-card-new {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 18px;
    margin-bottom: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card-new:hover {
    border-color: #d4b470;
}

.product-card-icon {
    display: none;
}

.product-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.product-card-badge {
    padding: 4px 10px;
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    color: #666;
    font-size: 11px;
    font-weight: 500;
}

.product-card-location {
    padding: 4px 10px;
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    color: #666;
    font-size: 11px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-card-location i {
    font-size: 10px;
    color: #999;
}

.product-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-card-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 14px;
}

.product-card-footer {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #e0e0e0;
}

.product-card-price {
    font-size: 22px;
    font-weight: 700;
    color: #d4b470;
    margin-bottom: 12px;
}

.btn-purchase-product {
    width: 100%;
    padding: 10px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-purchase-product:hover {
    background: #d4b470;
}

.btn-purchase-product i {
    font-size: 12px;
}

/* ==================== Purchase Popup with Kurban Türü Selection ==================== */
#kurbanPurchaseModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

#kurbanPurchaseModal.active {
    display: flex;
}

.kurban-purchase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.kurban-purchase-content {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.kurban-purchase-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-light);
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    color: var(--text-light);
    transition: var(--transition);
}

.kurban-purchase-close:hover {
    background: var(--danger);
    color: var(--white);
}

.kurban-purchase-header {
    text-align: center;
    margin-bottom: 30px;
}

.kurban-purchase-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #d4b470;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.kurban-purchase-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.kurban-purchase-subtitle {
    font-size: 14px;
    color: var(--text-light);
}

.kurban-purchase-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kurban-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.kurban-form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
}

.kurban-form-select,
.kurban-form-input {
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    color: var(--text);
    transition: var(--transition);
    background: var(--white);
}

.kurban-form-select:focus,
.kurban-form-input:focus {
    outline: none;
    border-color: #d4b470;
    box-shadow: 0 0 0 4px rgba(212, 180, 112, 0.1);
}

.kurban-purchase-total {
    background: #d4b470;
    color: var(--white);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.kurban-purchase-total-label {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 5px;
}

.kurban-purchase-total-amount {
    font-size: 28px;
    font-weight: 700;
}

.kurban-purchase-actions {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.kurban-purchase-btn {
    flex: 1;
    padding: 16px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.kurban-purchase-btn-primary {
    background: var(--secondary);
    color: var(--white);
}

.kurban-purchase-btn-primary:hover {
    background: #d4b470;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 180, 112, 0.3);
}

.kurban-purchase-btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--border);
}

.kurban-purchase-btn-secondary:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

/* ==================== Sipariş Sorgulama Modal ==================== */
#orderQueryModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

#orderQueryModal.active {
    display: flex;
}

.order-query-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.order-query-content {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.order-query-header {
    text-align: center;
    margin-bottom: 30px;
}

.order-query-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #d4b470;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.order-query-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.order-query-subtitle {
    font-size: 14px;
    color: var(--text-light);
}

.order-query-input-group {
    margin-bottom: 20px;
}

.order-query-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 16px;
    text-align: center;
    transition: var(--transition);
}

.order-query-input:focus {
    outline: none;
    border-color: #d4b470;
    box-shadow: 0 0 0 4px rgba(212, 180, 112, 0.1);
}

.order-query-btn {
    width: 100%;
    padding: 16px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.order-query-btn:hover {
    background: #d4b470;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 180, 112, 0.3);
}

.order-query-result {
    margin-top: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    display: none;
}

.order-query-result.active {
    display: block;
}

.order-query-result-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.order-query-result-item:last-child {
    border-bottom: none;
}

.order-query-result-label {
    color: var(--text-light);
    font-size: 14px;
}

.order-query-result-value {
    font-weight: 600;
    color: var(--secondary);
}

.order-query-status {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.order-query-status.pending {
    background: rgba(255, 193, 7, 0.15);
    color: #f59e0b;
}

.order-query-status.completed {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.order-query-status.cancelled {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

/* ==================== Preloader ==================== */
#preloader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: #1a1610;
}

#preloader.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    font-size: 48px;
    font-weight: 700;
    color: #d4b470;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.preloader-spinner {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border: 5px solid rgba(212, 180, 112, 0.15);
    border-top-color: #d4b470;
    border-radius: 50%;
    animation: preloaderSpin 0.8s linear infinite;
}

@keyframes preloaderSpin {
    to {
        transform: rotate(360deg);
    }
}

.preloader-text {
    margin-top: 25px;
    color: rgba(212, 180, 112, 0.6);
    font-size: 15px;
    font-weight: 500;
}
