/* =========================================================
   هير أورجنال - هنا الأصلي
   الموقع الرسمي
   Style Sheet
========================================================= */


/* =========================================================
   ROOT
========================================================= */

:root {

    --black: #0b0b0b;
    --black-2: #111111;
    --black-3: #181818;

    --gold: #c9a45c;
    --gold-light: #e4c982;
    --gold-dark: #9e7b3f;

    --white: #ffffff;
    --cream: #f8f5ef;
    --cream-2: #eee9df;

    --text: #222222;
    --muted: #777777;

    --border: #e6e0d5;

    --whatsapp: #25d366;

    --shadow:
        0 15px 45px rgba(0, 0, 0, 0.08);

    --shadow-dark:
        0 20px 60px rgba(0, 0, 0, 0.25);

    --radius: 18px;

    --transition:
        all 0.35s ease;

    --container:
        1200px;

}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family:
        "Cairo",
        Tahoma,
        Arial,
        sans-serif;

    background: var(--white);

    color: var(--text);

    line-height: 1.8;

    overflow-x: hidden;

}


body.lightbox-open {
    overflow: hidden;
}


img {

    max-width: 100%;

    display: block;

}


a {

    color: inherit;

    text-decoration: none;

}


button,
input,
textarea {

    font-family: inherit;

}


button {

    cursor: pointer;

}


.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;

}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {

    background: var(--black);

    color: #ddd;

    font-size: 13px;

    border-bottom:
        1px solid rgba(255,255,255,0.08);

}


.top-bar-inner {

    min-height: 42px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}


.top-bar-right,
.top-bar-left {

    display: flex;

    align-items: center;

    gap: 22px;

}


.top-bar span,
.top-bar a {

    display: inline-flex;

    align-items: center;

    gap: 7px;

}


.top-bar i {

    color: var(--gold);

}


.top-bar a {

    transition: var(--transition);

}


.top-bar a:hover {

    color: var(--gold-light);

}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(255,255,255,0.97);

    border-bottom:
        1px solid rgba(0,0,0,0.06);

    transition: var(--transition);

}


.site-header.scrolled {

    box-shadow:
        0 8px 30px rgba(0,0,0,0.08);

}


.header-inner {

    min-height: 86px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


/* =========================================================
   LOGO
========================================================= */

.logo {

    display: flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;

}


.logo img {

    width: 58px;

    height: 58px;

    object-fit: contain;

}


.logo-symbol {

    width: 58px;

    height: 58px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold-dark)
        );

    color: var(--black);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 24px;

    box-shadow:
        0 7px 20px rgba(201,164,92,0.25);

}


.logo-text {

    display: flex;

    flex-direction: column;

    line-height: 1.2;

}


.logo-text strong {

    font-size: 20px;

    color: var(--black);

    font-weight: 900;

}


.logo-text span {

    color: var(--gold-dark);

    font-size: 12px;

    margin-top: 4px;

    letter-spacing: 1px;

}


/* =========================================================
   NAVIGATION
========================================================= */

.main-nav {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

}


.main-nav a {

    position: relative;

    padding: 9px 14px;

    color: #333;

    font-size: 14px;

    font-weight: 600;

    border-radius: 8px;

    transition: var(--transition);

}


.main-nav a::after {

    content: "";

    position: absolute;

    bottom: 2px;

    right: 14px;

    left: 14px;

    height: 2px;

    background: var(--gold);

    transform:
        scaleX(0);

    transform-origin: center;

    transition: var(--transition);

}


.main-nav a:hover,
.main-nav a.active {

    color: var(--gold-dark);

}


.main-nav a:hover::after,
.main-nav a.active::after {

    transform:
        scaleX(1);

}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.header-actions {

    display: flex;

    align-items: center;

    gap: 10px;

}


.header-whatsapp {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding: 10px 17px;

    background: var(--black);

    color: var(--white);

    border-radius: 8px;

    font-size: 13px;

    font-weight: 700;

    transition: var(--transition);

}


.header-whatsapp i {

    color: var(--whatsapp);

    font-size: 18px;

}


.header-whatsapp:hover {

    background: var(--gold);

    color: var(--black);

    transform: translateY(-2px);

}


.header-whatsapp:hover i {

    color: var(--black);

}


.menu-toggle {

    display: none;

    width: 45px;

    height: 45px;

    border: 1px solid var(--border);

    background: var(--white);

    color: var(--black);

    border-radius: 8px;

    font-size: 20px;

}


