.highlights-remove {
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.active {
    color: rgb(255, 98, 0);
}

html.overFlowhidden,
body.overFlowhidden {
    margin: 0;
    height: 100%;
    overflow: hidden;
}

/* ----------------------------- RENDER CART STYLE STARTS FROM HERE ----------------------------- */
.renderCartData {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 50%;
    max-width: 400px;
    padding: 20px;
    z-index: 999;
    background: #000000;
    box-shadow: -2px 0 4px #ff7300;
    transition: .5s;
    overflow-y: auto;
}

.renderCartData::-webkit-scrollbar-track {
    border: 3px solid rgb(0, 0, 0);
    background-color: rgb(147, 149, 152);
}

.renderCartData::-webkit-scrollbar {
    width: 7px;
    background-color: #dfe6e9;
}

.renderCartData::-webkit-scrollbar-thumb {
    background-color: #ff7300;
    border-radius: 10px;
}

.renderCartData.active {
    right: 0;
    transition: .5s;
}

.cartProductDetail {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    width: 50%;
}

.cartProductDetail h6 {
    font-size: 16px;
    margin-bottom: 8px;
}

.cart-styling {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ff7300;
}

.cartImageElement {
    width: 15%;
    max-height: 20%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: #555454 0px 0px 10px 5px;
}

.trash {
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 3.5px;
    transition: .5s;
    cursor: pointer;
}

.trash:hover .lid,
.trash:hover .lidcap {
    transform: rotate(15deg);
    margin-bottom: 10.5px;
    background: red;
}

.trash:hover .lidcap {
    transform: translate(-1px, -2px) rotate(20deg);
}

.trash:hover .lid {
    transform-origin: bottom right;
}

.trash:hover .bin {
    border-top: 15px solid red;
}

.lidcap,
.lid,
.bin {
    position: absolute;
    transition: .5s;
}

.lidcap,
.lid {
    border-top-left-radius: 2.8px;
    border-top-right-radius: 2.8px;
    background: #fff;
}

.lidcap {
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    width: 5px;
}

.lid {
    top: 2px;
    left: 0;
    width: 100%;
    height: 3px;
}

.bin {
    bottom: 0;
    left: 0;
    width: 50%;
    border-top: 15px solid #fff;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
}

.cart-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.cart-checkout-btn {
    padding: 15px;
    background-color: #444;
    border-radius: 15px;
    transition: .5s;
}

.cart-checkout-btn:hover {
    background-color: #fff;
    color: #000;
}

#totalPrice {
    font-size: 20px;
}

.cross {
    color: red;
    font-size: 0;
    text-align: right;
}

.cross::after {
    content: "❌";
    font-size: 28px;
    cursor: pointer;
}

@media only screen and (max-width: 480px) {
    .renderCartData {
        width: 70%;
    }

    #totalPrice {
        font-size: 16px;
    }

    .cart-checkout-btn {
        padding: 10px;
        font-size: 12px;
    }
}

/* ----------------------------- RENDER CART STYLES ENDS HERE ----------------------------- */

/* ----------------------------- CHAT BOT STYLING STARTS FROM HERE ----------------------------- */
.chat-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #e74c3c;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
    -webkit-tap-highlight-color: transparent;
}

.chat-button:hover {
    transform: scale(1.1);
    background: #c0392b;
}

/* Chat Container */
.chat-container {
    position: fixed;
    max-height: 80%;
    bottom: 100px;
    right: 30px;
    width: 350px;
    max-width: 90%;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 10001;
}

.chat-header {
    background: #e74c3c;
    color: white;
    padding: 15px;
    font-size: 1.2em;
    font-weight: bold;
}

.chat-body {
    padding: 15px;
    height: 400px;
    overflow-y: auto;
    background: #f9f9f9;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Scrollbar */
.chat-body::-webkit-scrollbar {
    width: 8px;
}

.chat-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.chat-body::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.chat-body::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Input Section */
.input-section {
    padding: 15px;
    background: white;
    border-top: 1px solid #eee;
}

.quick-options {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between;  */
    gap: 8px;
    margin-bottom: 10px;
    -webkit-tap-highlight-color: transparent;
}

.quick-option {
    background: #f1f1f1;
    color: #333;
    border: none;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    white-space: nowrap;
}

.quick-option:hover {
    background: #e74c3c;
    color: white;
}

.quick-option .fa-headset,
.quick-option .fa-whatsapp {
    margin-right: 8px;
}

.chat-quick-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
}

