/**
Theme Name: Astra Child
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
Template: astra
*/

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700&family=Inter:wght@400;500;600;700&display=swap');

/* ==========================================
   GLOBAL VARIABLES
========================================== */

:root {
    --radius: .5rem;

    --background: oklch(98.5% .008 85);
    --foreground: oklch(18% .01 60);

    --card: oklch(100% 0 0);
    --card-foreground: oklch(18% .01 60);

    --muted: oklch(94% .012 80);
    --muted-foreground: oklch(45% .015 60);

    --border: oklch(90% .012 75);

    --gold: oklch(62% .11 70);
    --gold-soft: oklch(78% .08 75);

    --ink: oklch(18% .01 60);
    --cream: oklch(97% .012 85);

    --font-display: "Fraunces", Georgia, serif;
    --font-sans: "Inter", system-ui, sans-serif;
}

a:focus,
button:focus,
.product-card:focus,
.category-card:focus,
.wpforms-submit:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none !important;
}
/* ==========================================
   CATEGORY GRID
========================================== */

.category-grid-wrapper .category-grid {
    display: grid;
    gap: 24px;
}


/* ==========================================
   CATEGORY CARD
========================================== */

.category-card {
    display: block;

    overflow: hidden;

    border: 1px solid var(--border);

    border-radius: 24px;

    background: var(--background);

    text-decoration: none !important;

    color: inherit;

    transition: all 0.3s ease;
}

.category-card:hover .category-card-image {
    transform: scale(1.05);
}


/* ==========================================
   CATEGORY IMAGE
========================================== */

.category-card-image-wrapper {
    aspect-ratio : 4 / 3 ;

    overflow: hidden;

    background: var(--cream);
}

.category-card-image {
    width: 100%;
    height: 100% !important;

    object-fit: cover ;

    transition: transform 0.5s ease;
}
#first-faq summary.e-n-accordion-item-title {
    border: 0;
}

/* ==========================================
   CATEGORY CONTENT
========================================== */

.category-card-content {
    padding: 20px;
}

.category-card-title {
    margin: 0;

    font-family: var(--font-display);

    font-size: 24px;

    line-height: 1.2;

    font-weight: 600;

    color: var(--ink);
}

.category-card-description {
    margin-top: 4px;

    font-family: var(--font-sans);

    font-size: 14px;

    line-height: 1.5;

    color: var(--muted-foreground);
}
.category-card-link {
    display: inline-flex;
    margin-top: 12px;
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    color: var(--gold);
    align-items: center;
    justify-content: center;
	gap: 4px;
}


/* ==========================================
   CATEGORY SLIDER
========================================== */

.category-slider-wrapper {
    position: relative;
}

.category-swiper {
    overflow: hidden;
}

.category-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.category-swiper .swiper-slide {
    height: auto;
}


/* ==========================================
   SLIDER CARD
========================================== */

.category-slider-card {
    display: block;

    overflow: hidden;

    border-radius: 14px;

    background: var(--background);

    text-decoration: none;

    color: var(--foreground);

    transition: transform 0.3s ease;

    height: 100%;
}


.category-slider-card:hover .category-slider-image {
    transform: scale(1.05);
}


/* ==========================================
   SLIDER IMAGE
========================================== */

.category-slider-image-wrap {
    aspect-ratio: 1 / 1;

    overflow: hidden;

    background: var(--cream);
}

.category-slider-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}


/* ==========================================
   SLIDER CONTENT
========================================== */

.category-slider-content {
    padding: 12px 16px;
}

.category-slider-title {
    margin: 0;

    font-family: var(--font-sans);

    font-size: 14px;

    line-height: 20px;

    font-weight: 600;

    color: var(--ink);
}

.category-slider-link {
    margin-top: 4px;

    display: inline-flex;

    align-items: center;

    gap: 4px;

    font-family: var(--font-sans);

    font-size: 12px;

    line-height: 16px;

    color: var(--muted-foreground);
}

.category-slider-link svg , .category-card-link svg {
    width: 12px;
    height: 12px;
}


/* ==========================================
   PRODUCT GRID
========================================== */

.product-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 20px;
}




/* ==========================================
   PRODUCT CARD
========================================== */

.product-card {
    display: block;

    text-decoration: none !important;

    color: inherit;
}

.product-card:hover .product-card-image {
    transform: scale(1.05);
}


/* ==========================================
   PRODUCT IMAGE
========================================== */

.product-card-image-wrapper {
    aspect-ratio: 1 / 1;

    overflow: hidden;

    border-radius: 16px;

    background: var(--cream);
}

.product-card-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}


/* ==========================================
   PRODUCT CONTENT
========================================== */

.product-card-content {
    margin-top: 12px;
}

.product-card-category {
    font-family: var(--font-sans);

    font-size: 12px;

    line-height: 1;

    text-transform: uppercase;

    letter-spacing: 0.08em;

    color: var(--muted-foreground);
}

.product-card-title {
    margin-top: 4px;

    font-family: var(--font-sans);

    font-size: 16px;

    line-height: 1.5;

    font-weight: 500;

    color: var(--ink);
}

