/* ===================================
   Custom CSS for Celestial Insights
   Astrology Website
   =================================== */

/* CSS Variables & Design Tokens */
:root {
    --primary-purple: #7B2CBF;
    --primary-blue: #240046;
    --secondary-purple: #9D4EDD;
    --accent-pink: #E0AAFF;
    --accent-gold: #FFD700;
    --cosmic-dark: #10002B;
    --cosmic-darker: #0A0014;
    --text-light: #F8F9FA;
    --text-muted: #C9C9C9;
    --gradient-cosmic: linear-gradient(135deg, #240046 0%, #7B2CBF 50%, #9D4EDD 100%);
    --gradient-night: linear-gradient(180deg, #0A0014 0%, #240046 100%);
    --gradient-aurora: linear-gradient(90deg, #7B2CBF, #E0AAFF, #7B2CBF);
    --section-padding: 100px 0;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: var(--cosmic-darker);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* Navigation */
.glass-nav {
    background: rgba(36, 0, 70, 0.3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(157, 78, 221, 0.2);
    transition: var(--transition-smooth);
    padding: 0rem 0;
}

.glass-nav.scrolled {
    background: rgba(36, 0, 70, 0.95);
    box-shadow: 0 8px 32px rgba(123, 44, 191, 0.3);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-aurora);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

.navbar-nav .nav-link {
    color: var(--text-light);
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem;
    transition: var(--transition-smooth);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-aurora);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-pink);
}

.btn-cosmic {
    background: var(--gradient-cosmic);
    color: var(--text-light);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
/*     border: 2px solid transparent; */
    transition: var(--transition-smooth);
}

.btn-cosmic:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(157, 78, 221, 0.5);
    color: var(--text-light);
}

/* Hero Section - Galaxy Effect */
.hero-section {
    position: relative;
    min-height: 100vh;
    background:
        radial-gradient(ellipse at top, #1e0533 0%, #0a0014 40%, #000000 100%);
    overflow: hidden;
    padding-top: 80px;
}

/* Enhanced twinkling stars */




.hero-content {
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 40px;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.gradient-text {
    background: var(--gradient-aurora);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-cosmic-primary {
    font-size: 16px;
    background: var(--gradient-cosmic);
    color: var(--text-light);
    border: none;
    border-radius: 50px;
    padding: 9px 21px;
    font-weight: 500;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(123, 44, 191, 0.4);
}

.btn-cosmic-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(157, 78, 221, 0.6);
    color: var(--text-light);
}

.btn-cosmic-outline {
    background: transparent;
    color: var(--accent-pink);
    border: 2px solid var(--secondary-purple);
    border-radius: 50px;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-cosmic-outline:hover {
    background: var(--secondary-purple);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(157, 78, 221, 0.4);
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Visual with Image */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.cosmic-circle {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transform-style: preserve-3d;
}

.cosmic-circle::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: var(--gradient-aurora);
    background-size: 200% auto;
    animation: rotate 8s linear infinite;
    z-index: -1;
    filter: blur(30px);
    opacity: 0.8;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

.zodiac-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 40px rgba(157, 78, 221, 0.8));
    animation: imageFloat 6s ease-in-out infinite, imagePulse 4s ease-in-out infinite;
}

@keyframes imageFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.02);
    }
}

@keyframes imagePulse {

    0%,
    100% {
        filter: drop-shadow(0 0 40px rgba(157, 78, 221, 0.8));
    }

    50% {
        filter: drop-shadow(0 0 60px rgba(224, 170, 255, 1));
    }
}

.cosmic-glow {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.4) 0%, transparent 70%);
    z-index: 1;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.cosmic-ring {
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    border: 2px solid rgba(224, 170, 255, 0.5);
    z-index: 0;
    animation: ringRotate 10s linear infinite, ringPulse 2s ease-in-out infinite;
}

.cosmic-ring::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    width: 10px;
    height: 10px;
    background: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--accent-gold);
    transform: translateX(-50%);
}

@keyframes ringRotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes ringPulse {

    0%,
    100% {
        border-color: rgba(224, 170, 255, 0.5);
        border-width: 2px;
    }

    50% {
        border-color: rgba(224, 170, 255, 0.9);
        border-width: 3px;
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.cosmic-hand-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
    opacity: 0.7;
    animation: rotateBackground 20s linear infinite;
    /* filter: blur(2px) drop-shadow(0 0 30px rgba(157, 78, 221, 0.6)); */
}

@keyframes rotateBackground {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* Section Styles */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-aurora);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Zodiac Section */
.zodiac-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--cosmic-darker) 0%, var(--cosmic-dark) 100%);
}

