/*
Theme Name: Mahayogini
Author: Piyush
Description: Elementor compatible spiritual tarot theme
Version: 1.0
*/

body {
    margin:0;
}
h1, h2, h3, h4, h5, h6, p, span {
    font-family: 'Poppins';
}
a {
   text-decoration: none !important;
}
.elementor-element-550fcddc h2 {
    color: white;
    font-size: 24px !important;
}
main#main {
    width: 1240px;
    margin: auto;
    margin-top: 40px;
}
/* Home page scroll effect Start */
.Scroll_main_container {
    position: relative;
    display: flex;
    max-width: 480px;
    gap: 24px;
    margin: 50px auto;
    align-items: center !important;
}

.custom_card {
  margin: 0 20px;
  box-sizing: border-box;
  background: #dedede;
  min-height: 400px;
  position: sticky;
  top: 50px;
}
@media screen and (max-width: 768px) {
	.custom_card {
		margin: 0;
	}
}
/* Home page scroll effect END */
/* Home page services card  Start */
.pooja-card {
  position: relative;
  overflow: hidden;
}

/* Gradient overlay */
.pooja-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0.9,0.9,0.9,0.8), transparent 100%);
  opacity: 0;
  transition: 0.4s ease;
  z-index: 1;
  pointer-events: none; /* button clickable */
}

.pooja-card:hover::before {
  opacity: 1;
}

/*  Content (title + button) */
.pooja-card .elementor-cta__content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  transition: 0.4s ease;
}

/*  Title */
.pooja-card .elementor-cta__title {
  margin: 0;
  transition: 0.4s ease;
}



/* Hover Effects */
.pooja-card:hover .elementor-cta__content {
  bottom: 40px; 
}

.pooja-card .elementor-cta__content .elementor-cta__button {
  display: none;
}

.pooja-card:hover .elementor-cta__content .elementor-cta__button {
  display: inline-block;
}
/* Button hidden by default */
.pooja-card .elementor-cta__button {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
}

/* Show on hover */
.pooja-card:hover .elementor-cta__button {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0);
  pointer-events: auto;
}
/* Home page services card  END */
/* Home page Product card  Start */
section.service_section.featured_product_section {
    margin-top: 10px;
}
.featured_product_section .product_box {
    margin-bottom: 25px;
}

.product_box_img {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.product_box_img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.4s ease;
}

/* Overlay */
.product_box_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s ease;
}

