/* GPU Store Main Stylesheet */
/* Fonts are loaded via high-priority preconnected <link> tags in HTML <head> with font-display: swap */

/* 1. CSS Variables & Design System */
:root {
    --primary-color: #e06d15;       /* البرتقالي الأساسي المستوحى من الشعار */
    --primary-hover: #ff7e1a;       /* درجة أفتح عند الهوفر */
    --primary-light: #fff2e6;       /* برتقالي فاتح جداً للخلفيات الصغيرة */
    --success-color: #10b981;       /* لون النجاح - أخضر */
    --dark-bg: #09090b;             /* أسود تقني داكن */
    --dark-card: #18181b;           /* لون الكروت الداكنة */
    --light-bg: #f8fafc;            /* خلفية فاتحة للموقع */
    --light-card: #ffffff;          /* لون الكروت الفاتحة */
    --text-dark: #0f172a;           /* نص داكن */
    --text-muted: #64748b;          /* نص رمادي باهت */
    --text-light: #f8fafc;          /* نص فاتح للفوتر والشرائح */
    --border-color: #e2e8f0;        /* لون الحدود */
    --header-height: 90px;          /* ارتفاع الهيدر الثابت */
    --font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* تحسينات أداء واستجابة الموبايل (Mobile Touch & Rendering Optimization) */
* {
    -webkit-tap-highlight-color: transparent;
}

button, a, .product-card, .category-card, .btn-ripple {
    touch-action: manipulation;
}

/* تسريع معالجة بطاقات المنتجات على معالجات الهواتف */
.product-card {
    content-visibility: auto;
    contain-intrinsic-size: 260px 380px;
}

/* 1.1 Dark Theme Overrides */
html.dark-theme {
    --light-bg: #09090b;            /* خلفية داكنة للموقع */
    --light-card: #141416;          /* لون الكروت الداكنة */
    --text-dark: #f8fafc;           /* نص فاتح للموقع */
    --text-muted: #94a3b8;          /* نص رمادي باهت */
    --border-color: #27272a;        /* لون الحدود الداكنة */
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 20px 35px rgba(0, 0, 0, 0.7);
    --primary-light: rgba(224, 109, 21, 0.1); /* برتقالي شفاف في الخلفية */
}

/* Dark theme elements tweaks */
html.dark-theme .category-card {
    background-color: #18181b;
}

html.dark-theme .products-section {
    background-color: #0e0e11;
    border-top: 1px solid #1f1f23;
    border-bottom: 1px solid #1f1f23;
}

html.dark-theme .search-box:focus-within {
    background-color: var(--light-card);
}

html.dark-theme .sort-select {
    background-color: var(--light-card);
    color: var(--text-dark);
}

html.dark-theme .invoice-box {
    background-color: var(--light-card);
}

html.dark-theme .prod-wishlist-btn {
    background-color: rgba(24, 24, 27, 0.9);
    color: #cbd5e1;
}

html.dark-theme .qty-input-box {
    background-color: #18181b;
    border-color: #27272a;
}

html.dark-theme .qty-btn {
    color: #f8fafc;
}

html.dark-theme .qty-btn:hover {
    background-color: #27272a;
}

html.dark-theme input, 
html.dark-theme textarea, 
html.dark-theme select {
    color: var(--text-dark);
}

/* Extra dark theme overrides for form fields and UI widgets */
html.dark-theme .form-control {
    background-color: var(--light-bg);
    border-color: var(--border-color);
    color: var(--text-dark);
}

html.dark-theme .form-control:focus {
    background-color: #1f1f23;
    color: var(--text-dark);
    border-color: var(--primary-color);
}

html.dark-theme input::placeholder,
html.dark-theme textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

html.dark-theme .order-summary-box {
    background-color: var(--light-card);
    border-color: var(--border-color);
}

html.dark-theme .qty-btn {
    background-color: #27272a;
    color: #f8fafc;
}

html.dark-theme .qty-btn:hover {
    background-color: #3f3f46;
}

html.dark-theme .auto-redirect-alert {
    background-color: rgba(6, 78, 59, 0.4);
    border-color: rgba(4, 120, 87, 0.5);
    color: #34d399;
}

/* Theme Toggle Button Styling */
.theme-toggle-btn {
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50%;
    font-size: 1.15rem;
    width: 38px;
    height: 38px;
    cursor: pointer;
    transition: var(--transition);
}

.theme-toggle-btn:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

/* 2. Global Resets & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    padding-top: var(--header-height); /* لمنع تداخل الهيدر الثابت مع المحتوى */
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

button {
    cursor: pointer;
    background: none;
    transition: var(--transition);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 20px;
    padding-left: 20px;
}

/* 3. Common Components & Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    text-align: center;
}

.section-header h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.section-underline {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.view-all-link {
    position: absolute;
    left: 20px;
    bottom: 0;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.view-all-link:hover {
    color: var(--primary-hover);
    transform: translateX(-5px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 4px 12px rgba(224, 109, 21, 0.3);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
}

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

.center-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

/* 4. Main Header Styles */
.main-header {
    background-color: var(--light-card);
    height: var(--header-height);
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05); /* حد سفلي خفيف بدلاً من الظل */
    display: flex;
    align-items: center;
}