.zodiac-card {
    background: rgba(36, 0, 70, 0.4);
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    height: 100%;
}

.zodiac-card:hover {
    transform: translateY(-10px);
    background: rgba(123, 44, 191, 0.3);
    border-color: var(--secondary-purple);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.4);
}

.zodiac-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--gradient-aurora);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

.zodiac-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.zodiac-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-pink);
}

.zodiac-date {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.zodiac-element {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.zodiac-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Horoscope Section */
.horoscope-section {
    padding: var(--section-padding);
    background: var(--cosmic-dark);
}

.glass-card {
    background: rgba(36, 0, 70, 0.4);
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cosmic-select {
    background: rgba(16, 0, 43, 0.6);
    border: 2px solid rgba(157, 78, 221, 0.4);
    color: var(--text-light);
    border-radius: 15px;
    padding: 1rem;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.cosmic-select:focus {
    background: rgba(16, 0, 43, 0.8);
    border-color: var(--secondary-purple);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.5);
    color: var(--text-light);
}

.cosmic-select option {
    background: var(--cosmic-dark);
    color: var(--text-light);
    padding: 1rem;
}

/* Services Section */
.services-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--cosmic-dark) 0%, var(--cosmic-darker) 100%);
}

.service-card {
    background: rgb(36 0 70);
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgb(36 0 70);
    border-color: var(--secondary-purple);
    box-shadow: 0 15px 40px rgba(157, 78, 221, 0.4);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-aurora);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-pink);
}

.service-desc {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link {
    color: var(--secondary-purple);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    /* display: inline-flex; */
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    color: var(--accent-pink);
    gap: 1rem;
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding);
    background: var(--cosmic-dark);
}

.cosmic-input {
    background: rgba(16, 0, 43, 0.6);
    border: 2px solid rgba(157, 78, 221, 0.4);
    color: var(--text-light);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: var(--transition-smooth);
}

.cosmic-input:focus {
    background: rgba(16, 0, 43, 0.8);
    border-color: var(--secondary-purple);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.5);
    color: var(--text-light);
    outline: none;
}

.cosmic-input::placeholder {
    color: rgba(201, 201, 201, 0.5);
}

