/* ===== WRAPPER ===== */
.indmall-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 15px;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

/* ===== H1 ===== */
.indmall-h1 {
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
}

.indmall-h1::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #0073e6;
    margin: 10px auto 0;
}

/* 🔥 OVERRIDE GLOBAL P TAG */
.indmall-wrapper p {
    font-size: 16px !important;   /* force override */
    line-height: 1.7 !important;
    color: #5f6b7a !important;
    margin-bottom: 14px !important;
}

/* INTRO FIX */
.indmall-intro p {
    font-size: 16px !important;
    color: #1a1a1a !important;
}

/* ===== H2 ===== */
.indmall-h2 {
    font-size: 24px !important; 
    font-weight: 600;
    color: #0a2540;
    margin: 30px 0 20px;
    border-left: 4px solid #0073e6;
    padding-left: 10px;
}

/* ===== GRID ===== */
.indmall-brand-grid,
.indmall-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ===== CARD ===== */
.im-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 18px;
    text-align: center;

    border: 1px solid #e6eaf0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);

    transition: all 0.3s ease;
}

/* ===== HOVER EFFECT ===== */
.im-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.12);
    border-color: #0073e6;
}

/* ===== LINK RESET ===== */
.im-card a {
    text-decoration: none;
    display: block;
}

/* ===== IMAGE WRAPPER ===== */
.im-card-img {
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== IMAGE ===== */
.im-card-img img {
    max-width: 150px;

    object-fit: contain;
}

/* ===== TITLE ===== */
.im-card-title {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #0a2540;
}

/* ===== HOVER TEXT ===== */
.im-card:hover .im-card-title {
    color: #0073e6;
}

/* ===== MOBILE ===== */
@media (max-width: 992px) {
    .indmall-brand-grid,
    .indmall-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .indmall-brand-grid,
    .indmall-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .indmall-h1 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .indmall-brand-grid,
    .indmall-product-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== GRID ===== */
.indmall-brand-grid,
.indmall-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ===== FULL CLICKABLE LINK ===== */
.im-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

/* ===== CARD ===== */
.im-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 18px;
    text-align: center;

    border: 1px solid #e6eaf0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);

    transition: 0.3s;
}

/* HOVER */
.im-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.12);
    border-color: #0073e6;
}

/* IMAGE */
.im-card-img {
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.im-card-img img {
    max-width: 150px;
    object-fit: contain;
}

/* TITLE */
.im-card-title {
    display: block;
    margin-top: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #0a2540;
}

/* HOVER TEXT */
.im-card:hover .im-card-title {
    color: #0073e6;
}

/* MOBILE */
@media (max-width: 768px) {
    .indmall-brand-grid,
    .indmall-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ===== BREADCRUMB ===== */
.im-breadcrumb {
    font-size: 15px;
    margin-bottom: 15px;
    color: #777;
}

/* LINKS */
.im-breadcrumb a {
    color: #0073e6;
    text-decoration: none;
    font-weight: 500;
}

/* HOVER */
.im-breadcrumb a:hover {
    text-decoration: underline;
}

/* SEPARATOR */
.im-breadcrumb span {
    margin: 0 5px;
}

/* ACTIVE */
.im-breadcrumb .active {
    color: #333;
    font-weight: 600;
}