.header-container {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left, .header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

/* Menu Toggle Button */
.menu-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 12px;
    border-radius: 6px;
}

.menu-toggle-btn:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

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

/* Logo */
.store-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

/* Search Box */
.search-box {
    display: flex;
    align-items: center;
    background-color: var(--light-bg);
    border-radius: 30px;
    padding: 5px 15px;
    width: 250px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.search-box:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(224, 109, 21, 0.1);
    background-color: var(--light-card);
}

.search-box input {
    background: none;
    width: 100%;
    padding: 6px 0;
    margin-right: 10px; /* مسافة بين أيقونة البحث وبداية النص */
    font-size: 0.85rem;
}

.search-btn {
    color: var(--text-muted);
}

.search-btn:hover {
    color: var(--primary-color);
}

/* Cart Button & Badge */
.cart-btn {
    position: relative;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50%;
}

.cart-btn:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

.cart-badge {
    position: absolute;
    top: -2px;
    left: -2px;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--light-card);
}

/* User Account Button */
.user-account-btn {
    color: var(--text-dark);
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-account-btn:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

.sidebar-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background-color: var(--light-card);
    z-index: 1002;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
}

.sidebar-drawer.open {
    transform: translateX(0);
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.sidebar-close-btn {
    font-size: 1.8rem;
    color: var(--text-muted);
    line-height: 1;
}

.sidebar-close-btn:hover {
    color: var(--primary-color);
}

.sidebar-content {
    padding: 20px;
    overflow-y: auto;
    flex-grow: 1;
}

.sidebar-menu li {
    margin-bottom: 10px;
}

.menu-item {
    display: block;
    padding: 12px 15px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.menu-item:hover, .menu-item.active {
    background-color: var(--primary-light);
    color: var(--primary-color);
}

.menu-item.admin-item {
    border: 1px dashed var(--primary-color);
}

/* Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.sidebar-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

/* 6. Hero Slider Styles */
.hero-slider-section {
    position: relative;
    height: 500px;
    overflow: hidden;
    background-color: #000;
}

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

.slide {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-right: 10%;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    color: var(--text-light);
    max-width: 600px;
    z-index: 2;
    transform: translateY(30px);
    transition: transform 0.8s ease-in-out;
    direction: rtl;
}

.slide.active .slide-content {
    transform: translateY(0);
}

.slide-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    color: #cbd5e1;
}

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active, .dot:hover {
    background-color: var(--primary-color);
    width: 25px;
    border-radius: 5px;
}

/* 7. Categories Section Styles */
.categories-section {
    padding: 60px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.category-card {
    background-color: #f3f4f6; /* خلفية رمادية ناعمة فلات مثل الديزاين */
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    background-color: var(--primary-light); /* تغيير الخلفية لبرتقالي خفيف جداً */
    border-color: rgba(224, 109, 21, 0.15);
    box-shadow: 0 8px 20px rgba(224, 109, 21, 0.1);
}

.cat-img-wrapper {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent; /* جعل الخلفية شفافة لمظهر أنظف */
    border-radius: 50%;
    overflow: hidden;
}

.cat-img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    transition: var(--transition);
}

.category-card:hover .cat-img {
    transform: scale(1.1);
}

.category-card h3 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* 8. Products Section Styles */
.products-section {
    padding: 60px 0;
    background-color: #fafafa;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.products-container-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
    width: 100%;
}

.product-card {
    background-color: var(--light-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    transition: var(--transition);
    padding: 15px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(224, 109, 21, 0.2);
}

.prod-wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    box-shadow: var(--shadow);
    z-index: 5;
}

.card-condition-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 800;
    z-index: 5;
    text-transform: uppercase;
}
.card-condition-badge.new {
    background-color: #10b981;
    color: white;
}
.card-condition-badge.used {
    background-color: #f97316;
    color: white;
}

