/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/

.mobile-swipe-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 20;
    
    /* background: rgba(255,255,255,0.85); */
    color: #fff;
    
    padding: 6px 12px;
    border-radius: 20px;
    
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.5px;
    
    /* box-shadow: 0 4px 12px rgba(0,0,0,0.08); */
    
    animation: swipeHint 2s infinite;
    
    display: none;
}

/* Mobile only */
@media (max-width: 768px) {
    .mobile-swipe-indicator {
        display: flex;
        align-items: center;
        gap: 5px;
    }
}

@keyframes swipeHint {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.85;
    }
    50% {
        transform: translateX(-6px);
        opacity: 1;
    }
}

.formal_banner{
    position: relative;
    min-height: 780px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;

    
}

.formal_banner.has-link {
    cursor: pointer;
}

.formal_banner.has-link a.full-link {
    position: absolute;
    inset: 0;
    z-index: 10;
}

.formal_banner .formal_banner_bg_text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -52%);
    z-index: 1;
    width: 100%;
    margin: 0;
    text-align: center;
    pointer-events: none;
}

.formal_banner .formal_banner_bg_text .elementor-heading-title{
    margin: 0;
    font-size: clamp(120px, 18vw, 260px);
    line-height: 0.9;
    letter-spacing: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

.formal_banner .formal_banner_box{
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: min(430px, 88%);
}

.formal_banner .formal_banner_box .e-con-inner{
    padding: 28px 32px;
    text-align: center;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.formal_banner .formal_banner_title{
    margin: 0 0 10px 0;
}

.formal_banner .formal_banner_title .elementor-heading-title{
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 3vw, 48px);
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: 10px;
    text-transform: uppercase;
    text-align: center;
}

.formal_banner .formal_banner_subtitle{
    margin: 0;
}

.formal_banner .formal_banner_subtitle p{
    margin: 0;
    color: #fff;
    font-size: clamp(12px, 1.2vw, 18px);
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    text-align: center;
}

@media (max-width: 1024px){
    .formal_banner{
        min-height: 620px;
    }

    .formal_banner .formal_banner_bg_text .elementor-heading-title{
        font-size: clamp(90px, 16vw, 180px);
        letter-spacing: 12px;
    }

    .formal_banner .formal_banner_box .e-con-inner{
        padding: 22px 24px;
    }

    .formal_banner .formal_banner_title .elementor-heading-title{
        letter-spacing: 7px;
    }

    .formal_banner .formal_banner_subtitle p{
        letter-spacing: 4px;
    }
}

@media (max-width: 767px){
    .formal_banner{
        min-height: 520px;
    }

    .formal_banner .formal_banner_bg_text .elementor-heading-title{
        font-size: clamp(70px, 22vw, 120px);
        letter-spacing: 8px;
        line-height: 0.95;
    }

    .formal_banner .formal_banner_box{
        width: 90%;
        bottom: 100px;
    }

    .formal_banner .formal_banner_box .e-con-inner{
        padding: 18px;
    }

    .formal_banner .formal_banner_title .elementor-heading-title{
        font-size: 24px;
        letter-spacing: 5px;
    }

    .formal_banner .formal_banner_subtitle p{
        font-size: 11px;
        letter-spacing: 3px;
    }
}


/* fooeter styling */

.minimal-footer {
  background: #f5f3f1;
  padding: 80px 60px 30px;
  font-family: inherit;
  color: #2f2f2f;
}

.minimal-footer-container {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 50px;
}

.minimal-footer-column h4 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 30px;
  color: #1f1f1f;
}

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

.minimal-footer-column ul li {
  margin-bottom: 14px;
}

.minimal-footer-column a {
  text-decoration: none;
  color: #5f5f5f;
  font-size: 15px;
  transition: all 0.3s ease;
}

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

.footer-newsletter-form input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #8f8f8f;
  background: transparent;
  padding: 10px 0;
  font-size: 15px;
  margin-bottom: 25px;
  outline: none;
}

.footer-newsletter-form button {
  background: #1f1f1f;
  color: white;
  border: none;
  padding: 14px 32px;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-newsletter-form button:hover {
  background: #b9967a;
}

.minimal-footer-bottom {
  max-width: 1600px;
  margin: 70px auto 0;
  padding-top: 25px;
  border-top: 1px solid #dddddd;
  text-align: center;
}

.minimal-footer-bottom p {
  font-size: 14px;
  color: #777;
  letter-spacing: 0.5px;
}

@media (max-width: 1200px) {
  .minimal-footer-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .minimal-footer {
    padding: 60px 25px 25px;
  }

  .minimal-footer-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-newsletter-form button {
    width: 100%;
  }
}

/* Elementor Button Animated Underline */
/* Class: btn_style_qz */

.btn_style_qz .elementor-button {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding-bottom: 8px;
}

.btn_style_qz .elementor-button::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.btn_style_qz .elementor-button:hover::after {
    width: 100%;
}

/* Optional smoother text effect */
.btn_style_qz .elementor-button:hover {
    transform: translateY(-2px);
    transition: all 0.3s ease;
}


/* product img sync */

/* Product grid same image size */
.products .product-grid-item .product-element-top img,
.wd-products .product-grid-item .product-element-top img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center;
    display: block;
}


@media (max-width: 1024px) {
    .products .product-grid-item .product-element-top img,
    .wd-products .product-grid-item .product-element-top img {
        height: 420px;
    }
}

@media (max-width: 767px) {
    .products .product-grid-item .product-element-top img,
    .wd-products .product-grid-item .product-element-top img {
        height: 360px;
    }
}


.container, .container-fluid {
    max-width: 1500px;
}