/**************
  Rajni Style
**************/
.chevron_main,
.chevron_product_list,
.chevron_product_title {
  background: #171717;
}
.chevron_main .caption h1,
.chevron_main .tags a,
.chevron_main .circle-button .icon span,
.chevron_product_title .sm-title-dot,
.chevron_product_title .caption h1,
.chevron_product_list .item .cont h5 {
  color: #fff;
}
.chevron_main {
  padding-top: 250px;
}
.chevron_main .caption h1 {
  font-weight: 600;
}
.chevron_main .caption h1 .main-color {
  color: #e31e24;
}
.chevron_main .caption p,
.chevron_product_list .item .cont span {
  color: #a8a8a8;
}
.chevron_main .tags a {
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
}
.chevron_main .tags a:hover {
  background: #fff;
  color: #000;
}
.chevron_main .circle-button svg {
  fill: #fff;
}
.chevron_product_title .sm-title-dot:before {
  background: #fff;
}
.chevron_product_title .caption h1 {
  font-size: 100px;
}
.chevron_product_list {
  margin-top: -5px;
}

@media only screen and (max-width: 1080px) {
  .chevron_main {
    padding-top: 150px;
  }
  .pg-hero.chevron_product_title {
    padding-top: 80px !important;
    padding-bottom: 0 !important;
  }
  .chevron_product_title .caption h1 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .chevron_product_title .caption h1 {
    font-size: 40px;
  }
}



/* Anand CSS */

.pattern_show_sec .gallery-container {
        background: white;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }
    .pattern_show_sec .product-card {
        background: #fff;
        border-radius: 8px;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .pattern_show_sec .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(139, 69, 19, 0.2);
    }

    .pattern_show_sec .product-image {
        width: 100%;
        padding: 20px;
        /* height: 250px; */
        object-fit: cover;
        border-bottom: 3px solid var(--gold-accent);
    }

    .pattern_show_sec .product-info {
        padding: 15px;
        text-align: center;
        background: linear-gradient(0deg, transparent, #f6f6f6);
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .pattern_show_sec .product-name {
        color: var(--dark-brown);
        font-weight: 600;
        font-size: 1.1rem;
        margin-bottom: 5px;
    }

    .pattern_show_sec .product-code {
        color: var(--primary-brown);
        font-size: 0.9rem;
        opacity: 0.8;
    }

    /* Custom spacing for rows */
    .pattern_show_sec .row-1,
    .pattern_show_sec .row-3 {
        margin-bottom: 20px;
    }

    .pattern_show_sec .row-2 {
        margin-bottom: 20px;
    }

    /* Responsive adjustments */
    @media (max-width: 991px) {
        .pattern_show_sec .product-image {
            height: auto;
        }
    }

    @media (max-width: 767px) {
        .pattern_show_sec .product-card {
            margin-bottom: 15px;
        }

        .pattern_show_sec .product-image {
            height: auto;
        }
    }