.prod-wishlist-btn:hover {
    color: #ef4444;
}

.prod-img-wrapper {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 12px;
    background-color: var(--light-bg);
    padding: 12px;
    transition: var(--transition);
}

.prod-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}

.product-card:hover .prod-img {
    transform: scale(1.05);
}

.prod-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    height: 44px; /* سطرين كحد أقصى */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.prod-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.prod-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.btn-buy {
    flex-grow: 1;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    border: none;
    transition: var(--transition);
}

.btn-buy:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 4px 12px rgba(224, 109, 21, 0.2);
}

.btn-add-cart {
    background-color: transparent;
    border: 1.5px solid var(--primary-color); /* إطار برتقالي أنيق */
    color: var(--primary-color); /* أيقونة برتقالية */
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.slider-arrow:hover {
    background-color: var(--primary-color);
    color: white;
}

.arrow-right {
    right: -20px;
}

.arrow-left {
    left: -20px;
}

/* 9. Info / About Sections Styles */
.info-section {
    padding: 30px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.info-card {
    background-color: var(--light-card);
    border-radius: 16px;
    padding: 35px 30px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(224, 109, 21, 0.2);
}

.info-card:hover::before {
    opacity: 1;
}

.info-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
    transition: var(--transition);
}

/* Gradients and Glows for Icons */
.info-icon-wrapper.yellow-glow {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.25);
}

.info-icon-wrapper.red-glow {
    background: linear-gradient(135deg, #ef4444, #b91c1c);
    box-shadow: 0 8px 20px rgba(185, 28, 28, 0.25);
}

.info-icon-wrapper.blue-glow {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    box-shadow: 0 8px 20px rgba(29, 78, 216, 0.25);
}

.info-card:hover .info-icon-wrapper {
    transform: scale(1.1) rotate(10deg);
}

.info-card h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.info-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.8;
    max-width: 720px;
    margin: 0 auto;
}

.contact-info-card {
    text-align: right;
}

.contact-info-card .info-icon {
    text-align: center;
}

.contact-info-card h2 {
    text-align: center;
}

.contact-info-card p {
    text-align: center;
    margin-bottom: 30px;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.contact-item {
    background-color: var(--light-bg);
    padding: 15px;
    border-radius: 8px;
    border-right: 4px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-item strong {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-item a, .contact-item span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.contact-item a:hover {
    color: var(--primary-color);
}

/* 10. Main Footer Styles */
.main-footer {
    background-color: #0c0e12;
    color: var(--text-light);
    padding: 60px 0 20px;
    border-top: 4px solid var(--primary-color);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 30px;
    direction: rtl;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 15px;
}

/* فواصل رأسية للأعمدة على الشاشات الكبيرة */
@media (min-width: 1025px) {
    .footer-col {
        border-left: 1px solid rgba(255, 255, 255, 0.08);
    }
    .footer-col:last-child {
        border-left: none;
    }
}

.footer-col h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: #ffffff;
    width: fit-content;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 3px;
    background-color: var(--primary-color);
}

.brand-col .footer-logo {
    height: 50px;
    margin-bottom: 20px;
    display: block;
}

.brand-col .store-desc {
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 10px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.links-col ul, .contact-col ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
}

.links-col ul li {
    margin-bottom: 12px;
    list-style: none;
}

.links-col ul li a {
    color: #94a3b8;
    font-size: 0.88rem;
    transition: var(--transition);
}

.links-col ul li a:hover {
    color: var(--primary-color);
}

.contact-col ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #cbd5e1;
    font-size: 0.88rem;
    width: 100%;
}

.contact-col .icon-wrapper {
    color: #94a3b8;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-col .icon-wrapper.whatsapp-icon {
    color: #25d366; /* لون الواتساب الأخضر الشهير */
}

.contact-col .contact-hours-text {
    margin-top: 10px;
    font-size: 0.8rem;
    color: #64748b;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 10px;
    width: 80%;
}

.location-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.location-col .location-info-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #cbd5e1;
    font-size: 0.88rem;
    width: 100%;
}

