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

body {
    font-family: 'Vazirmatn', sans-serif;
    background: #040608;
    color: #eef3f8;
    line-height: 1.6;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 3px;
    background: #0a0f16;
}
::-webkit-scrollbar-thumb {
    background: #2cd4bc;
    border-radius: 20px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-gradient {
    background: linear-gradient(135deg, #2cd4bc, #16a085);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-primary {
    background: linear-gradient(135deg, #2cd4bc, #1aa88f);
    border: none;
    padding: 0.9rem 3rem;
    border-radius: 60px;
    font-weight: 700;
    color: #040608;
    font-size: 0.95rem;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Vazirmatn', sans-serif;
    box-shadow: 0 8px 40px rgba(44, 212, 188, 0.2);
}
.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 56px rgba(44, 212, 188, 0.35);
}

.btn-secondary {
    background: rgba(44, 212, 188, 0.06);
    border: 1px solid rgba(44, 212, 188, 0.12);
    padding: 0.9rem 2.8rem;
    border-radius: 60px;
    font-weight: 600;
    color: #2cd4bc;
    cursor: pointer;
    transition: 0.25s;
    font-family: 'Vazirmatn', sans-serif;
}
.btn-secondary:hover {
    background: rgba(44, 212, 188, 0.12);
    transform: translateY(-3px);
}

.btn-outline-light {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.06);
    padding: 0.9rem 2.6rem;
    border-radius: 60px;
    font-weight: 600;
    color: #c8d8e8;
    cursor: pointer;
    transition: 0.25s;
    font-family: 'Vazirmatn', sans-serif;
}
.btn-outline-light:hover {
    border-color: #2cd4bc;
    color: #2cd4bc;
    background: rgba(44, 212, 188, 0.04);
}

.btn-ghost-sm {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 0.3rem 1.2rem;
    border-radius: 40px;
    font-size: 0.75rem;
    color: #99aec6;
    cursor: pointer;
    transition: 0.2s;
    font-family: 'Vazirmatn', sans-serif;
}
.btn-ghost-sm:hover {
    border-color: #2cd4bc;
    color: #2cd4bc;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.8rem;
}
.section-head .link {
    color: #2cd4bc;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}
.section-head .link:hover {
    opacity: 0.7;
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0.8rem;
    z-index: 100;
    background: rgba(2, 4, 8, 0.55);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 80px;
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto 1.5rem;
    max-width: 1400px;
    box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.9);
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.brand .logo-icon {
    font-size: 1.8rem;
    color: #2cd4bc;
}
.brand .logo-text {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #e0f7f2, #2cd4bc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2.2rem;
    font-weight: 500;
    font-size: 0.85rem;
}
.nav-menu a {
    color: #99aec6;
    text-decoration: none;
    transition: 0.2s;
    padding: 0.3rem 0;
    position: relative;
}
.nav-menu a:hover {
    color: #d6e8ff;
}
.nav-menu a.active {
    color: #2cd4bc;
}
.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 100%;
    height: 2px;
    background: #2cd4bc;
    border-radius: 10px;
}

.header-actions {
    display: flex;
    gap: 1.4rem;
    align-items: center;
}
.header-actions i {
    font-size: 1rem;
    color: #7b91ab;
    transition: 0.2s;
    cursor: pointer;
}
.header-actions i:hover {
    color: #2cd4bc;
}

/* FIX: Establish structural context over anchor buttons to frame child badges cleanly */
.header-actions a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* FIX: Explicit layout bounds layout grid for the custom red notification dot */
.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #e74c3c;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;

    /* Enforces perfect horizontal and vertical centering layout alignment */
    display: flex;
    align-items: center;
    justify-content: center;

    /* Reset baseline constraints to lock number in center of the container circle */
    line-height: 1;
    padding: 0;
    margin: 0;
    text-align: center;
    pointer-events: none;
}

/* ===== HERO ===== */
.hero-hybrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 0.5rem 0 3rem;
    align-items: center;
    position: relative;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(44, 212, 188, 0.06);
    border: 1px solid rgba(44, 212, 188, 0.08);
    padding: 0.35rem 1.6rem;
    border-radius: 40px;
    font-size: 0.8rem;
    color: #6ad4c0;
    width: fit-content;
    font-weight: 500;
    letter-spacing: 0.3px;
}
.hero-badge i {
    font-size: 0.6rem;
}