.chat-quick-option {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 10px;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: bolder;
    white-space: nowrap;
    width: 100%;
}

.chat-quick-option:hover {
    background: #f1f1f1;
    color: #333;
}

.input-row {
    display: flex;
    gap: 10px;
}

.chat-input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
}

.chat-input::placeholder {
    color: #5c5b5b;
    ;
    opacity: 1;
}

.send-btn {
    background: #e74c3c;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

.send-btn:hover {
    background: #c0392b;
}

.send-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* Messages */
.chatbot-message {
    max-width: 80%;
    padding: 12px 18px;
    border-radius: 20px;
    word-wrap: break-word;
    font-size: 13px;
}

.bot-message {
    background: white;
    border: 1px solid #eee;
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}

.user-message {
    background: #e74c3c;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}

.typing-indicator {
    display: inline-flex;
    padding: 12px 18px;
    background: #eee;
    border-radius: 20px;
    align-self: flex-start;
}

.dot {
    width: 8px;
    height: 8px;
    margin: 0 3px;
    background: #999;
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.enquiry-form-container {
    width: 100%;
    margin: 0;
    background: #ffffff;
    border-radius: 15px;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
    overflow: visible;

    .chat-body {
        width: 100%;
    }
}

.form-header {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    text-align: center;
    position: relative;
}

.form-header h2 {
    margin: 0;
    font-size: 1.5em;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.enquiry-form {
    padding: 15px;
    background: #f9f9f9;
}

.form-group {
    margin-bottom: 15px;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    padding-left: 30px;
    position: relative;
    text-align: start;
}

.form-label i {
    position: absolute;
    left: 0;
    top: 2px;
    color: #e74c3c;
    font-size: 18px;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
}

.form-input:focus {
    border-color: #e74c3c;
    box-shadow: 0 3px 15px rgba(231, 76, 60, 0.1);
    outline: none;
}

.form-input:disabled {
    background: #f8f9fa;
    color: #666;
}

.form-textarea {
    height: 100px;
    resize: vertical;
    width: 100%;
}

.form-textarea::placeholder {
    color: #5c5b5b;
    opacity: 1;
}

.enquire-now-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.enquire-now-btn:hover {
    background: linear-gradient(135deg, #f31d06, #f13e2b);
    /* background: linear-gradient(135deg, #44e279, #39e022); */
}

.deactivated-enquire-now-btn {
    cursor: not-allowed;
    background: #333;
}

.deactivated-start-chat-btn {
    cursor: not-allowed;
    opacity: .5;
}

@media (max-width: 480px) {
    .chat-container {
        width: 87%;
        right: 2.5%;
        bottom: 85px;
        height: 69%;
    }

    .chat-body {
        height: 60vh;
    }

    .chat-button {
        bottom: 20px;
        right: 20px;
    }

    .chat-input,
    .form-input {
        font-size: 16px;
    }

    .quick-options {
        gap: 5px;
    }

    .quick-option:hover {
        background: #f1f1f1;
        color: #333;
    }

    .quick-option:active {
        background: #e74c3c;
        color: white;
    }

    .quick-option {
        padding: 6px 10px;
        font-size: 11px;
    }

    .enquire-now-btn:hover {
        background: linear-gradient(135deg, #e74c3c, #c0392b);
        color: white;
    }

    .deactivated-enquire-now-btn:hover {
        cursor: not-allowed;
        background: #333;
    }

    .enquiry-form {
        padding: 15px;
    }
}

/* ----------------------------- CHAT BOT STYLING ENDS HERE ----------------------------- */


/* ----------------------------- BANNER SLID STYLING STARTS FROM HERE ----------------------------- */
.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.8s ease-in-out;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
}

.carousel-indicators button.active {
    background: rgba(255, 255, 255, 1);
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
    border-radius: 10px;
}

.nav-button:hover {
    background: rgba(0, 0, 0, 0.7);
}

.prev {
    left: 50px;
}

.next {
    right: 50px;
}

.button {
    line-height: 1;
    text-decoration: none;
    display: inline-flex;
    border: none;
    cursor: pointer;
    align-items: center;
    gap: 0.75rem;
    background-color: #fff;
    color: #000;
    border-radius: 10rem;
    font-weight: 600;
    padding: 0.37rem 1.5rem;
    /* padding-left: 20px; */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background-color 0.3s, color 0.3s;
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.button__icon-wrapper {
    flex-shrink: 0;
    width: 25px;
    height: 25px;
    position: relative;
    color: #000;
    background-color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.button:hover {
    background-color: #000;
    color: #fff;
}

.button:hover .button__icon-wrapper {
    color: #fff;
}

.button__icon-svg--copy {
    color: #000;
    position: absolute;
    transform: translate(-150%, 150%);
}

.button:hover .button__icon-svg:first-child {
    transition: transform 0.3s ease-in-out;
    transform: translate(150%, -150%);
}

.button:hover .button__icon-svg--copy {
    transition: transform 0.3s ease-in-out 0.1s;
    transform: translate(0);
}

.explore-more {
    display: none;
    justify-content: center;
}

.explore-more.show {
    display: flex;
}

@media (max-width: 768px) {
    .prev {
        left: 10px;

    }

    .next {
        right: 10px;
    }

    .nav-button {
        padding: 5px 10px;
        font-size: 10px;
        -webkit-tap-highlight-color: transparent;
    }

    .carousel-indicators button {
        display: none;
        /* width: 8px;
      height: 8px;
      -webkit-tap-highlight-color: transparent; */
    }

    /* .carousel-indicators {
      display: none;
    } */

    /* .nav-button {
      display: none;
    } */

    .explore-more {
        display: none !important;
        padding: 0.12rem .5rem;
        bottom: 4px;
        gap: 0;
    }
}

/* ----------------------------- BANNER SLIDES STYLING ENDS HERE ----------------------------- */

/* ----------------------------- FOOTER STYLING STARTS FROM HERE ----------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

.footer {
    background-color: #181717;
    color: #fff;
    padding: 60px 30px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-column {
    flex: 1 1 220px;
}

.footer-column h4 {
    font-size: 16px;
    color: #ff5e00;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-column ul li {
    margin: 8px 0;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.contact p {
    margin: 8px 0;
    color: #ccc;
}

.contact a {
    color: #ff5e00;
    text-decoration: none;
}

.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social {
    background-color: #2d2d2d;
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    opacity: 1;
    box-shadow: 0 0 0 transparent;
}

@media (hover: hover) and (pointer: fine) {
    .social:hover {
        background-color: #fff;
        color: #ff5e00;
        transform: scale(1.1);
        box-shadow: 0 0 10px #ff5e00;
    }

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

    .footer-column a:hover {
        color: #ff5e00;
    }
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 20px;
    margin-top: 23px;
    font-size: 14px;
    color: #aaa;
}

.footer-bottom a {
    color: #ff5e00;
    text-decoration: none;
    margin: 0 8px;
}

.social-icons {
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 15px 20px;
    }

    .footer-content {
        display: flex;
        flex-wrap: wrap;
        gap: 0px;
        justify-content: space-between;
    }

    .footer-column {
        flex: 0 0 48%;
        margin-bottom: 20px;
    }

    .footer-column.contact {
        flex: 0 0 48%;
        margin-top: 0;
    }

    .footer-column.social-col {
        flex: 0 0 100%;
        margin-top: 0;
        display: flex;
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
        margin-top: 10px;
    }

    .social {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .footer-column h4 {
        font-size: 14px;
    }

    .footer-column ul li,
    .contact p {
        font-size: 14px;
        margin: 4px 0;
    }

    .footer-bottom {
        font-size: 13px;
        margin-top: 0px;
    }
}

/* ----------------------------- FOOTER STYLING ENDS HERE  -----------------------------*/


/* ----------------------------- PRODUCT SECTION STYLING STARTS FROM HERE -----------------------------*/
.container {
    padding: 0 12px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-wrapper {
    padding: 40px 0;
    padding-top: 1px !important;
    background: linear-gradient(to right, #111, #222);
}

/* .section-heading {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #fff;
    border-left: 4px solid #ff5e00;
    padding-left: 12px;
} */

.product-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
}

.product-card {
    cursor: pointer;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
}

@media (hover: hover) and (pointer: fine) {
    .product-card:hover {
        transform: translateY(-5px);
        /* box-shadow: 0 8px 20px rgba(255, 94, 0, 0.3); */
    }
}

.product-image {
    background-color: #fff;
    /* padding: 8px; */
}

.product-image img {
    width: 100%;
    height: 150px;
    object-fit: contain;
}

.product-details {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    min-height: 50px;
    line-height: 1.3;
}

.price-section {
    margin-bottom: 12px;
}

.current-price {
    color: #e53935;
    font-weight: 700;
    font-size: 1rem;
}

.mrp {
    text-decoration: line-through;
    color: #999;
    margin-left: 6px;
    font-size: 0.9rem;
}

.discount {
    color: #388e3c;
    margin-left: 8px;
    font-size: 0.85rem;
}

.btn-group {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.btn {
    flex: 1;
    padding: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cart {
    background-color: #111;
    color: #fff;
}

@media (hover: hover) and (pointer: fine) {
    .btn-cart:hover {
        background-color: #333;
    }

    .btn-buy:hover {
        background-color: #e54c00;
    }

    .btn-buy:hover {
        background: linear-gradient(135deg, #e85700, #ff6f00);
    }

    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    }
}

.btn-buy {
    background-color: #ff5e00;
    color: #fff;
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 1.5rem;
    }

    .product-name {
        font-size: 0.6rem;
        margin-bottom: 1px;
        min-height: 42px;
    }

    .price-section {
        margin-bottom: 4px;
    }

    .current-price {
        font-size: 0.95rem;
    }

    .btn {
        font-size: 0.75rem;
        padding: 6px;
    }
}

.btn-buy {
    background: linear-gradient(135deg, #ff5e00, #ff9500);
    color: #fff;
    border: none;
}

/* ----------------------------- PRODUCT SECTION STYLING ENDS HERE ----------------------------- */




/* ----------------------------- SKELTON STYLING STARTS FROM HERE ----------------------------- */
.skeleton-box,
.skeleton-line,
.skeleton-btn {
    /* background: linear-gradient(90deg, #eeeeee 25%, #dddddd 50%, #eeeeee 75%); */
    background: linear-gradient(90deg, #444 25%, #555 50%, #444 75%);
    background-size: 200% 100%;
    animation: shimmer 1.2s infinite;
    border-radius: 6px;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.skeleton-card .product-image {
    height: 150px;
}

.skeleton-card .product-name {
    height: 20px;
    margin: 12px 0;
}

.skeleton-card .price-section .skeleton-line {
    height: 16px;
    width: 60%;
}

.skeleton-card {
    background: #333;
    border: #333;
}

.skeleton-btn {
    height: 36px;
    flex: 1;
    margin-top: 10px;
    border-radius: 6px;
}

.skeleton-line.short {
    width: 40%;
}

/* ----------------------------- SKELTON STYLING ENDS HERE ----------------------------- */


/* -----------------------------ADD TO CART NOTIFICATION STYLING STARTS FROM HERE ----------------------------- */
.notification {
    display: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: rgb(255, 94, 0);
    color: #fff;
    padding: 16px 20px 22px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 250px;
    max-width: 90vw;
    font-size: 16px;
    z-index: 9999;
    overflow: hidden;
    gap: 10px;
}

.notification.show {
    display: flex;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.close-btn-for-notification {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    flex-shrink: 0;
    padding: 0 5px;
}

.close-btn-for-notification:active {
    opacity: 0.7;
}

.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: white;
    width: 0%;
    animation: progress 3s linear forwards;
}

@keyframes progress {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

.add-to-cart {
    margin: 40px;
    padding: 12px 24px;
    background: black;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
}

.add-to-cart:hover {
    background: #222;
}

@media (max-width: 480px) {
    .notification {
        right: 10px;
        left: 10px;
        max-width: unset;
        font-size: 14px;
        padding: 14px 16px 20px;
    }

    .add-to-cart {
        margin: 20px;
        font-size: 16px;
        padding: 10px 20px;
        width: calc(100% - 40px);
    }
}

/* ----------------------------- ADD TO CART NOTIFICATION STYLING ENDS HERE ----------------------------- */

/* -----------------------------VEHICLE MODEL SECTION STYLING STARTS FROM HERE ----------------------------- */
.vehicles-section {
    background-color: #000;
    padding: 60px;
    padding-top: 0px !important;
    max-width: 1440px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow-x: hidden;
}

.section-heading {
    font-size: 23px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff;
    position: relative;
}

.section-heading::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #e54c00;
    display: block;
    margin: 10px auto 0;
    border-radius: 3px;
}

.vehicles-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    padding: 0 10px;
}

.card {
    background: #1c1c1c;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    transition: 0.3s ease;
    max-width: 100%;
}

@media (hover: hover) and (pointer: fine) {
    .card:hover {
        transform: translateY(-6px);
    }
}

.card-header {
    position: relative;
    background: #fff;
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--highlight-color);
    border-radius: 20px;
    font-weight: 600;
    color: #fff;
}

.name-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: black;
    /* background: var(--highlight-color); */
    border-radius: 3px;
    font-weight: 600;
    color: #fff;
}

.brand-tag,
.name-tag {
    font-size: 11px;
    padding: 4px 12px;
}

/* === IMAGE === */
.imgBx {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6px 0;
}

.imgBx img {
    width: auto;
    max-width: 100%;
    /* height: 160px; */
    height: 200px; 
    object-fit: contain;
    transition: transform 0.4s ease;
}

@media (hover: hover) and (pointer: fine) {
    .card:hover .imgBx img {
        transform: scale(1.1);
    }
}

.card-body {
    background: #ff7300;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 12px 10px;
    gap: 10px;
}

.card-body h2 {
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-top: 0px;
}

.specs {
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    gap: 3px;
    width: 100%;
    justify-content: center;
}

.spec h4 {
    text-align: left;
    font-size: 12px;
    color: #aaa;
    margin-bottom: 4px;
}

.sizes {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.sizes a {
    background: #fff;
    color: #000;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
}

.explore-btn {
    margin: 10px auto 0 auto;
    margin-top: auto;
    padding: 6px 12px;
    background: linear-gradient(135deg, #000000, #da8517);
    color: #fff;
    border: none;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
    cursor: pointer;
}

/* .explore-btn::after {
    content: "→";
    font-size: 16px;
    transition: transform 0.3s ease;
  } */

@media (hover: hover) and (pointer: fine) {
    .explore-btn:hover {
        background-color: #e54c00;
        background: linear-gradient(135deg, #000000, #000000);
        transform: translateY(-2px);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    }
}

@media (max-width: 768px) {
    .vehicles-section {
        padding: 40px 16px;
    }

    .vehicles-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .sizes a {
        width: 100%;
        text-align: center;
    }

    .imgBx img {
        /* height: 110px; */
        height: 150px;
    }

    .card-body {
        padding: 14px;
        gap: 10px;
    }

    .card-body h2 {
        font-size: 15px;
    }

    .explore-btn {
        padding: 7px 14px;
        font-size: 12px;
    }
}

/* ----------------------------- VEHICLE MODEL SECTION STYLING ENDS HERE  ----------------------------- */

/* ----------------------------- FAQS SECTION STYLING STARTS FROM HERE -----------------------------*/
.faq-wrapper {
    padding: 40px 0;
    padding-top: 1px !important;
    background: #000000;
}

.faq-container {
    max-width: 90%;
    margin: 0 auto;
    padding: 20px;
    padding-top: 0px !important;
}

.faq-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #ff5e00;
}

.faq-item {
    background: transparent;
    border-radius: 0;
    border-bottom: 1px solid #333;
    margin-bottom: 0;
    overflow: hidden;
    transition: transform 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .faq-item:hover {
        transform: translateY(-2px);
    }

    .faq-question:hover {
        background-color: #1f1f1f;
    }
}

.faq-question {
    padding: 18px 20px;
    font-size: 1rem;
    font-weight: 549;
    position: relative;
    cursor: pointer;
    background: #000000;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
}

.faq-icon {
    font-size: 1.4rem;
    color: #ffffff;
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #000000;
    padding: 0 20px;
    font-size: 0.95rem;
    color: #ddd;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 15px 20px 20px;
}

.faq-item.open .faq-icon {
    transform: rotate(90deg);
}

@media (max-width: 600px) {
    .faq-question {
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.9rem;
    }
}

/* ----------------------------- FAQS STYLING ENDS HERE ----------------------------- */

/* ----------------------------- BLOG CARDS STYLING STARTS FROM HERE ----------------------------- */
.blog-section-container {
    background: #000;
    padding: 1px 0;
}

.blog-section {
    padding: 40px;
    padding-top: 1px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.blog-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 380px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .blog-card:hover {
        transform: translateY(-5px);
    }
}

.blog-card img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tags {
    font-size: 0.75rem;
    color: #ff5e00;
    margin-bottom: 8px;
}

.tags span {
    background: transparent;
    color: #ff4400;
    border: 1px solid #ff4400;
    border-radius: 2px;
    padding: 2px;
}

.tags span:hover {
    background:#ff4400;
    color: white;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.blog-desc {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 10px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #999;
    border-top: 1px solid #eee;
    padding-top: 10px;
    margin-top: auto;
}

.blog-meta span {
    display: inline-block;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .blog-section {
        flex-direction: column;
        align-items: center;
        padding: 0px;
        padding-bottom: 25px;
    }

    .blog-card {
        width: 90%;
    }
}

/* ----------------------------- BLOG CARDS STYLING ENDS HERE ----------------------------- */