/* =========================================================
   HERO
========================================================= */

.hero {

    position: relative;

    min-height: 700px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background: var(--black);

    color: var(--white);

}


.hero-background {

    position: absolute;

    inset: 0;

    z-index: 0;

}


.hero-background img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    opacity: 0.45;

}


.hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.96) 0%,
            rgba(0,0,0,0.82) 40%,
            rgba(0,0,0,0.52) 75%,
            rgba(0,0,0,0.78) 100%
        );

}


.hero-pattern {

    position: absolute;

    inset: 0;

    z-index: 2;

    opacity: 0.08;

    background-image:
        linear-gradient(
            45deg,
            transparent 48%,
            var(--gold) 49%,
            var(--gold) 51%,
            transparent 52%
        );

    background-size: 45px 45px;

}


.hero-container {

    position: relative;

    z-index: 3;

    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(320px, 0.85fr);

    align-items: center;

    gap: 70px;

    padding-top: 70px;

    padding-bottom: 70px;

}


.hero-content {

    max-width: 700px;

}


.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    border:
        1px solid rgba(201,164,92,0.55);

    background:
        rgba(201,164,92,0.09);

    color: var(--gold-light);

    border-radius: 100px;

    padding: 7px 14px 7px 9px;

    font-size: 13px;

    margin-bottom: 25px;

}


.hero-badge-icon {

    width: 28px;

    height: 28px;

    border-radius: 50%;

    background: var(--gold);

    color: var(--black);

    display: flex;

    align-items: center;

    justify-content: center;

}


.hero h1 {

    font-size:
        clamp(42px, 6vw, 76px);

    line-height: 1.1;

    font-weight: 900;

    letter-spacing: -1px;

    margin-bottom: 12px;

}


.hero h1 span {

    display: block;

    color: var(--gold-light);

    font-size:
        clamp(25px, 3vw, 39px);

    margin-top: 8px;

}


.hero h2 {

    font-size:
        clamp(21px, 2.5vw, 32px);

    font-weight: 600;

    margin-bottom: 18px;

    color: #eee;

}


.hero p {

    max-width: 650px;

    color: #ccc;

    font-size: 16px;

    line-height: 2;

    margin-bottom: 30px;

}


.hero-buttons {

    display: flex;

    align-items: center;

    gap: 12px;

    flex-wrap: wrap;

}


/* =========================================================
   BUTTONS
========================================================= */

.btn {

    min-height: 52px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding:
        11px 24px;

    border-radius: 9px;

    border: 1px solid transparent;

    font-size: 14px;

    font-weight: 700;

    transition: var(--transition);

}


.btn-primary {

    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold)
        );

    color: var(--black);

    box-shadow:
        0 12px 30px rgba(201,164,92,0.2);

}


.btn-primary:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 17px 35px rgba(201,164,92,0.3);

}


.btn-outline {

    border-color:
        rgba(255,255,255,0.35);

    color: var(--white);

    background:
        rgba(255,255,255,0.04);

}


.btn-outline:hover {

    background: var(--white);

    color: var(--black);

}


.btn-dark {

    background: var(--black);

    color: var(--white);

}


.btn-dark:hover {

    background: var(--gold);

    color: var(--black);

    transform:
        translateY(-2px);

}


.btn-light {

    background: var(--white);

    color: var(--black);

}


.btn-light:hover {

    background: var(--gold-light);

    transform:
        translateY(-2px);

}


/* =========================================================
   HERO FEATURES
========================================================= */

.hero-features {

    display: flex;

    align-items: center;

    gap: 30px;

    margin-top: 45px;

    padding-top: 25px;

    border-top:
        1px solid rgba(255,255,255,0.12);

}


.hero-feature {

    display: flex;

    align-items: center;

    gap: 9px;

    color: #ddd;

    font-size: 13px;

}


.hero-feature i {

    color: var(--gold);

    font-size: 17px;

}


/* =========================================================
   HERO CARD
========================================================= */

.hero-card {

    position: relative;

    display: flex;

    justify-content: center;

}


.hero-card-inner {

    width: min(390px, 100%);

    min-height: 430px;

    padding: 35px;

    border:
        1px solid rgba(201,164,92,0.55);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.12),
            rgba(255,255,255,0.03)
        );

    backdrop-filter: blur(12px);

    border-radius: 25px;

    box-shadow:
        0 30px 80px rgba(0,0,0,0.3);

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

}


.hero-card-top {

    width: 100%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    color: var(--gold-light);

    font-size: 13px;

}