.hero-left h1 {
    font-size: 4.8rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hero-left p {
    font-size: 1.15rem;
    color: #9aafc7;
    max-width: 480px;
    line-height: 2;
    letter-spacing: 0.2px;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-top: 0.4rem;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    margin-top: 0.6rem;
}
.hero-stats .stat .num {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2cd4bc;
    direction: ltr;
}
.hero-stats .stat .lbl {
    font-size: 0.8rem;
    color: #768ca6;
    margin-top: 0.2rem;
}

.hero-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.hero-product-card {
    background: rgba(12, 18, 30, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    padding: 1.4rem 1.2rem;
    text-align: center;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}
.hero-product-card:hover {
    background: rgba(20, 32, 48, 0.6);
    transform: translateY(-6px);
    border-color: rgba(44, 212, 188, 0.06);
}
.hero-product-card .product-image {
    width: 100%;
    height: 110px;
    background: rgba(44, 212, 188, 0.02);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
    color: #2cd4bc;
    margin-bottom: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.02);
}
.hero-product-card .hp-name {
    font-weight: 700;
    font-size: 0.9rem;
}
.hero-product-card .hp-price {
    font-size: 0.8rem;
    color: #6ad4c0;
    font-weight: 600;
}
.hero-product-card .hp-tag {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    font-size: 0.55rem;
    background: rgba(44, 212, 188, 0.08);
    padding: 0.1rem 0.7rem;
    border-radius: 30px;
    color: #2cd4bc;
    font-weight: 600;
}

/* ===== BRAND LOGOS STRIP ===== */
.brand-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.brand-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    transition: 0.2s;
    cursor: default;
    padding: 0.4rem 1rem;
    border-radius: 12px;
}
.brand-logo-item:hover {
    background: rgba(44, 212, 188, 0.02);
    transform: translateY(-3px);
}
.brand-logo-item .bl-icon {
    font-size: 2rem;
    color: #3a5068;
}
.brand-logo-item .bl-name {
    font-size: 0.7rem;
    color: #5a7088;
    font-weight: 600;
}
.brand-logo-item .bl-count {
    font-size: 0.55rem;
    color: #3a5068;
}

/* ===== CATEGORIES ===== */
.category-grid-proper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.2rem;
    margin: 1.8rem 0 3rem;
}

.cat-proper {
    background: rgba(12, 18, 30, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 1.6rem 0.6rem;
    text-align: center;
    transition: 0.25s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.cat-proper:hover {
    background: rgba(44, 212, 188, 0.03);
    border-color: rgba(44, 212, 188, 0.06);
    transform: translateY(-4px);
}

.cat-proper .cp-icon {
    font-size: 2.4rem;
    color: #2cd4bc;
    margin-bottom: 0.4rem;
    display: block;
}

.cat-proper .cp-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: #eef3f8;
}

.cat-proper .cp-count {
    font-size: 0.6rem;
    color: #4d637d;
}

/* ===== FLASH DEALS ===== */
.flash-deals {
    background: linear-gradient(135deg, rgba(44, 212, 188, 0.02), rgba(44, 212, 188, 0.005));
    border: 1px solid rgba(44, 212, 188, 0.03);
    border-radius: 40px;
    padding: 2.5rem 2rem;
    margin: 2rem 0 3.5rem;
}

.flash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.8rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.flash-header .timer {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #2cd4bc;
    font-weight: 700;
    font-size: 0.95rem;
}
.flash-header .timer .time-box {
    background: rgba(44, 212, 188, 0.04);
    border: 1px solid rgba(44, 212, 188, 0.06);
    border-radius: 8px;
    padding: 0.2rem 0.6rem;
    font-size: 1.2rem;
}

.flash-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.flash-card {
    background: rgba(8, 14, 24, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    padding: 1.6rem 1.2rem;
    text-align: center;
    transition: 0.3s;
    position: relative;
}
.flash-card:hover {
    background: rgba(16, 28, 44, 0.5);
    transform: translateY(-6px);
    border-color: rgba(44, 212, 188, 0.04);
}
.flash-card .fc-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 0.6rem;
    background: rgba(44, 212, 188, 0.02);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    color: #2cd4bc;
    border: 1px solid rgba(255, 255, 255, 0.02);
}
.flash-card .fc-discount {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    font-size: 0.6rem;
    font-weight: 700;
    background: rgba(44, 212, 188, 0.1);
    padding: 0.1rem 0.8rem;
    border-radius: 30px;
    color: #2cd4bc;
}
.flash-card .fc-name {
    font-weight: 700;
    font-size: 0.9rem;
}
.flash-card .fc-price {
    font-weight: 700;
    font-size: 1.2rem;
    color: #2cd4bc;
}
.flash-card .fc-old {
    font-size: 0.7rem;
    color: #5a7088;
    text-decoration: line-through;
}

/* ===== NEW PRODUCTS ===== */
.new-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    margin: 1.8rem 0 3.5rem;
}