.location-col .location-city {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.location-col .location-icon {
    color: #94a3b8;
    font-size: 1.05rem;
}

.location-col .location-address {
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 220px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: #64748b;
    font-size: 0.8rem;
}

/* 11. WhatsApp Floating Button */
.whatsapp-float-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    animation: pulseWhatsapp 2s infinite;
}

.whatsapp-float-btn:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

@keyframes pulseWhatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* 12. Skeleton Loading Styles */
.skeleton {
    position: relative;
    overflow: hidden;
}

.skeleton::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background-image: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 20%,
        rgba(255, 255, 255, 0.6) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

.skeleton-img {
    height: 180px;
    background-color: #e2e8f0;
    border-radius: 8px;
    margin-bottom: 15px;
}

.skeleton-title {
    height: 15px;
    background-color: #e2e8f0;
    border-radius: 4px;
    margin-bottom: 10px;
    width: 80%;
}

.skeleton-price {
    height: 20px;
    background-color: #e2e8f0;
    border-radius: 4px;
    margin-bottom: 15px;
    width: 40%;
}

.skeleton-btns {
    height: 38px;
    background-color: #e2e8f0;
    border-radius: 6px;
}

/* 13. Responsive Styles */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    .slide-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    .store-logo {
        height: 60px;
    }
    body {
        padding-top: var(--header-height);
    }
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .hero-slider-section {
        height: 350px;
    }
    .slide {
        padding-right: 20px;
        padding-left: 20px;
    }
    .slide-content h1 {
        font-size: 1.6rem;
    }
    .slide-content p {
        font-size: 0.9rem;
    }
    .search-box {
        display: none;
    }
    
    /* شريط الأقسام الدائري الأفقي الأنيق للموبايل */
    .categories-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 15px 5px;
        gap: 20px;
        scrollbar-width: none;
    }
    .categories-grid::-webkit-scrollbar {
        display: none;
    }
    .category-card {
        flex: 0 0 130px;
        scroll-snap-align: start;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 10px 8px !important;
    }
    .category-card:hover {
        transform: none !important;
        box-shadow: none !important;
    }
    .cat-img-wrapper {
        width: 100px !important;
        height: 100px !important;
        border-radius: 50% !important;
        background-color: var(--light-card) !important;
        border: 2px solid var(--border-color) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-bottom: 10px !important;
        box-shadow: var(--shadow) !important;
    }
    .cat-img {
        width: 70px !important;
        height: 70px !important;
        object-fit: contain !important;
    }
    .category-card h3 {
        font-size: 0.95rem !important;
        font-weight: 700 !important;
        color: var(--text-dark) !important;
        white-space: nowrap !important;
        text-overflow: ellipsis !important;
        overflow: hidden !important;
        width: 100% !important;
    }

    .slider-arrow {
        display: none;
    }
    
    /* شبكة المنتجات في صفحة التصفح: عمودين رأسياً للتصفح المريح */
    .products-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        padding: 8px !important;
        overflow-x: visible !important;
    }
    
    /* سلايدر المنتجات الأحدث بالرئيسية: يظل أفقياً باللمس */
    #latestProductsGrid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        padding-bottom: 20px !important;
        gap: 20px !important;
        scrollbar-width: none !important;
    }
    #latestProductsGrid::-webkit-scrollbar {
        display: none !important;
    }
    #latestProductsGrid .product-card {
        flex: 0 0 240px !important;
        scroll-snap-align: start !important;
    }
    
    .product-card {
        padding: 12px;
        border-radius: 12px;
    }
    .prod-img-wrapper {
        height: 165px;
        margin-bottom: 12px;
    }
    .prod-title {
        font-size: 0.9rem;
        height: 40px;
        line-height: 1.35;
    }
    .prod-price {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    .prod-actions {
        flex-direction: column;
        gap: 5px;
    }
    .btn-buy {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    .btn-add-cart {
        padding: 6px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .menu-text {
        display: none;
    }
    .store-logo {
        height: 55px;
    }
}

/* ==========================================
   10. ترقيات الواجهة وتجربة المستخدم الحديثة (Modern E-commerce UX Upgrades)
   ========================================== */

/* القائمة الأفقية العلوية على الديسكتوب (Desktop Horizontal Nav) */
.desktop-nav {
    display: none;
}

@media (min-width: 992px) {
    .desktop-nav {
        display: block;
    }
    .menu-toggle-btn {
        display: none !important;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link-item {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.92rem;
    transition: var(--transition);
    padding: 6px 0;
    position: relative;
    text-decoration: none;
}

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

.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 2.5px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link-item:hover::after, .nav-link-item.active::after {
    width: 100%;
}

/* الميجا منيو المنسدلة للأقسام (Categories Mega Menu) */
.categories-dropdown-wrapper {
    position: relative;
}

.categories-dropdown-wrapper:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.categories-dropdown-wrapper:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: 100%;
    right: -100px;
    width: 580px;
    background-color: var(--light-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1005;
}

.dark-theme .mega-menu {
    background-color: #09090b;
    border-color: #27272a;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.55);
}

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

.mega-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--text-dark);
    font-size: 0.88rem;
    font-weight: 700;
    transition: var(--transition);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.01);
}

.mega-menu-item:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
    transform: translateX(-5px);
}