.hero-card-top i {

    font-size: 23px;

}


.hero-card-title {

    font-size: 42px;

    font-weight: 900;

    color: var(--white);

    margin-top: 70px;

}


.hero-card-line {

    width: 75px;

    height: 2px;

    background: var(--gold);

    margin: 18px auto 25px;

}


.hero-card-categories {

    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 10px;

}


.hero-card-categories span {

    padding:
        7px 15px;

    border:
        1px solid rgba(201,164,92,0.4);

    border-radius: 100px;

    color: #eee;

    font-size: 12px;

}


/* =========================================================
   QUICK INFO
========================================================= */

.quick-info {

    position: relative;

    z-index: 10;

    background: var(--white);

    box-shadow:
        0 10px 40px rgba(0,0,0,0.07);

}


.quick-info-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

}


.quick-item {

    min-height: 105px;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 18px 25px;

    border-left:
        1px solid var(--border);

}


.quick-item:last-child {

    border-left: none;

}


.quick-icon {

    width: 48px;

    height: 48px;

    flex-shrink: 0;

    border-radius: 12px;

    background: var(--cream);

    color: var(--gold-dark);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 19px;

}


.quick-item strong {

    display: block;

    color: var(--black);

    font-size: 14px;

}


.quick-item span {

    display: block;

    color: var(--muted);

    font-size: 11px;

    margin-top: 2px;

}


/* =========================================================
   SECTIONS
========================================================= */

.section {

    padding:
        100px 0;

}


.section-heading {

    max-width: 700px;

    margin:
        0 auto 55px;

    text-align: center;

}


.section-label {

    display: inline-block;

    color: var(--gold-dark);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 8px;

}


.section-title {

    font-size:
        clamp(28px, 4vw, 43px);

    line-height: 1.3;

    font-weight: 900;

    color: var(--black);

    margin-bottom: 13px;

}


.section-heading p {

    color: var(--muted);

    font-size: 14px;

}


/* =========================================================
   CATEGORIES
========================================================= */

.categories-section {

    background: var(--cream);

}


.categories-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

}


.category-card {

    min-height: 410px;

    position: relative;

    overflow: hidden;

    border-radius: var(--radius);

    background: var(--black);

    color: var(--white);

    box-shadow: var(--shadow);

    transition: var(--transition);

}


.category-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 25px 55px rgba(0,0,0,0.15);

}


.category-image {

    position: absolute;

    inset: 0;

    opacity: 0.4;

}


.category-clothes .category-image {

    background:
        radial-gradient(
            circle at 70% 30%,
            #c9a45c 0,
            #6b542d 20%,
            #222 50%,
            #090909 100%
        );

}


.category-shoes .category-image {

    background:
        radial-gradient(
            circle at 30% 40%,
            #a9a9a9 0,
            #565656 20%,
            #222 50%,
            #080808 100%
        );

}


.category-perfumes .category-image {

    background:
        radial-gradient(
            circle at 65% 35%,
            #e2bf78 0,
            #785b30 22%,
            #24211c 52%,
            #080808 100%
        );

}


.category-content {

    position: relative;

    z-index: 2;

    height: 100%;

    min-height: 410px;

    padding: 35px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    background:
        linear-gradient(
            0deg,
            rgba(0,0,0,0.94),
            rgba(0,0,0,0.1) 70%
        );

}


.category-icon {

    position: absolute;

    top: 35px;

    right: 35px;

    width: 65px;

    height: 65px;

    border:
        1px solid rgba(201,164,92,0.45);

    border-radius: 15px;

    color: var(--gold-light);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 25px;

    background:
        rgba(0,0,0,0.25);

}


.category-content > span {

    color: var(--gold-light);

    font-size: 11px;

}


.category-content h3 {

    font-size: 30px;

    font-weight: 900;

    margin: 4px 0 7px;

}


.category-content p {

    color: #ddd;

    font-size: 13px;

    margin-bottom: 15px;

}


.category-content strong {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--gold-light);

    font-size: 12px;

}


.category-content strong i {

    transition: var(--transition);

}


.category-card:hover
.category-content strong i {

    transform:
        translateX(-5px);

}


/* =========================================================
   ABOUT
========================================================= */

.about-section {

    background: var(--white);

}


.about-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    align-items: center;

    gap: 80px;

}


.about-visual {

    position: relative;

}


