/*
Theme Name: semtec
Author: ....
Version: 1.0
*/
section{
	 padding: 10 30px;
	display:block;
}
.container{
	max-width:1370px; display:block;margin:auto;
}
.card {
	background:#fff,
}

.card-text{
	padding:30px;
	background:#fff
}

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



body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f3f3f3;
    color: #222;
    line-height: 1.4;
}

/* ============================
   TOP BAR
   ============================ */
.top-bar {
    background: #f5f5f5;
    padding: 6px 30px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #444;
}

.top-bar .right a,
.top-bar .right span {
    margin-left: 18px;
    color: #444;
    text-decoration: none;
}

.top-bar a:hover {
    text-decoration: underline;
}

/* ============================
   MAIN HEADER
   ============================ */
.main-header {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 15px 30px;
    border-bottom: 1px solid #e0e0e0;
}

.logo img {
    height: 48px;
    width: auto;
}

/* SEARCH BAR */
.search-area {
   
    align-items: center;
    flex: 1;
    margin: 0 40px;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    overflow: hidden;
}

.search-area select {
    border: none;
    background: #f7f7f7;
    padding: 12px 14px;
    border-right: 1px solid #ddd;
    font-size: 14px;
    outline: none;
}

.search-area input {
    flex: 1;
    padding: 12px 14px;
    border: none;
    outline: none;
    font-size: 15px;
}

.search-area button {
    background: #0066ff;
    border: none;
    padding: 0 22px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.search-area button:hover {
    background: #0052cc;
}

.product-search-form {
    display: flex;
    gap: 10px;
}

/* RIGHT ICONS */
.icons {
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: 17px;
}

.icons span {
    cursor: pointer;
}

/* QUICK QUOTE BUTTON */
.quote-btn {
    background: #0066ff;
    padding: 16px 24px;
    color: #fff !important;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
}

.quote-btn:hover {
    background: #0052cc;
}

/* ============================
   NAVIGATION MENU (BLUE BAR)
   ============================ */
.nav {
    background: #060033;
    padding: 0 30px;
	display: flex;
    justify-content: space-between;
}

.nav ul {
    list-style: none;
    display: flex;
}

.nav ul li {
    position: relative;
}

.nav ul li a {
    color: #ffffff;
    padding: 16px 20px;
    display: block;
    text-decoration: none;
    font-size: 15px;
}

.nav ul li:hover {
    background: #0a0050;
}

/* ============================
   MEGA DROPDOWN MENU (LIKE SCREENSHOT)
   ============================ */

.nav ul li ul {
    display: none;
    position: absolute;
    left: 0;
    top: 56px;
    width: 260px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    z-index: 999;
    padding: 10px 0;
}

.nav ul li ul li {
    width: 100%;
}

.nav ul li ul li a {
    padding: 12px 18px;
    color: #222 !important;
    border-bottom: 1px solid #eee;
}

.nav ul li ul li:last-child a {
    border-bottom: none;
}

.nav ul li ul li a:hover {
    background: #f5f5f5;
    color: #000;
}

.nav ul li:hover > ul {
    display: block;
}

/* ============================
   MOBILE RESPONSIVE
   ============================ */

@media (max-width: 900px) {
    .main-header {
        flex-wrap: wrap;
    }

    .search-area {
        margin: 15px 0;
        order: 3;
        width: 100%;
    }

    .icons {
        order: 2;
        margin-left: auto;
        gap: 15px;
    }

    .quote-btn {
        order: 4;
        width: 100%;
        text-align: center;
        margin: 15px 0 0 0;
    }

    .nav ul {
        flex-direction: column;
    }

    .nav ul li {
        width: 100%;
    }

    .nav ul li ul {
        position: static;
        width: 100%;
        box-shadow: none;
    }
}


/* ================================
   FOOTER
==================================*/
#site-footer {
    background: #050335;
    color: #ffffff;
    padding-top: 20px;
    font-family: Arial, sans-serif;
}

.back-to-top {
    text-align: center;
    padding: 10px 0;
    background: #27204e;
}

.back-to-top a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

.footer-widgets {
    max-width: 1300px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    padding: 0 20px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-column p, 
.footer-column ul li {
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column a {
    color: #ffffff;
    text-decoration: none;
}

.footer-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social a {
    font-size: 22px;
    margin-right: 15px;
    color: #ffffff;
    text-decoration: none;
}

hr {
    border: 0;
    height: 1px;
    background: #7a74a3;
    margin-top: 40px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-widgets {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-social {
        justify-content: center;
    }
}


/* Product page custom styles */
.single-product-wrapper { background:#fff; padding:20px; }
.product-main { display:flex; gap: 30px; align-items:flex-start; }
.left-gallery { width: 45%; }
.left-gallery .thumbs { display:flex; flex-direction:column; gap:12px; margin-bottom:15px; width: 100px; }
.left-gallery .small-thumb { width: 100px; height: 100px; object-fit:contain; border:1px solid #eee; padding:6px; background:#fff; }
.left-gallery .main-image { width:100%; border:1px solid #eee; padding:10px; background:#fff; }
.left-gallery .main-image img { width:100%; height:auto; object-fit:contain; }

/* right column */
.right-info { width: 55%; }
.back-to-cat { display:inline-block; margin-bottom:6px; color:#1a73e8; text-decoration:none; }
.custom-title { font-size:28px; color:#0a0a2a; margin:0 0 10px 0; font-weight:700; }
.prod-meta table { width:100%; border-collapse:collapse; margin-bottom:18px; }
.prod-meta td { padding:8px 6px; vertical-align: top; font-size:15px; }
.meta-label { width:160px; font-weight:600; color:#222; }
.meta-value { color:#333; }

/* price */
.prod-price { margin-bottom:12px; }

/* add to cart area - the standard form outputs select/input/button, style them a bit */
.qty-row { display:flex; gap:12px; align-items:center; flex-wrap:wrap; }
.qty-row .button { padding:10px 22px; border-radius:4px; }
.btn-quote { display:inline-block; padding:10px 22px; background:#0a66ff; color:#fff; border-radius:4px; text-decoration:none; }

/* share */
.share-area { margin-top:18px; }
.share-area img { width:28px; margin-right:8px; }

/* responsive */
@media(max-width: 980px) {
    .product-main { flex-direction: column; }
    .left-gallery, .right-info { width: 100%; }
    .left-gallery .thumbs { flex-direction:row; overflow:auto; width:100%; }
    .left-gallery .small-thumb { width:80px; height:80px; }
}

