/* ===== الإعدادات العامة ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root body {
    --brown: #7B3F00;
    --brown-dark: #5C2E00;
    --brown-light: #A0522D;
    --gold: #D4A017;
    --gold-light: #F5C842;
    --cream: #FDF6EC;
    --white: #ffffff;
    --text: #2C1A0E;
    --text-light: #6B4226;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--cream);
    color: var(--text);
    overflow-x: hidden;
     padding-top: 0;
}

/* ===== الهيدر ===== */
.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    background: rgba(123, 63, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--gold);
    transition: all 0.3s;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: 50px;
    object-fit: contain;

}

.logo span {
    color: var(--gold-light);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}
.logo span {
    white-space: nowrap;
}
.nav {
    display: flex;
    gap: 5px;
}

.nav-link {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 10px;
    border-radius: 25px;
    transition: all 0.3s;
    white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
    background-color: var(--gold);
    color: var(--brown-dark);
}

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

.nav-social a {
    color: white;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s;
    text-decoration: none;
}

.nav-social a:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--brown-dark);
    transform: translateY(-2px);
}

/* ===== الهيرو ===== */
.hero {
     margin-top: 74px;
    position: relative;
    height: 600px;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(92,46,0,0.85) 0%, rgba(123,63,0,0.6) 50%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 20px;
    animation: fadeInUp 0.8s ease;
}

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

.hero-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--brown-dark);
    font-size: 14px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-content h1 span {
    color: var(--gold-light);
}

.hero-sub {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 35px;
    font-weight: 400;
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--brown-dark);
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212,160,23,0.4);
}

.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid rgba(255,255,255,0.5);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: #25D366;
    border-color: #25D366;
    transform: translateY(-3px);
}

/* ===== قسم المنتجات ===== */
.products-section {
    padding: 90px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-tag {
    display: inline-block;
    color: var(--brown-light);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 900;
    color: var(--brown-dark);
}

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

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(123,63,0,0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(123,63,0,0.2);
}

.product-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(92,46,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay span {
    color: white;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid white;
    padding: 8px 20px;
    border-radius: 25px;
}

.product-body {
    padding: 20px;
}

.product-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 6px;
}

.product-body p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.product-badge {
    display: inline-block;
    background: var(--cream);
    color: var(--brown-light);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 15px;
    border: 1px solid var(--gold);
}

/* ===== قسم لماذا نحن ===== */
.why-section {
    background: var(--brown);
    padding: 90px 30px;
}

.why-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-text .section-tag {
    color: var(--gold-light);
}

.why-text h2 {
    font-size: 36px;
    font-weight: 900;
    color: white;
    margin-bottom: 35px;
}

.why-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.why-icon {
    font-size: 30px;
    min-width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-item h4 {
    color: var(--gold-light);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
}

.why-item p {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    line-height: 1.6;
}

.why-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* ===== قسم CTA ===== */
.cta-section {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    padding: 70px 30px;
    text-align: center;
}

.cta-inner h2 {
    font-size: 36px;
    font-weight: 900;
    color: var(--brown-dark);
    margin-bottom: 12px;
}

.cta-inner p {
    font-size: 18px;
    color: var(--brown);
    margin-bottom: 30px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(37,211,102,0.4);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37,211,102,0.5);
}

/* ===== الفوتر ===== */
.footer {
    background: var(--brown-dark);
    color: white;
    padding: 60px 30px 20px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand img {
    height: 60px;
    width: 60px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid var(--gold);
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    font-size: 15px;
}

.footer-links h4,
.footer-social h4 {
    color: var(--gold-light);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold-light);
}

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

.social-icons a {
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--brown-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 14px;
}

/* ===== استجابة الجوال ===== */
@media (max-width: 768px) {
    .brand-logo {display: none;}
    .nav-social {display: none;}
    .hamburger{
        display: flex !important;
    margin-right: auto;}
    .nav { display: none; }
    .nav-social { gap: 8px; }
    .logo span { font-size: 13px; }
    .logo span {white-space: nowrap; }
     
}

    .products-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .why-img { display: none; }
    .footer-inner { grid-template-columns: 1fr; gap: 30px; }
    .hero-content h1 { font-size: 36px; }


/* ===== صفحة عنوان الهيرو ===== */
.page-hero {
      margin-top: 74px;
    position: relative;
    height: 600px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(92,46,0,0.88) 0%, rgba(123,63,0,0.7) 100%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    animation: fadeInUp 0.8s ease;
}

.page-hero-content h1 {
    font-size: 52px;
    font-weight: 900;
    margin: 10px 0;
}

.page-hero-content p {
    font-size: 18px;
    opacity: 0.85;
}

/* ===== قسم المنتج الكامل ===== */
.product-full {
    padding: 80px 30px;
    background: var(--cream);
}

.product-full:nth-child(even) {
    background: white;
}

.product-full-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.product-full-reverse .product-full-inner {
    direction: ltr;
}

.product-full-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(123,63,0,0.15);
    transition: transform 0.4s;
}

