
    @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
       @font-face {
        font-family: 'Microgramma D Extended';
        src: url('../assets/Microgramma D Extended Medium.otf') format('opentype');
    }

        :root {
            --primary-color: #0d6efd;
            --secondary-color: #6c757d;
            --accent-color: #ff6b6b;
            --light-bg: #f8f9fa;
            --dark-text: #212529;
        }

        body {
            font-family: Montserrat, sans-serif;
            color: #000;
            background: #fff;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
        }

        .hero-section {
            padding: 150px 80px;
            text-align: left;
        }

        .section-title {
            position: relative;
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            font-size: 20px;
            text-transform: uppercase;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            /*transform: translateX(-50%);*/
            width: 80px;
            height: 1px;
            background-color: #bba99d;
        }

        .feature-box {
            text-align: center;
            padding: 2rem 1rem;
            transition: transform 0.3s;
        }

        .feature-box:hover {
            transform: translateY(-10px);
        }

        .feature-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        /*Product card start*/
        .product-card {
            border: 1px solid #eee;
            overflow: hidden;
            margin-bottom: 2rem;
            cursor: pointer;
            position: relative;
        }

        .product-img-wrapper {
            position: relative;
            overflow: hidden;
        }

        .product-img-wrapper img {
            width: 100%;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-img-wrapper img {
            transform: scale(1.1);
        }

        .product-img-wrapper::after {
            content: "";
            position: absolute;
            z-index: 5;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .product-card:hover .product-img-wrapper::after {
            opacity: 1;
        }
        .product-overlay {
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 10px 0;
            transform: translateY();
            /* initially hidden */
            opacity: 0;
            transition: transform 0.5s ease, opacity 0.5s ease;
            z-index: 10;
        }
        .product-overlay .caption-text {
            pointer-events: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        .product-card:hover .product-overlay {
            transform: translateY(-75%);
            /* slide up */
            opacity: 1;
        }
        /*Product card end*/
        
        /*faucet card start*/
        .faucet-card {
            border: 1px solid #eee;
            overflow: hidden;
            margin-bottom: 2rem;
            cursor: pointer;
            position: relative;
        }

        .faucet-img-wrapper {
            position: relative;
            overflow: hidden;
        }

        .faucet-img-wrapper img {
            width: 100%;
            transition: transform 0.5s ease;
        }

        .faucet-card:hover .faucet-img-wrapper img {
            transform: scale(1.1);
        }

        .faucet-img-wrapper::after {
            content: "";
            position: absolute;
            z-index: 5;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgb(255 255 255 / 21%), rgb(255 255 255 / 54%));
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .faucet-card:hover .faucet-img-wrapper::after {
            opacity: 1;
        }
        .faucet-overlay {
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 10px 0;
            transform: translateY();
            /* initially hidden */
            opacity: 0;
            transition: transform 0.5s ease, opacity 0.5s ease;
            z-index: 10;
        }
        .faucet-overlay .caption-text {
            pointer-events: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        .faucet-card:hover .faucet-overlay {
            transform: translateY(-75%);
            /* slide up */
            opacity: 1;
        }
        /*faucet card end*/
        
        .wa-products-icon {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            gap: 10px;
        }

        .wa-products-icon li a {
            color: #fff;
            font-size: 18px;
            transition: color 0.3s ease;
        }

        .wa-products-icon li a:hover {
            color: #ffcc00;
            /* optional hover color */
        }

        .color-variant {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: inline-block;
            margin: 0 5px;
            cursor: pointer;
            border: 2px solid transparent;
        }

        .color-variant.active {
            border-color: var(--dark-text);
        }

        .testimonial-card {
            background-color: var(--light-bg);
            padding: 2rem;
            border-radius: 10px;
            margin-bottom: 2rem;
        }

        footer {
            background-color: var(--dark-text);
            color: white;
            padding: 3rem 0 1rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: white;
        }

        .social-icons a {
            color: white;
            font-size: 1.5rem;
            margin-right: 1rem;
            transition: color 0.3s;
        }

        .social-icons a:hover {
            color: #bba99d;
        }

        .card-title {
            text-align: center;
        }

        .ratings {
            display: flex;
            width: 100%;
            justify-content: center;
            padding: 0;
        }

        .ratings li {
            list-style: none;
        }

        .ratings li a {
            color: #bba99d;
        }

        /* Style slick arrows */
        .slick-next,
        .slick-prev {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            background: rgba(0, 0, 0, .2);
            color: #fff;
            border: none;
            /* round shape */
            width: 45px;
            /* button size */
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            /* icon size */
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .slick-prev:hover,
        .slick-next:hover {
            background: rgba(0, 0, 0, 0.8);
        }

        /* Positioning */
        .slick-prev {
            left: 0;
            /* distance from left edge */
        }

        .slick-next {
            right: 0;
            /* distance from right edge */
        }

        .slick-prev:hover {
            background-color: #bba99d;
            border-color: #bba99d;
        }

        .slick-next:hover {
            background-color: #bba99d;
            border-color: #bba99d;
        }

        .sldbtn {
            background: black;
            color: white;
            border-radius: 0;
            padding: 10px 28px;
        }

        .sldbtn a {
            font-size: 16px;
        }

        .sldbtn:hover {
            background-color: #bba99d;
            border-color: #bba99d;
            color: white;
        }

        .hero-section .title {
            font-size: 36px;
            color: #171616;
            font-weight: 700;
            letter-spacing: 4px;
            line-height: 1.2em;
            text-transform: uppercase;
        }

        .hero-section .subtitle {
            font-size: 24px;
            font-weight: 400;
            position: relative;
            text-transform: uppercase;
            padding-bottom: 10px;
            display: inline-block;
            margin-bottom: 0;
        }

        .hero-section .desc {
            font-size: 16px;
            margin-bottom: 30px;
        }

        .btn,
        .card,
        .modal-content {
            border-radius: 0px;
        }

        .custombtn {
            color: white;
            background: black;
            border-color: black;
            font-size: 15px;
        }

        .custombtn:hover {
            background: #bba99d;
            color: white;
        }

        .slick-dots {
            position: absolute;
            bottom: 20px;
            /* adjust distance from bottom */
            width: 100%;
            text-align: center;
            display: flex !important;
            justify-content: center;
            gap: 10px;
            /* space between dots */
            list-style: none;
        }

        /* Dots as flat bars */
        .slick-dots li {
            margin: 0;
        }

        .slick-dots li button {
            width: 30px;
            /* dot width */
            height: 2px;
            /* slightly rounded rectangle */
            background: #ddd;
            /* default color */
            border: none;
            padding: 0;
            transition: background 0.3s, width 0.3s;
            font-size: 0;
            /* hides the number */
        }

        /* Active dot */
        .slick-dots li.slick-active button {
            background: #333;
            /* active color */
            width: 40px;
            /* active dot a bit longer */
        }

        .modal-content {
            box-shadow: 0 0 46px -14px #000;
        }

        .modal-backdrop {
            background: white;
            opacity: 0.7;
            transition: all 0.3s ease-in-out;
        }

        .modalclose {
            background: black;
            color: white;
            border: 0px;
            width: 30px;
            height: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .modalclose:hover {
            background: #bba99d;
            color: white;
            border: 0;
        }

        .form-control {
            border: 1px solid #0000005e;
        }

        .form-control:focus {
            border-color: black;
            box-shadow: none;
        }
        .tabimg{
            width: 100px;
            height: 100px;
            object-fit: contain;
        }
        .thcolor{
            background: #eee;
        }
        table{
            border: 1px solid black;
        }
        th, td{
            text-align: center;
            font-size:13px;
            align-content: center !important;
            border-bottom: 1px solid black;
            border-top: 1px solid black;
            border-left: none;
            border-right: none;
        }
        .mheading{
            padding: 15px 0px!important   
        }
        .tdfonts{
            text-transform:uppercase; 
            font-weight:600;
            justify-items: center;
        }
        .tdfonts2{
            text-transform:uppercase; 
            padding: 15px 0px;
            font-size: 14px;
        }
        .fa-trash{
            color: black;
        }
        .information-card{
            padding: 40px;
            border: 1px solid #eee;
            position: relative;
            display: inline-block;
            width: 100%;
            margin-top: 15px;
            background-color: #eee !important;
        }
        .pdc{
            height: 300px;
            object-fit: contain;
        }
        .mimg{
            height: 300px;
        }
        #cartCount{
            background: #97813d;
            width: 20px;
            position: absolute;
            top: 0;
            color: white;
            right: -12px;
            font-size: 12px;
            border-radius: 50px;
            height: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 600;
        }
        .cd2{
            background: #97813d;
            width: 20px;
            position: absolute;
            top: -10px;
            color: white;
            right: -14px;
            font-size: 12px;
            border-radius: 50px;
            height: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 600;   
        }
        @media(max-width:767px) {
            .hero-section {
                padding: 55px 30px;
            }
            .pdc{
                height: 200px;
                object-fit: contain;
            }
            .information-card{
                padding: 8px;
            }
        }