/* Scroll-x Hidden By Abdul Saboor */
body {
   overflow-x: hidden;
}

/* Change Card Background-color Change By Abdul Saboor */
.widget-product-categories .product-categories-body .product-category-item .category-item-body{
 background-color: #fff !important;
}

/* video section for home page created By Abdul Saboor */

  .container-vid {
            padding: 36px;
            display: flex;
            flex-direction: column;
            gap: 40px;
            width: 100%;
        }

        @media (min-width: 768px) {
            .container-vid {
                flex-direction: row;
                align-items: center;
            }
        }

        .video-section {
            flex: 1;
            position: relative;
            padding-bottom: 36.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
            border-radius: 10px;
            border: 2px solid #bc8446; /* Blue border */
            box-sizing: border-box;
            background-color: #333; /* Placeholder background */
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }

        .video-section img.thumbnail {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px; /* Slightly smaller than parent for border effect */
            z-index: 1;
        }

        .video-section .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background-color: rgba(255, 255, 255, 0.7);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2;
            transition: background-color 0.3s ease;
        }

        .video-section .play-button:hover {
            background-color: rgba(255, 255, 255, 0.9);
        }

        .video-section .play-button::before {
            content: '';
            width: 0;
            height: 0;
            border-top: 20px solid transparent;
            border-bottom: 20px solid transparent;
            border-left: 30px solid #bc8446; /* Blue play icon */
            margin-left: 5px;
        }

        .video-section iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 8px;
            z-index: 3;
            display: none; /* Hidden by default */
        }

        .text-section {
            flex: 1;
            padding: 20px;
            box-sizing: border-box;
        }

        .text-section h2 {
            font-size: 2.2em;
            font-weight: 600;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .text-section p {
            font-size: 1.1em;
            line-height: 1.6;
            color: #000;
        }

/*Catalogue Button Created By Abdul Saboor*/

.fixed-catalogue-btn {
    position: fixed;
    bottom: 30px;        /* Desktop bottom space */
    right: 30px;
    background: #fff;
    color: #bf8744;
    padding: 12px 24px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    z-index: 9999;
    transition: all 0.3s ease;
}

.fixed-catalogue-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    color: #fff;
    background-color: #bf8744;
}

.aro-btn{
  font-size: 26px;
}

/*  Mobile Responsive Fix */
@media (max-width: 768px) {
    .fixed-catalogue-btn {
        bottom: 90px;   /* Mobile par button KO upar kar diya */
        right: 20px;    /* Thora left so mobile friendly */
        padding: 10px 18px;
        font-size: 16px;
    }
}

/*  Smaller Phones */
@media (max-width: 480px) {
    .fixed-catalogue-btn {
        bottom: 110px;  /* Bottom menu se aur upar */
        right: 15px;
        padding: 9px 16px;
        font-size: 15px;
    }
}


/*Sales Button Background-color Created By Abdul Saboor*/
.ribbons .ribbon.featured{
   background-color:#bf8744 !important;
}

/*Cards Border color Changed By Abdul Saboor*/
.slick-slides-carousel .product-inner {
    background-color: #fff;
    border-color: #edecec;
    border-width: 1px 0 1px 1px;
}

/*Youtube Video Editing Edit By Abdul Saboor*/
.youtube-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    cursor: pointer;
    margin: auto;
}
.youtube-thumbnail {
    width: 100%;
    border-radius: 10px;
}

/*Youtube Video Editing Edit By Abdul Saboor*/
        .testimonial-section {
            display: flex;
            flex-direction: column;
            width: 100%;
            overflow: hidden;
        }

        @media(min-width: 900px){
            .testimonial-section { flex-direction: row; }
        }

        /* VIDEO AREA */
        .video-container-wrapper {
            position: relative;
            width: 100%;
            padding-top: 30.25%;
            background: #000;
            overflow: hidden;
            border-radius: 10px;
        }

        @media(min-width: 900px){
            .video-container-wrapper { width: 50%; }
        }

        .video-placeholder {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: .3s ease;
        }

        .video-placeholder.hidden { opacity: 0; pointer-events: none; }

        .play-button {
            width: 75px;
            height: 75px;
            background: #bf8744;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: .3s;
            box-shadow: 0 8px 20px rgba(0,0,0,.3);
        }

        .play-button:hover { transform: scale(1.07); }

        .play-button::before {
            content: "";
            border-top: 18px solid transparent;
            border-bottom: 18px solid transparent;
            border-left: 28px solid #fff;
            margin-left: 5px;
        }

        .video-wrapper {
            position: absolute;
            inset: 0;
            opacity: 0;
            pointer-events: none;
            transition: .3s ease;
        }

        .video-wrapper.active { opacity: 1; pointer-events: auto; }

        .video-wrapper video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* TEXT AREA */
        .testimonial-content {
            width: 100%;
            padding: 30px 30px 40px;
        }

        @media(min-width: 900px){
            .testimonial-content { width: 50%; padding: 50px; }
        }

        .testimonial-content p {
            font-size: 1.15rem;
            color: #555;
            line-height: 1.7;
        }

        .author {
            margin-top: 20px;
            font-weight: bold;
            font-size: 1.2rem;
            color: #222;
        }

        .author-title {
            font-size: .95rem;
            color: #777;
        }

        hr {
            border: none;
            border-top: 1px solid #eee;
            margin: 25px 0;
        }

        /* CONTACT BUTTON */
        .contact-btn {
            display: inline-block;
            background: #fff;
            color: #bf8744;
            padding: 14px 28px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: bold;
            text-decoration: none;
            margin-top: 25px;
            transition: 0.25s ease;
            box-shadow: 0 0px 8px rgb(191, 135, 68);
        }

        .contact-btn:hover {
            background: #bf8744;
            color:#fff;
            transform: translateY(-3px);
           box-shadow: 0 8px 20px rgba(230,74,25,0.1);
        }

        /* MOBILE FIX */
        @media(max-width: 600px){
            .testimonial-content p { font-size: 1rem; }
            .play-button { width: 60px; height: 60px; }
            .play-button::before {
                border-top: 12px solid transparent;
                border-bottom: 12px solid transparent;
                border-left: 20px solid #fff;
            }
        }

.bg-img{
background-image:url('https://gtakitchencabinets.com/storage/minimalist-kitchen-interior-design.jpg');
}

.widget-mobile-apps .widget-header {
    padding-top: 50px;
    color: #dcdbdb;
}