.product-full-img img:hover {
    transform: scale(1.03);
}

.product-category {
    color: var(--brown-light);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-full-info h2 {
    font-size: 40px;
    font-weight: 900;
    color: var(--brown-dark);
    margin-bottom: 15px;
}

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

.product-types {
    margin-bottom: 20px;
}

.types-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 15px;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.type-item {
    background: white;
    border: 1px solid rgba(123,63,0,0.15);
    border-radius: 12px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--brown-dark);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.type-icon {
    font-size: 20px;
}

.product-shapes {
    margin-bottom: 30px;
}

.shapes-row {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.shape-badge {
    background: var(--brown);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
}

.btn-order {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(37,211,102,0.3);
}

.btn-order:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37,211,102,0.4);
}

/* فاصل -->
.section-divider {
    height: 4px;
    background: linear-gradient(90deg, var(--brown-dark), var(--gold), var(--brown-dark));
    opacity: 0.2;
}

/* تكبير الشعار في الهيدر */
.logo img {
    height: 60px !important;
    width: 60px !important;
}

@media (max-width: 768px) {
    .product-full-inner { grid-template-columns: 1fr; gap: 30px; }
    .product-full-reverse .product-full-inner { direction: rtl; }
    .product-full-img { order: -1; }
    .product-full-info h2 { font-size: 28px; }
    .page-hero {
    position: relative;
    height: 350px;
    margin-top: 74px;}
    .page-hero-content h1 { font-size: 36px; }
}

/* ===== صفحة التواصل ===== */
.contact-section {
    padding: 80px 30px;
    background: var(--cream);
}

.contact-inner {
    max-width: 1100px;
    margin: 0 auto;
}

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

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(123,63,0,0.08);
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-8px);
}

.contact-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
}

.contact-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: #20b858;
    transform: translateY(-2px);
}

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

.phone-btn:hover {
    background: var(--brown-dark);
    transform: translateY(-2px);
}

.location-btn {
    background: var(--cream);
    color: var(--brown);
    border: 2px solid var(--gold);
    cursor: default;
}

/* السوشيال ميديا الكبيرة */
.social-section {
    text-align: center;
}

.social-section h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 30px;
}

.social-big {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-big-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    color: white;
    transition: all 0.3s;
}

.social-big-item i {
    font-size: 22px;
}

.social-big-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.facebook { background: #1877F2; }
.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.tiktok { background: #000000; }

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .social-big { flex-direction: column; align-items: center; }
}

/* ===== وكلاء البيع ===== */
.agents-section {
    padding: 80px 30px;
    background: var(--cream);
}

.agents-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.agent-card {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(123,63,0,0.08);
    border-top: 4px solid var(--gold);
    transition: transform 0.3s;
}

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

.agent-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.agent-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 10px;
}

.agent-name {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

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

.agent-phones a {
    color: var(--brown);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--cream);
    padding: 8px;
    border-radius: 10px;
    transition: all 0.3s;
}

.agent-phones a:hover {
    background: var(--brown);
    color: white;
}

/* ===== المحلات ===== */
.stores-section {
    padding: 60px 30px;
    background: white;
}

.stores-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.city-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.city-tab {
    background: var(--cream);
    color: var(--brown);
    border: 2px solid var(--gold);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
}

.city-tab.active, .city-tab:hover {
    background: var(--brown);
    color: white;
    border-color: var(--brown);
}

.city-stores {
    margin-bottom: 50px;
}

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

.city-header h2 {
    font-size: 26px;
    font-weight: 900;
    color: var(--brown-dark);
}

.stores-count {
    background: var(--gold);
    color: var(--brown-dark);
    font-size: 13px;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 20px;
}

.stores-table {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(123,63,0,0.08);
}

.table-head {
    background: var(--brown);
    color: white;
    display: grid;
    grid-template-columns: 60px 1fr 1fr;
    padding: 15px 20px;
    font-weight: 700;
    font-size: 15px;
}

.table-row {
    display: grid;
    grid-template-columns: 60px 1fr 1fr;
    padding: 12px 20px;
    font-size: 14px;
    border-bottom: 1px solid rgba(123,63,0,0.08);
    transition: background 0.2s;
}

.table-row:nth-child(even) {
    background: var(--cream);
}

.table-row:hover {
    background: rgba(212,160,23,0.1);
}

.table-row span:first-child {
    color: var(--brown-light);
    font-weight: 700;
}

@media (max-width: 768px) {
    .agents-grid { grid-template-columns: 1fr 1fr; }
    .table-head, .table-row { grid-template-columns: 40px 1fr 1fr; font-size: 12px; padding: 10px; }
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    outline: none;
    list-style: none;
}.header-inner button {
    list-style: none;
}

.header-inner::before,
.header-inner::after {
    display: none;
}.footer-made {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 8px;
}

.footer-made img {
    height: 200px;
    opacity: 2;
}

.footer-made p {
    color: rgba(255,255,255,0.4);
    font-size: 14px;
}