.form-label {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Footer Section */
.footer-section {
    background: linear-gradient(180deg, var(--cosmic-darker) 0%, #000000 100%);
    border-top: 1px solid rgba(157, 78, 221, 0.2);
    padding-top: 3rem;
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-heading {
    color: var(--accent-pink);
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
	margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-pink);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(123, 44, 191, 0.3);
    border: 1px solid rgba(157, 78, 221, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--secondary-purple);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(157, 78, 221, 0.5);
    color: var(--text-light);
}

.newsletter-form .input-group {
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-form .cosmic-input {
    border-radius: 50px 0 0 50px;
    border-right: none;
}

.newsletter-form .btn-cosmic-primary {
    border-radius: 0 50px 50px 0;
    padding: 0.75rem 1.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(157, 78, 221, 0.2);
    margin-top: 2rem;
    color: var(--text-muted);
}

.site-content, .site-main .widecolumn {
    margin-left: 0px !important;
}
.page .entry-header, .blog_page_header {
    background: #ffdfca !important;
    max-width: 100% !important;
    padding: 150px 0 40px !important;
    margin: 0 0 50px !important;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.inner_page_header {
	background-size: cover !important;
	padding: 100px 20px;
	position: relative;
}
.inner_page_header:before {
	background: rgba(0, 0, 0, 0.7);
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.page .entry-content {
	max-width: 100% !important;
	padding: 0px !important;
}
.content-area, .content-sidebar {
    padding-top: 0px !important;
}
.page .entry-title, .blog_page_title {
	font-family: var(--font-heading);
	font-size: 3.5rem;
	font-weight: 400;
	line-height: 1.1;
	margin-bottom: 10px;
	color: #ffffff;
	text-transform: capitalize;
}
.breadcrumb-container {
    width: 100%;
	color: #fff;
	position: relative;
	font-size: 15px;
}
.breadcrumb-container a {
	color: #fff;
}
.page {
	margin-top: 0 !important;
}
.orderby {
	background: url("../images/dropdown.png") no-repeat center right 10px !important;
	border: 1px solid #ccc;
	color: #666;
	padding: 8px 30px 8px 10px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.woocommerce-loop-product__title {
	color: #7b2cbf;
	font-weight: 600;
	line-height: 23px;
	text-transform: uppercase;
}
.price {
	font-family: 'Cinzel', serif;
	color: var(--accent-gold) !important;
	font-size: 22px !important;
	font-weight: 600 !important;
}
.add_to_cart_button, .wc-block-cart__submit-button, .wc-block-components-checkout-place-order-button, .single_add_to_cart_button {
	background: var(--gradient-cosmic) !important;
	color: #fff !important;
	line-height: normal !important;
	border-radius: 30px !important;
	font-size: 15px !important;
	padding: 12px 22px !important;
	font-weight: normal !important;
}
.woocommerce-product-details__short-description {
	color: #666;
}
.quantity .plus, .quantity .minus {
	background: var(--accent-gold) !important;
	height: 43px;
	border-radius: 50% !important;
	width: 43px;
	padding: 0 !important;
	font-size: 20px !important;
	color: #111 !important;
}
.quantity .input-text {
	min-height: 43px;
}
.woocommerce div.product div.images .flex-control-thumbs {
	margin: 0 -5px !important;
}
.woocommerce div.product div.images .flex-control-thumbs li {
	width: 23.1% !important;
	margin: 10px 5px !important;
}
.woocommerce div.product div.images .flex-control-thumbs li img {
	border: 1px solid #ccc;
	padding: 10px;
}
.woocommerce div.product div.images .flex-control-thumbs li img.flex-active  {
	border-color: #222;
}
.product_meta a {
	color: #a2a09b;
}
.woocommerce-MyAccount-navigation ul {
	border: 1px solid #ddd;
	border-radius: 6px;
	overflow: hidden;
	margin-left: 0 !important;
}
.woocommerce-MyAccount-navigation ul li {
	list-style: none;
}
.woocommerce-MyAccount-navigation ul li a {
	display: block;
	border-bottom: 1px solid #ddd;
	padding: 12px 15px;
	color: #666 !important;
}
.woocommerce-MyAccount-navigation ul li:last-child a {
	border-bottom: none;
}
.woocommerce-MyAccount-navigation ul li.is-active a {
	background: var(--gradient-cosmic);
	color: #fff !important;
}
.woocommerce-MyAccount-content {
	color: #666;
}
.woocommerce-MyAccount-content a {
	color: #a2a09b;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
	padding: 0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
	border: none !important;
	background: #111 !important;
	padding: 0 !important;
	margin: 0 6px 0 0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::before, .woocommerce div.product .woocommerce-tabs ul.tabs li::after {
	display: none !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	padding: 11px 20px !important;
	font-weight: 500 !important;
	color: #fff !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
	background: var(--gradient-cosmic) !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
	color: #fff !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before {
	border-color: #eee !important;
}
#tab-description {
	color: #666;
}
#tab-description h2 {
	color: #222;
}
.wc-block-components-product-metadata__description {
	font-size: 14px;
	color: #666;
}
.woocommerce p.stars a {
	color: var(--accent-gold) !important;
}
.wp-block-woocommerce-cart-order-summary-block {
  border: 1px solid #ddd;
  border-radius: 6px;
}
.is-large.wc-block-cart .wc-block-cart__totals-title {
	font-size: 18px !important;
	padding: 12px 15px !important;
}
.wc-block-components-totals-wrapper {
  padding: 16px 15px !important;
}
.contact-form-card p {
	margin-bottom: 0 !important;
}
.contact-form-card .form-label {
	color: #7B2CBF !important;
	font-weight: 600;
	font-size: 0.95rem;
	margin-bottom: 0.5rem;
	display: block;
}
.contact-form-card input {
	background: #f8f9fa !important;
	border: 2px solid #e0e0e0 !important;
	color: #333 !important;
	border-radius: 12px !important;
	padding: 0.85rem 1.2rem !important;
	font-size: 1rem;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	width: 100%;
}
.contact-form-card textarea {
	background: #f8f9fa !important;
	border: 2px solid #e0e0e0 !important;
	color: #333 !important;
	border-radius: 12px !important;
	padding: 0.85rem 1.2rem !important;
	font-size: 1rem;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	width: 100%;
	height: 150px;
	resize: none;
}
.contact-form-card .btn-cosmic-primary {
  background: linear-gradient(135deg, #240046 0%, #7B2CBF 50%, #9D4EDD 100%) !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 1rem 2rem !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(123, 44, 191, 0.3) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.header_menu ul {
/* 	flex-direction: row; */
	padding: 0;
	margin: 0;
}
.header_menu ul li {
	list-style: none;
	display: inline-block;
	margin-right: 10px;
}
.header_menu ul li a {
	color: var(--text-light);
	font-weight: 500;
	margin: 0 0.5rem;
	font-size: 16px;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-right: var(--bs-navbar-nav-link-padding-x);
	padding-left: var(--bs-navbar-nav-link-padding-x);
	transition: var(--transition-smooth);
  	position: relative;
}
.header_menu ul li a:hover, .header_menu ul li.active a {
	color: var(--accent-pink);
}
.header_menu ul li a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--gradient-aurora);
	transition: var(--transition-smooth);
	transform: translateX(-50%);
}
.header_menu ul li a:hover::after, .header_menu ul li.active a::after {
  width: 100%;
}
.rmp-menu-title-image {
  width: 100px;
  height: 60px;
}
.homepage_form_box p {
	margin-bottom: 0 !important;
}



/* Responsive Design */
@media only screen and (min-width : 300px) and (max-width : 1023px) {
	.header_right {
		display: none !important;
	}
	.page .entry-title, .blog_page_title {
		font-size: 35px;
	}
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .cosmic-circle {
        width: 380px;
        height: 380px;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .cosmic-circle {
        width: 320px;
        height: 320px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    :root {
        --section-padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .cosmic-circle {
        width: 280px;
        height: 280px;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    .zodiac-icon {
        font-size: 3rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-aurora);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow {
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.6);
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--cosmic-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-cosmic);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-purple);
}

/* Selection Styling */
::selection {
    background: var(--secondary-purple);
    color: var(--text-light);
}

::-moz-selection {
    background: var(--secondary-purple);
    color: var(--text-light);
}

/* Hero Carousel Slider Styles */
#heroCarousel {
    padding: 2rem 0;
}

/* 
#heroCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(157, 78, 221, 0.5);
    border: 2px solid rgba(224, 170, 255, 0.3);
    transition: var(--transition-smooth);
}

#heroCarousel .carousel-indicators button.active {
    background-color: var(--accent-pink);
    border-color: var(--accent-pink);
    box-shadow: 0 0 15px rgba(224, 170, 255, 0.8);
    width: 40px;
    border-radius: 6px;
} */

.hero-content-slide {
    padding: 2rem 1.5rem;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: fadeInSlide 0.6s ease-out;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(123, 44, 191, 0.3);
    border: 2px solid rgba(157, 78, 221, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(123, 44, 191, 0.6);
    border-color: var(--accent-pink);
    opacity: 1;
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.6);
}

.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: drop-shadow(0 0 5px rgba(224, 170, 255, 0.8));
    width: 1rem;
    height: 1rem;
}

/* Static Hero Image on Right */
.hero-visual-static {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem;
}

.cosmic-hand-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cosmic-hand-image {
    width: 80%;
    height: 80%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 40px rgba(224, 170, 255, 0.8));
    animation: handFloat 6s ease-in-out infinite, handGlow 4s ease-in-out infinite;
}

@keyframes handFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-25px) rotate(2deg);
    }
}