.about-frame {

    position: relative;

    min-height: 540px;

    border-radius: 25px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #1a1a1a,
            #090909
        );

    box-shadow:
        var(--shadow-dark);

}


.about-frame img {

    width: 100%;

    height: 100%;

    min-height: 540px;

    object-fit: cover;

}


.about-placeholder {

    min-height: 540px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    color: var(--gold-light);

    background:
        radial-gradient(
            circle,
            #3c3223 0,
            #151515 45%,
            #070707 100%
        );

}


.about-placeholder i {

    font-size: 70px;

    margin-bottom: 20px;

}


.about-placeholder span {

    font-size: 28px;

    font-weight: 900;

}


.about-placeholder small {

    color: #aaa;

    margin-top: 5px;

}


.about-frame::after {

    content: "";

    position: absolute;

    inset: 20px;

    border:
        1px solid rgba(201,164,92,0.4);

    border-radius: 18px;

    pointer-events: none;

}


.about-badge {

    position: absolute;

    left: -25px;

    bottom: 35px;

    width: 180px;

    min-height: 145px;

    background: var(--gold);

    color: var(--black);

    border-radius: 15px;

    padding: 20px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    box-shadow:
        0 18px 40px rgba(0,0,0,0.18);

}


.about-badge i {

    font-size: 24px;

    margin-bottom: 6px;

}


.about-badge strong {

    font-size: 18px;

    font-weight: 900;

}


.about-badge span {

    font-size: 10px;

    margin-top: 4px;

}


.about-content .section-title {

    margin-bottom: 20px;

}


.about-content .section-title span {

    display: block;

    color: var(--gold-dark);

}


.about-lead {

    color: #333;

    font-size: 18px;

    font-weight: 600;

    line-height: 2;

    margin-bottom: 15px;

}


.about-content > p:not(.about-lead) {

    color: var(--muted);

    font-size: 14px;

    line-height: 2;

}


.about-list {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;

    margin:
        30px 0;

}


.about-list-item {

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 13px;

    color: #444;

}


.about-list-item i {

    width: 25px;

    height: 25px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--cream);

    color: var(--gold-dark);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 11px;

}


/* =========================================================
   PRODUCTS
========================================================= */

.products-section {

    background: var(--cream);

}


.products-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;

}


.product-card {

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: 15px;

    overflow: hidden;

    transition: var(--transition);

}


.product-card:hover {

    transform:
        translateY(-7px);

    box-shadow: var(--shadow);

    border-color:
        rgba(201,164,92,0.5);

}


.product-image {

    position: relative;

    height: 290px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #eee,
            #ddd
        );

}


.product-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease;

}


.product-card:hover
.product-image img {

    transform:
        scale(1.06);

}


.product-view {

    position: absolute;

    top: 13px;

    left: 13px;

    width: 38px;

    height: 38px;

    border: none;

    border-radius: 50%;

    background:
        rgba(255,255,255,0.94);

    color: var(--black);

    display: flex;

    align-items: center;

    justify-content: center;

    opacity: 0;

    transform:
        translateY(-5px);

    transition: var(--transition);

}


.product-card:hover
.product-view {

    opacity: 1;

    transform:
        translateY(0);

}


.product-view:hover {

    background: var(--gold);

}


.product-content {

    padding: 20px;

}


.product-category {

    color: var(--gold-dark);

    font-size: 10px;

    font-weight: 800;

}


.product-content h3 {

    font-size: 17px;

    font-weight: 800;

    color: var(--black);

    margin:
        3px 0 5px;

}


.product-content p {

    color: var(--muted);

    font-size: 11px;

    margin-bottom: 12px;

}


.product-link {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: var(--black);

    font-size: 11px;

    font-weight: 800;

}


.product-link i {

    color: var(--gold-dark);

    transition: var(--transition);

}


.product-link:hover {

    color: var(--gold-dark);

}


.product-link:hover i {

    transform:
        translateX(-4px);

}


.empty-products {

    text-align: center;

    padding:
        80px 25px;

    background: var(--white);

    border:
        1px dashed #d5cec2;

    border-radius: var(--radius);

}


.empty-products-icon {

    width: 75px;

    height: 75px;

    margin:
        0 auto 15px;

    border-radius: 50%;

    background: var(--cream);

    color: var(--gold-dark);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 25px;

}


.empty-products h3 {

    font-size: 20px;

    margin-bottom: 5px;

}


.empty-products p {

    color: var(--muted);

    font-size: 13px;

}


/* =========================================================
   OFFER
========================================================= */

