/*!
Theme Name: thebanarasistyle
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: thebanarasistyle
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

thebanarasistyle is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
.aq-blog-thumb {
    overflow: hidden;
}

.aq-blog-thumb img {
    width: 100%;
    height: 300px; /* apne design ke hisab se */
    object-fit: cover;
    display: block;
}
.rc-post-thumb {
    flex: 0 0 80px;
}

.rc-post-thumb img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px; /* optional */
    display: block;
}
.aqf-slider-thumb img{
    width:100%;
    display:block;
}

@media (max-width:767px){

.aqf-slider-thumb img{
    height:520px;
    object-fit:cover;
}

}



.aq-grid-layout{
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

 /*mini cart css*/
/* ===========================
   HEADER MINI CART
=========================== */

.header-cart-wrap{
    position:relative;
    display:inline-block;
}

.header-cart-btn{
    display:flex;
    align-items:center;
    gap:8px;
    font-weight:600;
    color:#222;
    text-decoration:none;
    position:relative;
}

.cart-count{
    width:22px;
    height:22px;
    border-radius:50%;
    background:#b40000;
    color:#fff;
    font-size:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

/* Dropdown */
.header-mini-cart{
    position:absolute;
    right:0;
    top:100%;
    width:370px;
    background:#fff;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
    border-radius:8px;
    padding:18px;
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:.35s;
    z-index:9999;
}

/* Hover */
.header-cart-wrap:hover .header-mini-cart{
    opacity:1;
    visibility:visible;
    transform:translateY(8px);
}

/* ===========================
   PRODUCT LIST
=========================== */

.woocommerce-mini-cart{
    list-style:none;
    padding:0;
    margin:0;
}

.woocommerce-mini-cart li{
    display:flex;
    align-items:flex-start;
    gap:15px;
    padding:15px 0;
    border-bottom:1px solid #ececec;
    position:relative;
}

/* Remove Button */

.woocommerce-mini-cart .remove{
    position:absolute;
    left:-5px;
    top:12px;
    width:20px;
    height:20px;
    border-radius:50%;
    background:#fff;
    color:#c10000 !important;
    font-size:20px;
    font-weight:bold;
    line-height:20px;
    text-align:center;
    text-decoration:none;
}

.woocommerce-mini-cart .remove:hover{
    background:#c10000;
    color:#fff !important;
}

/* Image */

.woocommerce-mini-cart img{
    width:75px !important;
    height:90px !important;
    object-fit:cover;
    border-radius:6px;
    margin-left:20px;
}

/* Product Name */

.woocommerce-mini-cart a:not(.remove){
    font-size:16px;
    font-weight:600;
    color:#222;
    line-height:1.5;
    text-decoration:none;
}

.woocommerce-mini-cart a:not(.remove):hover{
    color:#b40000;
}

/* Qty & Price */

.woocommerce-mini-cart .quantity{
    display:block;
    margin-top:10px;
    color:#666;
    font-size:15px;
    font-weight:500;
}

/* ===========================
   SUBTOTAL
=========================== */

.woocommerce-mini-cart__total{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:20px;
    font-weight:700;
    margin:20px 0;
}

/* ===========================
   BUTTONS
=========================== */

.woocommerce-mini-cart__buttons{
    display:flex;
    gap:15px;
}

.woocommerce-mini-cart__buttons a{
    flex:1;
    text-align:center;
    padding:14px 10px;
    border-radius:6px;
    font-size:17px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.woocommerce-mini-cart__buttons .button{
    background:#efefef;
    color:#222;
}

.woocommerce-mini-cart__buttons .checkout{
    background:#111;
    color:#fff;
}

.woocommerce-mini-cart__buttons .button:hover{
    background:#ddd;
}

.woocommerce-mini-cart__buttons .checkout:hover{
    background:#b40000;
}

/* Scroll if many products */

.woocommerce-mini-cart.cart_list{
    max-height:420px;
    overflow-y:auto;
    padding-right:5px;
}

/* Mobile */

@media(max-width:767px){

    .header-mini-cart{
        width:330px;
        right:-20px;
    }

}

/*cart css*/
.wc-block-components-quantity-selector__button{
    color:#000 !important;
    background:#f5f5f5 !important;
    border:1px solid #ddd !important;
    width:40px;
    height:40px;
    font-size:22px;
    font-weight:700;
    display:flex !important;
    align-items:center;
    justify-content:center;
}

.wc-block-components-quantity-selector__input{
    color:#000 !important;
    font-weight:600;
}
.hero-section{
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


@media (max-width: 767px) {
    .aq-product-item.aq-product-main {
        margin-bottom: 20px; /* mb-60 की जगह छोटा gap */
    }

    .aq-product-thumb {
        margin-bottom: 6px;
    }

    .aq-product-title {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .aq-product-price {
        font-size: 13px;
    }

    .aq-product-content {
        padding: 0 5px; /* थोड़ा side padding ताकि text image से चिपके नहीं */
    }
}

/*store image*/
/* ============================
   Visit Our Stores - Section
   ============================ */

.aq-store-area {
    background: linear-gradient(180deg, #faf3e8 0%, #ffffff 100%);
    overflow: hidden;
}

.aq-store-doodle {
    display: block;
    font-size: 22px;
    opacity: 0.6;
    margin-bottom: 10px;
}

.aq-store-title {
    font-family: 'Georgia', serif;
    font-size: 42px;
    color: #2b2b2b;
    margin: 0;
}

/* Wrapper that holds both sliding cards */
.aq-store-wrap {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    min-height: 620px;
}

/* Base card styles + transition */
.aq-store-card {
    position: absolute;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 1;
    transition:
        top 1.2s cubic-bezier(0.65, 0, 0.35, 1),
        left 1.2s cubic-bezier(0.65, 0, 0.35, 1),
        right 1.2s cubic-bezier(0.65, 0, 0.35, 1),
        width 1.2s cubic-bezier(0.65, 0, 0.35, 1),
        height 1.2s cubic-bezier(0.65, 0, 0.35, 1);
}

/* Position: front (top-left, bigger) */
.aq-store-card.pos-front {
    top: 0;
    left: 0;
    right: auto;
    width: 62%;
    z-index: 2;
}

.aq-store-card.pos-front .aq-store-img {
    height: 620px;
}

/* Position: back (bottom-right, smaller) */
.aq-store-card.pos-back {
    top: 100px;
    left: auto;
    right: 0;
    width: 55%;
    z-index: 1;
}

.aq-store-card.pos-back .aq-store-img {
    height: 500px;
}

/* Image itself */
.aq-store-img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: height 1.2s cubic-bezier(0.65, 0, 0.35, 1);
}

/* Bottom gradient overlay with text */
.aq-store-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
    color: #fff;
}

.aq-store-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
}

.aq-store-address {
    font-size: 13px;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 10px;
}

.aq-store-link {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: underline;
}

.aq-store-link span {
    display: inline-block;
    margin-left: 3px;
}

/* ---------- MOBILE ---------- */
@media (max-width: 767px) {

    .aq-store-title {
        font-size: 28px;
    }

    .aq-store-wrap {
        min-height: auto;
        max-width: 100%;
    }

    .aq-store-card {
        position: relative !important;
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        top: 0 !important;
        margin-bottom: 20px;
        display: none;
    }

    .aq-store-card.pos-front {
        display: block;
    }

    .aq-store-img,
    .aq-store-card.pos-back .aq-store-img {
        height: 350px;
    }
}
.aq-store-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px;
    /* Pehle se zyada dark aur upar tak failaya gradient */
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.9) 100%);
    color: #fff;
}

.aq-store-name,
.aq-store-address,
.aq-store-link {
    color: #ffffff !important;
    /* Halke background par bhi text saaf dikhega */
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.aq-store-address {
    opacity: 0.95;
}

@media (max-width:767px){

.aq-store-card{
    position:relative !important;
    display:block !important;
    width:100% !important;
    height:auto !important;
    overflow:hidden;
}

.aq-store-img{
    width:100%;
    height:auto !important;
    object-fit:contain !important;
    display:block;
}

}
/*slider*/

