/*
  Theme Name:   Stanky Store
  Theme URI:    https://stanky.es
  Description:  ثيم مظلم عربي
  Author:       OpenCode
  Template:     sydney
  Version:      2.0.0
  Text Domain:  stanky-child
*/

:root {
    --bg-primary: #0a0e1a;
    --bg-secondary: #111827;
    --bg-card: #1a1f35;
    --neon-cyan: #00e5ff;
    --neon-orange: #ff6d00;
    --text-primary: #e8eaf6;
    --text-secondary: #9fa8da;
    --text-bright: #ffffff;
}

body {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    margin: 0;
    padding: 0;
}

a { color: var(--neon-cyan); text-decoration: none; }
a:hover { color: var(--neon-orange); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.site-header {
    background: rgba(10, 14, 26, 0.98);
    border-bottom: 1px solid rgba(0, 229, 255, 0.15);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 75px;
}

.site-header .logo a {
    color: var(--neon-cyan);
    font-size: 1.8rem;
    font-weight: 900;
    text-decoration: none;
}

.site-header nav ul {
    display: flex;
    list-style: none;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.site-header nav ul li a {
    color: var(--text-secondary);
    font-weight: 800;
    font-size: 1.05rem;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s;
}

.site-header nav ul li a:hover {
    color: var(--neon-cyan);
    background: rgba(0, 229, 255, 0.08);
}

.header-cart a {
    color: var(--neon-orange);
    font-size: 1.4rem;
    font-weight: 700;
}

.stanky-hero {
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1040 40%, #0d1b2a 100%);
    padding: 100px 0 80px;
    text-align: center;
}

.stanky-hero h1 {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--text-bright);
    margin-bottom: 15px;
}

.stanky-hero p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 30px;
}

.hero-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--neon-cyan), #2979ff);
    color: var(--bg-primary);
    padding: 16px 44px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.hero-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(0, 229, 255, 0.5);
    color: var(--bg-primary);
}

.features-section, .why-section { padding: 80px 0; background: var(--bg-secondary); }
.products-section { padding: 80px 0; background: var(--bg-primary); }

.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { color: var(--text-bright); font-size: 2rem; margin-bottom: 15px; }
.section-title p { color: var(--text-secondary); font-size: 1.1rem; margin-top: 10px; }

.feature-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid rgba(0, 229, 255, 0.08);
    height: 100%;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 229, 255, 0.2);
}

.feature-card .icon { font-size: 3rem; margin-bottom: 18px; display: block; }
.feature-card h3 { color: var(--text-bright); font-weight: 700; font-size: 1.15rem; margin-bottom: 10px; }
.feature-card p { color: var(--text-secondary); font-size: 0.95rem; }

.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 25px !important;
}

.woocommerce ul.products li.product {
    background: var(--bg-card) !important;
    border-radius: 16px !important;
    border: 1px solid rgba(0, 229, 255, 0.06) !important;
    margin: 0 !important;
    width: 100% !important;
    padding: 0 !important;
    transition: all 0.3s !important;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(0, 229, 255, 0.15) !important;
}

.woocommerce ul.products li.product .price {
    color: var(--neon-cyan) !important;
    font-size: 1.3rem !important;
    font-weight: 800 !important;
}

.woocommerce ul.products li.product .button {
    background: linear-gradient(135deg, var(--neon-cyan), #2979ff) !important;
    color: var(--bg-primary) !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    border: none !important;
}

.why-item {
    display: flex;
    align-items: center;
    padding: 25px;
    border-radius: 16px;
    background: var(--bg-card);
    margin-bottom: 15px;
    border: 1px solid rgba(0, 229, 255, 0.06);
}

.why-item .icon { font-size: 2.5rem; margin-left: 20px; min-width: 60px; text-align: center; }
.why-item h3 { font-weight: 700; margin-bottom: 5px; color: var(--text-bright); }
.why-item p { margin: 0; color: var(--text-secondary); font-size: 0.95rem; }

.site-footer {
    background: #060a14;
    color: var(--text-secondary);
    padding: 60px 0 25px;
    border-top: 1px solid rgba(0, 229, 255, 0.08);
}

.site-footer h4 { color: var(--neon-cyan); font-weight: 700; margin-bottom: 20px; }
.site-footer a { color: var(--text-secondary); transition: all 0.3s; }
.site-footer a:hover { color: var(--neon-cyan); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.06); padding-top: 20px; margin-top: 30px; text-align: center; }

.woocommerce div.product { background: var(--bg-card); border-radius: 16px; padding: 30px; border: 1px solid rgba(0, 229, 255, 0.06); }
.woocommerce div.product .price { color: var(--neon-cyan) !important; font-size: 1.6rem !important; font-weight: 800 !important; }

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 9999;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
}

.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 35px; height: 35px; fill: #fff; }

@media (max-width: 768px) {
    .site-header nav ul { flex-wrap: wrap; justify-content: center; gap: 3px; }
    .site-header nav ul li a { padding: 8px 12px; font-size: 0.9rem; font-weight: 700; }
    .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: 15px !important; }
    .stanky-hero { padding: 50px 0 40px; }
    .stanky-hero h1 { font-size: 1.8rem; }
    .features-section, .products-section, .why-section { padding: 50px 0; }
    .why-item { flex-direction: column; text-align: center; }
    .why-item .icon { margin-left: 0; margin-bottom: 10px; }
}

@media (max-width: 480px) {
    .site-header nav ul li a { padding: 6px 10px; font-size: 0.85rem; }
    .woocommerce ul.products { grid-template-columns: 1fr !important; }
}
