/* ===== INTEX JORDAN HOMEPAGE STYLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body.intex-homepage {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: #fff;
    color: #333;
    overflow-x: hidden;
}

/* ===== HEADER ===== */
.ih-header {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.ih-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    height: 75px;
    gap: 20px;
}
.ih-logo img {
    height: 50px;
    width: auto;
    display: block;
}
.ih-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.ih-nav a {
    text-decoration: none;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 28px 16px;
    display: block;
    transition: color 0.2s;
    white-space: nowrap;
}
.ih-nav a:hover { color: #00B5D8; }
.ih-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.ih-search-form {
    display: flex;
    align-items: center;
    border: 1.5px solid #ddd;
    border-radius: 20px;
    overflow: hidden;
    height: 36px;
}
.ih-search-form input {
    border: none;
    outline: none;
    padding: 0 12px;
    font-size: 13px;
    width: 160px;
    background: transparent;
}
.ih-search-form button {
    background: none;
    border: none;
    padding: 0 10px;
    cursor: pointer;
    color: #666;
    font-size: 15px;
}
.ih-cart-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border: 1.5px solid #ddd;
    border-radius: 20px;
    transition: all 0.2s;
}
.ih-cart-btn:hover { border-color: #00B5D8; color: #00B5D8; }
.ih-cart-icon { font-size: 16px; }
.ih-contact-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    background: #00B5D8;
    border-radius: 20px;
    white-space: nowrap;
    transition: background 0.2s;
}
.ih-contact-btn:hover { background: #0095b5; }

/* ===== HERO SLIDER ===== */
.ih-hero {
    position: relative;
    width: 100%;
    height: 460px;
    overflow: hidden;
    background: #1a2b4a;
}
.ih-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 0.7s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}
.ih-slide.active { opacity: 1; }
.ih-slide-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, transparent 100%);
}
.ih-slide-content {
    position: relative;
    z-index: 2;
    padding: 0 60px;
    max-width: 520px;
    color: #fff;
}
.ih-slide-tag {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00E5FF;
    margin-bottom: 10px;
    display: block;
}
.ih-slide-title {
    font-size: 46px;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 14px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.ih-slide-title span { color: #00E5FF; }
.ih-slide-desc {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 24px;
    opacity: 0.9;
}
.ih-slide-btn {
    display: inline-block;
    background: #00B5D8;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 13px 32px;
    border-radius: 4px;
    transition: background 0.2s, transform 0.2s;
}
.ih-slide-btn:hover { background: #0095b5; transform: translateY(-1px); }

/* Slider Controls */
.ih-slider-prev, .ih-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
    width: 44px; height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    backdrop-filter: blur(4px);
}
.ih-slider-prev { left: 20px; }
.ih-slider-next { right: 20px; }
.ih-slider-prev:hover, .ih-slider-next:hover { background: rgba(0,181,216,0.7); border-color: #00B5D8; }

.ih-slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.ih-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    border: none;
}
.ih-dot.active { background: #fff; transform: scale(1.2); }

/* ===== CATEGORY GRID ===== */
.ih-categories {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}
.ih-section-title {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #999;
    margin-bottom: 24px;
}
.ih-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.ih-cat-tile {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 4/3;
    display: block;
    text-decoration: none;
    cursor: pointer;
}
.ih-cat-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.ih-cat-tile:hover img { transform: scale(1.05); }
.ih-cat-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(0, 181, 216, 0.88);
    color: #fff;
    text-align: center;
    padding: 12px 10px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.2s;
}
.ih-cat-tile:hover .ih-cat-label { background: rgba(0, 149, 181, 0.95); }

/* ===== BANNER ===== */
.ih-banner {
    width: 100%;
    position: relative;
    height: 320px;
    overflow: hidden;
    margin: 20px 0;
}
.ih-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ih-banner-content {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    text-align: right;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.ih-banner-title {
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 10px;
}
.ih-banner-sub {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}
.ih-banner-btn {
    display: inline-block;
    background: #00B5D8;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 11px 28px;
    border-radius: 3px;
    transition: background 0.2s;
}
.ih-banner-btn:hover { background: #0095b5; }

/* ===== FEATURED PRODUCTS ===== */
.ih-products-section {
    max-width: 1200px;
    margin: 40px auto 60px;
    padding: 0 20px;
}
.ih-products-title {
    text-align: center;
    font-size: 26px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a2b4a;
    margin-bottom: 8px;
}
.ih-products-divider {
    width: 60px;
    height: 3px;
    background: #00B5D8;
    margin: 0 auto 32px;
    border-radius: 2px;
}
.ih-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.ih-product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    text-decoration: none;
    color: #333;
    display: block;
}
.ih-product-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}
.ih-product-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    display: block;
    padding: 16px;
    background: #fafafa;
}
.ih-product-info {
    padding: 14px 16px;
}
.ih-product-name {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.4;
    margin-bottom: 8px;
    color: #1a2b4a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ih-product-price {
    font-size: 16px;
    font-weight: 700;
    color: #00B5D8;
}
.ih-product-price span {
    font-size: 11px;
    color: #999;
    font-weight: 400;
    margin-left: 4px;
}
.ih-add-to-cart {
    display: block;
    width: 100%;
    background: #1a2b4a;
    color: #fff;
    border: none;
    padding: 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    text-align: center;
}
.ih-add-to-cart:hover { background: #00B5D8; }

/* ===== CONTACT BAR ===== */
.ih-contact-bar {
    background: #1a2b4a;
    color: #fff;
    padding: 20px;
    text-align: center;
}
.ih-contact-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.ih-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
.ih-contact-item-icon {
    font-size: 20px;
    color: #00B5D8;
}
.ih-contact-item strong { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: #00B5D8; }
.ih-contact-item span { font-size: 15px; font-weight: 600; }

/* ===== FOOTER ===== */
.ih-footer {
    background: #111;
    color: #ccc;
    padding: 50px 20px 30px;
}
.ih-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.ih-footer-brand img {
    height: 45px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}
.ih-footer-brand p {
    font-size: 13px;
    line-height: 1.7;
    color: #aaa;
    max-width: 260px;
}
.ih-footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 16px;
}
.ih-footer-col ul { list-style: none; }
.ih-footer-col ul li { margin-bottom: 8px; }
.ih-footer-col ul li a {
    text-decoration: none;
    color: #aaa;
    font-size: 13px;
    transition: color 0.2s;
}
.ih-footer-col ul li a:hover { color: #00B5D8; }
.ih-footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.ih-footer-bottom p { font-size: 12px; color: #666; }
.ih-footer-bottom a { color: #666; text-decoration: none; }
.ih-footer-bottom a:hover { color: #00B5D8; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .ih-cat-grid { grid-template-columns: repeat(2, 1fr); }
    .ih-products-grid { grid-template-columns: repeat(2, 1fr); }
    .ih-footer-inner { grid-template-columns: 1fr 1fr; }
    .ih-slide-title { font-size: 32px; }
    .ih-nav { display: none; }
}
@media (max-width: 600px) {
    .ih-hero { height: 320px; }
    .ih-slide-content { padding: 0 30px; }
    .ih-slide-title { font-size: 26px; }
    .ih-products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .ih-footer-inner { grid-template-columns: 1fr; }
    .ih-banner-title { font-size: 24px; }
    .ih-search-form input { width: 100px; }
}