.offers-section {

    padding:
        25px 0;

    background: var(--cream);

}


.offer-box {

    position: relative;

    overflow: hidden;

    min-height: 240px;

    border-radius: 20px;

    padding:
        40px 55px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    background:
        linear-gradient(
            110deg,
            #0a0a0a,
            #1b1814
        );

    color: var(--white);

    box-shadow:
        var(--shadow-dark);

}


.offer-box::before {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    border-radius: 50%;

    left: -120px;

    top: -180px;

    border:
        1px solid rgba(201,164,92,0.35);

}


.offer-box::after {

    content: "";

    position: absolute;

    width: 450px;

    height: 450px;

    border-radius: 50%;

    right: -220px;

    bottom: -300px;

    border:
        1px solid rgba(201,164,92,0.2);

}


.offer-decoration {

    position: absolute;

    right: 45%;

    top: 20px;

    color: rgba(201,164,92,0.12);

    font-size: 110px;

}


.offer-content {

    position: relative;

    z-index: 2;

}


.offer-content > span {

    color: var(--gold-light);

    font-size: 11px;

    font-weight: 800;

}


.offer-content h2 {

    font-size:
        clamp(25px, 4vw, 38px);

    font-weight: 900;

    margin:
        5px 0 7px;

}


.offer-content p {

    color: #bbb;

    font-size: 13px;

}


.offer-box .btn {

    position: relative;

    z-index: 2;

    flex-shrink: 0;

}


/* =========================================================
   WHY
========================================================= */

.why-section {

    background: var(--white);

}


.why-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

}


.why-card {

    text-align: center;

    padding: 30px 20px;

    border:
        1px solid var(--border);

    border-radius: 15px;

    transition: var(--transition);

}


.why-card:hover {

    transform:
        translateY(-6px);

    box-shadow: var(--shadow);

    border-color:
        rgba(201,164,92,0.45);

}


.why-icon {

    width: 65px;

    height: 65px;

    margin:
        0 auto 17px;

    border-radius: 50%;

    background: var(--cream);

    color: var(--gold-dark);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 23px;

}


.why-card h3 {

    font-size: 16px;

    margin-bottom: 7px;

    font-weight: 800;

}


.why-card p {

    color: var(--muted);

    font-size: 11px;

    line-height: 1.9;

}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {

    background: var(--cream);

}


.contact-grid {

    display: grid;

    grid-template-columns:
        minmax(280px, 0.8fr)
        minmax(0, 1.2fr);

    gap: 30px;

    align-items: start;

}


.contact-info {

    display: flex;

    flex-direction: column;

    gap: 12px;

}


.contact-card {

    min-height: 82px;

    padding:
        15px 18px;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: 13px;

    display: flex;

    align-items: center;

    gap: 14px;

    transition: var(--transition);

}


a.contact-card:hover {

    transform:
        translateX(-5px);

    border-color:
        rgba(201,164,92,0.5);

    box-shadow:
        0 8px 25px rgba(0,0,0,0.06);

}


.contact-icon {

    width: 47px;

    height: 47px;

    flex-shrink: 0;

    border-radius: 12px;

    background: var(--cream);

    color: var(--gold-dark);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 18px;

}


.contact-icon.whatsapp-icon {

    color: var(--whatsapp);

}


.contact-card span {

    display: block;

    color: var(--muted);

    font-size: 10px;

}


.contact-card strong {

    display: block;

    color: var(--black);

    font-size: 13px;

    margin-top: 2px;

}


/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form-box {

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: 18px;

    padding:
        35px;

    box-shadow:
        0 12px 40px rgba(0,0,0,0.04);

}


.form-heading {

    margin-bottom: 25px;

}


.form-heading span {

    color: var(--gold-dark);

    font-size: 11px;

    font-weight: 800;

}


.form-heading h3 {

    font-size: 25px;

    font-weight: 900;

    margin-top: 2px;

}


.contact-form {

    display: flex;

    flex-direction: column;

    gap: 17px;

}


.form-row {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;

}


.form-group {

    display: flex;

    flex-direction: column;

    gap: 6px;

}


.form-group label {

    font-size: 11px;

    font-weight: 700;

    color: #444;

}


.form-group input,
.form-group textarea {

    width: 100%;

    border:
        1px solid #ddd6ca;

    background: #fcfbf9;

    color: var(--black);

    border-radius: 9px;

    outline: none;

    padding:
        12px 14px;

    font-size: 13px;

    transition: var(--transition);

}


