@import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
body{
  font-family: "Roboto", sans-serif !important;
  font-style: normal;
  margin: 0 !important;
}
.container{
    max-width: 1140px !important;
}
.post, .page{
    margin: 0 !important;
}
.navbar-indi{
    display: flex;
    width: 100%;
}
.navbar{
    background-color: #f5ebff;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    transition: all 0.3s ease;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.scrolled .navbar{
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}
.scrolled .custom-logo{
    height: 50px !important;
}

/* LEFT */
.nav-left {
  flex: 1;
}

/* CENTER */
.nav-center {
  flex: 2;
  display: flex;
  justify-content: center;
}

.nav-center .navbar-nav {
  gap: 20px;
}

/* RIGHT */
.nav-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.social-nav {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
    font-size: 16px !important;
    font-weight: 500 !important;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
    color: #691fb2 !important;
}
a:visited {
    color: #000 !important;
}
.social-nav a {
  font-size: 16px;
  color: #000;
  text-decoration: none;
}

.custom-logo{
    width: auto;
    height: 60px !important;
    transition: all 0.3s ease;
}
.social-nav li a{
    background-color: #663399;
    color: #fff !important;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

/* ===============================
   MOBILE HEADER FIX
================================ */
@media (max-width: 767px) {

  /* Container stays clean */
  .navbar .container {
    flex-wrap: nowrap;
  }

  /* Logo stays left */
  .nav-left {
    flex: unset;
  }

  /* Hide center + right OUTSIDE collapse */
  .nav-center,
  .nav-right {
    display: none;
  }

  /* When menu opens */
  .navbar-collapse.show {
    display: block;
    width: 100%;
    background-color: #f5ebff;
    padding: 20px 0;
  }

  /* Show items INSIDE collapse */
  .navbar-collapse.show .nav-center,
  .navbar-collapse.show .nav-right {
    display: block;
    width: 100%;
  }

  /* Menu stacked */
  .nav-center .navbar-nav {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
  }

  /* Social icons centered */
  .social-nav {
    justify-content: center;
    margin-bottom: 15px;
  }

  /* Cart centered */
  .cart-nav {
    display: flex;
    justify-content: center;
  }

}



.social-nav li a i{
    display: contents;
}
.highl-font{
    color: #cc2980;
    font-weight: 800 !important;
}

.rotate360 img{
  animation: rotate360 20s linear infinite !important;
}

@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.entry-content{
    min-height: calc(100vh - 395px);
    height: auto;
}

.mark-bloq {
  white-space: nowrap;
  overflow: hidden;
}

.mark-bloq h5 { 
    color: #fff;
    margin: 0;
    padding: 0;
    font-family: "Playfair", serif;
    font-size: 36px;
    display: inline-block;
}

.mark-bloq h5 span{
    display: inline-block;
    margin-right: 60px;
}
.mark-bloq h5 i{
    font-size: 26px;
    margin-left: 15px;
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.track {
  display: inline-flex;
  animation: scroll 220s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/*blog posts */

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #F5EBFF;
  display: flex;
  flex-direction: column;
}

.blog-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card-content {
  padding: 20px;
}

.blog-meta {
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
}

.blog-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.blog-card p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-btn {
  background: #663399;
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
}
.blog-btn:hover{
  background: #cc2980;
  color: #fff;
}
/* Responsive */
@media (max-width: 1024px) {
  .blog-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .blog-card-grid {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  background: #f5ebff;
  padding-top: 60px;
  font-size: 14px;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 0;
}

.footer-logo {
  margin-bottom: 12px;
}
.footer-logo img{
    height: 50px;
}

.footer-about p {
  color: #666;
  margin-bottom: 15px;
}

.footer-social a {
  background-color: #663399;
  margin-right: 10px;
  color: #fff;
  font-size: 18px;
  width: 35px;
  height: 35px;
  transition: all 0.3s ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.footer-social a:hover{
    color: #fff;
    background-color: #cc2980;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-menu {
  list-style: none;
  padding: 0;
}

.footer-menu ul{
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-menu li {
  margin-bottom: 8px;
}

.footer-menu a {
  color: #555;
  text-decoration: none;
}

.footer-contact {
  background: #d8c4ec;
  border-radius: 100px 100px 0 0;
  padding: 25px 25px 55px 25px;
  text-align: center;
  margin-top: -20px;
}

.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.footer-contact li {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #444;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid #dbb7ff;
  padding: 18px 0;
}
.footer-bottom-in{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer-bottom-in p{
    margin: 0;
}

.footer-bottom-links p{
    margin: 0;
}
.footer-bottom-links a {
  color: #d83881;
  text-decoration: none;
}
.footer-bottom-links a:hover{
    color: #d83881;
}
/* Responsive */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/*woo */

/* Product Card */
.woocommerce ul.products li.product {
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.woocommerce ul.products li.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Product Image */
.woocommerce ul.products li.product img {
  border-radius: 14px;
  margin-bottom: 14px;
}

/* Title */
.woocommerce-loop-product__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

/* Price */
.woocommerce ul.products li.product .price {
  font-size: 15px;
  color: #c58b5c;
  font-weight: 600;
  margin-bottom: 0px;
  display: block;
}

/* Add to cart button */
.woocommerce ul.products li.product .button {
  background: #663399;
  color: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  transition: background 0.3s ease;
}

.woocommerce ul.products li.product .button:hover {
  background: #8e4bd2;
}
.woocommerce ul.products li.product .price{
    color: #663399;
}
.woocommerce ul.products li.product .price del{
    color: #8e4bd2;
    font-size: 12px;
    display: block;
}
.woocommerce span.onsale{
    min-height: 40px;
    min-width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
}
/* Responsive */
@media (max-width: 1024px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }
}

.woocommerce ul.products li.product a.woocommerce-loop-product__link{
    color: #000 !important;
    text-decoration: none !important;
}

/*update later */

/*fall back */
.woocommerce ul.products li.product a{
    position: relative;
}
/*relative */
.product-img-wrap{
    position: relative;
    transition: all 0.3s ease;
}
.product-img-wrap .main-img{
    position: relative;
    transition: all 0.3s ease;
} 
.product-img-wrap .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
} 
.woocommerce ul.products li.product:hover .product-img-wrap .hover-img {
    opacity: 1 !important;
}

.product-img-wrap img{
    height: 100% !important;
}

/*product single*/

/* Single Product Layout */
.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images{
    width: 100%;
}
.elan-product-top {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  margin-top: 20px;
  position: relative;
}

.elan-product-summary {
  padding-top: 20px;
}

/* Mobile */
@media (max-width: 1024px) {
  .elan-product-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.single-product{
    padding-top: 30px;
    padding-bottom: 50px;
}
.elan-breadcrumb {
  font-size: 13px;
  color: #777;
  margin-bottom: 12px;
}

.elan-breadcrumb a {
  color: #777;
  text-decoration: none;
}

.elan-breadcrumb a:hover {
  color: #663399;
}

.elan-breadcrumb .breadcrumb-separator {
  margin: 0 6px;
}
.woocommerce div.product form.cart .button{
    background: #663399;
    display: block;
    width: 100%;
    margin-top: 40px;
    height: 45px;
    border-radius: 25px;
}

.elan-secure{
    display: flex;
    justify-content: center;
    padding-top: 40px;
}
.elan-secure ul{
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 350px;
    padding: 0;
    margin: 0;
}
.elan-secure ul li{
    display: block;
    font-size: 12px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 0 15px;
    text-align: center;
}
.elan-secure ul li:nth-child(1){
    border-right: 1px solid #ccc !important;
}
.elan-secure ul li:nth-child(2){
    border-right: 1px solid #ccc !important;
}
.elan-secure ul li i{
    font-size: 22px;
}
.woocommerce-Price-amount{
    color: #000;
}
p.price{
    display: grid;
}
p.price del{
    font-size: 14px;
}
.product_meta{
    display: grid;
}
.posted_in a{
    color: #663399 !important;
    text-decoration: none;
}
.elan-product-gallery .flex-control-nav{
    margin-top: 20px !important;
}

.buy-now-button {
  width: 100%;
  margin-top: 10px !important;
  background: #000 !important;
  color: #fff !important;
  height: 45px;
}

.post-navigation{
    display: none;
}

.elan-pincode-checker {
  margin-top: 20px;
}

.pincode-wrap {
  display: flex;
  gap: 10px;
}
.success{
    color: green !important;
}

.elan-pincode-checker{
    background-color: #f2f2f2;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #dfdfdf;
}
.elan-pincode-checker label{
    font-weight: 500 !important;
    display: block !important;
    margin-bottom: 10px !important;
}
.pincode-wrap input {
  flex: 1;
  padding: 10px !important;
  border: 1px solid #ddd !important;
  outline: none;
}

.pincode-wrap button {
  padding: 6px 20px;
  background: #000000;
  color: #fff;
  border: none;
  cursor: pointer;
}

.pincode-result {
  margin-top: 8px;
  font-size: 13px;
  margin-bottom: 0;
}

/* RELATED PRODUCTS GRID ONLY */
.woocommerce .related.products ul.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

/* Reset old Woo styles */
.woocommerce .related.products ul.products li.product {
  float: none;
  width: auto;
  margin: 0;
}
.woocommerce ul.products li.product a img{
    height: auto !important;
}
/* Fix empty first column in related products */
.woocommerce .related.products ul.products::before,
.woocommerce .related.products ul.products::after {
  display: none !important;
  content: none !important;
}
.woocommerce-loop-product__title{
    display: block !important;
    background-color: #fff !important;
    font-size: 16px !important;
    padding: 0 !important;
    color: #000 !important;
    border-radius: 0 !important;
    text-transform: capitalize !important;
    margin-bottom: 10px !important;
}
.related h2{
    display: inline-block;
    background-color: #663399;
    font-size: 22px;
    padding: 10px 20px;
    color: #fff;
    border-radius: 5px;
    text-transform: capitalize;
}
.woocommerce-error, .woocommerce-info, .woocommerce-message{
    max-width: 1120px;
    margin: 0 auto;
    border-radius: 8px;
    margin-bottom: 50px;
}
.woocommerce-info{
    border-top-color: #663399;
}
.woocommerce-info::before, .woocommerce-info a{
    color: #663399;;
}
.woocommerce form .form-row textarea{
    border: 1px solid #ddd !important;
    border-radius: 10px !important;
    padding: 15px !important;
}
.place-order .button{
    background-color: #663399 !important;
    height: 45px;
    border-radius: 25px !important;
}
.cart-nav{
    position: relative;
    margin-left: 20px;
}
.cart-nav a i{
    color: #663399;
    font-size: 22px;
}
.cart-nav .elan-cart-count{
    position: absolute;
    width: 20px;
    height: 20px;
    display: flex;
    color: #fff;
    background-color: #d73781;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    border-radius: 50%;
    top: 0;
    right: -10px;
}

a.checkout-button.button.alt.wc-forward{
    background-color: #663399;
    height: 45px;
    padding: 10px;
    align-items: center;
    display: flex;
    justify-content: center;
    font-weight: 500;
    color: #fff !important;
    border-radius: 25px;
    margin-bottom: 0;
}
.wc-proceed-to-checkout{
    padding-bottom: 0 !important;
}
#ppcp-recaptcha-v2-container{
    margin: 0 !important;
}
/* Cart page grid layout */
/*.woocommerce {*/
/*  display: grid;*/
 /* grid-template-columns: 1fr 1fr; /* 50% + 50% 
/*  gap: 15px;*/
/*  align-items: start;*/
/*}*/

/* Ensure both sections stretch properly */
/*.woocommerce-cart-form,*/
/*.cart-collaterals {*/
/*  width: 100%;*/
/*}*/

/* Mobile: stack layout */
/*@media (max-width: 768px) {*/
/*  .woocommerce {*/
/*    grid-template-columns: 1fr;*/
/*  }*/
/*}*/
.woocommerce-notices-wrapper{
    display: contents;
}

.cart_totals{
    width: 100% !important;
}
.cart_totals h2{
    text-transform: capitalize;
    text-align: right;
    margin-bottom: 20px;
}

.shipping-calculator-button{
    display: inline-flex;
    align-items: center;
    background-color: #663399;
    padding: 5px 10px;
    border-radius: 25px;
    color: #fff;
}
.shipping-calculator-button:hover, .shipping-calculator-button:focus, .shipping-calculator-button:visited{
    color: #fff;
}
.shipping-calculator-form button{
    background-color: #663399 !important;
    color: #fff !important;
    height: 35px;
    border-radius: 25px !important;
    display: flex ! IMPORTANT;
    align-items: center;
    justify-content: center;
    padding: 0 13px !important;
}

/* Remove default blue outlines */
.woocommerce-checkout input:focus,
.woocommerce-checkout textarea:focus,
.woocommerce-checkout select:focus {
  outline: none !important;
  box-shadow: none !important;
}


/* Base input styling */
.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select, .select2-selection__rendered {
  width: 100%;
  height: 48px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 14px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

/* Textarea height */
.woocommerce-checkout textarea {
  height: 120px;
  resize: vertical;
}
.select2-container .select2-dropdown, .select2-container .select2-selection{
    border: none;
}
.select2-container .select2-selection--single .select2-selection__rendered{
    line-height: 33px;
    padding: 6px 15px;
}
/* Focus effect */
.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row textarea:focus,
.woocommerce-checkout .form-row select:focus {
  border-color: #663399;
  box-shadow: 0 0 0 2px rgba(102, 51, 153, 0.12);
}

/* Labels */
.woocommerce-checkout .form-row label {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
}

/* Section titles */
.woocommerce-checkout h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

/* Order review table */
#order_review {
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 20px;
  background: #fff;
}
.footer-menu{
    padding: 0;
    margin: 0;
}
.policy-container ol{
    padding-left: 20px;
    margin: 0;
}
.policy-container ul{
    padding-left: 20px;
    margin: 0;
}
.policy-container h3{
    color: #663399;
    font-family: "Playfair Display", Sans-serif;
    font-size: 28px;
    font-weight: 600;
}
.img-radius img{
    border-radius: 12px !important;
    overflow: hidden;
}


/*.product-img-wrap {*/
/*  position: relative;*/
/*  aspect-ratio: 4 / 5;*/
/*  overflow: hidden;*/
/*  border-radius: 18px;*/
/*}*/

/*.product-img-wrap img {*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  object-fit: cover;*/
/*  transition: opacity 0.35s ease;*/
/*}*/


/* Hover image */
/*.product-img-wrap img.hover-img {*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  opacity: 0;*/
/*}*/

/*.product-img-wrap:hover img.hover-img {*/
/*  opacity: 1;*/
/*}*/

/*.product-img-wrap:hover img.main-img {*/
/*  opacity: 0;*/
/*}*/

/*.product-info {*/
/*  padding-top: 10px;*/
/*}*/

/*.woocommerce ul.products li.product {*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*}*/