/* View Button */
.product_box_overlay a {
    background: #fff;
    color: #000;
    padding: 10px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

/* Price (hidden initially) */
.product_box_price {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #fff;
    color: #000;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s ease;
}

/* Hover Effects */
.product_box_img:hover img {
    transform: scale(1.1);
}

.product_box_img:hover .product_box_overlay {
    opacity: 1;
}

.product_box_img:hover .product_box_price {
    opacity: 1;
    transform: translateY(0);
}

/* Content */
.product_box_content {
    margin-top: 12px;
}

.product_box_content h6 {
    font-size: 16px;
    line-height: 1.4;
}

.product_box_content h6 a {
    color: #000;
    text-decoration: none;
}

.product_box_btn {
    margin-top: 10px;
}
.product_box_content h6 img {
    display: none !important;
}
/* Mobile Fix */
@media (max-width: 768px) {
    .product_box_img img {
        height: 200px;
    }
}
/* Home page Product card  END */
/* Testimonial slider css Start */
.testimonial-card {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.testimonial-inner {
    background: #FAF8F5;
    border-radius: 8px;
    padding: 20px;
    max-width: 350px;
    position: relative;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    height: 290px;
}

.quote-mark {
    font-size: 80px;
    color: #e91e635e;
    position: absolute;
    top: -20px;
    float: right;
    text-align: right;
    right: 30px;
}

.testimonial-content {
    font-style: italic;
    color: #444;
    margin: 20px 0;
    text-align: left;
}
.testimonial-inner a {
    text-align: center;
    width: 40%;
}
.testimonial-name {
    font-weight: bold;
    margin-top: 10px;
    color: #222;
    text-align: left;
}

.read-more {
    display: block;
    margin-top: 15px;
    background: #333; /* dark rectangular button */
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
}
/* Testimonial slider css END */

/* Single Product Full Width */
.single-product .product {
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
	margin-top: 30px;
}

/* Blog Css */
.blog-card {
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    }
    .blog-img img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    .blog-content {
        padding: 15px;
    }
    .blog-content h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    .blog-content .date {
        font-size: 12px;
        color: #888;
    }
    .blog-content p {
        font-size: 14px;
        margin: 10px 0;
    }
    .blog-content h3 a {
        color: rgba(38, 30, 30, 1);
        font-size: 18px;
        font-weight: 400;
        font-family: "Poppins", Sans-serif";
    }
    .read-more {
        display: inline-block;
        padding: 8px 14px;
        background: #000;
        color: #fff;
        text-decoration: none;
        font-size: 13px;
    }
/* Single product page template css */
.custom-product-wrapper {
    display: flex;
    gap: 40px;
    margin: 40px auto;
    flex-wrap: wrap;
}

.custom-gallery {
    width: 48%;
}

.custom-summary {
    width: 48%;
}

/* Main Image */
.main-image img {
    width: 100%;
    border-radius: 8px;
}

/* Thumbnail slider */
.thumb-slider {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    overflow-x: auto;
}

.thumb-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 6px;
    border: 2px solid transparent;
}

.thumb-img:hover {
    border-color: #000;
}

/* Tabs */
.custom-tabs {
    max-width: 1200px;
    margin: 40px auto;
}
.custom-gallery {
    width: 48%;
}

/* Main slider */
.main-slider {
    width: 100%;
    margin-bottom: 10px;
	overflow: hidden;
}

.main-slider img {
    width: 100%;
    border-radius: 8px;
}

/* Thumbnail slider */
/* .main-slider .swiper-slide {
    height: 450px; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-slider .swiper-slide img {
    height: 100%;
    width: auto; 
    object-fit: contain; 
} */
.main-slider .swiper-slide {
    width: 100%;
    aspect-ratio: 1 / 1; /* ✅ keeps square ratio (best for products) */
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* THUMBNAILS SAME HEIGHT */
.thumb-slider .swiper-slide {
    height: 80px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumb-slider .swiper-slide img {
    height: 100%;
    width: auto;
    object-fit: cover;
}

.thumb-slider .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid #000;
}

.thumb-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}
/* Common arrow style */
.swiper-button-prev,
.swiper-button-next {
    width: 45px;
    height: 45px;
    background: #000;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
}

/* Arrow icon size */
.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 16px;
    font-weight: bold;
}

/* Hover effect */
.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: #333;
}
div#tab-tags a:hover {
    background: transparent;
    color: #F907BF !important;
    border: 1px solid #F907BF;
}

/* Position adjust */
.swiper-button-prev {
    left: 10px;
}