@keyframes handGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 40px rgba(224, 170, 255, 0.2));
    }

    50% {
        filter: drop-shadow(0 0 60px rgba(157, 78, 221, 0.3)) drop-shadow(0 0 80px rgba(224, 170, 255, 0.4));
    }
}

.cosmic-hand-container .cosmic-glow {
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.2) 0%, rgba(224, 170, 255, 0.1) 30%, transparent 70%);
    animation: glowPulseHand 4s ease-in-out infinite;
}

@keyframes glowPulseHand {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

/* Responsive adjustments for carousel */
@media (max-width: 992px) {
    .hero-content-slide {
        min-height: 350px;
        padding: 1.5rem;
    }

    .cosmic-hand-container {
        max-width: 400px;
        height: 400px;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-content-slide {
        min-height: 300px;
        padding: 1rem;
    }

    .cosmic-hand-container {
        max-width: 350px;
        height: 350px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .hero-content-slide {
        min-height: 280px;
    }

    .cosmic-hand-container {
        max-width: 300px;
        height: 300px;
    }
}



/* Update container for layering */
.cosmic-hand-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Enhanced Smooth Fade Effect for Carousel */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.01s;
    transform: translateZ(0);
    will-change: opacity;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active.carousel-item-start,
.carousel-fade .carousel-item.active.carousel-item-end {
    opacity: 0;
}

/* Fix carousel item overlapping during fade */
#heroCarousel .carousel-inner {
    position: relative;
    min-height: 400px;
}

#heroCarousel .carousel-item {
    position: relative;
    z-index: 1;
}

#heroCarousel .carousel-item.active {
    z-index: 2;
}