.new-product-card {
    background: rgba(8, 14, 24, 0.3);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 28px;
    padding: 1.8rem 1.2rem 1.4rem;
    transition: 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    border-bottom: 3px solid transparent;
}
.new-product-card:hover {
    background: rgba(16, 28, 44, 0.6);
    transform: translateY(-8px);
    box-shadow: 0 24px 56px -24px rgba(0, 0, 0, 0.8);
    border-bottom-color: #2cd4bc;
}
.new-product-card .np-image {
    width: 100%;
    height: 120px;
    background: rgba(44, 212, 188, 0.02);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
    color: #2cd4bc;
    margin-bottom: 0.4rem;
    border: 1px solid rgba(255, 255, 255, 0.02);
}
.new-product-card .np-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.55rem;
    font-weight: 600;
    background: rgba(44, 212, 188, 0.06);
    padding: 0.1rem 0.8rem;
    border-radius: 30px;
    color: #2cd4bc;
    border: 1px solid rgba(44, 212, 188, 0.04);
}
.new-product-card .np-name {
    font-weight: 700;
    font-size: 0.95rem;
}
.new-product-card .np-price {
    font-weight: 700;
    font-size: 1.2rem;
    color: #2cd4bc;
}
.new-product-card .np-install {
    font-size: 0.7rem;
    color: #6a7e98;
}
.new-product-card .np-install i {
    color: #2cd4bc;
    margin-left: 4px;
}
.new-product-card .np-rating {
    font-size: 0.7rem;
    color: #f5b342;
    margin-top: 0.2rem;
}

/* ===== PRODUCT GRID ===== */
.product-grid-photo {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    margin: 1.8rem 0 3rem;
}

.product-photo-card {
    background: rgba(8, 14, 24, 0.3);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 28px;
    padding: 1.8rem 1.2rem 1.4rem;
    transition: 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.product-photo-card:hover {
    background: rgba(16, 28, 44, 0.6);
    transform: translateY(-8px);
    box-shadow: 0 24px 56px -24px rgba(0, 0, 0, 0.8);
    border-color: rgba(44, 212, 188, 0.04);
}
.product-photo-card .pp-image {
    width: 100%;
    height: 120px;
    background: rgba(44, 212, 188, 0.02);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
    color: #2cd4bc;
    margin-bottom: 0.4rem;
    border: 1px solid rgba(255, 255, 255, 0.02);
}
.product-photo-card .pp-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.55rem;
    font-weight: 600;
    background: rgba(44, 212, 188, 0.06);
    padding: 0.1rem 0.8rem;
    border-radius: 30px;
    color: #2cd4bc;
    border: 1px solid rgba(44, 212, 188, 0.04);
}
.product-photo-card .pp-name {
    font-weight: 700;
    font-size: 0.95rem;
}
.product-photo-card .pp-price {
    font-weight: 700;
    font-size: 1.2rem;
    color: #2cd4bc;
}
.product-photo-card .pp-install {
    font-size: 0.7rem;
    color: #6a7e98;
}
.product-photo-card .pp-install i {
    color: #2cd4bc;
    margin-left: 4px;
}
.product-photo-card .pp-rating {
    font-size: 0.7rem;
    color: #f5b342;
    margin-top: 0.2rem;
}

/* ===== INSTALLATION SERVICES ===== */
.installation-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0 3.5rem;
}

