
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f7f7f7;
    color: #222;
}

.header {
    background: #ffffff;
    padding: 20px;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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


.footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    background: #ffffff;
    border-top: 1px solid #ddd;
}

/* HERO SLIDER */

.hero {
    width: 100%;
    max-width: 1400px;
    margin: 40px auto;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    background: transparent;
}

.slide {
    display: none;
    position: relative;
}

.slide.active {
    display: block;
}


.slide img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

.slide-title {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(255,255,255,0.9);
    color: #000;
    padding: 12px 18px;
    font-size: 20px;
    border-radius: 4px;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.45);
    color: white;
    padding: 14px 18px;
    cursor: pointer;
    font-size: 26px;
    border-radius: 4px;
    user-select: none;
    z-index: 20;
}

.arrow-left {
    left: 10px;
}

.arrow-right {
    right: 10px;
}

.dots {
    text-align: center;
    margin-top: 10px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background: #bbb;
    border-radius: 50%;
    display: inline-block;
}

.dot.active {
    background: #333;
}


.home-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.product-grid {
    max-width: 1400px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 0 20px;
}

.hover-card {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    background: #fff;
    text-decoration: none;
    color: white;
}


.hover-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    background: #fff;
}


.hover-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.65);
    color: white;
    padding: 14px;
    text-align: center;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.hover-card:hover .overlay {
    opacity: 1;
}

.page {
    max-width: 1400px;
    margin: 40px auto;
    padding: 40px 20px;
    background: white;
    border-radius: 6px;
}


.intro {
    margin-bottom: 30px;
    font-size: 16px;
}

.quote-form,
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quote-form input,
.contact-form input,
.quote-form textarea,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
}

.quote-form textarea,
.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.quote-form button,
.contact-form button {
    padding: 14px;
    background: #005bbb;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.quote-form button:hover,
.contact-form button:hover {
    background: #004999;
}

.quote-form select,
.contact-form select {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    background: white;
}

.contact-info {
    margin-top: 40px;
    font-size: 15px;
}

.note {
    font-size: 14px;
    color: #555;
    margin-top: -10px;
    margin-bottom: 10px;
}

.consumables-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.consumable-item {
    display: flex;
    gap: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

.consumable-item:hover {
    background: #f7f7f7;
}

.consumable-item img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 4px;
}

.consumable-item .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.consumable-item .price {
    margin-top: 8px;
    font-weight: bold;
    color: #333;
}


.cart-page {
    max-width: 800px;
    margin: auto;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.cart-item {
    display: flex;
    gap: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.cart-item img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-size: 18px;
    font-weight: bold;
}

.cart-item-price {
    margin-top: 5px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.cart-item-controls button {
    padding: 5px 10px;
    cursor: pointer;
}

.cart-summary {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 30px;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkout-form input {
    padding: 10px;
    font-size: 16px;
}

.checkout-form button {
    padding: 12px;
    font-size: 16px;
    cursor: pointer;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.cart-icon svg {
    width: 28px;
    height: 28px;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: black;
    color: white;
    font-size: 12px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-container {
    max-width: 1400px;
    margin: 50px auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: start;
}

.product-left {
    width: 100%;
}

.product-right {
    width: 100%;
    text-align: left;
}

.product-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-price {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}

.product-intro {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.carousel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.carousel img {
    width: 100%;
    border-radius: 8px;
}

.product-buttons {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.product-buttons button {
    padding: 14px 28px;
    font-size: 17px;
    background: #005bbb;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.product-buttons button:hover {
    background: #004999;
}

.product-section-wide {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 30px;
}

.product-section-wide h2 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
}

.product-description {
    font-size: 18px;
    line-height: 1.75;
}

.feature-list,
.options-list {
    font-size: 18px;
    line-height: 1.75;
    padding-left: 20px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 18px;
}

.specs-table td {
    border-bottom: 1px solid #ddd;
    padding: 12px 6px;
}

@media (max-width: 900px) {
    .product-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.consumables-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    width: 100%;
    margin-top: 30px;
}

.consumable-item {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: black;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.consumable-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.consumable-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.consumable-item .info {
    padding: 15px 20px;
}

.consumable-item h3 {
    margin: 0 0 8px;
    font-size: 1.2rem;
}

.consumable-item p {
    margin: 0 0 12px;
    font-size: 0.95rem;
    color: #444;
}

.consumable-item .price {
    font-weight: bold;
    font-size: 1rem;
    color: #222;
}


.spacer-row td {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

#place-order {
    background: #007bff;
    color: #fff;
    padding: 10px 18px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#place-order:hover {
    background: #005fcc;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-links-left {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 40px;
}

.nav-links-left a {
    font-size: 15px;
    padding: 8px 12px;
    line-height: 1;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropbtn {
    font-size: 15px;
    padding: 8px 12px;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-width: 240px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    z-index: 999;
}

.dropdown-content a {
    display: block;
    padding: 10px 14px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.dropdown-content a:hover {
    background: #f2f2f2;
}

.dropdown.show .dropdown-content {
    display: block;
}

.dropdown:last-child .dropdown-content {
    left: auto;
    right: 0;
}

.footer a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    margin-right: 6px;
}

.footer a:hover {
    text-decoration: underline;
}

.pdf-link {
    font-weight: 600;
    color: #000000;
    text-decoration: none;
}

.pdf-link:hover {
    text-decoration: underline;
}

.product-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.product-left {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.product-right {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

#carousel img {
    width: 100%;
    height: auto;
    display: block;
}

.option-text-card {
    font-size: 16px;
    margin: 6px 0;
}

body.product-heated-inlet #carousel img {
    max-width: 500px;
    height: auto;
    margin: 0 auto;
}

#primary-action {
    background: #000;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
}

#primary-action:hover {
    background: #222;
}

.submit-quote-btn {
    background: #000;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}
.submit-quote-btn:hover {
    background: #222;
}

.send-message-btn {
    background: #000;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}
.send-message-btn:hover {
    background: #222;
}

.place-order-btn {
    background: #000;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}
.place-order-btn:hover {
    background: #222;
}

button.send-message-btn,
button.submit-quote-btn {
    background: #000 !important;
    color: #fff !important;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

button.send-message-btn:hover,
button.submit-quote-btn:hover {
    background: #222 !important;
}

#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    border: none;
    font-size: 22px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#back-to-top:hover {
    background: #222;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.55;
    font-weight: 400;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

h1 {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

h2 {
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

p {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 1rem;
}

#sizeSelect {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}

#sizeSelect {
    width: 220px; 
    max-width: 100%;
}

.quote-badge {
    background: black;
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 12px;
    margin-left: 6px;
    display: none;
}

.popup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #111;
    color: #fff;
    padding: 14px 20px;
    border-radius: 6px;
    font-size: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.popup.show {
    opacity: 1;
    transform: translateY(0);
}

.hidden {
    display: none;
}

.error-message {
    color: #d00;
    font-size: 0.85rem;
    margin-top: 4px;
    display: none;
}

.invalid {
    border-color: #d00 !important;
}

input.invalid, select.invalid, textarea.invalid {
    border-color: #d00 !important;
}

#q-country {
    width: 300px;
}

.hamburger {
    display: none;
}

.hamburger {
    position: relative;
    z-index: 9999;
}

.mobile-menu {
    display: none;
}

.mobile-nav {
    display: none;
}

.header {
    position: relative;
    z-index: 9999;
}

body {
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

html { visibility: visible; }