.mega-menu-item img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* تحديث كروت الأقسام (Categories Cards Premium Redesign) */
.categories-grid .category-card {
    background-color: var(--light-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.categories-grid .category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(224, 109, 21, 0.15);
    border-color: rgba(224, 109, 21, 0.3);
}

.dark-theme .categories-grid .category-card:hover {
    box-shadow: 0 15px 35px rgba(224, 109, 21, 0.25);
    border-color: rgba(224, 109, 21, 0.45);
}

.categories-grid .category-card .cat-img-wrapper {
    background-color: transparent;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.categories-grid .category-card:hover .cat-img-wrapper {
    transform: scale(1.12);
}

.categories-grid .category-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: var(--transition);
}

.categories-grid .category-card:hover h3 {
    color: var(--primary-color);
}

/* تحديث كروت المنتجات (Products Cards Premium Redesign) */
.product-card {
    background-color: var(--light-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
}

.product-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(224, 109, 21, 0.35);
}

.dark-theme .product-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
    border-color: rgba(224, 109, 21, 0.45);
}

.product-card .prod-img-wrapper {
    position: relative;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    overflow: hidden;
    border-radius: 12px;
    background-color: var(--light-bg);
    padding: 12px;
    transition: var(--transition);
}

.product-card .prod-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .prod-img {
    transform: scale(1.08);
}

.product-card .prod-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    height: 48px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card .prod-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 18px;
}

.product-card .prod-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.product-card .btn-buy {
    flex-grow: 1;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 15px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.product-card .btn-buy:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 4px 10px rgba(224, 109, 21, 0.25);
}

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

.product-card .btn-add-cart:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* شبكة البراندات الشريكة (Brands grid styling) */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.brand-badge-card {
    background-color: var(--light-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
    box-shadow: 0 2px 4px rgba(0,0,0,0.01);
}

.brand-badge-card:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 8px 16px rgba(224,109,21,0.08);
}

.brand-badge-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-muted);
    margin: 0;
    text-transform: uppercase;
    transition: var(--transition);
}

.brand-badge-card:hover h3 {
    color: var(--primary-color);
}

/* أنيميشن الظهور التدريجي عند التمرير (Scroll Fade-up Animations) */
.fade-up-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.fade-up-active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   11. تحسين الهيدر ومنع الازدحام (Header Cleanup & Spacing)
   ========================================== */
.header-left {
    gap: 10px !important;
}

.search-box {
    width: 190px !important;
    padding: 5px 12px !important;
    background-color: rgba(255, 255, 255, 0.05) !important;
}

.search-box input {
    font-size: 0.82rem !important;
}

.cart-btn, .user-account-btn, .theme-toggle-btn {
    width: 36px !important;
    height: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    padding: 0 !important;
    background-color: var(--light-bg) !important;
    color: var(--text-dark) !important;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.dark-theme .cart-btn, 
.dark-theme .user-account-btn, 
.dark-theme .theme-toggle-btn {
    background-color: #18181b !important;
    color: #e4e4e7 !important;
}

.cart-btn:hover, .user-account-btn:hover, .theme-toggle-btn:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
}

@media (max-width: 1200px) {
    .nav-links {
        gap: 15px !important;
    }
    .nav-link-item {
        font-size: 0.85rem !important;
    }
    .search-box {
        width: 150px !important;
    }
}

/* ==========================================
   12. تنسيق الأقسام الديناميكية الجديدة (Premium Dynamic Sections UI/UX)
   ========================================== */