#heroCarousel .carousel-item-next,
#heroCarousel .carousel-item-prev {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}


.about-image-container {
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
}

.about-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}


/* ===================================
   Why Choose Us Section (Screenshot Style)
   =================================== */
.why-choose-section {
    padding: var(--section-padding);
    background: #fff;
    position: relative;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent);
    background-size: 200% 200%;
    opacity: 0.3;
    pointer-events: none;
}

.title-divider {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

.title-divider svg {
    animation: shimmer 3s linear infinite;
}

.why-stat-item {
    text-align: center;
    padding: 1rem;
    transition: var(--transition-smooth);
}

.why-stat-item:hover {
    transform: translateY(-10px);
}

.mystical-circle {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mystical-icon {
    width: 100%;
    height: 100%;
    animation: rotate-slow 30s linear infinite;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
}

@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.stat-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    background: var(--gradient-aurora);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
    text-shadow: 0 0 20px rgba(224, 170, 255, 0.5);
}

.logo-text {
    width: 130px;
}

.logo-text img {
    width: 100%;
}

.stat-label {
    font-size: 1rem;
    color: #000;
    font-weight: 500;
    line-height: 1.4;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-section .section-subtitle {
    color: #000;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .mystical-circle {
        width: 130px;
        height: 130px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
        min-height: 40px;
    }
}

@media (max-width: 768px) {
    .mystical-circle {
        width: 110px;
        height: 110px;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.85rem;
        min-height: 35px;
    }

    .why-stat-item {
        padding: 0.5rem;
    }
}

@media (max-width: 576px) {
    .mystical-circle {
        width: 100px;
        height: 100px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
        min-height: 30px;
    }
}

.about-section {
    background: #fff;
}

.testimonial {
    background: #f8f9fa;
}

.testimonial-box {
    max-width: 650px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.testimonial-box p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 15px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
/*     filter: invert(1); */
}
.experience-icon {
  font-size: 30px;
}


/* ===================================
   Inner Page Banner Section Styles
   =================================== */

/* Main Banner Container */
.inner_banner {
    position: relative;
/*     min-height: 350px; */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 140px 0 80px;
    margin-top: 0;
	margin-bottom: 50px;
}

/* Background Image */
.banner-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Dark Overlay */
.banner-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

/* Decorative Shape Overlays */
.banner-shape {
    position: absolute;
    z-index: 3;
    opacity: 0.08;
    pointer-events: none;
}

.banner-shape img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Shape Position and Animation */
.shape-1 {
    top: -100px;
    left: -150px;
    width: 500px;
    height: 500px;
    animation: floatRotate 30s ease-in-out infinite;
}

@keyframes floatRotate {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Banner Content Wrapper */
.banner-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 20px;
}

/* Banner Title - Simple centered white text */
.banner-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: capitalize;
}

/* Breadcrumb Navigation - Below title */
.banner-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    font-size: 0.95rem;
}

.banner-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition-smooth);
}

.banner-breadcrumb a:hover {
    color: var(--accent-gold);
}