.swiper-button-next {
    right: 10px;
}
.main-slider .swiper-wrapper {
    display: flex;
}
.swiper-button-prev svg path, .swiper-button-next svg path {
    color: white;
    fill: white;
}
.swiper-button-prev svg, .swiper-button-next svg {
    width: 10px !important;
}
/* Mobile */
@media(max-width:768px){
    .custom-gallery,
    .custom-summary {
        width: 100%;
    }
	.swiper-button-prev,
    .swiper-button-next {
        width: 30px;
        height: 30px;
    }
	main#main {
		width: 90%;
		margin: auto;
		margin-top: 40px;
	}
	h1.product-title {
		font-size: 18px;
	}
	.custom-tabs-nav {
		display: block;
		border-bottom: 1px solid #ddd;
		list-style: none;
		padding: 0;
		margin-bottom: 0px;
	}
	#tab-desc h1 {
		font-size: 18px;
	}
	#tab-desc p {
		font-size: 14px;
	}
	#tab-desc h3 {
		font-size: 15px;
	}
	.product-short-desc p{
		font-size: 14px;
	}
}
h1.product-title {
    font-family: 'Poppins';
    font-size: 30px;
}
.product-short-desc h3 {
    font-size: 25px;
    margin-top: 10px;
}
.add-to-cart form {
    display: flex;
    gap: 10px;
    vertical-align: middle;
}
.product-short-desc a {
	color: #000;
   text-decoration: none !important;
}
button.single_add_to_cart_button.button.alt {
    background: #F907BF;
	font-family: 'Poppins';
	border-radius: 5px;
}
button:hover {
    background: transparent !important;
    color: #F907BF !important;
    border: 1px solid #F907BF !important;
}
.input-text.qty.text {
    height: 36px;
    padding-bottom: 3px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.product-short-desc {
    margin-bottom: 30px;
    margin-top: 20px;
}
.custom-tabs-wrapper {
    margin: 50px auto;
    background: #fff;
}
select#pa_telephonic-conversation-time {
    padding: 10px 20px;
    margin-left: 20px;
    border: 1px solid #ccc !important;
    border-radius: 9px;
}
.woocommerce-variation-price span.price {
    position: inherit;
}
/* ===== TABS ===== */


.custom-tabs-nav {
    display: flex;
    border-bottom: 1px solid #ddd;
    list-style: none;
    padding: 0;
}

.custom-tabs-nav li {
    padding: 14px 25px;
    background: #f5f5f5;
    cursor: pointer;
    border-right: 1px solid #ddd;
}

.custom-tabs-nav li.active {
    background: #097ef9;
    color: #fff;
}

.custom-tab-content {
    display: none;
    padding: 30px;
    border: 1px solid #ddd;
    border-top: none;
}

.custom-tab-content.active {
    display: block;
}

.tab-title {
    font-size: 30px;
    margin-bottom: 20px;
}

/* ===== REVIEW ===== */

.review-title {
    font-size: 26px;
    margin-bottom: 15px;
}

.no-review-box {
    background: #f907bf;
    color: #fff;
    padding: 12px 20px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 15px;
}

.review-note {
    margin-bottom: 20px;
}

/* form */
.custom-tab-content input,
.custom-tab-content textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
}

.custom-tab-content textarea {
    height: 180px;
}

/* button */
.custom-tab-content input[type="submit"] {
    background: #111;
    color: #fff;
    padding: 10px 25px;
    border: none;
    cursor: pointer;
}

/* stars */
.star-rating span {
    font-size: 22px;
    color: #ccc;
    cursor: pointer;
}

.star-rating span.active {
    color: #1a3cff;
}
#tab-desc h2 strong a, #tab-desc h2 strong,
#tab-desc h2, #tab-desc h2 a{
    font-family: 'Poppins';
    font-size: 22px;
    color: #000 !important;
}
#tab-desc h5 {
    font-size: 18px;
}
#tab-desc p a{
	color: #000;
}
#tab-desc  input#submit {
    width: auto;
    background: #f907bf;
}

/* GRID */

h2.related-product-title {
    text-align: center;
    font-weight: 600;
}
.related-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 50px auto;
}

/* CARD */
.product-card {
    font-family: Arial, sans-serif;
}

/* IMAGE BOX */
.product-img {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

/* IMAGE */
.product-img img {
    width: 100%;
    display: block;
    border-radius: 20px;
    transition: 0.3s;
    height: 280px;
    max-height: 380px;
}


/* PRICE BADGE */
.price {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
}

/* VIEW BUTTON */
.view-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    transition: 0.3s;
}

/* HOVER EFFECT */
.product-img:hover img {
    transform: scale(1.05);
}

.product-img:hover .view-btn {
    transform: translate(-50%, -50%) scale(1);
}