.form-group input {

    height: 48px;

}


.form-group textarea {

    resize: vertical;

    min-height: 130px;

}


.form-group input:focus,
.form-group textarea:focus {

    border-color: var(--gold);

    background: var(--white);

    box-shadow:
        0 0 0 3px rgba(201,164,92,0.1);

}


.form-group input::placeholder,
.form-group textarea::placeholder {

    color: #aaa;

}


.submit-btn {

    border: none;

    background: var(--black);

    color: var(--white);

    width: 100%;

}


.submit-btn:hover {

    background: var(--gold);

    color: var(--black);

}


.submit-btn:disabled {

    opacity: 0.7;

    cursor: wait;

}


/* =========================================================
   FORM MESSAGE
========================================================= */

.form-message {

    padding:
        12px 15px;

    border-radius: 8px;

    font-size: 12px;

    margin-bottom: 5px;

}


.form-message.error {

    background:
        #fff0f0;

    color:
        #a52b2b;

    border:
        1px solid #f1cccc;

}


/* =========================================================
   MAP
========================================================= */

.map-section {

    background: var(--black);

}


.map-placeholder {

    min-height: 330px;

    padding: 50px 20px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: var(--white);

    background:
        radial-gradient(
            circle at center,
            #25211a,
            #0b0b0b 60%
        );

}


.map-placeholder > i {

    color: var(--gold);

    font-size: 40px;

    margin-bottom: 12px;

}


.map-placeholder h3 {

    font-size: 24px;

    font-weight: 900;

}


.map-placeholder p {

    color: #aaa;

    font-size: 13px;

    margin-bottom: 20px;

}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    background: #070707;

    color: #bbb;

}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.4fr
        0.8fr
        0.8fr
        1fr;

    gap: 50px;

    padding:
        70px 0;

}


.footer-logo {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: var(--white);

}


.footer-logo-icon {

    width: 50px;

    height: 50px;

    border-radius: 50%;

    background: var(--gold);

    color: var(--black);

    display: flex;

    align-items: center;

    justify-content: center;

}


.footer-logo strong {

    display: block;

    font-size: 17px;

    font-weight: 900;

}


.footer-logo span {

    display: block;

    color: var(--gold);

    font-size: 10px;

}


.footer-about > p {

    max-width: 350px;

    color: #888;

    font-size: 12px;

    line-height: 2;

    margin:
        18px 0;

}


.footer-social {

    display: flex;

    gap: 8px;

}


.footer-social a {

    width: 36px;

    height: 36px;

    border:
        1px solid rgba(255,255,255,0.12);

    border-radius: 8px;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: var(--transition);

}


.footer-social a:hover {

    background: var(--gold);

    color: var(--black);

    border-color: var(--gold);

}


.footer-grid h3 {

    color: var(--white);

    font-size: 14px;

    margin-bottom: 20px;

}


.footer-links,
.footer-services,
.footer-contact {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


.footer-links a,
.footer-services a,
.footer-contact a,
.footer-contact span {

    display: flex;

    align-items: center;

    gap: 8px;

    color: #888;

    font-size: 11px;

    margin-bottom: 9px;

    transition: var(--transition);

}


.footer-links a:hover,
.footer-services a:hover,
.footer-contact a:hover {

    color: var(--gold-light);

    transform:
        translateX(-3px);

}


.footer-services i,
.footer-contact i {

    color: var(--gold);

    width: 15px;

}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {

    border-top:
        1px solid rgba(255,255,255,0.08);

}


.footer-bottom-inner {

    min-height: 65px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}


.footer-bottom p {

    color: #666;

    font-size: 10px;

}


/* =========================================================
   FLOATING ACTIONS
========================================================= */

.floating-actions {

    position: fixed;

    left: 18px;

    bottom: 20px;

    z-index: 900;

    display: flex;

    flex-direction: column;

    gap: 9px;

}


.floating {

    width: 48px;

    height: 48px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--white);

    box-shadow:
        0 8px 25px rgba(0,0,0,0.2);

    position: relative;

    transition: var(--transition);

}


.floating span {

    position: absolute;

    left: 58px;

    white-space: nowrap;

    background: var(--black);

    color: var(--white);

    padding:
        5px 9px;

    border-radius: 5px;

    font-size: 10px;

    opacity: 0;

    visibility: hidden;

    transform:
        translateX(-5px);

    transition: var(--transition);

}


.floating:hover span {

    opacity: 1;

    visibility: visible;

    transform:
        translateX(0);

}


