*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } /* ═══════════════════════════════════ BREADCRUMB ═══════════════════════════════════ */ .SC-Breadcrumb { background: var(--white); border-bottom: 1px solid var(--border); padding: 9px 0; font-size: 12px; color: var(--muted); } .SC-Breadcrumb .SC-W { display: flex; align-items: center; gap: 5px; flex-wrap: wrap; } .SC-Breadcrumb a { color: var(--blue); text-decoration: none; font-weight: 500; } .SC-Breadcrumb a:hover { text-decoration: underline; } .SC-Breadcrumb .sep { color: #c0cad8; } /* ═══════════════════════════════════ WRAPPER ═══════════════════════════════════ */ .SC-W { max-width: 1380px; margin: 0 auto; padding: 0 20px; } @media(max-width:600px) { .SC-W { padding: 0 12px; } } /* ═══════════════════════════════════ TITLE BAR ═══════════════════════════════════ */ .SC-TitleBar { background: var(--white); border-bottom: 1px solid var(--border); padding: 15px 0 11px; } .SC-TitleBar h1 { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 3px; } .SC-TitleBar p { font-size: 12.5px; color: var(--muted); } @media(max-width:600px) { .SC-TitleBar h1 { font-size: 17px; } .SC-TitleBar p { font-size: 11.5px; } } /* ═══════════════════════════════════ SUBCAT STRIP ═══════════════════════════════════ */ .SC-Strip { background: var(--white); border-bottom: 1px solid var(--border); padding: 12px 0; position: sticky; top: 0; z-index: 30; box-shadow: 0 2px 8px rgba(0, 0, 0, .04); } .SC-StripInner { display: flex; flex-wrap: wrap; gap: 8px; } @media(max-width:767px) { .SC-StripInner { flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 4px; } .SC-StripInner::-webkit-scrollbar { height: 3px; } .SC-StripInner::-webkit-scrollbar-thumb { background: #c0cad8; border-radius: 3px; } } .SC-Tile { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; width: 90px; padding: 9px 6px 7px; border: 1.5px solid var(--border); border-radius: var(--r); cursor: pointer; text-decoration: none; background: var(--white); text-align: center; scroll-snap-align: start; transition: border-color .18s, box-shadow .18s, background .18s; } .SC-Tile:hover { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0, 48, 135, .08); } .SC-Tile.active { border-color: var(--blue); background: var(--blue-lt); box-shadow: 0 0 0 3px rgba(0, 48, 135, .1); } .SC-Tile img { width: 46px; height: 36px; object-fit: contain; margin-bottom: 5px; } .SC-Tile span { font-size: 10.5px; font-weight: 600; color: var(--text); line-height: 1.3; } .SC-Tile.active span { color: var(--blue); } @media(max-width:600px) { .SC-Tile { width: 76px; padding: 7px 4px 6px; } .SC-Tile img { width: 36px; height: 28px; } .SC-Tile span { font-size: 10px; } } /* ═══════════════════════════════════ PAGE BODY ═══════════════════════════════════ */ .SC-Body { display: grid; grid-template-columns: 210px 1fr; gap: 20px; padding: 20px 0 48px; align-items: start; } @media(max-width:900px) { .SC-Body { grid-template-columns: 1fr; gap: 12px; padding: 12px 0 36px; } } /* ═══════════════════════════════════ SIDEBAR — DESKTOP ═══════════════════════════════════ */ .SC-Sidebar { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; position: sticky; top: 58px; box-shadow: var(--sh); } @media(max-width:900px) { .SC-Sidebar { display: none; } } .SC-SideHead { background: var(--blue); color: #fff; font-size: 11.5px; font-weight: 700; padding: 11px 14px; display: flex; justify-content: space-between; align-items: center; letter-spacing: 0.5px; text-transform: uppercase; } .SC-SideHead a { color: rgba(255, 255, 255, .6); font-size: 11px; font-weight: 400; text-decoration: none; } .SC-SideHead a:hover { color: #fff; } .SC-SideSubList { list-style: none; padding: 4px 0; margin: 0; } .SC-SideSubList li { border-bottom: 1px solid #f0f4f8; } .SC-SideSubList li:last-child { border-bottom: none; } .SC-SideSubList li a { display: block; padding: 9px 16px; font-size: 13px; color: #374151; text-decoration: none; border-left: 3px solid transparent; transition: background .15s, color .15s, border-color .15s, padding .12s; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .SC-SideSubList li a:hover { background: #f0f4fb; color: var(--blue); border-left-color: #a0b8e8; padding-left: 20px; } .SC-SideSubList li.active a { background: var(--blue-lt); color: var(--blue); font-weight: 700; border-left-color: var(--blue); padding-left: 20px; } /* ═══════════════════════════════════ BOTTOM SHEET OVERLAY ═══════════════════════════════════ */ .SC-Overlay { display: none; position: fixed; inset: 0; background: rgba(0, 0, 0, .45); z-index: 200; backdrop-filter: blur(2px); } .SC-Overlay.open { display: block; } .SC-BottomSheet { position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); border-radius: 16px 16px 0 0; z-index: 201; transform: translateY(100%); transition: transform .32s cubic-bezier(.4, 0, .2, 1); max-height: 82vh; display: flex; flex-direction: column; box-shadow: 0 -8px 40px rgba(0, 0, 0, .15); } .SC-BottomSheet.open { transform: translateY(0); } .SC-BSHandle { display: flex; justify-content: center; padding: 10px 0 4px; cursor: pointer; flex-shrink: 0; } .SC-BSHandle span { width: 36px; height: 4px; background: #d1d5db; border-radius: 99px; display: block; } .SC-BSHead { display: flex; align-items: center; justify-content: space-between; padding: 8px 20px 12px; border-bottom: 1px solid var(--border); flex-shrink: 0; } .SC-BSHead h4 { font-size: 15px; font-weight: 700; color: var(--text); } .SC-BSHead button { background: none; border: none; font-size: 24px; color: var(--muted); cursor: pointer; line-height: 1; } .SC-BSBody { overflow-y: auto; flex: 1; padding: 6px 0 24px; -webkit-overflow-scrolling: touch; } .SC-BSList { list-style: none; margin: 0; padding: 0; } .SC-BSList li { border-bottom: 1px solid #f4f6f8; } .SC-BSList li:last-child { border-bottom: none; } .SC-BSList li a { display: flex; align-items: center; gap: 12px; padding: 14px 20px; font-size: 14px; color: #374151; text-decoration: none; border-left: 3px solid transparent; transition: background .15s, color .15s; } .SC-BSList li a .bs-dot { width: 8px; height: 8px; border-radius: 50%; background: #d1d5db; flex-shrink: 0; transition: background .15s; } .SC-BSList li a:hover { background: #f5f7ff; color: var(--blue); } .SC-BSList li a:hover .bs-dot { background: var(--blue); } .SC-BSList li.active a { background: var(--blue-lt); color: var(--blue); font-weight: 700; border-left-color: var(--blue); } .SC-BSList li.active a .bs-dot { background: var(--blue); } /* ═══════════════════════════════════ PRODUCTS AREA ═══════════════════════════════════ */ .SC-Products { min-width: 0; display: flex; flex-direction: column; gap: 12px; } /* ── Desktop Sort Bar ── */ .SC-SortBar { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 10px 16px; display: flex; align-items: center; justify-content: space-between; font-size: 13px; flex-wrap: wrap; gap: 8px; box-shadow: var(--sh); } @media(max-width:900px) { .SC-SortBar { display: none; } } .SC-SortBar strong { color: var(--text); } .SC-SortRight { display: flex; align-items: center; gap: 10px; } .SC-SortBar select { border: 1px solid var(--border); padding: 6px 10px; border-radius: 6px; font-size: 12.5px; color: #374151; outline: none; cursor: pointer; background: #fff; } .SC-SortBar select:focus { border-color: var(--blue); } .SC-ViewToggle { display: flex; gap: 3px; } .SC-ViewToggle button { border: 1px solid var(--border); background: var(--white); padding: 6px 11px; border-radius: 6px; cursor: pointer; font-size: 15px; line-height: 1; color: #9aaab8; transition: all .15s; } .SC-ViewToggle button.active { background: var(--blue); color: #fff; border-color: var(--blue); } /* ── Mobile Top Bar ── */ .SC-MobileBar { display: none; background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 10px 12px; align-items: center; justify-content: space-between; gap: 8px; box-shadow: var(--sh); } @media(max-width:900px) { .SC-MobileBar { display: flex; } } .SC-MobLeft { display: flex; align-items: center; gap: 8px; flex: 1; min-width: 0; } .SC-MobLeft strong { font-size: 12.5px; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .SC-MobSort { border: 1px solid var(--border); padding: 7px 8px; border-radius: 6px; font-size: 12px; color: #374151; outline: none; cursor: pointer; background: #fff; max-width: 120px; flex-shrink: 0; } .SC-MobFilterBtn { display: flex; align-items: center; gap: 5px; background: var(--blue); color: #fff; border: none; padding: 8px 14px; border-radius: 6px; font-size: 12.5px; font-weight: 700; cursor: pointer; white-space: nowrap; flex-shrink: 0; } .SC-MobFilterBtn svg { width: 14px; height: 14px; } /* ═══════════════════════════════════ RECOMMENDATION SLIDER (mobile only) ═══════════════════════════════════ */ /* ══ RECOMMENDATION SECTION ══ */ .SC-RecoSection { display: none; background: var(--white); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; box-shadow: var(--sh); margin-bottom: 12px; } @media(max-width:767px) { .SC-RecoSection { display: block; } } .SC-RecoHead { display: flex; align-items: center; justify-content: space-between; padding: 13px 14px 11px; border-bottom: 1px solid var(--border); } .SC-RecoHead h4 { font-size: 14px; font-weight: 700; color: var(--text); display: flex; align-items: center; gap: 6px; margin: 0; } .SC-RecoHead span { font-size: 11px; color: var(--muted); } /* Slider viewport — clips pages */ .SC-RecoViewport { overflow: hidden !important; position: relative; width: 100%; } /* Pages track — slides horizontally via transform */ .SC-RecoTrack { display: flex !important; flex-wrap: nowrap !important; overflow: visible !important; transition: transform .32s cubic-bezier(.4, 0, .2, 1); will-change: transform; } /* Each page = 2-column grid of 4 cards */ .SC-RecoPage { min-width: 100% !important; width: 100% !important; flex-shrink: 0 !important; display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 10px; padding: 12px 12px 14px; box-sizing: border-box !important; } .SC-RecoCard { border: 1px solid var(--border); border-radius: 8px; padding: 10px; background: var(--white); text-decoration: none; display: flex; flex-direction: column; gap: 8px; transition: box-shadow .15s, transform .15s; } .SC-RecoCard:active { transform: scale(.97); box-shadow: 0 4px 14px rgba(0, 48, 135, .12); } .SC-RecoCard-img { width: 100%; aspect-ratio: 1/1; object-fit: contain; background: #f4f7fc; border-radius: 6px; padding: 8px; box-sizing: border-box; display: block; } .SC-RecoCard-img[src=""], .SC-RecoCard-img:not([src]) { background: #eef1f8; } .SC-RecoCard-name { font-size: 11.5px; font-weight: 600; color: var(--text); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; } .SC-RecoCard-opts { font-size: 10.5px; color: var(--muted); } .SC-RecoCard-btn { margin-top: auto; display: block; text-align: center; background: var(--blue); color: #fff; font-size: 10.5px; font-weight: 700; border-radius: 5px; padding: 6px 0; text-decoration: none; } /* Dot indicators */ .SC-RecoDots { display: flex; justify-content: center; gap: 6px; padding: 4px 0 12px; } .SC-RecoDot { width: 8px; height: 8px; border-radius: 50%; background: #d0d8e8; border: none; padding: 0; cursor: pointer; transition: background .2s, transform .2s; } .SC-RecoDot.active { background: var(--blue); transform: scale(1.2); } /* Prev / Next arrow buttons */ .SC-RecoNav { position: absolute; top: 50%; transform: translateY(-50%); width: 30px; height: 30px; border-radius: 50%; background: var(--white); border: 1.5px solid var(--border); box-shadow: 0 2px 8px rgba(0, 0, 0, .12); display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 2; font-size: 14px; color: var(--blue); transition: background .15s; } .SC-RecoNav:active { background: var(--blue-lt); } .SC-RecoNav.prev { left: 6px; } .SC-RecoNav.next { right: 6px; } /* ═══════════════════════════════════ PRODUCT LIST ═══════════════════════════════════ */ .SC-PList { display: flex; flex-direction: column; gap: 10px; } /* Desktop card */ .SC-PRow { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); display: grid; grid-template-columns: 140px 1fr 165px; align-items: center; gap: 18px; padding: 16px 18px; text-decoration: none; box-shadow: var(--sh); transition: box-shadow .2s, border-color .2s, transform .15s; } .SC-PRow:hover { box-shadow: 0 8px 28px rgba(0, 48, 135, .12); border-color: #c0ccde; transform: translateY(-1px); } .SC-PImg a { display: block; text-align: center; } .SC-PImg img { max-width: 110px; max-height: 90px; object-fit: contain; display: block; margin: 0 auto; transition: transform .2s; } .SC-PRow:hover .SC-PImg img { transform: scale(1.05); } .SC-PInfo h3 { font-size: 15px; font-weight: 700; color: var(--blue); margin-bottom: 5px; line-height: 1.35; } .SC-PInfo h3 a { color: inherit; text-decoration: none; } .SC-PInfo h3 a:hover { text-decoration: underline; } .SC-PMeta { font-size: 11.5px; color: var(--muted); margin-bottom: 7px; } .SC-PMeta strong { color: #374151; } .SC-PDesc { font-size: 12.5px; color: var(--muted); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; } .SC-PActions { display: flex; flex-direction: column; gap: 8px; } .SC-BtnView { display: block; padding: 9px 0; background: var(--blue); color: #fff; font-size: 13px; font-weight: 700; border-radius: 6px; text-decoration: none; text-align: center; border: none; cursor: pointer; transition: background .15s; } .SC-BtnView:hover { background: var(--blue2); color: #fff; } .SC-BtnPrice { display: block; padding: 8px 0; background: #fff; color: var(--blue); font-size: 12.5px; font-weight: 700; border-radius: 6px; text-decoration: none; text-align: center; border: 1.5px solid var(--blue); transition: background .15s; } .SC-BtnPrice:hover { background: var(--blue-lt); } /* ── Mobile card overrides ── */ @media(max-width:767px) { /* Fix too many requests by adding lazy loading to images */ img:not([loading]) { content: attr(data-src); } .SC-PList:not(.grid) .SC-PRow { grid-template-columns: 90px 1fr; grid-template-rows: auto auto; gap: 10px; padding: 12px; } .SC-PList:not(.grid) .SC-PActions { grid-column: 1 / -1; flex-direction: row; gap: 8px; } .SC-PList:not(.grid) .SC-BtnView, .SC-PList:not(.grid) .SC-BtnPrice { flex: 1; font-size: 12px; padding: 9px 0; } .SC-PList:not(.grid) .SC-PImg img { max-width: 80px; max-height: 70px; } .SC-PInfo h3 { font-size: 13px; } .SC-PDesc { font-size: 11.5px; } /* Grid on mobile = 2 cols */ .SC-PList.grid { grid-template-columns: repeat(2, 1fr); gap: 8px; } .SC-PList.grid .SC-PRow { padding: 10px; } .SC-PList.grid .SC-PImg img { max-height: 88px; } .SC-PList.grid .SC-PInfo h3 { font-size: 12px; } .SC-PList.grid .SC-BtnView, .SC-PList.grid .SC-BtnPrice { font-size: 11px; padding: 7px 0; } } @media(max-width:420px) { .SC-PList:not(.grid) .SC-PRow { grid-template-columns: 76px 1fr; } .SC-PList.grid { grid-template-columns: 1fr; } } /* Grid view desktop */ .SC-PList.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; } @media(min-width:768px) and (max-width:1100px) { .SC-PList.grid { grid-template-columns: repeat(2, 1fr); } } .SC-PList.grid .SC-PRow { grid-template-columns: 1fr; padding: 14px; } .SC-PList.grid .SC-PImg { padding: 10px 0; border-bottom: 1px solid var(--border); margin-bottom: 10px; } .SC-PList.grid .SC-PImg img { max-height: 110px; max-width: 100%; } .SC-PList.grid .SC-PActions { margin-top: auto; } /* ═══════════════════════════════════ EMPTY STATE ═══════════════════════════════════ */ .SC-Empty { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 48px 20px; text-align: center; color: #9aaab8; font-size: 14px; } .SC-Empty svg { display: block; margin: 0 auto 14px; } /* ═══════════════════════════════════ PAGINATION ═══════════════════════════════════ */ .SC-Pagination { display: flex; align-items: center; justify-content: center; gap: 5px; flex-wrap: wrap; margin-top: 4px; } .SC-Pagination a, .SC-Pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 34px; height: 34px; padding: 0 8px; border: 1px solid var(--border); border-radius: 6px; font-size: 13px; font-weight: 600; text-decoration: none; color: #374151; background: var(--white); cursor: pointer; transition: all .15s; } .SC-Pagination a:hover { background: var(--blue-lt); color: var(--blue); border-color: var(--blue); } .SC-Pagination .pg-active { background: var(--blue); color: #fff; border-color: var(--blue); } .SC-Pagination .pg-disabled { color: #c8d0db; cursor: default; pointer-events: none; background: #f8faff; } .SC-Pagination .pg-dots { border: none; background: transparent; cursor: default; color: #9aaab8; min-width: 20px; } @media(max-width:480px) { .SC-Pagination a, .SC-Pagination span { min-width: 30px; height: 30px; font-size: 12px; } }

Sub Categories

Home mobile terminals in Idukki

mobile terminals in Idukki

Browse our complete range of mobile terminals in Idukki — find the right product for your application.

Loading…
Loading…

Recommended for You

Chat
Support (10:00–19:00 IST, Mon–Sat)
Chat on WhatsApp
Chat
Support (10:00–19:00 IST, Mon–Sat)
Chat on WhatsApp