.install-card {
    background: rgba(8, 14, 24, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    padding: 1.8rem 1.2rem;
    text-align: center;
    transition: 0.3s;
}
.install-card:hover {
    background: rgba(16, 28, 44, 0.5);
    transform: translateY(-6px);
    border-color: rgba(44, 212, 188, 0.04);
}
.install-card .ic-icon {
    font-size: 2.8rem;
    color: #2cd4bc;
    margin-bottom: 0.6rem;
}
.install-card .ic-title {
    font-weight: 700;
    font-size: 1rem;
}
.install-card .ic-desc {
    font-size: 0.8rem;
    color: #889eb6;
    margin: 0.4rem 0 0.8rem;
}
.install-card .ic-price {
    font-weight: 600;
    color: #2cd4bc;
    font-size: 0.9rem;
}

/* ===== CUSTOMER REVIEWS ===== */
.reviews-section {
    background: linear-gradient(135deg, rgba(44, 212, 188, 0.02), rgba(44, 212, 188, 0.005));
    border: 1px solid rgba(44, 212, 188, 0.03);
    border-radius: 40px;
    padding: 2.5rem 2rem;
    margin: 2rem 0 3.5rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.review-card {
    background: rgba(8, 14, 24, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    padding: 1.8rem;
    transition: 0.3s;
}
.review-card:hover {
    background: rgba(16, 28, 44, 0.5);
    transform: translateY(-4px);
    border-color: rgba(44, 212, 188, 0.04);
}
.review-card .rc-stars {
    color: #f5b342;
    font-size: 0.8rem;
    margin-bottom: 0.6rem;
}
.review-card .rc-text {
    font-size: 0.9rem;
    color: #b0c4d8;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}
.review-card .rc-user {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.review-card .rc-user .rc-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(44, 212, 188, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #2cd4bc;
}
.review-card .rc-user .rc-name {
    font-weight: 600;
    font-size: 0.85rem;
}
.review-card .rc-user .rc-date {
    font-size: 0.65rem;
    color: #5a7088;
}

/* ===== TRENDING ARTICLES / BLOG ===== */
.trending-articles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin: 2rem 0 3.5rem;
}

.article-card {
    background: rgba(8, 14, 24, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 28px;
    padding: 1.8rem;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}
.article-card:hover {
    background: rgba(16, 28, 44, 0.5);
    transform: translateY(-6px);
    border-color: rgba(44, 212, 188, 0.04);
}
.article-card .ac-image {
    width: 100%;
    height: 140px;
    background: rgba(44, 212, 188, 0.02);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.6rem;
    color: #2cd4bc;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.02);
}
.article-card .ac-tag {
    display: inline-block;
    font-size: 0.55rem;
    font-weight: 600;
    background: rgba(44, 212, 188, 0.06);
    padding: 0.1rem 0.8rem;
    border-radius: 30px;
    color: #2cd4bc;
    border: 1px solid rgba(44, 212, 188, 0.04);
    margin-bottom: 0.6rem;
}
.article-card .ac-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}
.article-card .ac-desc {
    font-size: 0.85rem;
    color: #889eb6;
    line-height: 1.6;
}
.article-card .ac-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 0.8rem;
    font-size: 0.7rem;
    color: #5a7088;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    margin: 2rem 0 2.5rem;
}

.service-card {
    text-align: center;
    padding: 1.2rem 0.6rem;
    background: rgba(8, 14, 24, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    transition: 0.3s;
}
.service-card:hover {
    background: rgba(44, 212, 188, 0.02);
    transform: translateY(-4px);
    border-color: rgba(44, 212, 188, 0.04);
}
.service-card i {
    font-size: 2.6rem;
    color: #2cd4bc;
    margin-bottom: 0.6rem;
}
.service-card .s-title {
    font-weight: 700;
    font-size: 0.95rem;
}
.service-card .s-desc {
    font-size: 0.8rem;
    color: #6a7e98;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, rgba(44, 212, 188, 0.04), rgba(44, 212, 188, 0.005));
    border: 1px solid rgba(44, 212, 188, 0.04);
    border-radius: 40px;
    padding: 3.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 1.5rem 0 2.5rem;
}
.cta-banner .cta-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
}
.cta-banner .cta-text p {
    color: #889eb6;
    font-size: 0.95rem;
}

/* ===== FOOTER ===== */
.footer {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding: 3.5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    margin-top: 1.5rem;
}
.footer .col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #c8d8e8;
}
.footer .col p,
.footer .col a {
    color: #5a7088;
    font-size: 0.85rem;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: 0.2s;
}
.footer .col a:hover {
    color: #2cd4bc;
}
.footer .col .social {
    display: flex;
    gap: 1rem;
    margin-top: 0.6rem;
}
.footer .col .social i {
    font-size: 1.2rem;
    color: #3a5068;
    transition: 0.2s;
    cursor: pointer;
}
.footer .col .social i:hover {
    color: #2cd4bc;
}
.footer-bottom {
    text-align: center;
    padding: 1.2rem 0 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    color: #3a5068;
    font-size: 0.8rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .hero-hybrid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .flash-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .category-grid-proper {
        grid-template-columns: repeat(3, 1fr);
    }
    .new-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-grid-photo {
        grid-template-columns: repeat(2, 1fr);
    }
    .trending-articles {
        grid-template-columns: repeat(2, 1fr);
    }
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .installation-services {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer {
        grid-template-columns: 1fr 1fr;
    }
    .brand-strip {
        justify-content: center;
    }
}

@media (max-width: 820px) {
    .header {
        border-radius: 40px;
        padding: 0.4rem 1.2rem;
        top: 0.6rem;
    }
    .nav-menu {
        display: none;
    }
    .container {
        padding: 0 1.2rem;
    }
    .hero-left h1 {
        font-size: 3.4rem;
    }
    .hero-showcase {
        grid-template-columns: 1fr 1fr;
    }
    .flash-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 540px) {
    .hero-left h1 {
        font-size: 2.6rem;
    }
    .hero-left p {
        font-size: 1rem;
        line-height: 1.8;
    }
    .hero-showcase {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }
    .hero-product-card .product-image {
        height: 70px;
        font-size: 2rem;
    }
    .flash-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .category-grid-proper {
        grid-template-columns: repeat(2, 1fr);
    }
    .new-products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .new-product-card .np-image {
        height: 80px;
        font-size: 2.4rem;
    }
    .product-grid-photo {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .product-photo-card .pp-image {
        height: 80px;
        font-size: 2.4rem;
    }
    .trending-articles {
        grid-template-columns: 1fr;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .installation-services {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .hero-stats {
        gap: 1.8rem;
        flex-wrap: wrap;
    }
    .footer {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .cta-banner {
        padding: 2rem 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    .brand-logo-item .bl-icon {
        font-size: 1.4rem;
    }
    .reviews-section {
        padding: 1.5rem 1rem;
    }
}

/* Add to your style.css */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 180px;
    background: rgba(8, 14, 24, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 0.5rem;
    margin-top: 0.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1rem;
    color: #c8d8e8;
    font-size: 0.85rem;
    border-radius: 12px;
    transition: 0.2s;
}

.dropdown-menu a:hover {
    background: rgba(44, 212, 188, 0.06);
    color: #2cd4bc;
}

.dropdown-menu form button:hover {
    background: rgba(231, 76, 60, 0.06);
}

.warning-pending {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.08), rgba(52, 152, 219, 0.02));
    border: 1px solid rgba(52, 152, 219, 0.12);
}

.warning-pending i {
    color: #3498db;
}

.warning-pending strong {
    color: #3498db;
}

.warning-rejected {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.08), rgba(231, 76, 60, 0.02));
    border: 1px solid rgba(231, 76, 60, 0.12);
}

.warning-rejected i {
    color: #e74c3c;
}

.warning-rejected strong {
    color: #e74c3c;
}

.recent-order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.recent-order-item:last-child {
    border-bottom: none;
}

.recent-order-item .order-number {
    font-weight: 700;
    color: #2cd4bc;
    font-size: 0.85rem;
}

.recent-order-item .order-date {
    font-size: 0.7rem;
    color: #889eb6;
    margin-right: 0.5rem;
}

.recent-order-item .order-status {
    padding: 0.1rem 0.6rem;
    border-radius: 30px;
    font-size: 0.65rem;
    font-weight: 600;
}

.recent-order-item .order-amount {
    font-weight: 600;
    color: #eef3f8;
    font-size: 0.85rem;
    margin-right: 0.5rem;
}

.status-warning { background: rgba(243, 156, 18, 0.08); color: #f39c12; }
.status-info { background: rgba(52, 152, 219, 0.08); color: #3498db; }
.status-primary { background: rgba(44, 212, 188, 0.08); color: #2cd4bc; }
.status-success { background: rgba(46, 204, 113, 0.08); color: #2ecc71; }
.status-danger { background: rgba(231, 76, 60, 0.08); color: #e74c3c; }
.status-secondary { background: rgba(255, 255, 255, 0.04); color: #889eb6; }