.floating-whatsapp {

    background: var(--whatsapp);

}


.floating-phone {

    background: var(--black);

}


.floating:hover {

    transform:
        scale(1.08);

}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {

    position: fixed;

    right: 18px;

    bottom: 20px;

    z-index: 900;

    width: 45px;

    height: 45px;

    border: none;

    border-radius: 10px;

    background: var(--gold);

    color: var(--black);

    box-shadow:
        0 8px 25px rgba(0,0,0,0.15);

    display: flex;

    align-items: center;

    justify-content: center;

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(15px);

    transition: var(--transition);

}


.back-to-top.show {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);

}


.back-to-top:hover {

    background: var(--black);

    color: var(--white);

}


/* =========================================================
   LIGHTBOX
========================================================= */

.lightbox {

    position: fixed;

    inset: 0;

    z-index: 3000;

    background:
        rgba(0,0,0,0.94);

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 30px;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;

}


.lightbox.active {

    opacity: 1;

    visibility: visible;

}


.lightbox-content {

    max-width: 1000px;

    max-height: 85vh;

}


.lightbox-content img {

    max-width: 100%;

    max-height: 85vh;

    object-fit: contain;

    border-radius: 8px;

}


.lightbox-close,
.lightbox-prev,
.lightbox-next {

    position: absolute;

    width: 48px;

    height: 48px;

    border: none;

    border-radius: 50%;

    background:
        rgba(255,255,255,0.1);

    color: var(--white);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 18px;

    transition: var(--transition);

}


.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {

    background: var(--gold);

    color: var(--black);

}


.lightbox-close {

    top: 25px;

    left: 25px;

}


.lightbox-prev {

    right: 25px;

    top: 50%;

    transform:
        translateY(-50%);

}