/* TITLE */
.product-title {
    font-size: 15px;
    margin-top: 10px;
    line-height: 1.4;
}
#tab-tags a {
    background: #f907bf;
    color: #fff!important;
    padding: 5px 15px;
    border-radius: 50px;
    margin: 3px 0px;
    font-size: 14px;
    display: inline-block;
}
.woocommerce .star-rating::before {
    content: "" !important;
    color: #cfc8d8;
    float: left;
    top: 0;
    left: 0;
    position: unset;
	display: none;
}
input#submit {
    width: auto;
    background: #f907bf !important;
    color: white !important;
}
.product-card.col-md-6.col-lg-3.product_box {
    margin-bottom: 30px;
}
.single-product .quantity {
    display: inline-block;
}
/* RESPONSIVE */
@media (max-width: 992px) {
    .related-products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .related-products {
        grid-template-columns: 1fr;
    }
}

/* services Css*/
#load-more-btn {
    background: #f907bf;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    margin: auto;
    text-align: center;
    float: none;
}
.load-more-wrap {
    text-align: center;
}

/* category Css */

.categories {
    margin-bottom: 50px;
}
.woocommerce-products-header__title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.woocommerce-products-header__title::after {
    content: "";
    display: block;
    /* width: 100%; */
    height: 0.1px;
    background: #0000003d;
    margin-top: 10px;
}
/* cart css */
a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained {
    background: #f907bf;
    color: white;
    border: 1px solid #f907bf;
    border-radius: 5px;
}
a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained:hover {
    background: transparent;
    color: #f907bf;
    border: 1px solid #f907bf;
    border-radius: 5px;
}
/* checkout page */
button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained{
    background: #f907bf;
    color: #fff;
    border: 1px solid #f907bf;
    border-radius: 5px;
    padding: 15px 60px;
}
span.wc-block-formatted-money-amount.wc-block-components-formatted-money-amount.wc-block-components-product-price__value.wc-block-components-order-summary-item__individual-price {
    display: none;
}

/* ===== My Account Page Wrapper ===== */
.woocommerce-account .woocommerce {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
    font-family: 'Poppins', sans-serif;
}

/* ===== Sidebar Menu ===== */
.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 25%;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-MyAccount-navigation ul li {
    margin-bottom: 10px;
}

.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 12px 15px;
    border-radius: 6px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover + Active */
.woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-MyAccount-navigation ul li.is-active a {
    background: #097ef9;
    color: #fff;
}