.premium-homepage-section {
    background: var(--light-card);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.dark-theme .premium-homepage-section {
    background: rgba(24, 24, 27, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(8px);
}

.premium-homepage-section:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border-color: rgba(249, 115, 22, 0.2);
}

.dark-theme .premium-homepage-section:hover {
    border-color: rgba(249, 115, 22, 0.3) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.section-text-column h2 {
    transition: var(--transition);
}

.premium-homepage-section:hover .section-text-column h2 {
    color: var(--primary-color) !important;
}

/* Dark theme skeleton overrides */
html.dark-theme .skeleton-img,
html.dark-theme .skeleton-title,
html.dark-theme .skeleton-price,
html.dark-theme .skeleton-btns {
    background-color: #27272a !important;
}
html.dark-theme .skeleton::after {
    background-image: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(255, 255, 255, 0.05) 20%,
        rgba(255, 255, 255, 0.1) 60%,
        rgba(0, 0, 0, 0) 100%
    ) !important;
}

/* Button ripple effects styling */
.btn-ripple {
    position: relative !important;
    overflow: hidden !important;
}
.btn-ripple .ripple-span {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    background-color: rgba(255, 255, 255, 0.35);
    pointer-events: none;
}
@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Premium Loading Spinner */
.loading-spinner-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    width: 100%;
}
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3.5px solid var(--border-color);
    border-top: 3.5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin-anim 1s linear infinite;
}
@keyframes spin-anim {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Warranty Dropdown Premium Styling */
#productWarrantySelect {
    border-color: var(--border-color);
    transition: var(--transition);
}
#productWarrantySelect:hover {
    border-color: var(--primary-color);
}
#productWarrantySelect:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(224, 109, 21, 0.15);
}
.dark-theme #productWarrantySelect {
    background-color: var(--light-card);
    color: var(--text-dark);
    border-color: var(--border-color);
}
.dark-theme #productWarrantySelect option {
    background-color: #141416;
    color: white;
}

/* ==========================================
   Contact Us Modal & Button Styling
   ========================================== */
.contact-nav-btn {
    color: var(--primary-color) !important;
    font-weight: 700 !important;
    background-color: var(--primary-light);
    padding: 6px 14px !important;
    border-radius: 20px;
    transition: var(--transition);
}
.contact-nav-btn:hover {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}
.contact-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.contact-modal-overlay.open {
    display: flex;
}
.contact-modal-box {
    background-color: var(--light-card);
    border: 1px solid var(--border-color);
    border-radius: 22px;
    width: 100%;
    max-width: 540px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    animation: modalSlideUp 0.3s ease;
}
.contact-modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact-modal-header h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
}
.contact-modal-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
}
.contact-modal-close:hover {
    color: #ef4444;
}
.contact-modal-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.modal-status-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    color: var(--text-dark);
}
.status-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #10b981;
    box-shadow: 0 0 8px #10b981;
    animation: modalPulse 1.5s infinite;
}
@keyframes modalPulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}
.contact-section-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.contact-group-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dark);
}
.contact-phones-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.contact-phone-row {
    display: flex;
    gap: 6px;
    align-items: center;
}
.contact-phone-card {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    padding: 10px 14px;
    border-radius: 12px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.92rem;
    transition: var(--transition);
}
.contact-phone-card:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-light);
    color: var(--primary-color);
    transform: translateX(-3px);
}
.phone-main-text {
    display: flex;
    align-items: center;
    gap: 8px;
}
.phone-main-text i {
    color: var(--primary-color);
}
.phone-call-badge {
    font-size: 0.74rem;
    background-color: var(--primary-color);
    color: white;
    padding: 3px 8px;
    border-radius: 14px;
    font-weight: 700;
}
.phone-copy-btn {
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    border-radius: 10px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}
.phone-copy-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: var(--light-card);
}
.contact-whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    text-decoration: none;
    padding: 13px 18px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 0.96rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    transition: var(--transition);
}
.contact-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}
.contact-social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.social-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px 6px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.76rem;
    font-weight: 700;
    color: white;
    transition: var(--transition);
}
.social-box i {
    font-size: 1.15rem;
}
.social-box.fb { background: #1877f2; }
.social-box.insta { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-box.tiktok { background: #000000; border: 1px solid #333; }
.social-box.yt { background: #ff0000; }
.social-box:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.contact-location-box {
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 12px 16px;
    font-size: 0.86rem;
}