.banner-breadcrumb .separator {
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.banner-breadcrumb .current {
    color: #ffffff;
    font-weight: 400;
}

/* Torn Edge Effect at Bottom */
.banner-torn-edge {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 40px;
    background: #ffffff;
    z-index: 15;
    clip-path: polygon(0% 30%,
            2% 25%,
            4% 35%,
            6% 20%,
            8% 30%,
            10% 15%,
            12% 25%,
            14% 35%,
            16% 20%,
            18% 30%,
            20% 25%,
            22% 35%,
            24% 15%,
            26% 25%,
            28% 30%,
            30% 20%,
            32% 35%,
            34% 25%,
            36% 30%,
            38% 20%,
            40% 30%,
            42% 25%,
            44% 35%,
            46% 20%,
            48% 25%,
            50% 30%,
            52% 20%,
            54% 35%,
            56% 25%,
            58% 30%,
            60% 20%,
            62% 30%,
            64% 25%,
            66% 35%,
            68% 20%,
            70% 30%,
            72% 25%,
            74% 35%,
            76% 20%,
            78% 25%,
            80% 30%,
            82% 20%,
            84% 35%,
            86% 25%,
            88% 30%,
            90% 20%,
            92% 30%,
            94% 25%,
            96% 35%,
            98% 20%,
            100% 30%,
            100% 100%,
            0% 100%);
}

/* Responsive Design for Banner */
@media (max-width: 992px) {
    .inner_banner {
        min-height: 300px;
        padding: 120px 0 70px;
    }

    .banner-title {
        font-size: 3rem;
    }

    .shape-1 {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .inner_banner {
        min-height: 280px;
        padding: 100px 0 60px;
    }

    .banner-title {
        font-size: 2.5rem;
    }

    .banner-breadcrumb {
        font-size: 0.85rem;
    }

    .shape-1 {
        width: 300px;
        height: 300px;
        opacity: 0.05;
    }

    .banner-torn-edge {
        height: 30px;
    }
}

@media (max-width: 576px) {
    .inner_banner {
        min-height: 250px;
        padding: 90px 0 50px;
    }

    .banner-title {
        font-size: 2rem;
    }

    .banner-breadcrumb {
        font-size: 0.8rem;
        gap: 6px;
    }

    .shape-1 {
        width: 250px;
        height: 250px;
    }

    .banner-torn-edge {
        height: 25px;
    }
}


/* ===================================
   Contact Page Styles
   =================================== */

/* Contact Info Section */
.contact-info-section {
    background: #ffffff;
    position: relative;
}

.contact-info-wrapper {
    position: relative;
}

.contact-info-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.contact-info-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
}

/* Contact Card Items */
.contact-card-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid var(--primary-purple);
    transition: var(--transition-smooth);
}

.contact-card-item:hover {
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(123, 44, 191, 0.15);
    transform: translateX(5px);
    border-left-color: var(--accent-gold);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gradient-cosmic);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
}

.contact-card-content {
    flex: 1;
}

.contact-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: 8px;
}

.contact-card-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

.contact-card-text a {
    color: var(--primary-purple);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-card-text a:hover {
    color: var(--accent-gold);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    position: relative;
}

.contact-form-card {
    background: rgba(36, 0, 70, 0.05);
    border: 1px solid rgba(157, 78, 221, 0.2);
}

.form-section-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-purple);
    text-align: center;
}

/* Contact Map */
.contact-map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-map {
    width: 100%;
    height: 350px;
    border: none;
    display: block;
}

/* Responsive Design for Contact Page */
@media (max-width: 992px) {
    .contact-info-title {
        font-size: 2rem;
    }

    .contact-card-item {
        padding: 20px;
    }

    .contact-map {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .contact-info-title {
        font-size: 1.75rem;
        text-align: center;
    }

    .contact-info-description {
        text-align: center;
    }

    .contact-card-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }

    .contact-card-icon {
        margin: 0 auto;
    }

    .form-section-title {
        font-size: 1.5rem;
    }

    .contact-map {
        height: 250px;
        opacity: 0.05;
    }

    .banner-torn-edge {
        height: 30px;
    }
}

@media (max-width: 576px) {
    .inner_banner {
        min-height: 250px;
        padding: 90px 0 50px;
    }

    .banner-title {
        font-size: 2rem;
    }

    .banner-breadcrumb {
        font-size: 0.8rem;
        gap: 6px;
    }

    .shape-1 {
        width: 250px;
        height: 250px;
    }

    .banner-torn-edge {
        height: 25px;
    }
}


/* ===================================
   Contact Page Styles
   =================================== */

/* Contact Info Section */
.contact-info-section {
    background: #ffffff;
    position: relative;
}

.contact-info-wrapper {
    position: relative;
}