.lightbox-next {

    left: 25px;

    top: 50%;

    transform:
        translateY(-50%);

}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {

    opacity: 0;

    transform:
        translateY(30px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;

}


.reveal.visible {

    opacity: 1;

    transform:
        translateY(0);

}


/* =========================================================
   IMAGE ERROR
========================================================= */

.image-error {

    background:
        linear-gradient(
            135deg,
            #191919,
            #050505
        );

}


/* =========================================================
   SELECTION
========================================================= */

::selection {

    background: var(--gold);

    color: var(--black);

}


/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {

    width: 9px;

}


::-webkit-scrollbar-track {

    background: #111;

}


::-webkit-scrollbar-thumb {

    background: var(--gold-dark);

    border-radius: 10px;

}


::-webkit-scrollbar-thumb:hover {

    background: var(--gold);

}


/* =========================================================
   RESPONSIVE 1100
========================================================= */

@media (max-width: 1100px) {

    .main-nav {

        gap: 0;

    }


    .main-nav a {

        padding-inline: 9px;

        font-size: 12px;

    }


    .hero-container {

        gap: 40px;

    }


    .products-grid {

        grid-template-columns:
            repeat(3, 1fr);

    }


    .footer-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =========================================================
   RESPONSIVE 900
========================================================= */

@media (max-width: 900px) {

    .header-inner {

        min-height: 72px;

    }


    .menu-toggle {

        display: flex;

        align-items: center;

        justify-content: center;

    }


    .header-whatsapp span {

        display: none;

    }


    .header-whatsapp {

        width: 45px;

        height: 45px;

        padding: 0;

    }


    .main-nav {

        position: absolute;

        top: 100%;

        right: 20px;

        left: 20px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 4px;

        padding: 12px;

        background: var(--white);

        border:
            1px solid var(--border);

        border-radius: 12px;

        box-shadow:
            0 20px 40px rgba(0,0,0,0.12);

        opacity: 0;

        visibility: hidden;

        transform:
            translateY(-10px);

        transition: var(--transition);

    }


    .main-nav.open {

        opacity: 1;

        visibility: visible;

        transform:
            translateY(0);

    }


    .main-nav a {

        padding:
            11px 14px;

    }


    .main-nav a::after {

        display: none;

    }


    .hero {

        min-height: auto;

    }


    .hero-container {

        grid-template-columns: 1fr;

        padding-top: 80px;

        padding-bottom: 80px;

    }


    .hero-content {

        max-width: 100%;

    }


    .hero-card {

        display: none;

    }


    .quick-info-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .quick-item {

        border-bottom:
            1px solid var(--border);

    }


    .quick-item:nth-child(2) {

        border-left: none;

    }


    .categories-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .category-card:last-child {

        grid-column:
            1 / -1;

    }


    .about-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .about-visual {

        max-width: 650px;

        margin-inline: auto;

        width: 100%;

    }


    .products-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .why-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .contact-grid {

        grid-template-columns: 1fr;

    }


    .contact-info {

        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =========================================================
   RESPONSIVE 700
========================================================= */

@media (max-width: 700px) {

    .container {

        width:
            min(
                calc(100% - 28px),
                var(--container)
            );

    }


    .top-bar {

        display: none;

    }


    .logo-text strong {

        font-size: 17px;

    }


    .logo-text span {

        font-size: 10px;

    }


    .logo-symbol,
    .logo img {

        width: 48px;

        height: 48px;

    }


    .hero-container {

        padding-top: 65px;

        padding-bottom: 65px;

    }


    .hero h1 {

        font-size:
            clamp(40px, 13vw, 58px);

    }


    .hero h1 span {

        font-size: 27px;

    }


    .hero p {

        font-size: 14px;

    }


    .hero-features {

        gap: 15px;

        justify-content: space-between;

    }


    .hero-feature {

        font-size: 11px;

    }


    .hero-buttons .btn {

        flex: 1;

        min-width: 180px;

    }


    .section {

        padding:
            75px 0;

    }


    .section-heading {

        margin-bottom: 38px;

    }


    .categories-grid {

        grid-template-columns: 1fr;

    }


    .category-card:last-child {

        grid-column: auto;

    }


    .category-card,
    .category-content {

        min-height: 360px;

    }


    .about-frame,
    .about-placeholder,
    .about-frame img {

        min-height: 450px;

    }


    .about-badge {

        left: 15px;

        bottom: 20px;

    }


    .about-list {

        grid-template-columns: 1fr;

    }


    .offer-box {

        flex-direction: column;

        align-items: flex-start;

        padding: 35px 28px;

    }


    .offer-box .btn {

        width: 100%;

    }


    .contact-info {

        grid-template-columns: 1fr;

    }


    .footer-grid {

        grid-template-columns: 1fr;

        gap: 35px;

        padding:
            55px 0;

    }


    .footer-bottom-inner {

        flex-direction: column;

        justify-content: center;

        text-align: center;

        padding:
            15px 0;

    }


    .floating-actions {

        left: 12px;

        bottom: 12px;

    }


    .back-to-top {

        right: 12px;

        bottom: 12px;

    }


    .lightbox {

        padding: 15px;

    }


    .lightbox-close {

        top: 15px;

        left: 15px;

    }


    .lightbox-prev {

        right: 10px;

    }


    .lightbox-next {

        left: 10px;

    }

}


/* =========================================================
   RESPONSIVE 520
========================================================= */

@media (max-width: 520px) {

    .header-inner {

        gap: 8px;

    }


    .header-actions {

        gap: 5px;

    }


    .logo {

        gap: 7px;

    }


    .logo-text strong {

        font-size: 14px;

    }


    .logo-text span {

        font-size: 8px;

    }


    .logo-symbol,
    .logo img {

        width: 42px;

        height: 42px;

    }


    .header-whatsapp,
    .menu-toggle {

        width: 40px;

        height: 40px;

    }


    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }


    .hero-buttons .btn {

        width: 100%;

        min-width: 0;

    }


    .hero-features {

        flex-wrap: wrap;

        justify-content: flex-start;

    }


    .quick-info-grid {

        grid-template-columns: 1fr;

    }


    .quick-item {

        border-left: none;

        border-bottom:
            1px solid var(--border);

    }


    .quick-item:last-child {

        border-bottom: none;

    }


    .products-grid {

        grid-template-columns: 1fr;

    }


    .product-image {

        height: 330px;

    }


    .why-grid {

        grid-template-columns: 1fr;

    }


    .form-row {

        grid-template-columns: 1fr;

    }


    .contact-form-box {

        padding: 24px 18px;

    }


    .about-badge {

        position: relative;

        left: auto;

        bottom: auto;

        width: 100%;

        margin-top: -5px;

        border-radius: 0 0 15px 15px;

    }


    .about-frame {

        border-radius:
            15px 15px 0 0;

    }


    .about-frame::after {

        display: none;

    }


    .floating span {

        display: none;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {

        scroll-behavior: auto;

    }


    *,
    *::before,
    *::after {

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;

        scroll-behavior: auto !important;

    }


    .reveal {

        opacity: 1;

        transform: none;

    }

}