    /* 1. Banner Styling */
.slider-wrapper {
    width: 100%;
    overflow: hidden;
}

.item {
    position: relative;
    width: 100%;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    margin: 0;
    z-index: 10;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
}

/* --- Responsive Settings --- */

/* Tablets (992px se niche) */
@media (max-width: 992px) {
    .banner-text {
        font-size: 28px;
        letter-spacing: 1.5px;
    }
}

/* Mobile Devices (768px se niche) */
@media (max-width: 768px) {
    .banner-text {
        font-size: 22px;
        letter-spacing: 1px;
    }
}

/* Small Mobile (480px se niche) */
@media (max-width: 480px) {
    .banner-text {
        font-size: 18px;
        white-space: normal; /* Bahut choti screen par text wrap ho sake */
        line-height: 1.2;
    }
}


/* --- DROPDOWN & HEADER FIX --- */
header,
.navbar,
.nav-container {
    position: relative;
    z-index: 10001 !important;
    /* Slider se zyada hona chahiye */
}

/* --- SLIDER FIX --- */
.inner-slider-wrapper {
    width: 100%;
    position: relative;
    z-index: 1;
    /* Dropdown ko niche na dabaye */
    overflow: hidden;
}

#home-slider .item img {
    width: 100% !important;
    height: auto !important;
    display: block;
    object-fit: cover;
}

/* --- GALLERY STYLING --- */
.rto-gallery-container {
    padding: 1rem 0;
    background: #fcfcfc;
}

.rto-product-link {
    text-decoration: none !important;
    display: block;
    cursor: zoom-in;
    /* Indicates image can be enlarged */
}

.rto-product-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.rto-product-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
    border-color: #e73e17;
}

.rto-product-card img {
    width: 100% !important;
    height: 250px !important;
    object-fit: contain;
    margin-bottom: 15px;
    padding: 10px;
}

.rto-p-name {
    font-weight: 700;
    color: #222;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- POPUP Z-INDEX FIX --- */
.mfp-bg {
    z-index: 20000 !important;
}

.mfp-wrap {
    z-index: 20001 !important;
}

/* Breadcrumb styling */
.breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 20px;
    list-style: none;
    display: flex;
}

.breadcrumb li {
    font-size: 14px;
}

.breadcrumb li a {
    color: #e73e17;
    text-decoration: none;
}

.breadcrumb li+li:before {
    content: "/";
    padding: 0 10px;
    color: #ccc;
}