.product-card-price {
    margin-top: 4px;

    font-family: var(--font-display);

    font-size: 18px;

    line-height: 1.4;

    font-weight: 600;

    color: var(--ink);
}


/* ==========================================
   SLIDER NAVIGATION BUTTONS
========================================== */

.btn-left-slider, .btn-right-slider {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.btn-left-slider:hover,
.btn-right-slider:hover {
    background: var(--cream);

    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.btn-left-slider {
    left: -20px;
}

.btn-right-slider {
    right: -20px;
}

.btn-left-slider svg,
.btn-right-slider svg {
    width: 12px;
    height: 12px;

    fill: var(--ink);

    transition: fill 0.3s ease;
}

.btn-left-slider:hover svg,
.btn-right-slider:hover svg {
    fill: var(--gold);
}


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



/* ==========================================
   FILE UPLOAD
========================================== */

.file_upload_css {
    position: relative;
}

.file_upload_css input[type="file"] {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;

    cursor: pointer;

    z-index: 5;
}

.file_upload_css .wpforms-field-label {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    min-height: 100px;

    border: 2px dashed #e3ddd5;

    border-radius: 8px;

    background: #f8fafc;

    color: #0f172a;

    font-family: var(--font-sans);

    font-size: 18px;

    font-weight: 600;

    text-align: center;

    transition: all 0.3s ease;

    pointer-events: none;

    margin: 10px 0 0 !important;
}

.file_upload_css .wpforms-field-label::before {
    content: "📁";

    font-size: 20px;
}

.file_upload_css:hover .wpforms-field-label {
    border-color: #b07932;

    background: rgba(176, 121, 50, 0.12);

    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.12);
}

.custom-center p{
	display : flex;
  justify-content: center;
  align-items: center;
}

.diff-color{
	color: #b07932;
}


.inputfield_get input, .inputfield_get .choices.wpforms-field-row , .inputfield_get textarea {        
         width: 100% !important;
        max-width: 100% !important; 
        border: 1px solid #e3ddd5 !important;
}

.inputfield_get label {
    font-size: 12px !important;
    font-family: "Inter" !important;
    text-transform: uppercase !important;
    margin-bottom: 10px !important;
}
.inputfield_get .choices__inner{
	  border: 0 !important;
	
}
.wpforms-submit-container button{
  width: 100% !important;
   padding: 15px 25px 15px 25px !important;
    color: #fff !important;
    display: inline-block !important;
    fill: #fff !important;
    font-size: 15px !important;
    line-height: 1 !important;
font-family: "Inter" !important;
    height: auto !important;
}
.form-style-box .wpforms-field-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.inputfield_get {
    width: 100% !important;
    padding: 0px 0 10px !important;
}

.form-style-box #wpforms-200-field_0-container,.form-style-box #wpforms-200-field_1-container {
    max-width: 48%;
}

/* ========== PAGINATION STYLES ========== */
.pagination-wrapper {
    margin-top: 3rem;
    text-align: center;
}

.pagination {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pagination ul {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination li {
    display: inline-block;
    margin: 0;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: "Inter", system-ui, sans-serif;
    color: #1F2937;
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 0.5rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background-color: #F7F5F0;
    border-color: #C5A572;
    color: #C5A572;
}

.pagination .current {
    background-color: #C5A572;
    border-color: #C5A572;
    color: #FFFFFF;
    pointer-events: none;
}

.pagination .dots {
    border: none;
    background: transparent;
    pointer-events: none;
}

.pagination .prev,
.pagination .next {
    gap: 0.25rem;
}

/* Responsive pagination */
@media (max-width: 640px) {
    .pagination a,
    .pagination span {
        min-width: 36px;
        height: 36px;
        padding: 0 0.5rem;
        font-size: 0.75rem;
    }
    
    .pagination .prev,
    .pagination .next {
        display: inline-flex;
    }
}
/* Hide default scrollbar */


.positon-sticky-style,.positon-style{
   position: sticky !important;
   top: 100px;
}

#masthead{
   position: sticky !important;
   top: 0px;

}
.hfeed.site,#menu-1-289106b{
   overflow-x : clip
}

.btn-left-slider,.btn-right-slider{
  position: absolute;
	z-index: 99;
	cursor: pointer;

}
.btn-left-slider{
   left: -22px;
}
.btn-right-slider{
   right: -20px
}


@media (max-width: 1023px){
   .positon-style{
    position: relative !important;
    top: unset;
    }
    .btn-left-slider,
    .btn-right-slider {
        display: none;
    }
	
	.form-style-box #wpforms-200-field_0-container,.form-style-box #wpforms-200-field_1-container {
          max-width: 100%;
        }
}

@media (min-width: 767px) {
    .category-grid-wrapper .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
	 .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1023px) {
    .category-grid-wrapper .category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
	.product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}



@media (max-width: 767px){
   .positon-sticky-style{
    position: relative !important;
    top: unset;
    }
}