.contact-info-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.contact-info-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
}

/* Contact Card Items */
.contact-card-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid var(--primary-purple);
    transition: var(--transition-smooth);
}

.contact-card-item:hover {
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(123, 44, 191, 0.15);
    transform: translateX(5px);
    border-left-color: var(--accent-gold);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gradient-cosmic);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
}

.contact-card-content {
    flex: 1;
}

.contact-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: 8px;
}

.contact-card-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

.contact-card-text a {
    color: var(--primary-purple);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-card-text a:hover {
    color: var(--accent-gold);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    position: relative;
}

.contact-form-card {
    background: rgba(36, 0, 70, 0.05);
    border: 1px solid rgba(157, 78, 221, 0.2);
}

.form-section-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-purple);
    text-align: center;
}

/* Contact Map */
.contact-map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-map {
    width: 100%;
    height: 350px;
    border: none;
    display: block;
}

/* Responsive Design for Contact Page */
@media (max-width: 992px) {
    .contact-info-title {
        font-size: 2rem;
    }

    .contact-card-item {
        padding: 20px;
    }

    .contact-map {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .contact-info-title {
        font-size: 1.75rem;
        text-align: center;
    }

    .contact-info-description {
        text-align: center;
    }

    .contact-card-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }

    .contact-card-icon {
        margin: 0 auto;
    }

    .form-section-title {
        font-size: 1.5rem;
    }

    .contact-map {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .contact-info-title {
        font-size: 1.5rem;
    }

    .contact-card-title {
        font-size: 1.1rem;
    }

    .contact-card-text {
        font-size: 0.95rem;
    }
}



/* ===================================
   Store Section Styles
   =================================== */



.store-section {
    background-color: #fff;
    padding: 50px 0;
}

/* Store Title & Subtitle */
.store-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.store-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0;
}

/* Store Search Wrapper */
.store-search-wrapper {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.search-box {
    position: relative;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-purple);
    font-size: 1.1rem;
    z-index: 2;
}

.search-input {
    padding-left: 45px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    height: 50px;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: var(--secondary-purple);
    box-shadow: 0 0 0 3px rgba(157, 78, 221, 0.1);
    outline: none;
}

.category-select {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    height: 50px;
    transition: all 0.3s ease;
}

.category-select:focus {
    border-color: var(--secondary-purple);
    box-shadow: 0 0 0 3px rgba(157, 78, 221, 0.1);
    outline: none;
}

.btn-filter {
    background: var(--gradient-cosmic);
    color: white;
    border: none;
    border-radius: 10px;
    height: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-filter:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(123, 44, 191, 0.3);
    color: white;
}

/* Product Card */
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(123, 44, 191, 0.2);
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.badge-new {
    background: linear-gradient(135deg, #7B2CBF 0%, #9D4EDD 100%);
    color: white;
}

.badge-bestseller {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #333;
}

/* Product Image */
.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f5f5f5;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

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

/* Product Hover Overlay */
.product-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(36, 0, 70, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-hover-overlay {
    opacity: 1;
}

.btn-quick-view {
    background: white;
    color: var(--primary-purple);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.product-card:hover .btn-quick-view {
    transform: translateY(0);
}

.btn-quick-view:hover {
    background: var(--gradient-cosmic);
    color: white;
    transform: translateY(-2px);
}

/* Product Content */
.product-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    color: var(--accent-gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary-purple);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.product-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.product-rating i {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.rating-text {
    color: #999;
    font-size: 0.85rem;
    margin-left: 0.5rem;
}

/* Product Bottom */
.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    margin-top: auto;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.price-current {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    font-family: var(--font-heading);
}

.price-original {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

/* Add to Cart Button */
.btn-add-to-cart {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--secondary-purple);
    background: transparent;
    color: var(--secondary-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-add-to-cart:hover {
    background: var(--gradient-cosmic);
    border-color: transparent;
    color: white;
    transform: rotate(360deg) scale(1.1);
}

/* Load More Button */
.btn-load-more {
    background: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--secondary-purple);
    padding: 12px 32px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-load-more:hover {
    background: var(--gradient-cosmic);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(123, 44, 191, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .store-title {
        font-size: 2rem;
    }

    .product-name {
        font-size: 1.1rem;
    }

    .price-current {
        font-size: 1.25rem;
    }
}