:root{
    --black: #333333;
    --white: #ffffff;
    --first: #392057;
    --second: #e0cdc9;
    --bg-colr: #F5F5F5;
    --text: "poppins";
    --next: #e5e7eb;
}
header.header_sec{
    background-color: var(--bg-colr);
    font-family: var(--text);
    padding: 10px 0;
}
ul.header-menu{
    display: flex;
}
ul.header-menu li{
    font-family: var(--text);
    padding: 0 15px;
    text-transform: uppercase;
}
ul.header-menu li a{
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    color: var(--black);
    position: relative;
    cursor: pointer;
}
ul.header-menu li a::after{
    content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: var(--first);
  transition: width 0.3s ease-in-out;
}
ul.header-menu li a:hover::after{
    width: 100%;
}
a.cont-numb{
    color: var(--first);
}
.banner_text p{
    color: var(--bg-colr);
    font-family: var(--text);
}
.banner_text h1{
    color: var(--second);
    font-family: var(--text);
    text-shadow: 0px 4px 3px rgb(0 0 0 / 40%), 0px 8px 13px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
}
.banner_text h1 a{
    color: var(--bg-colr) !important;
    font-weight: 600;
    font-size: 43px !important;
}
.rotate-container {
  display: inline-block;
  perspective: 1000px; /* Adds depth for 3D effect */
}

.rotate-container span {
  display: inline-block;
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(.86,.01,.56,1);
  display: inline-block;
}
.banner_text h4{
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 15px;
    color: var(--white);
    font-family: var(--text) !important;
}

.gta-shop-btn{
    border: solid 1px var(--white);
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding: 12px 24px;
    font-size: 18px;
    border-radius: 0px;
    color: var(--white);
    background: transparent;
    overflow: hidden;
    cursor: pointer;
    transition: color 0.4s ease;
    z-index: 1;
}
.gta-shop-btn::before{
    content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background: var(--white);
  z-index: -1;
  transition: width 0.4s ease;
}
.gta-shop-btn:hover::before {
  width: 100%;
}

.gta-shop-btn:hover {
  color: #000; /* Change text color */
}
div.category-sec h2{
    font-weight: 600;
    font-family: var(--text);
    color: var(--black);
}

.gta-shop-btn-1{
    border: solid 1px var(--first);
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding: 8px 24px;
    font-size: 14px;
    border-radius: 0px;
    color: var(--first);
    background: transparent;
    overflow: hidden;
    cursor: pointer;
    transition: color 0.4s ease;
    z-index: 1;
    text-transform: uppercase;
}
.gta-shop-btn-1::before{
    content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background: var(--first);
  z-index: -1;
  transition: width 0.4s ease;
}
.gta-shop-btn-1:hover::before {
  width: 100%;
}

.gta-shop-btn-1:hover {
  color: var(--white); /* Change text color */
}
div.category-section-text{
    position: absolute;
    padding: 25px;
}
div.category-section-text h5{
    font-size: 17px;
    margin-bottom: 20px;
}

div.mid-bnnr-txt{
    box-shadow: -7px -7px 25px #fff, 7px 7px 15px #00000026;
    border-radius: 10px;
    background: linear-gradient(131.5deg,#eaeaea 25.92%,#fff 71.18%);
    padding: 25px 15px;
    text-align: left !important;
}
div.mid-bnnr-txt img{
    width: 30%;
    filter: brightness(0);
}
div.mid-bnnr-txt h4{
    font-size: 20px;
    color: var(--black);
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 10px;
}
div.mid-bnnr-txt p{
    font-size: 13px;
    height: 4rem;
    margin-top:15px ;
}
div.mid-banner{
    background:url(../images/mid-banner.png);
    background-position: left center;background-size: cover;
    background-repeat: no-repeat;
}
div.new-abt-txt h3{
    border-left: solid 8px var(--first);
    padding-left: 10px;
    font-size: 35px;
    font-weight: bold;
    margin: 16px 0;
    color: var(--first);
    text-transform: capitalize
}
div.new-abt-txt p{
    font-size: 15px;
    padding: 10px 0px;
}
#rotate-containes span {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
  text-transform: capitalize !important;
}

/* products view */

.gta-products {
    position: relative;
    overflow: hidden;
}

.product-image {
    position: relative;
    text-align: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    transition: transform 0.4s ease;
}

/* White overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1; /* ✅ Ensure overlay is above image */
}

/* Product info */
.product-info {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #000;
    font-weight: bold;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    background: #ffffffe3;
    width: 90%;
    padding: 20px;
}

.product-info h3 {
    font-size: 20px;
    font-weight: bold;
    color: var(--first);
    font-family: var(--text);
    padding: 10px 0;
    margin: 0;
}

.product-info h4 {
    font-size: 16px;
    font-family: var(--text);
    color: var(--black);
    margin: 5px 0 0;
}

/* Quick View Button */
.quick-view-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40px); /* Start slightly above */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
    z-index: 2;
    background: rgba(255, 255, 255, 0.8);

}

.quick-view-btn button {
    /* background: #000;
    color: #fff; */
    border: none;
    padding: 0px;
    font-size: 14px;
    cursor: pointer;
    /* border-radius: 4px; */
}
.quick-view-btn .gta-shop-btn-1{
    padding: 8px 18px !important;
}

/* Hover Effects */
.gta-products:hover .product-image img {
    transform: scale(1.1);
}

.gta-products:hover .overlay {
    opacity: 1;
    visibility: visible;
}

.gta-products:hover .product-info {
    opacity: 0;
    visibility: hidden;
}

.gta-products:hover .quick-view-btn {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0); /* Slide up into center */
}


.gta-prd-desp h3{
    font-weight: 600;
    color: var(--black);
    font-family: var(--text);
}
.gta-prd-desp h2{
    font-weight: 800;
    color: var(--first);
    font-family: var(--text);
}

.active-width p{
    font-weight: 400 !important;
    font: var(--text);
}
div.last-img-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}
div.last-img-1 {
    /* width: 387px; */
    height: 564px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}
div.last-img {
    width: 392px;
    height: 382px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}
div.last-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}

/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) and (max-width: 767.98px) {
    .header-menu{display: none !important;}
}



/*mobile view*/
@media screen and (max-width: 575px){
    .header-menu{display: none !important;}
}

div.last-img:hover img {
    transform: scale(1.1);
}
div.last-img-1:hover img {
    transform: scale(1.1);
}