/* ===== Content Area ===== */
.woocommerce-account .woocommerce-MyAccount-content {
    width: 75%;
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* Headings */
.woocommerce-account h1,
.woocommerce-account h2,
.woocommerce-account h3 {
    margin-bottom: 20px;
}

/* Links */
.woocommerce-account a {
    text-decoration: none;
}

.woocommerce-account a:hover {
    text-decoration: underline;
}

/* Buttons */
.woocommerce-account .button {
    background: #097ef9;
    color: #fff;
    border-radius: 5px;
    padding: 10px 15px;
    border: none;
}

.woocommerce-account .button:hover {
    background: #065ec2;
}

/* Tables (Orders) */
.woocommerce-account table {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce-account table th,
.woocommerce-account table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.woocommerce-account table th {
    background: #f8f8f8;
    text-align: left;
}

/* Forms */
.woocommerce-account input,
.woocommerce-account select,
.woocommerce-account textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
/* Remove default list bullets completely */
.woocommerce-MyAccount-navigation ul {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

/* Remove spacing causing <br>-like gaps */
.woocommerce-MyAccount-navigation ul li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Fix anchor behaving like inline (causing breaks) */
.woocommerce-MyAccount-navigation ul li a {
    display: block; /* IMPORTANT */
}
.woocommerce-MyAccount-navigation br {
    display: none !important;
}
/* ===== Responsive ===== */
@media(max-width:768px){
    .woocommerce-account .woocommerce {
        flex-direction: column;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation,
    .woocommerce-account .woocommerce-MyAccount-content {
        width: 100%;
    }
}

/*Top Menu*/
li#menu-item-5441 {
    background: #f907bf;
    color: #fff;
    border-radius: 5px;
    padding: 0 0 !important;
    margin-right: 10px;
    border: 1px solid #f907bf;
}
li#menu-item-5441:hover {
    background: transparent;
    color: #f907bf !important;
    border-radius: 5px;
    padding: 0 0 !important;
    margin-right: 10px;
}
li#menu-item-5441 a.hfe-menu-item {
    color: white;
    padding: 10px 20px;
}
li#menu-item-5441 a.hfe-menu-item:hover {
    color: #f907bf !important;
}
li#menu-item-5340, li#menu-item-5346 {
    background: #097ef9;
    color: #fff;
    border-radius: 5px;
    padding: 0 0 !important;
    margin-right: 10px;
    border: 1px solid #097ef9;
}
li#menu-item-5340:hover, li#menu-item-5346:hover {
    background: transparent;
    
}
li#menu-item-5340 a.hfe-menu-item:hover, li#menu-item-5346 a.hfe-menu-item:hover  {
    color: #097ef9 !important;
}
li#menu-item-5340 a.hfe-menu-item, li#menu-item-5346 a.hfe-menu-item {
    color: white;
    padding: 10px 20px;
}
div#ppom-price-container {
    display: none;
}
.elementor-element.elementor-element-3d427b9.my-account.elementor-widget.elementor-widget-button {
    background: transparent;
}

.custom-cart-icon {
    position: relative;
    display: inline-block;
}

.custom-cart-icon a {
    text-decoration: none;
    font-size: 25px; /* 🔥 Increase icon size */
    position: relative;
}
.custom-cart-icon i {
    color: white;
    font-size: 18px;
}
.cart-count {
    background: #fff;          /* White background */
    color: #000;               /* Black text */
    font-size: 13px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 50px;       /* Fully rounded */
    position: absolute;
    top: 0px;
    right: -15px;
    line-height: 1;
    min-width: 22px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2); /* Nice shadow */
}


.custom-contact-form .form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.custom-contact-form .form-col {
    flex: 1;
}

/* Input style (underline only) */
.custom-contact-form input,
.custom-contact-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ccc;
    color: #000;
    padding: 10px 5px;
    font-size: 14px;
}

.custom-contact-form input::placeholder,
.custom-contact-form textarea::placeholder {
    color: #aaa;
}

/* Remove focus outline */
.custom-contact-form input:focus,
.custom-contact-form textarea:focus {
    outline: none;
    border-bottom: 1px solid #000;
}

/* Button style */
.custom-contact-form .submit-col {
    display: flex;
    align-items: center;
}

.custom-contact-form input[type="submit"] {
    background: #f907bf;
    color: #fff;
    border: none;
    padding: 12px 40px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 10px;
}
/* Preloader full screen */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Loader animation */
.loader {
    width: 50px;
    height: 50px;
    border: 5px solid #ddd;
    border-top: 5px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
.time_set .form-check {
    position: relative;
    display: inline-block !important;
    padding-left: 1.25rem;
}
.dd-option img.dd-option-image.dd-image-right, .dd-option .small.dd-option-description.dd-desc, .dd-option img.dd-selected-image.dd-image-right,
.woocommerce-currency-switcher-form img.dd-selected-image.dd-image-right{
    display: none !important;
}
small.dd-option-description.dd-desc, small.dd-option-description.dd-desc {
    display: none;
}
label.dd-option-text {
    font-weight: 400;
    float: left;
}
a.dd-selected {
    font-weight: 400 !important;
    text-align: left;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}
/* Responsive */
@media (max-width: 768px) {
    .custom-contact-form .form-row {
        flex-direction: column;
    }
}